Searched refs:shifter_op (Results 1 – 5 of 5) sorted by relevance
/art/compiler/utils/arm/ |
D | assembler_arm32.cc | 28 bool Arm32Assembler::ShifterOperandCanHoldArm32(uint32_t immediate, ShifterOperand* shifter_op) { in ShifterOperandCanHoldArm32() argument 31 shifter_op->type_ = ShifterOperand::kImmediate; in ShifterOperandCanHoldArm32() 32 shifter_op->is_rotate_ = true; in ShifterOperandCanHoldArm32() 33 shifter_op->rotate_ = 0; in ShifterOperandCanHoldArm32() 34 shifter_op->immed_ = immediate; in ShifterOperandCanHoldArm32() 41 shifter_op->type_ = ShifterOperand::kImmediate; in ShifterOperandCanHoldArm32() 42 shifter_op->is_rotate_ = true; in ShifterOperandCanHoldArm32() 43 shifter_op->rotate_ = rot; in ShifterOperandCanHoldArm32() 44 shifter_op->immed_ = imm8; in ShifterOperandCanHoldArm32() 55 ShifterOperand* shifter_op) { in ShifterOperandCanHold() argument [all …]
|
D | assembler_thumb2.cc | 32 ShifterOperand* shifter_op) { in ShifterOperandCanHold() argument 33 shifter_op->type_ = ShifterOperand::kImmediate; in ShifterOperandCanHold() 34 shifter_op->immed_ = immediate; in ShifterOperandCanHold() 35 shifter_op->is_shift_ = false; in ShifterOperandCanHold() 36 shifter_op->is_rotate_ = false; in ShifterOperandCanHold() 2471 ShifterOperand shifter_op; in AddConstant() local 2472 if (ShifterOperandCanHold(rd, rn, ADD, value, &shifter_op)) { in AddConstant() 2473 add(rd, rn, shifter_op, cond); in AddConstant() 2474 } else if (ShifterOperandCanHold(rd, rn, SUB, -value, &shifter_op)) { in AddConstant() 2475 sub(rd, rn, shifter_op, cond); in AddConstant() [all …]
|
D | assembler_arm32.h | 281 ShifterOperand* shifter_op) OVERRIDE; 369 bool ShifterOperandCanHoldArm32(uint32_t immediate, ShifterOperand* shifter_op);
|
D | assembler_thumb2.h | 320 ShifterOperand* shifter_op) OVERRIDE;
|
D | assembler_arm.h | 648 ShifterOperand* shifter_op) = 0;
|