/art/runtime/arch/x86_64/ |
D | quick_entrypoints_x86_64.S | 499 andl LITERAL(0xFFFFFFF0), %edx // Align frame size to 16 bytes. 593 andl LITERAL(0xFFFFFFF0), %edx // Align frame size to 16 bytes. 936 andl LITERAL(OBJECT_ALIGNMENT_MASK_TOGGLED), %ecx 1049 andl LITERAL(LOCK_WORD_READ_BARRIER_STATE_MASK_TOGGLED), %ecx // zero the read barrier bits. 1064 andl LITERAL(LOCK_WORD_READ_BARRIER_STATE_MASK_TOGGLED), %ecx // zero the read barrier bits. 1093 andl LITERAL(LOCK_WORD_READ_BARRIER_STATE_MASK_TOGGLED), %edx // zero the read barrier bits. 1098 …andl LITERAL(LOCK_WORD_READ_BARRIER_STATE_MASK), %ecx // ecx: new lock word zero except original …
|
/art/runtime/arch/x86/ |
D | quick_entrypoints_x86.S | 441 andl LITERAL(0xFFFFFFF0), %ebx 538 andl LITERAL(0xFFFFFFF0), %ebx 990 andl LITERAL(LOCK_WORD_READ_BARRIER_STATE_MASK_TOGGLED), %ecx // zero the read barrier bits. 1006 andl LITERAL(LOCK_WORD_READ_BARRIER_STATE_MASK_TOGGLED), %ecx // zero the read barrier bits. 1046 andl LITERAL(LOCK_WORD_READ_BARRIER_STATE_MASK_TOGGLED), %edx // zero the read barrier bits. 1052 …andl LITERAL(LOCK_WORD_READ_BARRIER_STATE_MASK), %ecx // ecx: new lock word zero except original …
|
/art/compiler/utils/x86/ |
D | assembler_x86.h | 378 void andl(Register dst, const Immediate& imm); 379 void andl(Register dst, Register src); 380 void andl(Register dst, const Address& address);
|
D | assembler_x86.cc | 1050 void X86Assembler::andl(Register dst, Register src) { in andl() function in art::x86::X86Assembler 1057 void X86Assembler::andl(Register reg, const Address& address) { in andl() function in art::x86::X86Assembler 1064 void X86Assembler::andl(Register dst, const Immediate& imm) { in andl() function in art::x86::X86Assembler
|
/art/compiler/utils/x86_64/ |
D | assembler_x86_64.h | 495 void andl(CpuRegister dst, const Immediate& imm); 496 void andl(CpuRegister dst, CpuRegister src); 497 void andl(CpuRegister reg, const Address& address);
|
D | assembler_x86_64_test.cc | 547 DriverStr(Repeatrr(&x86_64::X86_64Assembler::andl, "andl %{reg2}, %{reg1}"), "andl"); in TEST_F() 551 DriverStr(Repeatri(&x86_64::X86_64Assembler::andl, 4U, "andl ${imm}, %{reg}"), "andli"); in TEST_F()
|
D | assembler_x86_64.cc | 1351 void X86_64Assembler::andl(CpuRegister dst, CpuRegister src) { in andl() function in art::x86_64::X86_64Assembler 1359 void X86_64Assembler::andl(CpuRegister reg, const Address& address) { in andl() function in art::x86_64::X86_64Assembler 1367 void X86_64Assembler::andl(CpuRegister dst, const Immediate& imm) { in andl() function in art::x86_64::X86_64Assembler
|
/art/compiler/optimizing/ |
D | code_generator_x86.cc | 2307 __ andl(EAX, Immediate(kC2ConditionMask)); in GenerateRemFP() local 4520 __ andl(first.AsRegister<Register>(), second.AsRegister<Register>()); in HandleBitwiseOperation() local 4529 __ andl(first.AsRegister<Register>(), in HandleBitwiseOperation() local 4541 __ andl(first.AsRegister<Register>(), Address(ESP, second.GetStackIndex())); in HandleBitwiseOperation() local 4553 __ andl(first.AsRegisterPairLow<Register>(), second.AsRegisterPairLow<Register>()); in HandleBitwiseOperation() local 4554 __ andl(first.AsRegisterPairHigh<Register>(), second.AsRegisterPairHigh<Register>()); in HandleBitwiseOperation() local 4565 __ andl(first.AsRegisterPairLow<Register>(), Address(ESP, second.GetStackIndex())); in HandleBitwiseOperation() local 4566 __ andl(first.AsRegisterPairHigh<Register>(), in HandleBitwiseOperation() local 4591 __ andl(first_low, low); in HandleBitwiseOperation() local 4596 __ andl(first_high, high); in HandleBitwiseOperation() local
|
D | intrinsics_x86_64.cc | 1512 __ andl(temp, imm_mask); in SwapBits() local 1513 __ andl(reg, imm_mask); in SwapBits() local
|
D | intrinsics_x86.cc | 1649 __ andl(temp, imm_mask); in SwapBits() local 1650 __ andl(reg, imm_mask); in SwapBits() local
|
D | code_generator_x86_64.cc | 2436 __ andl(CpuRegister(RAX), Immediate(kC2ConditionMask)); in GenerateRemFP() local 4358 __ andl(first.AsRegister<CpuRegister>(), second.AsRegister<CpuRegister>()); in HandleBitwiseOperation() local 4368 __ andl(first.AsRegister<CpuRegister>(), imm); in HandleBitwiseOperation() local 4378 __ andl(first.AsRegister<CpuRegister>(), address); in HandleBitwiseOperation() local
|