From df92ec17b2b5fe43de7b6cce0509676aa1a137d0 Mon Sep 17 00:00:00 2001 From: Andre Vieira Date: Mon, 13 Jun 2016 10:03:30 +0000 Subject: Backport from Mainline 2015-09-25 Vladimir Makarov PR target/61578 * lra-constarints.c (match_reload): Check presence of the input pseudo in the output pseudo. git-svn-id: https://gcc.gnu.org/svn/gcc/branches/ARM/embedded-5-branch@237371 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/ChangeLog.arm | 9 +++++++++ gcc/lra-constraints.c | 6 ++++++ 2 files changed, 15 insertions(+) diff --git a/gcc/ChangeLog.arm b/gcc/ChangeLog.arm index ba34cc3ae3e..de2cdf4b169 100644 --- a/gcc/ChangeLog.arm +++ b/gcc/ChangeLog.arm @@ -1,3 +1,12 @@ +2016-06-13 Andre Vieira + + Backport from Mainline + 2015-09-25 Vladimir Makarov + + PR target/61578 + * lra-constarints.c (match_reload): Check presence of the input pseudo + in the output pseudo. + 2016-06-13 Andre Vieira Backport from Mainline 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, "")); -- cgit v1.2.3