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

/art/compiler/utils/arm/
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;
55 ShifterOperand* shifter_op) {
51 ShifterOperandCanHold(Register rd ATTRIBUTE_UNUSED, Register rn ATTRIBUTE_UNUSED, Opcode opcode ATTRIBUTE_UNUSED, uint32_t immediate, ShifterOperand* shifter_op) argument
1366 ShifterOperand shifter_op; local
1393 ShifterOperand shifter_op; local
1418 ShifterOperand shifter_op; local
[all...]
H A Dassembler_thumb2.cc32 ShifterOperand* shifter_op) {
33 shifter_op->type_ = ShifterOperand::kImmediate;
34 shifter_op->immed_ = immediate;
35 shifter_op->is_shift_ = false;
36 shifter_op->is_rotate_ = false;
2471 ShifterOperand shifter_op; local
2472 if (ShifterOperandCanHold(rd, rn, ADD, value, &shifter_op)) {
2473 add(rd, rn, shifter_op, cond);
2474 } else if (ShifterOperandCanHold(rd, rn, SUB, -value, &shifter_op)) {
2475 sub(rd, rn, shifter_op, con
28 ShifterOperandCanHold(Register rd ATTRIBUTE_UNUSED, Register rn ATTRIBUTE_UNUSED, Opcode opcode, uint32_t immediate, ShifterOperand* shifter_op) argument
2498 ShifterOperand shifter_op; local
2524 ShifterOperand shifter_op; local
[all...]

Completed in 60 milliseconds