Ronaldo Ferreira
2014-Apr-10 20:37 UTC
[LLVMdev] Force register allocator to spill all variables of a basic block
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! Thanks, Ronaldo -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20140410/ac8772d3/attachment.html>
Andrew Trick
2014-Apr-14 18:36 UTC
[LLVMdev] Force register allocator to spill all variables of a basic block
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
Ronaldo Ferreira
2014-May-21 20:42 UTC
[LLVMdev] Force register allocator to spill all variables of a basic block
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. 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. 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/baf3fd48/attachment.html>
Seemingly Similar Threads
- [LLVMdev] Force register allocator to spill all variables of a basic block
- [LLVMdev] Compiling MiBench to MIPS
- Tweaking the Register Allocator's spill placement
- [LLVMdev] Question about post RA scheduler
- Is it possible to avoid inserting spill/split code in certain instruction sequence in RA?