HomeSort by: relevance | last modified time | path
    Searched defs:rotate_amount (Results 1 - 4 of 4) sorted by relevancy

  /src/external/gpl3/gcc.old/dist/gcc/config/h8300/
h8300.cc 4485 rtx rotate_amount = operands[2];
4488 if (h8sx_classify_shift (mode, ROTATE, rotate_amount) == H8SX_SHIFT_UNARY)
4494 if (GET_CODE (rotate_amount) != CONST_INT)
4502 emit_cmp_and_jump_insns (rotate_amount, const0_rtx, LE, NULL_RTX,
4506 emit_move_insn (counter, rotate_amount);
4542 emit_insn (gen_rotlqi3_1 (dst, dst, rotate_amount));
4545 emit_insn (gen_rotlhi3_1 (dst, dst, rotate_amount));
4548 emit_insn (gen_rotlsi3_1 (dst, dst, rotate_amount));
4564 rtx rotate_amount = operands[2];
4572 gcc_assert (GET_CODE (rotate_amount) == CONST_INT)
4471 rtx rotate_amount = operands[2]; local
4550 rtx rotate_amount = operands[2]; local
    [all...]
  /src/external/gpl3/gcc/dist/gcc/config/h8300/
h8300.cc 4490 rtx rotate_amount = operands[2];
4493 if (h8sx_classify_shift (mode, ROTATE, rotate_amount) == H8SX_SHIFT_UNARY)
4499 if (GET_CODE (rotate_amount) != CONST_INT)
4507 emit_cmp_and_jump_insns (rotate_amount, const0_rtx, LE, NULL_RTX,
4511 emit_move_insn (counter, rotate_amount);
4547 emit_insn (gen_rotlqi3_1 (dst, dst, rotate_amount));
4550 emit_insn (gen_rotlhi3_1 (dst, dst, rotate_amount));
4553 emit_insn (gen_rotlsi3_1 (dst, dst, rotate_amount));
4569 rtx rotate_amount = operands[2];
4577 gcc_assert (GET_CODE (rotate_amount) == CONST_INT)
4476 rtx rotate_amount = operands[2]; local
4555 rtx rotate_amount = operands[2]; local
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/
arm-tdep.c 1943 uint32_t rotate_amount = (imm & 0xf00) >> 7; local
1945 if (rotate_amount == 0)
1948 return ((unrotated_value >> rotate_amount)
1949 | (unrotated_value << (32 - rotate_amount)));
  /src/external/gpl3/gdb/dist/gdb/
arm-tdep.c 1943 uint32_t rotate_amount = (imm & 0xf00) >> 7; local
1945 if (rotate_amount == 0)
1948 return ((unrotated_value >> rotate_amount)
1949 | (unrotated_value << (32 - rotate_amount)));

Completed in 46 milliseconds