[LLVMdev] InlineSpiller.cpp bug?

Jonas Paulsson jonas.paulsson at ericsson.com
Tue Nov 18 03:26:49 PST 2014


Hi,

I have encountered a test case where InlineSpiller generates bad code. A register is reloaded but never spilled, and I suspect a bug in InlineSpiller.

A register is live over a loop that also have two inner loops. It is not used or defined over the inner loops. It is split into two sibling registers, where one covers just the inner loops interval, which is then spilled.

In spill(), analyzeSiblingValues() is called, which calls traceSiblingValue(). It traces in several iterations strangely back to the same register (inside a loop), finds it marked to be spilled, and the spill is cancelled:

Inline spilling %vreg86 [1396r,2276r:0)  0 at 1396r
>From original %vreg76
Tracing value %vreg86:0 at 1396r
  %vreg86:0 at 1396r:      copy of %vreg87:6 at 1168r kill=1
  %vreg87:6 at 1168r:      copy of %vreg87:5 at 1120B kill=1
  %vreg87:5 at 1120B:     split phi value, checking 1 phi-defs, and 2 non-phi/orig defs
  %vreg87:7 at 2276r:      copy of %vreg86:0 at 1396r kill=1
  traced to:    spill %vreg86:0 at 1396r all-reloads kill deps[ 7 at 2276r ]
Merged spilled regs: SS#1 [1396r,2276r:0)  0 at x

I am guessing that traceSiblingValue() should have stopped at a PHI ValNo by recognizing it as 'original', meaning it was not inserted by splitting. It does not although it is clear that this PHI ValNo is part of OrigLI.

This is how it looked, roughly:

Original LiveInterval:
5                0                              ---  inner loops ---                                                // last valno in interval
PHI           COPY of valno 5

After splitting:
5               6                                                                     7                              8
PHI          COPY of valno 5                                           COPY of valno 0   PHI
                                                  0
                                                  COPY of valno 6
                 /\
            OrigVNI

Tracing sibling values, valno 6 is the original valno:
Valno 0 is a copy from 6.
Valno 6 is a copy from 5.
Valno 5 is a phi. Is it OrigVNI? NO! 'Therefore it is not an original phi.' WRONG! The search continues past it, assuming that it is a newly inserted PHI, done during splitting.

My conlusion is that either the line

if (VNI->def == OrigVNI->def)

is wrong, because it doesn't really check that VNI was not a phi in OrigLI, because it assumes that if VNI is a phi which was part of the original LI, then OrigVNI must be that PHI. This is not the case here.
The algorithm has iterated past OrigVNI and VNI is at this point a phi that was part of the original LI, which is the copy source of OrigVNI.

Or, it is assumed that splitting is always done at PHI ValNos somehow, and not as in this case, by a COPY of a PHI ValNo.

I would very much appreciate assistance in resolving this problem. As explained above, it is not clear to me why this error occurs, or what is the appropriate fix. I can provide more details if needed for some reason.

Best regards,

Jonas Paulsson

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20141118/fdcb78e9/attachment.html>


More information about the llvm-dev mailing list