combine: Fix bug in giving up placing REG_DEAD notes (PR82683)
authorSegher Boessenkool <segher@kernel.crashing.org>
Wed, 1 Nov 2017 16:40:42 +0000 (17:40 +0100)
committerSegher Boessenkool <segher@gcc.gnu.org>
Wed, 1 Nov 2017 16:40:42 +0000 (17:40 +0100)
commit0469527c52517c543890bb6ec4d82e279c390004
treeed4b461c1722bd9a12494bc5c1ad769ae22d20f6
parentce12115844ef8f66a28205d1f1e81ea0ccc946b1
combine: Fix bug in giving up placing REG_DEAD notes (PR82683)

When we have a REG_DEAD note for a reg that is set in the new I2, we
drop the note on the floor (we cannot find whether to place it on I2
or on I3).  But the code I added to do this has a bug and does not
always actually drop it.  This patch fixes it.

But that on its own is too pessimistic, it turns out, and we generate
worse code.  One case where we do know where to place the note is if
it came from I3 (it should go to I3 again).  Doing this fixes all of
the regressions.

PR rtl-optimization/64682
PR rtl-optimization/69567
PR rtl-optimization/69737
PR rtl-optimization/82683
* combine.c (distribute_notes) <REG_DEAD>: If the new I2 sets the same
register mentioned in the note, drop the note, unless it came from I3,
in which case it should go to I3 again.

From-SVN: r254315
gcc/ChangeLog
gcc/combine.c