/external/v8/test/cctest/ |
H A D | test-disasm-arm64.cc | 168 COMPARE(Mvn(w0, Operand(0x1)), "movn w0, #0x1"); 169 COMPARE(Mvn(x1, Operand(0xfff)), "movn x1, #0xfff"); 170 COMPARE(Mvn(w2, Operand(w3)), "mvn w2, w3"); 171 COMPARE(Mvn(x4, Operand(x5)), "mvn x4, x5"); 172 COMPARE(Mvn(w6, Operand(w7, LSL, 12)), "mvn w6, w7, lsl #12"); 173 COMPARE(Mvn(x8, Operand(x9, ASR, 63)), "mvn x8, x9, asr #63");
|
H A D | test-assembler-arm64.cc | 300 __ Mvn(w0, 0xfff); 301 __ Mvn(x1, 0xfff); 302 __ Mvn(w2, Operand(w0, LSL, 1)); 303 __ Mvn(x3, Operand(x1, LSL, 2)); 304 __ Mvn(w4, Operand(w0, LSR, 3)); 305 __ Mvn(x5, Operand(x1, LSR, 4)); 306 __ Mvn(w6, Operand(w0, ASR, 11)); 307 __ Mvn(x7, Operand(x1, ASR, 12)); 308 __ Mvn(w8, Operand(w0, ROR, 13)); 309 __ Mvn(x [all...] |
/external/vixl/src/vixl/a64/ |
H A D | macro-assembler-a64.cc | 763 Mvn(rd, rn); 825 // could also be achieved using an orr instruction (like orn used by Mvn), 1027 void MacroAssembler::Mvn(const Register& rd, const Operand& operand) { function in class:vixl::MacroAssembler 1034 Mvn(rd, operand.immediate());
|
H A D | macro-assembler-a64.h | 692 void Mvn(const Register& rd, uint64_t imm) { function in class:vixl::MacroAssembler 695 void Mvn(const Register& rd, const Operand& operand); 2289 V(mvn, Mvn) \
|
/external/v8/src/arm64/ |
H A D | macro-assembler-arm64.h | 258 inline void Mvn(const Register& rd, uint64_t imm); 259 void Mvn(const Register& rd, const Operand& operand);
|
H A D | macro-assembler-arm64.cc | 112 Mvn(rd, rn); 260 // could also be achieved using an orr instruction (like orn used by Mvn), 296 void MacroAssembler::Mvn(const Register& rd, const Operand& operand) { function in class:v8::internal::MacroAssembler 3924 Mvn(scratch, key);
|
H A D | macro-assembler-arm64-inl.h | 287 void MacroAssembler::Mvn(const Register& rd, uint64_t imm) { function in class:v8::internal::MacroAssembler
|
/external/v8/src/compiler/arm64/ |
H A D | code-generator-arm64.cc | 987 __ Mvn(i.OutputRegister(), i.InputOperand(0)); 990 __ Mvn(i.OutputRegister32(), i.InputOperand32(0));
|
/external/vixl/test/ |
H A D | test-disasm-a64.cc | 164 COMPARE(Mvn(w0, Operand(0x101)), "mov w0, #0xfffffefe"); 165 COMPARE(Mvn(x1, Operand(0xfff1)), "mov x1, #0xffffffffffff000e"); 166 COMPARE(Mvn(w2, Operand(w3)), "mvn w2, w3"); 167 COMPARE(Mvn(x4, Operand(x5)), "mvn x4, x5"); 168 COMPARE(Mvn(w6, Operand(w7, LSL, 12)), "mvn w6, w7, lsl #12"); 169 COMPARE(Mvn(x8, Operand(x9, ASR, 63)), "mvn x8, x9, asr #63"); 4893 COMPARE(Mvn(v4.V8B(), v5.V8B()), "mvn v4.8b, v5.8b"); 4894 COMPARE(Mvn(v4.V16B(), v5.V16B()), "mvn v4.16b, v5.16b");
|
H A D | test-assembler-a64.cc | 290 __ Mvn(w0, 0xfff); 291 __ Mvn(x1, 0xfff); 292 __ Mvn(w2, Operand(w0, LSL, 1)); 293 __ Mvn(x3, Operand(x1, LSL, 2)); 294 __ Mvn(w4, Operand(w0, LSR, 3)); 295 __ Mvn(x5, Operand(x1, LSR, 4)); 296 __ Mvn(w6, Operand(w0, ASR, 11)); 297 __ Mvn(x7, Operand(x1, ASR, 12)); 298 __ Mvn(w8, Operand(w0, ROR, 13)); 299 __ Mvn(x [all...] |