Searched refs:shifter_operand (Results 1 – 2 of 2) sorted by relevance
2334 int32_t shifter_operand = 0; in DecodeType01() local2337 shifter_operand = GetShiftRm(instr, &shifter_carry_out); in DecodeType01()2340 shifter_operand = GetImm(instr, &shifter_carry_out); in DecodeType01()2348 alu_out = rn_val & shifter_operand; in DecodeType01()2360 alu_out = rn_val ^ shifter_operand; in DecodeType01()2372 alu_out = rn_val - shifter_operand; in DecodeType01()2376 SetCFlag(!BorrowFrom(rn_val, shifter_operand)); in DecodeType01()2377 SetVFlag(OverflowFrom(alu_out, rn_val, shifter_operand, false)); in DecodeType01()2385 alu_out = shifter_operand - rn_val; in DecodeType01()2389 SetCFlag(!BorrowFrom(shifter_operand, rn_val)); in DecodeType01()[all …]
530 // shifter_operand operands: so_reg_reg, so_reg_imm, and mod_imm.