/art/compiler/utils/arm/ |
D | assembler_arm32.h | 42 Condition cond = AL, SetCc set_cc = kCcDontCare) OVERRIDE; 45 Condition cond = AL, SetCc set_cc = kCcDontCare) OVERRIDE; 48 Condition cond = AL, SetCc set_cc = kCcDontCare) OVERRIDE; 51 Condition cond = AL, SetCc set_cc = kCcDontCare) OVERRIDE; 54 Condition cond = AL, SetCc set_cc = kCcDontCare) OVERRIDE; 57 Condition cond = AL, SetCc set_cc = kCcDontCare) OVERRIDE; 60 Condition cond = AL, SetCc set_cc = kCcDontCare) OVERRIDE; 63 Condition cond = AL, SetCc set_cc = kCcDontCare) OVERRIDE; 65 void tst(Register rn, const ShifterOperand& so, Condition cond = AL) OVERRIDE; 67 void teq(Register rn, const ShifterOperand& so, Condition cond = AL) OVERRIDE; [all …]
|
D | assembler_thumb2.h | 42 next_condition_(AL), in ArmAssembler() 72 Condition cond = AL, SetCc set_cc = kCcDontCare) OVERRIDE; 75 Condition cond = AL, SetCc set_cc = kCcDontCare) OVERRIDE; 78 Condition cond = AL, SetCc set_cc = kCcDontCare) OVERRIDE; 81 Condition cond = AL, SetCc set_cc = kCcDontCare) OVERRIDE; 84 Condition cond = AL, SetCc set_cc = kCcDontCare) OVERRIDE; 87 Condition cond = AL, SetCc set_cc = kCcDontCare) OVERRIDE; 90 Condition cond = AL, SetCc set_cc = kCcDontCare) OVERRIDE; 93 Condition cond = AL, SetCc set_cc = kCcDontCare) OVERRIDE; 95 void tst(Register rn, const ShifterOperand& so, Condition cond = AL) OVERRIDE; [all …]
|
D | assembler_arm.h | 445 Condition cond = AL, SetCc set_cc = kCcDontCare) = 0; 447 virtual void ands(Register rd, Register rn, const ShifterOperand& so, Condition cond = AL) { 452 Condition cond = AL, SetCc set_cc = kCcDontCare) = 0; 454 virtual void eors(Register rd, Register rn, const ShifterOperand& so, Condition cond = AL) { 459 Condition cond = AL, SetCc set_cc = kCcDontCare) = 0; 461 virtual void subs(Register rd, Register rn, const ShifterOperand& so, Condition cond = AL) { 466 Condition cond = AL, SetCc set_cc = kCcDontCare) = 0; 468 virtual void rsbs(Register rd, Register rn, const ShifterOperand& so, Condition cond = AL) { 473 Condition cond = AL, SetCc set_cc = kCcDontCare) = 0; 475 virtual void adds(Register rd, Register rn, const ShifterOperand& so, Condition cond = AL) { [all …]
|
D | assembler_thumb2.cc | 328 if (cond != AL) { in BEncoding16() 344 if (cond != AL) { in BEncoding32() 1137 DCHECK_EQ(next_condition_, AL); in b() 1149 EmitBranch(AL, label, true, true); in blx() 1154 EmitDataProcessing(AL, TST, kCcSet, PC, R0, ShifterOperand(0)); in MarkExceptionHandler() 1157 EmitBranch(AL, label, false, false); in MarkExceptionHandler() 1258 if ((cond == AL) ? set_cc == kCcKeep : set_cc == kCcSet) { in Is32BitDataProcessing() 1271 } else if (opcode != CMP && ((cond == AL) ? set_cc == kCcKeep : set_cc == kCcSet)) { in Is32BitDataProcessing() 1294 if ((cond == AL) ? set_cc == kCcKeep : set_cc == kCcSet) { in Is32BitDataProcessing() 1304 ((cond == AL) ? set_cc == kCcKeep : set_cc == kCcSet)) { in Is32BitDataProcessing() [all …]
|
D | assembler_arm.cc | 70 if (rhs >= EQ && rhs <= AL) { in operator <<() 639 AddConstant(scratch.AsCoreRegister(), SP, fr_offs.Int32Value(), AL); in StoreStackOffsetToThread32() 759 AddConstant(out_reg.AsCoreRegister(), SP, handle_scope_offset.Int32Value(), AL); in CreateHandleScopeEntry() 779 AddConstant(scratch.AsCoreRegister(), SP, handle_scope_offset.Int32Value(), AL); in CreateHandleScopeEntry() 843 StoreToOffset(kStoreWord, TR, SP, offset.Int32Value(), AL); in GetCurrentThread()
|
D | constants_arm.h | 121 AL = 14, // Always (unconditional) | Always (unconditional) enumerator
|
D | assembler_arm32.cc | 559 EmitType01(AL, 1, TST, kCcSet, PC, R0, ShifterOperand(0)); in MarkExceptionHandler() 562 EmitBranch(AL, label, false); in MarkExceptionHandler() 906 CHECK_EQ(cond, AL); // This cannot be conditional on ARM. in clrex() 1270 int32_t encoding = (AL << kConditionShift) | B27 | B26 | B25 | B24 | imm24; in svc() 1276 int32_t encoding = (AL << kConditionShift) | B24 | B21 | in bkpt()
|
D | assembler_arm32_test.cc | 118 conditions_.push_back(arm::Condition::AL); in SetUpHelpers() 126 conditions_.push_back(arm::Condition::AL); in SetUpHelpers()
|
/art/compiler/utils/ |
D | assembler_thumb_test.cc | 239 __ mvn(R0, ShifterOperand(R1), AL, kCcKeep); in TEST_F() 240 __ add(R0, R1, ShifterOperand(R2), AL, kCcKeep); in TEST_F() 241 __ sub(R0, R1, ShifterOperand(R2), AL, kCcKeep); in TEST_F() 242 __ and_(R0, R1, ShifterOperand(R2), AL, kCcKeep); in TEST_F() 243 __ orr(R0, R1, ShifterOperand(R2), AL, kCcKeep); in TEST_F() 244 __ orn(R0, R1, ShifterOperand(R2), AL, kCcKeep); in TEST_F() 245 __ eor(R0, R1, ShifterOperand(R2), AL, kCcKeep); in TEST_F() 246 __ bic(R0, R1, ShifterOperand(R2), AL, kCcKeep); in TEST_F() 247 __ adc(R0, R1, ShifterOperand(R2), AL, kCcKeep); in TEST_F() 248 __ sbc(R0, R1, ShifterOperand(R2), AL, kCcKeep); in TEST_F() [all …]
|
/art/compiler/utils/x86/ |
D | constants_x86.h | 31 AL = 0, enumerator
|
/art/compiler/optimizing/ |
D | code_generator_arm.cc | 3189 __ rsb(shift_left, shift_right, ShifterOperand(kArmBitsPerWord), AL, kCcKeep); in HandleLongRotate()
|