aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/ChangeLog.arm9
-rw-r--r--gcc/lra-constraints.c6
2 files changed, 15 insertions, 0 deletions
diff --git a/gcc/ChangeLog.arm b/gcc/ChangeLog.arm
index ba34cc3ae3e..de2cdf4b169 100644
--- a/gcc/ChangeLog.arm
+++ b/gcc/ChangeLog.arm
@@ -1,6 +1,15 @@
2016-06-13 Andre Vieira <andre.simoesdiasvieira@arm.com>
Backport from Mainline
+ 2015-09-25 Vladimir Makarov <vmakarov@redhat.com>
+
+ PR target/61578
+ * lra-constarints.c (match_reload): Check presence of the input pseudo
+ in the output pseudo.
+
+2016-06-13 Andre Vieira <andre.simoesdiasvieira@arm.com>
+
+ Backport from Mainline
2015-09-01 Vladimir Makarov <vmakarov@redhat.com>
PR target/61578
diff --git a/gcc/lra-constraints.c b/gcc/lra-constraints.c
index b30f0c7c860..92e49dee0bd 100644
--- a/gcc/lra-constraints.c
+++ b/gcc/lra-constraints.c
@@ -957,6 +957,12 @@ match_reload (signed char out, signed char *ins, enum reg_class goal_class,
= (ins[1] < 0 && REG_P (in_rtx)
&& (int) REGNO (in_rtx) < lra_new_regno_start
&& find_regno_note (curr_insn, REG_DEAD, REGNO (in_rtx))
+ /* We can not use the same value if the pseudo is mentioned
+ in the output, e.g. as an address part in memory,
+ becuase output reload will actually extend the pseudo
+ liveness. We don't care about eliminable hard regs here
+ as we are interesting only in pseudos. */
+ && (out < 0 || regno_use_in (REGNO (in_rtx), out_rtx) == NULL_RTX)
? lra_create_new_reg (inmode, in_rtx, goal_class, "")
: lra_create_new_reg_with_unique_value (outmode, out_rtx,
goal_class, ""));