Lines Matching refs:rotate_amount
4848 rtx rotate_amount = operands[2]; in expand_a_rotate() local
4851 if (h8sx_classify_shift (mode, ROTATE, rotate_amount) == H8SX_SHIFT_UNARY) in expand_a_rotate()
4857 if (GET_CODE (rotate_amount) != CONST_INT) in expand_a_rotate()
4865 emit_cmp_and_jump_insns (rotate_amount, const0_rtx, LE, NULL_RTX, in expand_a_rotate()
4869 emit_move_insn (counter, rotate_amount); in expand_a_rotate()
4905 emit_insn (gen_rotlqi3_1 (dst, dst, rotate_amount)); in expand_a_rotate()
4908 emit_insn (gen_rotlhi3_1 (dst, dst, rotate_amount)); in expand_a_rotate()
4911 emit_insn (gen_rotlsi3_1 (dst, dst, rotate_amount)); in expand_a_rotate()
4927 rtx rotate_amount = operands[2]; in output_a_rotate() local
4935 gcc_assert (GET_CODE (rotate_amount) == CONST_INT); in output_a_rotate()
4964 amount = INTVAL (rotate_amount); in output_a_rotate()