/external/v8/test/cctest/ |
D | test-disasm-arm64.cc | 1684 COMPARE(Eon(w10, w11, 0), "mvn w10, w11"); in TEST_() 1685 COMPARE(Eon(x10, x11, 0), "mvn x10, x11"); in TEST_() 1702 COMPARE(Eon(w22, w23, 0xffffffff), "mov w22, w23"); in TEST_() 1703 COMPARE(Eon(x22, x23, 0xffffffff), "eor x22, x23, #0xffffffff00000000"); in TEST_() 1704 COMPARE(Eon(x22, x23, 0xffffffffffffffff), "mov x22, x23"); in TEST_()
|
D | test-assembler-arm64.cc | 1032 __ Eon(x2, x0, Operand(x1)); in TEST() local 1033 __ Eon(w3, w0, Operand(w1, LSL, 4)); in TEST() local 1034 __ Eon(x4, x0, Operand(x1, LSL, 4)); in TEST() local 1035 __ Eon(x5, x0, Operand(x1, LSR, 1)); in TEST() local 1036 __ Eon(w6, w0, Operand(w1, ASR, 20)); in TEST() local 1037 __ Eon(x7, x0, Operand(x1, ASR, 20)); in TEST() local 1038 __ Eon(w8, w0, Operand(w1, ROR, 28)); in TEST() local 1039 __ Eon(x9, x0, Operand(x1, ROR, 28)); in TEST() local 1040 __ Eon(w10, w0, Operand(0x03c003c0)); in TEST() local 1041 __ Eon(x11, x0, Operand(0x0000100000001000L)); in TEST() local [all …]
|
/external/v8/src/compiler/arm64/ |
D | code-generator-arm64.cc | 800 __ Eon(i.OutputRegister(), i.InputOrZeroRegister64(0), in AssembleArchInstruction() local 804 __ Eon(i.OutputRegister32(), i.InputOrZeroRegister32(0), in AssembleArchInstruction() local
|
/external/vixl/test/ |
D | test-assembler-a64.cc | 1013 __ Eon(x2, x0, Operand(x1)); in TEST() local 1014 __ Eon(w3, w0, Operand(w1, LSL, 4)); in TEST() local 1015 __ Eon(x4, x0, Operand(x1, LSL, 4)); in TEST() local 1016 __ Eon(x5, x0, Operand(x1, LSR, 1)); in TEST() local 1017 __ Eon(w6, w0, Operand(w1, ASR, 20)); in TEST() local 1018 __ Eon(x7, x0, Operand(x1, ASR, 20)); in TEST() local 1019 __ Eon(w8, w0, Operand(w1, ROR, 28)); in TEST() local 1020 __ Eon(x9, x0, Operand(x1, ROR, 28)); in TEST() local 1021 __ Eon(w10, w0, 0x03c003c0); in TEST() local 1022 __ Eon(x11, x0, 0x0000100000001000); in TEST() local [all …]
|
D | test-disasm-a64.cc | 2724 COMPARE(Eon(w10, w11, 0), "mvn w10, w11"); in TEST() 2725 COMPARE(Eon(x10, x11, 0), "mvn x10, x11"); in TEST() 2742 COMPARE(Eon(w22, w23, 0xffffffff), "mov w22, w23"); in TEST() 2743 COMPARE(Eon(x22, x23, 0xffffffff), "eor x22, x23, #0xffffffff00000000"); in TEST() 2744 COMPARE(Eon(x22, x23, 0xffffffffffffffff), "mov x22, x23"); in TEST()
|
/external/v8/src/arm64/ |
D | macro-assembler-arm64-inl.h | 116 void MacroAssembler::Eon(const Register& rd, in Eon() function
|
D | macro-assembler-arm64.h | 177 inline void Eon(const Register& rd,
|
/external/vixl/src/vixl/a64/ |
D | macro-assembler-a64.cc | 696 void MacroAssembler::Eon(const Register& rd, in Eon() function in vixl::MacroAssembler
|
D | macro-assembler-a64.h | 627 void Eon(const Register& rd,
|