Fix overly pessimistic shortcut in post-RA MachineLICM
authorRichard Sandiford <rsandifo@linux.vnet.ibm.com>
Tue, 20 Aug 2013 09:11:13 +0000 (09:11 +0000)
committerRichard Sandiford <rsandifo@linux.vnet.ibm.com>
Tue, 20 Aug 2013 09:11:13 +0000 (09:11 +0000)
commit9608ed1311ca15fc43ee09dabea97d12f32485a4
treea7210d8329350c7251f6be1c884a8b3f0add6a9f
parent32c2bfda77d54ca6ad8e08d2de03daa7ae432305
Fix overly pessimistic shortcut in post-RA MachineLICM

Post-RA LICM keeps three sets of registers: PhysRegDefs, PhysRegClobbers
and TermRegs.  When it sees a definition of R it adds all aliases of R
to the corresponding set, so that when it needs to test for membership
it only needs to test a single register, rather than worrying about
aliases there too.  E.g. the final candidate loop just has:

    unsigned Def = Candidates[i].Def;
    if (!PhysRegClobbers.test(Def) && ...) {

to test whether register Def is multiply defined.

However, there was also a shortcut in ProcessMI to make sure we didn't
add candidates if we already knew that they would fail the final test.
This shortcut was more pessimistic than the final one because it
checked whether _any alias_ of the defined register was multiply defined.
This is too conservative for targets that define register pairs.
E.g. on z, R0 and R1 are sometimes used as a pair, so there is a
128-bit register that aliases both R0 and R1.  If a loop used
R0 and R1 independently, and the definition of R0 came first,
we would be able to hoist the R0 assignment (because that used
the final test quoted above) but not the R1 assignment (because
that meant we had two definitions of the paired R0/R1 register
and would fail the shortcut in ProcessMI).

This patch just uses the same check for the ProcessMI shortcut as
we use in the final candidate loop.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@188774 91177308-0d34-0410-b5e6-96231b3b80d8
lib/CodeGen/MachineLICM.cpp
test/CodeGen/SystemZ/asm-17.ll