Tatenda M. Chipeperekwa
2011-Nov-10 10:39 UTC
[LLVMdev] loop transformation: uniquely identifying a loop within a program
hi all, We are writing a loop transformation using the llvm loop pass class, but we do not want to run the pass on all loops within a program. We are looking for suggestions on how we can uniquely identify certain loops that we want to transform. So far, we are working on a suggestion to transform the loops depending on which function they're run from in the program. Which will be something like this: ... Function *F = L -> getParent() -> getParent(); ... if(F->getName == "my_function") { //transform loops in my_function } The function name can easily be passed in from the command line and this would work fine for loops within that function only. But how can we extend this for nested loops for example? Thank you, tatenda -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20111110/ef8aaaa3/attachment.html>
Devang Patel
2011-Nov-10 17:44 UTC
[LLVMdev] loop transformation: uniquely identifying a loop within a program
On Nov 10, 2011, at 2:39 AM, Tatenda M. Chipeperekwa wrote:> hi all, > > We are writing a loop transformation using the llvm loop pass class, but we do not want to run the pass on all loops within a program. We are looking for suggestions on how we can uniquely identify certain loops that we want to transform. So far, we are working on a suggestion to transform the loops depending on which function they're run from in the program. Which will be something like this: > > ... > Function *F = L -> getParent() -> getParent(); > ... > if(F->getName == "my_function") { > //transform loops in my_function > } > > The function name can easily be passed in from the command line and this would work fine for loops within that function only. But how can we extend this for nested loops for example?you can use if (L->getHeader()->getParent()->getNames() == "special_function") check, which will work for all loops. - Devang -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20111110/f50fd080/attachment.html>
Tatenda M. Chipeperekwa
2011-Nov-11 09:57 UTC
[LLVMdev] loop transformation: uniquely identifying a loop within a program
hi, thank you for the response, we managed to get all the loops in a given function using this:> you can use if (L->getHeader()->getParent()->getNames() => "special_function") check, which will work for all loops. > >As part of the transformation we need to get information about the loops, and we are using the LoopInfo pass: LI = &getAnalysis<LoopInfo>(); to get information such as the depth of the loop. We are also manipulating the IV in some instances e.g. changing the step from say 1 to 2, and we have implemented this by iterating through all the instructions in a BB. It seems that the best approach to do this would be to use the ScalarEvolution, which we have added to our pass: SE = getAnalysisIfAvailable<ScalarEvolution>(); We been going through the LoopStrengthReduce pass but are unable to implement this correctly, and to re-write the IR for these cases. Any pointers on how to do this are appreciated. Regards, tatenda -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20111111/7ffce415/attachment.html>
Maybe Matching Threads
- [LLVMdev] loop transformation: uniquely identifying a loop within a program
- A question on list and lapply
- Error in .Fortran Call
- [LLVMdev] Please help with LLVM C++ integration
- storage class 0 symbol is generated for a double constant in COFF-x86-64 object file