Searched refs:kCcDontCare (Results 1 – 9 of 9) sorted by relevance
/art/compiler/utils/arm/ |
D | assembler_arm.h | 410 Condition cond = AL, SetCc set_cc = kCcDontCare) = 0; 417 Condition cond = AL, SetCc set_cc = kCcDontCare) = 0; 424 Condition cond = AL, SetCc set_cc = kCcDontCare) = 0; 431 Condition cond = AL, SetCc set_cc = kCcDontCare) = 0; 438 Condition cond = AL, SetCc set_cc = kCcDontCare) = 0; 445 Condition cond = AL, SetCc set_cc = kCcDontCare) = 0; 452 Condition cond = AL, SetCc set_cc = kCcDontCare) = 0; 459 Condition cond = AL, SetCc set_cc = kCcDontCare) = 0; 476 Condition cond = AL, SetCc set_cc = kCcDontCare) = 0; 483 Condition cond = AL, SetCc set_cc = kCcDontCare) = 0; [all …]
|
D | assembler_thumb2.h | 73 Condition cond = AL, SetCc set_cc = kCcDontCare) OVERRIDE; 76 Condition cond = AL, SetCc set_cc = kCcDontCare) OVERRIDE; 79 Condition cond = AL, SetCc set_cc = kCcDontCare) OVERRIDE; 82 Condition cond = AL, SetCc set_cc = kCcDontCare) OVERRIDE; 85 Condition cond = AL, SetCc set_cc = kCcDontCare) OVERRIDE; 88 Condition cond = AL, SetCc set_cc = kCcDontCare) OVERRIDE; 91 Condition cond = AL, SetCc set_cc = kCcDontCare) OVERRIDE; 94 Condition cond = AL, SetCc set_cc = kCcDontCare) OVERRIDE; 105 Condition cond = AL, SetCc set_cc = kCcDontCare) OVERRIDE; 108 Condition cond = AL, SetCc set_cc = kCcDontCare) OVERRIDE; [all …]
|
D | assembler_arm_shared.h | 45 kCcDontCare, // Allows prioritizing 16-bit instructions on Thumb2 whether they set CCs or not. enumerator
|
D | assembler_arm_vixl.h | 209 bool ShifterOperandCanHold(Opcode opcode, uint32_t immediate, SetCc set_cc = kCcDontCare);
|
D | jni_macro_assembler_arm_vixl.cc | 459 if (asm_.ShifterOperandCanHold(ADD, handle_scope_offset.Int32Value(), kCcDontCare)) { in CreateHandleScopeEntry() 498 if (asm_.ShifterOperandCanHold(ADD, handle_scope_offset.Int32Value(), kCcDontCare)) { in CreateHandleScopeEntry()
|
/art/compiler/optimizing/ |
D | code_generator_arm.h | 199 bool CanEncodeConstantAsImmediate(uint32_t value, Opcode opcode, SetCc set_cc = kCcDontCare);
|
D | code_generator_arm_vixl.h | 293 bool CanEncodeConstantAsImmediate(uint32_t value, Opcode opcode, SetCc set_cc = kCcDontCare);
|
D | code_generator_arm.cc | 5320 SetCc low_set_cc = kCcDontCare; in CanEncodeConstantAsImmediate() 5329 return CanEncodeConstantAsImmediate(High32Bits(value), opcode, kCcDontCare); in CanEncodeConstantAsImmediate() 5338 CanEncodeConstantAsImmediate(High32Bits(value), high_opcode, kCcDontCare); in CanEncodeConstantAsImmediate() 7771 if (__ ShifterOperandCanHold(out_high, first_high, ADC, value_high, kCcDontCare, &so)) { in GenerateAddLongConst() 7773 } else if (__ ShifterOperandCanHold(out_low, first_low, SBC, ~value_high, kCcDontCare, &so)) { in GenerateAddLongConst()
|
D | code_generator_arm_vixl.cc | 5328 SetCc low_set_cc = kCcDontCare; in CanEncodeConstantAsImmediate() 5337 return CanEncodeConstantAsImmediate(High32Bits(value), opcode, kCcDontCare); in CanEncodeConstantAsImmediate() 5346 CanEncodeConstantAsImmediate(High32Bits(value), high_opcode, kCcDontCare); in CanEncodeConstantAsImmediate() 7846 if (GetAssembler()->ShifterOperandCanHold(ADC, value_high, kCcDontCare)) { in GenerateAddLongConst() 7848 } else if (GetAssembler()->ShifterOperandCanHold(SBC, ~value_high, kCcDontCare)) { in GenerateAddLongConst()
|