Searched defs:shifter_op (Results 1 - 3 of 3) sorted by relevance

/art/compiler/utils/arm/
H A Dassembler_arm.h883 // `shifter_op` contains the operand.
889 ShifterOperand* shifter_op) = 0;
894 ShifterOperand* shifter_op) {
895 return ShifterOperandCanHold(rd, rn, opcode, immediate, kCcDontCare, shifter_op);
890 ShifterOperandCanHold(Register rd, Register rn, Opcode opcode, uint32_t immediate, ShifterOperand* shifter_op) argument
H A Dassembler_arm32.cc28 bool Arm32Assembler::ShifterOperandCanHoldArm32(uint32_t immediate, ShifterOperand* shifter_op) { argument
31 shifter_op->type_ = ShifterOperand::kImmediate;
32 shifter_op->is_rotate_ = true;
33 shifter_op->rotate_ = 0;
34 shifter_op->immed_ = immediate;
41 shifter_op->type_ = ShifterOperand::kImmediate;
42 shifter_op->is_rotate_ = true;
43 shifter_op->rotate_ = rot;
44 shifter_op->immed_ = imm8;
52 ShifterOperand shifter_op; local
56 ShifterOperandCanHold(Register rd ATTRIBUTE_UNUSED, Register rn ATTRIBUTE_UNUSED, Opcode opcode ATTRIBUTE_UNUSED, uint32_t immediate, SetCc set_cc ATTRIBUTE_UNUSED, ShifterOperand* shifter_op) argument
1409 ShifterOperand shifter_op; local
1434 ShifterOperand shifter_op; local
1450 ShifterOperand shifter_op; local
[all...]
H A Dassembler_thumb2.cc518 ShifterOperand* shifter_op) {
519 shifter_op->type_ = ShifterOperand::kImmediate;
520 shifter_op->immed_ = immediate;
521 shifter_op->is_shift_ = false;
522 shifter_op->is_rotate_ = false;
3503 ShifterOperand shifter_op; local
3504 if (ShifterOperandCanHold(rd, rn, ADD, value, set_cc, &shifter_op)) {
3505 add(rd, rn, shifter_op, cond, set_cc);
3506 } else if (ShifterOperandCanHold(rd, rn, SUB, -value, set_cc, &shifter_op)) {
3507 sub(rd, rn, shifter_op, con
513 ShifterOperandCanHold(Register rd ATTRIBUTE_UNUSED, Register rn ATTRIBUTE_UNUSED, Opcode opcode, uint32_t immediate, SetCc set_cc, ShifterOperand* shifter_op) argument
3535 ShifterOperand shifter_op; local
3563 ShifterOperand shifter_op; local
[all...]

Completed in 242 milliseconds