Searched defs:andl (Results 1 – 6 of 6) sorted by relevance
/art/compiler/optimizing/ |
D | code_generator_x86.cc | 3424 __ andl(EAX, Immediate(kC2ConditionMask)); in GenerateRemFP() local 6984 __ andl(first.AsRegister<Register>(), second.AsRegister<Register>()); in HandleBitwiseOperation() local 6993 __ andl(first.AsRegister<Register>(), in HandleBitwiseOperation() local 7005 __ andl(first.AsRegister<Register>(), Address(ESP, second.GetStackIndex())); in HandleBitwiseOperation() local 7017 __ andl(first.AsRegisterPairLow<Register>(), second.AsRegisterPairLow<Register>()); in HandleBitwiseOperation() local 7018 __ andl(first.AsRegisterPairHigh<Register>(), second.AsRegisterPairHigh<Register>()); in HandleBitwiseOperation() local 7029 __ andl(first.AsRegisterPairLow<Register>(), Address(ESP, second.GetStackIndex())); in HandleBitwiseOperation() local 7030 __ andl(first.AsRegisterPairHigh<Register>(), in HandleBitwiseOperation() local 7055 __ andl(first_low, low); in HandleBitwiseOperation() local 7060 __ andl(first_high, high); in HandleBitwiseOperation() local
|
D | code_generator_x86_64.cc | 3409 __ andl(CpuRegister(RAX), Immediate(kC2ConditionMask)); in GenerateRemFP() local 5904 __ andl(out, Immediate(1)); in VisitInstanceOf() local 6384 __ andl(first.AsRegister<CpuRegister>(), second.AsRegister<CpuRegister>()); in HandleBitwiseOperation() local 6394 __ andl(first.AsRegister<CpuRegister>(), imm); in HandleBitwiseOperation() local 6404 __ andl(first.AsRegister<CpuRegister>(), address); in HandleBitwiseOperation() local
|
D | intrinsics_x86_64.cc | 2546 __ andl(temp, imm_mask); in SwapBits() local 2547 __ andl(reg, imm_mask); in SwapBits() local 2773 __ andl(out, tmp); in GenOneBit() local
|
D | intrinsics_x86.cc | 2482 __ andl(temp, imm_mask); in SwapBits() local 2483 __ andl(reg, imm_mask); in SwapBits() local
|
/art/compiler/utils/x86/ |
D | assembler_x86.cc | 2024 void X86Assembler::andl(Register dst, Register src) { in andl() function in art::x86::X86Assembler 2031 void X86Assembler::andl(Register reg, const Address& address) { in andl() function in art::x86::X86Assembler 2038 void X86Assembler::andl(Register dst, const Immediate& imm) { in andl() function in art::x86::X86Assembler
|
/art/compiler/utils/x86_64/ |
D | assembler_x86_64.cc | 2371 void X86_64Assembler::andl(CpuRegister dst, CpuRegister src) { in andl() function in art::x86_64::X86_64Assembler 2379 void X86_64Assembler::andl(CpuRegister reg, const Address& address) { in andl() function in art::x86_64::X86_64Assembler 2387 void X86_64Assembler::andl(CpuRegister dst, const Immediate& imm) { in andl() function in art::x86_64::X86_64Assembler
|