[LLVMdev] [SOLVED] Re: Stop MachineCSE on certain instructions

girish gulawani girishvg at yahoo.com
Sat Dec 24 04:37:41 PST 2011



 
Hi.
By adding, what was essentially a missing reg copy in between, the problem is solved.

Thanks.
Girish.


From: girish gulawani <girishvg at yahoo.com>
>To: Jim Grosbach <grosbach at apple.com> 
>Cc: LLVM Developers Mailing List <llvmdev at cs.uiuc.edu> 
>Sent: Friday, 23 December 2011 11:23 PM
>Subject: Re: [LLVMdev] Stop MachineCSE on certain instructions
> 
>
>
>
>Hi Jim.
>I'm doing custom lowering but here I have a very basic issue and the situation is like this -
>
>
>
>[Original Op]
>Mul Dest, Src1, Src2
>
>
>[Expanded from EmitInstrWithCustomInserter]
>Step1 Dest, Src1, Src2    <=== BuildMI(..., Step1, Dest).addReg(Src1).addReg(Src2)
>Step2 Dest, Src1, Src2    <=== BuildMI(..., Step2, Dest).addReg(Src1).addReg(Src2)
>Step3 Dest, Src2, Src1    <=== BuildMI(..., Step3, Dest).addReg(Src2).addReg(Src1)
>
>
>Could manage to skip the CSE on those steps! While mul operation is expanded to multiple (3 in this case) steps, BuildMIs as above. But the "Live Intervals" computation gives a fatal error of multiple definitions on destination register (Dest), from lib/CodeGen/LiveIntervalAnalysis.cpp. Certainly those addReg seems to be done wrongly. Any hint as to what must be the correct steps?
>
>
>Thanks.
>Girish.
>
>
>From: Jim Grosbach <grosbach at apple.com>
>>To: girish gulawani <girishvg at yahoo.com> 
>>Cc: Johannes Birgmeier <e0902998 at student.tuwien.ac.at>; LLVM Developers Mailing List <llvmdev at cs.uiuc.edu> 
>>Sent: Wednesday, 21 December 2011 11:30 PM
>>Subject: Re: [LLVMdev] Stop MachineCSE on certain instructions
>> 
>>
>>Ah, OK. I think I understand much better now. Thanks! You shouldn't need bundles for that sort of thing. A custom lowering or a fancy pattern should be sufficient, depending on the details of how your target is defined.
>>
>>
>>For patterns, looks at the various targets use of the Pat<>, Pattern<>, ComplexPattern<> and related classes in the .td files.
>>
>>
>>For examples of custom lowerings, have a look at how other targets handle any operations marked in <TargetName>ISelLowering.cpp as "Custom" operation actions.
>>
>>
>>-Jim
>>
>>
>>
>>On Dec 20, 2011, at 6:57 PM, girish gulawani wrote:
>>
>>
>>>
>>>Hi, Jim.
>>>In my case the target (Tilera) doesn't have a full 32-bit mult operation and to do so it has to accumulate results from three 16-bit mults, by retaining operands and the result across in the same registers. However the ISel DAG thinks its a CSE case. Please note this is not a MAdd/MSub triad.
>>>
>>>
>>>How could I do this by defining such a sequence or the pattern in the .def file itself for the ISD::MUL?
>>>Thanks.
>>>Girish.
>>>
>>>
>>>
>>>>________________________________
>>>> From: Jim Grosbach <grosbach at apple.com>
>>>>To: girish gulawani <girishvg at yahoo.com> 
>>>>Cc: Johannes Birgmeier <e0902998 at student.tuwien.ac.at>; LLVM Developers Mailing List <llvmdev at cs.uiuc.edu> 
>>>>Sent: Wednesday, 21 December 2011 12:41 AM
>>>>Subject: Re: [LLVMdev] Stop MachineCSE on certain instructions
>>>> 
>>>>Hi Girish,
>>>>
>>>>Sorry, but I'm afraid I don't understand your question. Can you elaborate a bit?
>>>>
>>>>-Jim
>>>>
>>>>On Dec 19, 2011, at 9:12 PM, girish gulawani wrote:
>>>>
>>>>> 
>>>>> Hello Jim.
>>>>> Just out of curiosity, won't such mechanism work via the patterns from
 instructions defs?
>>>>> 
>>>>> Thanks.
>>>>> Girish.
>>>>> 
>>>>> From: Jim Grosbach <grosbach at apple.com>
>>>>> To: Johannes Birgmeier <e0902998 at student.tuwien.ac.at> 
>>>>> Cc: LLVM Developers Mailing List <llvmdev at cs.uiuc.edu> 
>>>>> Sent: Monday, 19 December 2011 10:33 PM
>>>>> Subject: Re: [LLVMdev] Stop MachineCSE on certain instructions
>>>>> 
>>>>> Hi Johannes,
>>>>> 
>>>>> You may be interested in the (very) recently added explicit instruction bundle support. For an example of their usage, have a look at the ARM backend's IT-block (Thumb2 predication support)
 pass, which uses them to tie instructions together.
>>>>> 
>>>>> -Jim
>>>>> 
>>>>> On
 Dec 17, 2011, at 12:24 PM, Johannes Birgmeier wrote:
>>>>> 
>>>>> > Hello,
>>>>> > 
>>>>> > I'm writing for a backend and have a complicated instruction bundle (3 
>>>>> > instructions) that has to be executed like a single block (meaning: if 
>>>>> > the first instruction is executed, all three have to be executed to 
>>>>> > obtain the result, though not necessarily without other instructions in 
>>>>> > between). Unfortunately, MachineCSE gets in the way sometimes and rips 
>>>>> > it apart.
>>>>> > 
>>>>> > Is there a way to stop CSE from doing its thing (common subexpression 
>>>>> > elimination) for certain instructions?
>>>>> > 
>>>>> > I've already tried glueing (gluing?) them together, but that doesn't 
>>>>> > seem to make a difference.
>>>>> > 
>>>>> > Regards,
>>>>> > Johannes Birgmeier
>>>>> > _______________________________________________
>>>>>
 > LLVM Developers mailing list
>>>>> > LLVMdev at cs.uiuc.edu        http://llvm.cs.uiuc.edu
>>>>> > http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev
>>>>> 
>>>>> _______________________________________________
>>>>> LLVM Developers mailing list
>>>>> LLVMdev at cs.uiuc.edu        http://llvm.cs.uiuc.edu
>>>>> http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev
>>>>> 
>>>>> 
>>>>
>>>>
>>>>
>>>>
>>
>>
>>
>_______________________________________________
>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/20111224/5f82db94/attachment.html>


More information about the llvm-dev mailing list