Home
last modified time | relevance | path

Searched refs:MAX_MOVE_BYTES (Results 1 – 8 of 8) sorted by relevance

/openbsd/src/gnu/usr.bin/gcc/gcc/config/m32r/
Dm32r.c2747 #define MAX_MOVE_BYTES 32 macro
2790 leftover = bytes % MAX_MOVE_BYTES;
2798 rtx at_a_time = GEN_INT (MAX_MOVE_BYTES);
2805 if (bytes > MAX_MOVE_BYTES)
2828 if (bytes > MAX_MOVE_BYTES)
2871 if (bytes < 1 || bytes > MAX_MOVE_BYTES)
2987 || INTVAL (op) > MAX_MOVE_BYTES
/openbsd/src/gnu/gcc/gcc/config/score/
Dscore-mdaux.c909 #define MAX_MOVE_BYTES (MAX_MOVE_REGS * UNITS_PER_WORD) macro
929 for (loop_mov_bytes = MAX_MOVE_BYTES; in mdx_block_move_loop()
983 if (INTVAL (length) <= 2 * MAX_MOVE_BYTES) in mdx_block_move()
/openbsd/src/gnu/gcc/gcc/config/m32r/
Dm32r.c2234 leftover = bytes % MAX_MOVE_BYTES; in m32r_expand_block_move()
2242 rtx at_a_time = GEN_INT (MAX_MOVE_BYTES); in m32r_expand_block_move()
2251 if (bytes > MAX_MOVE_BYTES) in m32r_expand_block_move()
2277 if (bytes > MAX_MOVE_BYTES) in m32r_expand_block_move()
2307 gcc_assert (bytes >= 1 && bytes <= MAX_MOVE_BYTES); in m32r_output_block_move()
Dpredicates.md398 ;; MAX_MOVE_BYTES.
404 || INTVAL (op) > MAX_MOVE_BYTES
Dm32r.h1613 #define MAX_MOVE_BYTES 32 macro
/openbsd/src/gnu/gcc/gcc/config/mips/
Dmips.c3555 #define MAX_MOVE_BYTES (MAX_MOVE_REGS * UNITS_PER_WORD) macro
3589 leftover = length % MAX_MOVE_BYTES; in mips_block_move_loop()
3593 mips_adjust_block_mem (src, MAX_MOVE_BYTES, &src_reg, &src); in mips_block_move_loop()
3594 mips_adjust_block_mem (dest, MAX_MOVE_BYTES, &dest_reg, &dest); in mips_block_move_loop()
3606 mips_block_move_straight (dest, src, MAX_MOVE_BYTES); in mips_block_move_loop()
3609 emit_move_insn (src_reg, plus_constant (src_reg, MAX_MOVE_BYTES)); in mips_block_move_loop()
3610 emit_move_insn (dest_reg, plus_constant (dest_reg, MAX_MOVE_BYTES)); in mips_block_move_loop()
3631 if (INTVAL (length) <= 2 * MAX_MOVE_BYTES) in mips_expand_block_move()
/openbsd/src/gnu/usr.bin/gcc/gcc/config/mips/
Dmips.c3659 #define MAX_MOVE_BYTES (MAX_MOVE_REGS * UNITS_PER_WORD) macro
3678 if (bytes < (unsigned)2 * MAX_MOVE_BYTES)
3681 leftover = bytes % MAX_MOVE_BYTES;
3711 bytes_rtx = GEN_INT (MAX_MOVE_BYTES);
3797 else if (constp && bytes <= (unsigned)2 * MAX_MOVE_BYTES
3801 else if (constp && bytes <= (unsigned)2 * MAX_MOVE_BYTES)
3820 int leftover = bytes % MAX_MOVE_BYTES;
/openbsd/src/gnu/usr.bin/gcc/gcc/
DChangeLog.113124 RTL is an integer constant, less than or equal to MAX_MOVE_BYTES.