/art/runtime/interpreter/mterp/x86/ |
D | arithmetic.S | 15 orl %ecx, %edx 297 orl VREG_ADDRESS(%ecx), %eax 446 orl %ebx, %ecx 473 orl %ebx, %eax
|
/art/compiler/utils/x86/ |
D | assembler_x86.h | 698 void orl(Register dst, const Immediate& imm); 699 void orl(Register dst, Register src); 700 void orl(Register dst, const Address& address);
|
D | assembler_x86.cc | 3042 void X86Assembler::orl(Register dst, Register src) { in orl() function in art::x86::X86Assembler 3049 void X86Assembler::orl(Register reg, const Address& address) { in orl() function in art::x86::X86Assembler 3056 void X86Assembler::orl(Register dst, const Immediate& imm) { in orl() function in art::x86::X86Assembler
|
/art/compiler/utils/x86_64/ |
D | assembler_x86_64.h | 747 void orl(CpuRegister dst, const Immediate& imm); 748 void orl(CpuRegister dst, CpuRegister src); 749 void orl(CpuRegister reg, const Address& address);
|
D | assembler_x86_64_test.cc | 912 DriverStr(Repeatrr(&x86_64::X86_64Assembler::orl, "orl %{reg2}, %{reg1}"), "orl"); in TEST_F() 916 DriverStr(RepeatrI(&x86_64::X86_64Assembler::orl, in TEST_F()
|
D | assembler_x86_64.cc | 4099 void X86_64Assembler::orl(CpuRegister dst, CpuRegister src) { in orl() function in art::x86_64::X86_64Assembler 4107 void X86_64Assembler::orl(CpuRegister reg, const Address& address) { in orl() function in art::x86_64::X86_64Assembler 4115 void X86_64Assembler::orl(CpuRegister dst, const Immediate& imm) { in orl() function in art::x86_64::X86_64Assembler
|
/art/compiler/optimizing/ |
D | code_generator_x86.cc | 4328 __ orl(temp, value.AsRegisterPairHigh<Register>()); in VisitDivZeroCheck() local 7684 __ orl(first.AsRegister<Register>(), second.AsRegister<Register>()); in HandleBitwiseOperation() local 7694 __ orl(first.AsRegister<Register>(), in HandleBitwiseOperation() local 7705 __ orl(first.AsRegister<Register>(), Address(ESP, second.GetStackIndex())); in HandleBitwiseOperation() local 7718 __ orl(first.AsRegisterPairLow<Register>(), second.AsRegisterPairLow<Register>()); in HandleBitwiseOperation() local 7719 __ orl(first.AsRegisterPairHigh<Register>(), second.AsRegisterPairHigh<Register>()); in HandleBitwiseOperation() local 7731 __ orl(first.AsRegisterPairLow<Register>(), Address(ESP, second.GetStackIndex())); in HandleBitwiseOperation() local 7732 __ orl(first.AsRegisterPairHigh<Register>(), in HandleBitwiseOperation() local 7762 __ orl(first_low, low); in HandleBitwiseOperation() local 7765 __ orl(first_high, high); in HandleBitwiseOperation() local
|
D | code_generator_x86_64.cc | 6973 __ orl(first.AsRegister<CpuRegister>(), second.AsRegister<CpuRegister>()); in HandleBitwiseOperation() local 6983 __ orl(first.AsRegister<CpuRegister>(), imm); in HandleBitwiseOperation() local 6993 __ orl(first.AsRegister<CpuRegister>(), address); in HandleBitwiseOperation() local
|
D | intrinsics_x86_64.cc | 2252 __ orl(reg, temp); in SwapBits() local
|
D | intrinsics_x86.cc | 2160 __ orl(reg, temp); in SwapBits() local
|