Fix LRA bug
authorAndrew Stubbs <ams@codesourcery.com>
Fri, 14 Dec 2018 11:49:28 +0000 (11:49 +0000)
committerAndrew Stubbs <ams@gcc.gnu.org>
Fri, 14 Dec 2018 11:49:28 +0000 (11:49 +0000)
commitf961ec70ee07768f87e9e2ce2b3cac4160fd065e
tree126a1387fed88b90136c7fc4ca7555804788d726
parent65e0a92b2353927e50a26a3a0628a36aebc85b40
Fix LRA bug

This patch fixes an ICE building libgfortran/random.c.

The problem was an adddi3 instruction that had an eliminable frame pointer.
GCN adddi3 includes a match_scratch, which LRA substitutes with a REG, and
checks if it can be converted back to a scratch afterwards.  In the meantime,
the add was converted to a move, meaning that the instruction pattern
completely changed, thus causing a segfault when the instruction is revisited
in restore_scratches.

2018-12-14  Andrew Stubbs  <ams@codesourcery.com>

gcc/
* gcc/lra-int.h (lra_register_new_scratch_op): Add third parameter.
* gcc/lra-remat.c (update_scratch_ops): Pass icode to
lra_register_new_scratch_op.
* gcc/lra.c (struct sloc): Add icode field.
(lra_register_new_scratch_op): Add icode parameter.
Use icode to skip insns that have changed beyond recognition.

From-SVN: r267132
gcc/ChangeLog
gcc/lra-int.h
gcc/lra-remat.c
gcc/lra.c