[LLVMdev] Force register allocator to spill all variables of a basic block

Andrew Trick atrick at apple.com
Wed May 21 18:53:21 PDT 2014


On May 21, 2014, at 1:42 PM, Ronaldo Ferreira <ronaldorferreira at gmail.com> wrote:

> Hi Andy and list,
> 
> Just to give you a follow up, I was implementing a transformation pass just as you recommended at the time I sent the email to the list, but at that time I was worried that the code generator would change the order of the instructions created in the LLVM-IR. Indeed, that was the case.
> 
> Some instructions after ISel were added between the volatile store instructions (which is perfectly OK). To solve this, I created a Machine Function pass that runs right after ISel and just before RA, reordering the insts added by ISel. After that, the RA correctly fixes any register reference in the generated code.

Weird. Is selection DAG scheduler changing the order of the SD nodes? (-debug-only=pre-RA-sched). You can "turn it off" with -pre-RA-sched=source. It’s off by default on trunk for x86.

> The only problem with this approach is that some SSA and Late machine optimizations break the ordering I need. Thus, I am not able to use them yet. However, I am pretty happy with the results so far.

If those loads/store are really volatile, I don’t think they will be reordered with any memory ops or calls. Non-memory instructions may be inserted between them though.

You were also right in your initial analysis that the register allocator is free to put things in registers across blocks, which could happen if the machine optimization passes moved non-memory operations across blocks. I think you either have to disable any machine code pass that does code motion, or force the register allocator to spill across blocks.

-Andy

> Thank you!
> ronaldo
> 
> 
> 2014-04-14 20:36 GMT+02:00 Andrew Trick <atrick at apple.com>:
> 
> On Apr 10, 2014, at 1:37 PM, Ronaldo Ferreira <ronaldorferreira at gmail.com> wrote:
> 
> > Hi,
> >
> > I need to force all variables of a basic block to spill, i.e., I can't allow basic blocks to share registers. I would like to know where is the most appropriate approach to implement that policy in LLVM.
> >
> > Looking at the LLVM source, it seems that the register allocator is the best choice because it controls the spilling, but I need to guarantee that this policy is not violated by post RA passes.
> >
> > To illustrate the policy, let us suppose two BBs A and B:
> >
> > BB A:
> >     a = x + y
> >
> > BB B:
> >     b = a * x
> >
> > In a pseudo machine code, I need to generate this:
> >
> > BB A:
> >     load x;
> >     load y;
> >     add a, x, y
> >     store a
> >
> > BB B:
> >     load a;
> >     load x;
> >     mul b, a, x;
> >     store b;
> >
> >
> > Any help is much appreciated!
> 
> My first thought is to add an IR pass that generates volatile loads and stores for live-in/out values. There may be more clever ways of doing this though.
> -Andy
> 
> >
> > Thanks,
> > Ronaldo
> > _______________________________________________
> > LLVM Developers mailing list
> > LLVMdev at cs.uiuc.edu         http://llvm.cs.uiuc.edu
> > http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev
> 
> 

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


More information about the llvm-dev mailing list