summaryrefslogtreecommitdiff
path: root/gcc/config/arm/ldrdstrd.md
diff options
context:
space:
mode:
authorrsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4>2015-05-07 16:58:46 +0000
committerrsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4>2015-05-07 16:58:46 +0000
commitd1f9b275e42cf5c753e9f05789d89cc132726607 (patch)
treed586b7005253121ffef57e4f1d75d48de1056334 /gcc/config/arm/ldrdstrd.md
parent3dd2833b51262c109ebc4b6f3f93973c286cd7cd (diff)
downloadgcc-d1f9b275e42cf5c753e9f05789d89cc132726607.tar.gz
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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@222883 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/arm/ldrdstrd.md')
-rw-r--r--gcc/config/arm/ldrdstrd.md40
1 files changed, 20 insertions, 20 deletions
diff --git a/gcc/config/arm/ldrdstrd.md b/gcc/config/arm/ldrdstrd.md
index 3713c4d8ff2..ce0ab114ffd 100644
--- a/gcc/config/arm/ldrdstrd.md
+++ b/gcc/config/arm/ldrdstrd.md
@@ -43,7 +43,7 @@
operands[0] = gen_rtx_REG (DImode, REGNO (operands[0]));
operands[2] = adjust_address (operands[2], DImode, 0);
/* Emit [(set (match_dup 0) (match_dup 2))] */
- emit_insn (gen_rtx_SET (VOIDmode, operands[0], operands[2]));
+ emit_insn (gen_rtx_SET (operands[0], operands[2]));
DONE;
}
else if (TARGET_THUMB2)
@@ -51,8 +51,8 @@
/* Emit the pattern:
[(parallel [(set (match_dup 0) (match_dup 2))
(set (match_dup 1) (match_dup 3))])] */
- rtx t1 = gen_rtx_SET (VOIDmode, operands[0], operands[2]);
- rtx t2 = gen_rtx_SET (VOIDmode, operands[1], operands[3]);
+ rtx t1 = gen_rtx_SET (operands[0], operands[2]);
+ rtx t2 = gen_rtx_SET (operands[1], operands[3]);
emit_insn (gen_rtx_PARALLEL (VOIDmode, gen_rtvec (2, t1, t2)));
DONE;
}
@@ -77,7 +77,7 @@
operands[0] = gen_rtx_REG (DImode, REGNO (operands[0]));
operands[2] = adjust_address (operands[2], DImode, 0);
/* Emit [(set (match_dup 2) (match_dup 0))] */
- emit_insn (gen_rtx_SET (VOIDmode, operands[2], operands[0]));
+ emit_insn (gen_rtx_SET (operands[2], operands[0]));
DONE;
}
else if (TARGET_THUMB2)
@@ -85,8 +85,8 @@
/* Emit the pattern:
[(parallel [(set (match_dup 2) (match_dup 0))
(set (match_dup 3) (match_dup 1))])] */
- rtx t1 = gen_rtx_SET (VOIDmode, operands[2], operands[0]);
- rtx t2 = gen_rtx_SET (VOIDmode, operands[3], operands[1]);
+ rtx t1 = gen_rtx_SET (operands[2], operands[0]);
+ rtx t2 = gen_rtx_SET (operands[3], operands[1]);
emit_insn (gen_rtx_PARALLEL (VOIDmode, gen_rtvec (2, t1, t2)));
DONE;
}
@@ -117,9 +117,9 @@
[(set (match_dup 0) (match_dup 4))
(set (match_dup 1) (match_dup 5))
(set (match_dup 2) tmp)] */
- emit_insn (gen_rtx_SET (VOIDmode, operands[0], operands[4]));
- emit_insn (gen_rtx_SET (VOIDmode, operands[1], operands[5]));
- emit_insn (gen_rtx_SET (VOIDmode, operands[2], tmp));
+ emit_insn (gen_rtx_SET (operands[0], operands[4]));
+ emit_insn (gen_rtx_SET (operands[1], operands[5]));
+ emit_insn (gen_rtx_SET (operands[2], tmp));
DONE;
}
else if (TARGET_THUMB2)
@@ -129,10 +129,10 @@
(set (match_dup 1) (match_dup 5))
(parallel [(set (match_dup 2) (match_dup 0))
(set (match_dup 3) (match_dup 1))])] */
- emit_insn (gen_rtx_SET (VOIDmode, operands[0], operands[4]));
- emit_insn (gen_rtx_SET (VOIDmode, operands[1], operands[5]));
- rtx t1 = gen_rtx_SET (VOIDmode, operands[2], operands[0]);
- rtx t2 = gen_rtx_SET (VOIDmode, operands[3], operands[1]);
+ emit_insn (gen_rtx_SET (operands[0], operands[4]));
+ emit_insn (gen_rtx_SET (operands[1], operands[5]));
+ rtx t1 = gen_rtx_SET (operands[2], operands[0]);
+ rtx t2 = gen_rtx_SET (operands[3], operands[1]);
emit_insn (gen_rtx_PARALLEL (VOIDmode, gen_rtvec (2, t1, t2)));
DONE;
}
@@ -162,9 +162,9 @@
[(set (match_dup 0) (match_dup 4))
(set (match_dup 1) (match_dup 5))
(set (match_dup 2) tmp)] */
- emit_insn (gen_rtx_SET (VOIDmode, operands[0], operands[4]));
- emit_insn (gen_rtx_SET (VOIDmode, operands[1], operands[5]));
- emit_insn (gen_rtx_SET (VOIDmode, operands[2], tmp));
+ emit_insn (gen_rtx_SET (operands[0], operands[4]));
+ emit_insn (gen_rtx_SET (operands[1], operands[5]));
+ emit_insn (gen_rtx_SET (operands[2], tmp));
DONE;
}
else if (TARGET_THUMB2)
@@ -174,10 +174,10 @@
(set (match_dup 1) (match_dup 5))
(parallel [(set (match_dup 2) (match_dup 0))
(set (match_dup 3) (match_dup 1))])] */
- emit_insn (gen_rtx_SET (VOIDmode, operands[0], operands[4]));
- emit_insn (gen_rtx_SET (VOIDmode, operands[1], operands[5]));
- rtx t1 = gen_rtx_SET (VOIDmode, operands[2], operands[0]);
- rtx t2 = gen_rtx_SET (VOIDmode, operands[3], operands[1]);
+ emit_insn (gen_rtx_SET (operands[0], operands[4]));
+ emit_insn (gen_rtx_SET (operands[1], operands[5]));
+ rtx t1 = gen_rtx_SET (operands[2], operands[0]);
+ rtx t2 = gen_rtx_SET (operands[3], operands[1]);
emit_insn (gen_rtx_PARALLEL (VOIDmode, gen_rtvec (2, t1, t2)));
DONE;
}