Sanjiv Gupta
2010-Feb-10 16:57 UTC
[LLVMdev] adding switches to llvm-ld to disable certain optimizations.
Chris Lattner wrote:> On Feb 9, 2010, at 7:39 PM, Sanjiv Gupta wrote: > > >> Hi, >> I need to add switches like -disable-mem2reg, disable-gvn to llvm-ld. >> Currently CreateStandardLTOPasses takes in only DisableInternalize and >> DisableInliner switches. >> >> Is modifying this API okay for these new switches, or is it doable in >> some other ways ? >> > > Why do you want this? > > -Chris >Mem2Reg isn't really useful for a single register machine as ours. More often than not, it causes extra spilling. - Sanjiv
Dan Gohman
2010-Feb-10 19:47 UTC
[LLVMdev] adding switches to llvm-ld to disable certain optimizations.
On Feb 10, 2010, at 8:57 AM, Sanjiv Gupta wrote:> Chris Lattner wrote: >> On Feb 9, 2010, at 7:39 PM, Sanjiv Gupta wrote: >> >> >>> Hi, >>> I need to add switches like -disable-mem2reg, disable-gvn to llvm-ld. >>> Currently CreateStandardLTOPasses takes in only DisableInternalize and >>> DisableInliner switches. >>> >>> Is modifying this API okay for these new switches, or is it doable in >>> some other ways ? >>> >> >> Why do you want this? >> >> -Chris >> > Mem2Reg isn't really useful for a single register machine as ours. More > often than not, it causes extra spilling.Have you ever investigated the following approach? Define fake register+register forms of common instructions, in addition to the register+memory forms. Let the instruction selector work as if everything were in registers. Then, since there's only one physical register, the register allocator will have to spill, and the spills and reloads can be folded in, eliminating the take register+register forms. You might need special handling for the case where both operands are the same. If this works well enough, it would allow your target to be less strange from LLVM's perspective. Fewer things would need to be Custom-expanded (e.g. ADD), and it may even allow you to actually run more of the optimizer (since without mem2reg, much of the optimizer is effectively disabled). Dan
Sanjiv Gupta
2010-Feb-11 05:17 UTC
[LLVMdev] adding switches to llvm-ld to disable certain optimizations.
Dan Gohman wrote:> Have you ever investigated the following approach? Define fake > register+register forms of common instructions, in addition to the > register+memory forms. Let the instruction selector work as if > everything were in registers. Then, since there's only one physical > register, the register allocator will have to spill, and the spills > and reloads can be folded in, eliminating the take register+register > forms. You might need special handling for the case where both > operands are the same. > > If this works well enough, it would allow your target to be less > strange from LLVM's perspective. Fewer things would need to be > Custom-expanded (e.g. ADD), and it may even allow you to actually > run more of the optimizer (since without mem2reg, much of the > optimizer is effectively disabled). > > Dan > >I remember that you had suggested this in one of earlier emails as well, which I lost. And I was desperately searching for that email. Glad that you put up it again. The approach actually sounds better as it will drastically simplify the back-end code. But I was clueless as to how to make register allocator fold the spills and reloads into the actual target instructions. The only interfaces that it exposes are saveRegToStackSlot and loadRegFromStackSlot, and we didn't even know for which instructions these spills are reloads are happening. All these APIs get is a frameIndex. Now that you have decided to get us to explore a better path, it would be good if you could put more light to these issues. One more thing that I feel will simplify things in a great sense is to make i16 legal (as it would make the pointer legal) and there onwards lower the types/operations ourselves to 8-bit (as type legalizer wouldn't do that). By doing that we would pretty much need to duplicate the legalizer code in our back-end as the TypeLegalizer interfaces currently are not exposed to TargetLowering. Or can a back-end just create an instance of Type Legalizer and use it? Thanks, - Sanjiv
Evan Cheng
2010-Feb-12 00:43 UTC
[LLVMdev] adding switches to llvm-ld to disable certain optimizations.
Rather than adding flags, why not add your own custom routine that populate the pass manager. You don't have to use CreateStandardLTOPasses, nor do you have to use the standard llvm-ld. Evan On Feb 10, 2010, at 8:57 AM, Sanjiv Gupta wrote:> Chris Lattner wrote: >> On Feb 9, 2010, at 7:39 PM, Sanjiv Gupta wrote: >> >> >>> Hi, >>> I need to add switches like -disable-mem2reg, disable-gvn to llvm-ld. >>> Currently CreateStandardLTOPasses takes in only DisableInternalize and >>> DisableInliner switches. >>> >>> Is modifying this API okay for these new switches, or is it doable in >>> some other ways ? >>> >> >> Why do you want this? >> >> -Chris >> > Mem2Reg isn't really useful for a single register machine as ours. More > often than not, it causes extra spilling. > > - Sanjiv > > > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev
Reasonably Related Threads
- [LLVMdev] adding switches to llvm-ld to disable certain optimizations.
- [LLVMdev] adding switches to llvm-ld to disable certain optimizations.
- [LLVMdev] adding switches to llvm-ld to disable certain optimizations.
- [LLVMdev] adding switches to llvm-ld to disable certain optimizations.
- [LLVMdev] adding switches to llvm-ld to disable certain optimizations.