Searched refs:shifter_op (Results 1 – 3 of 3) sorted by relevance
/art/compiler/utils/arm/ |
D | assembler_thumb2.cc | 518 ShifterOperand* shifter_op) { in ShifterOperandCanHold() argument 519 shifter_op->type_ = ShifterOperand::kImmediate; in ShifterOperandCanHold() 520 shifter_op->immed_ = immediate; in ShifterOperandCanHold() 521 shifter_op->is_shift_ = false; in ShifterOperandCanHold() 522 shifter_op->is_rotate_ = false; in ShifterOperandCanHold() 3640 ShifterOperand shifter_op; in AddConstant() local 3641 if (ShifterOperandCanHold(rd, rn, ADD, value, set_cc, &shifter_op)) { in AddConstant() 3642 add(rd, rn, shifter_op, cond, set_cc); in AddConstant() 3643 } else if (ShifterOperandCanHold(rd, rn, SUB, -value, set_cc, &shifter_op)) { in AddConstant() 3644 sub(rd, rn, shifter_op, cond, set_cc); in AddConstant() [all …]
|
D | assembler_arm.h | 837 ShifterOperand* shifter_op) = 0; 842 ShifterOperand* shifter_op) { in ShifterOperandCanHold() argument 843 return ShifterOperandCanHold(rd, rn, opcode, immediate, kCcDontCare, shifter_op); in ShifterOperandCanHold()
|
D | assembler_thumb2.h | 361 ShifterOperand* shifter_op) OVERRIDE;
|