diff options
author | Richard Sandiford <richard.sandiford@arm.com> | 2015-05-07 16:58:46 +0000 |
---|---|---|
committer | Richard Sandiford <rsandifo@gcc.gnu.org> | 2015-05-07 16:58:46 +0000 |
commit | f7df4a840c47845783129279750f1c214e74e7d1 (patch) | |
tree | d586b7005253121ffef57e4f1d75d48de1056334 /gcc/config/v850 | |
parent | d5449acf6b952794ecfacfbdbb8291f37dfd57d1 (diff) | |
download | gcc-f7df4a840c47845783129279750f1c214e74e7d1.zip gcc-f7df4a840c47845783129279750f1c214e74e7d1.tar.gz gcc-f7df4a840c47845783129279750f1c214e74e7d1.tar.bz2 |
rtl.h (always_void_p): New function.
gcc/
* rtl.h (always_void_p): New function.
* gengenrtl.c (always_void_p): Likewise.
(genmacro): Don't add a mode parameter to gen_rtx_foo if rtxes
with code foo are always VOIDmode.
* genemit.c (gen_exp): Update gen_rtx_foo calls accordingly.
* builtins.c, caller-save.c, calls.c, cfgexpand.c, combine.c,
compare-elim.c, config/aarch64/aarch64.c,
config/aarch64/aarch64.md, config/alpha/alpha.c,
config/alpha/alpha.md, config/arc/arc.c, config/arc/arc.md,
config/arm/arm-fixed.md, config/arm/arm.c, config/arm/arm.md,
config/arm/ldrdstrd.md, config/arm/thumb2.md, config/arm/vfp.md,
config/avr/avr.c, config/bfin/bfin.c, config/c6x/c6x.c,
config/c6x/c6x.md, config/cr16/cr16.c, config/cris/cris.c,
config/cris/cris.md, config/darwin.c, config/epiphany/epiphany.c,
config/epiphany/epiphany.md, config/fr30/fr30.c, config/frv/frv.c,
config/frv/frv.md, config/h8300/h8300.c, config/i386/i386.c,
config/i386/i386.md, config/i386/sse.md, config/ia64/ia64.c,
config/ia64/vect.md, config/iq2000/iq2000.c,
config/iq2000/iq2000.md, config/lm32/lm32.c, config/lm32/lm32.md,
config/m32c/m32c.c, config/m32r/m32r.c, config/m68k/m68k.c,
config/m68k/m68k.md, config/mcore/mcore.c, config/mcore/mcore.md,
config/mep/mep.c, config/microblaze/microblaze.c,
config/mips/mips.c, config/mips/mips.md, config/mmix/mmix.c,
config/mn10300/mn10300.c, config/msp430/msp430.c,
config/nds32/nds32-memory-manipulation.c, config/nds32/nds32.c,
config/nds32/nds32.md, config/nios2/nios2.c, config/nvptx/nvptx.c,
config/pa/pa.c, config/pa/pa.md, config/rl78/rl78.c,
config/rs6000/altivec.md, config/rs6000/rs6000.c,
config/rs6000/rs6000.md, config/rs6000/vector.md,
config/rs6000/vsx.md, config/rx/rx.c, config/rx/rx.md,
config/s390/s390.c, config/s390/s390.md, config/sh/sh.c,
config/sh/sh.md, config/sh/sh_treg_combine.cc,
config/sparc/sparc.c, config/sparc/sparc.md, config/spu/spu.c,
config/spu/spu.md, config/stormy16/stormy16.c,
config/tilegx/tilegx.c, config/tilegx/tilegx.md,
config/tilepro/tilepro.c, config/tilepro/tilepro.md,
config/v850/v850.c, config/v850/v850.md, config/vax/vax.c,
config/visium/visium.c, config/xtensa/xtensa.c, cprop.c, dse.c,
expr.c, gcse.c, ifcvt.c, ira.c, jump.c, lower-subreg.c,
lra-constraints.c, lra-eliminations.c, lra.c, postreload.c, ree.c,
reg-stack.c, reload.c, reload1.c, reorg.c, sel-sched.c,
var-tracking.c: Update calls accordingly.
From-SVN: r222883
Diffstat (limited to 'gcc/config/v850')
-rw-r--r-- | gcc/config/v850/v850.c | 27 | ||||
-rw-r--r-- | gcc/config/v850/v850.md | 13 |
2 files changed, 18 insertions, 22 deletions
diff --git a/gcc/config/v850/v850.c b/gcc/config/v850/v850.c index f9cc3ef..58f6601 100644 --- a/gcc/config/v850/v850.c +++ b/gcc/config/v850/v850.c @@ -928,7 +928,7 @@ output_move_single (rtx * operands) return "%S0st%W0 %.,%0"; } - fatal_insn ("output_move_single:", gen_rtx_SET (VOIDmode, dst, src)); + fatal_insn ("output_move_single:", gen_rtx_SET (dst, src)); return ""; } @@ -1034,7 +1034,7 @@ v850_gen_compare (enum rtx_code cond, machine_mode mode, rtx op0, rtx op1) rtx cc_reg; mode = v850_gen_float_compare (cond, mode, op0, op1); cc_reg = gen_rtx_REG (mode, CC_REGNUM); - emit_insn (gen_rtx_SET(mode, cc_reg, gen_rtx_REG (mode, FCC_REGNUM))); + emit_insn (gen_rtx_SET (cc_reg, gen_rtx_REG (mode, FCC_REGNUM))); return gen_rtx_fmt_ee (cond, mode, cc_reg, const0_rtx); } @@ -1240,10 +1240,10 @@ Saved %d bytes (%d uses of register %s) in function %s, starting as insn %d, end && SET_SRC (PATTERN (insn)) == *p_r1) delete_insn (insn); else - emit_insn_before (gen_rtx_SET (Pmode, *p_r1, *p_ep), first_insn); + emit_insn_before (gen_rtx_SET (*p_r1, *p_ep), first_insn); - emit_insn_before (gen_rtx_SET (Pmode, *p_ep, reg), first_insn); - emit_insn_before (gen_rtx_SET (Pmode, *p_ep, *p_r1), last_insn); + emit_insn_before (gen_rtx_SET (*p_ep, reg), first_insn); + emit_insn_before (gen_rtx_SET (*p_ep, *p_r1), last_insn); } @@ -1745,8 +1745,7 @@ expand_prologue (void) + (TARGET_DISABLE_CALLT ? (TARGET_LONG_CALLS ? 2 : 1) : 0))); XVECEXP (save_all, 0, 0) - = gen_rtx_SET (VOIDmode, - stack_pointer_rtx, + = gen_rtx_SET (stack_pointer_rtx, gen_rtx_PLUS (Pmode, stack_pointer_rtx, GEN_INT(-alloc_stack))); @@ -1754,8 +1753,7 @@ expand_prologue (void) { offset -= 4; XVECEXP (save_all, 0, i+1) - = gen_rtx_SET (VOIDmode, - gen_rtx_MEM (Pmode, + = gen_rtx_SET (gen_rtx_MEM (Pmode, gen_rtx_PLUS (Pmode, stack_pointer_rtx, GEN_INT(offset))), @@ -1903,17 +1901,16 @@ expand_epilogue (void) rtvec_alloc (num_restore + 2)); XVECEXP (restore_all, 0, 0) = ret_rtx; XVECEXP (restore_all, 0, 1) - = gen_rtx_SET (VOIDmode, stack_pointer_rtx, - gen_rtx_PLUS (Pmode, - stack_pointer_rtx, - GEN_INT (alloc_stack))); + = gen_rtx_SET (stack_pointer_rtx, + gen_rtx_PLUS (Pmode, + stack_pointer_rtx, + GEN_INT (alloc_stack))); offset = alloc_stack - 4; for (i = 0; i < num_restore; i++) { XVECEXP (restore_all, 0, i+2) - = gen_rtx_SET (VOIDmode, - restore_regs[i], + = gen_rtx_SET (restore_regs[i], gen_rtx_MEM (Pmode, gen_rtx_PLUS (Pmode, stack_pointer_rtx, diff --git a/gcc/config/v850/v850.md b/gcc/config/v850/v850.md index 1ed76d1..7f2c5bb 100644 --- a/gcc/config/v850/v850.md +++ b/gcc/config/v850/v850.md @@ -318,9 +318,8 @@ else temp = gen_reg_rtx (SImode); - emit_insn (gen_rtx_SET (SImode, temp, - gen_rtx_HIGH (SImode, operand1))); - emit_insn (gen_rtx_SET (SImode, operand0, + emit_insn (gen_rtx_SET (temp, gen_rtx_HIGH (SImode, operand1))); + emit_insn (gen_rtx_SET (operand0, gen_rtx_LO_SUM (SImode, temp, operand1))); DONE; } @@ -468,11 +467,11 @@ mode = v850_gen_float_compare (cond, VOIDmode, v850_compare_op0, v850_compare_op1); fcc_reg = gen_rtx_REG (mode, FCC_REGNUM); cc_reg = gen_rtx_REG (mode, CC_REGNUM); - emit_insn(gen_rtx_SET (mode, cc_reg, fcc_reg)); + emit_insn (gen_rtx_SET (cc_reg, fcc_reg)); tmp = gen_rtx_fmt_ee (cond, mode, cc_reg, const0_rtx); tmp = gen_rtx_IF_THEN_ELSE (VOIDmode, tmp, gen_rtx_LABEL_REF (VOIDmode, operands[3]), pc_rtx); - emit_jump_insn (gen_rtx_SET (VOIDmode, pc_rtx, tmp)); + emit_jump_insn (gen_rtx_SET (pc_rtx, tmp)); DONE; }) @@ -522,11 +521,11 @@ mode = v850_gen_float_compare (cond, VOIDmode, v850_compare_op0, v850_compare_op1); fcc_reg = gen_rtx_REG (mode, FCC_REGNUM); cc_reg = gen_rtx_REG (mode, CC_REGNUM); - emit_insn(gen_rtx_SET (mode, cc_reg, fcc_reg)); + emit_insn (gen_rtx_SET (cc_reg, fcc_reg)); tmp = gen_rtx_fmt_ee (cond, mode, cc_reg, const0_rtx); tmp = gen_rtx_IF_THEN_ELSE (VOIDmode, tmp, gen_rtx_LABEL_REF (VOIDmode, operands[3]), pc_rtx); - emit_jump_insn (gen_rtx_SET (VOIDmode, pc_rtx, tmp)); + emit_jump_insn (gen_rtx_SET (pc_rtx, tmp)); DONE; }) |