Searched refs:shifter_operand (Results 1 – 2 of 2) sorted by relevance
/external/v8/src/arm/ |
D | simulator-arm.cc | 2259 int32_t shifter_operand = 0; in DecodeType01() local 2262 shifter_operand = GetShiftRm(instr, &shifter_carry_out); in DecodeType01() 2265 shifter_operand = GetImm(instr, &shifter_carry_out); in DecodeType01() 2273 alu_out = rn_val & shifter_operand; in DecodeType01() 2285 alu_out = rn_val ^ shifter_operand; in DecodeType01() 2297 alu_out = rn_val - shifter_operand; in DecodeType01() 2301 SetCFlag(!BorrowFrom(rn_val, shifter_operand)); in DecodeType01() 2302 SetVFlag(OverflowFrom(alu_out, rn_val, shifter_operand, false)); in DecodeType01() 2310 alu_out = shifter_operand - rn_val; in DecodeType01() 2314 SetCFlag(!BorrowFrom(shifter_operand, rn_val)); in DecodeType01() [all …]
|
/external/llvm/lib/Target/ARM/ |
D | ARMInstrInfo.td | 481 // shifter_operand operands: so_reg_reg, so_reg_imm, and so_imm. 527 // so_imm - Match a 32-bit shifter_operand immediate operand, which is an
|