search for: loopheaderinfo

Displaying 3 results from an estimated 3 matches for "loopheaderinfo".

2009 Apr 22
0
[LLVMdev] Adding structures in a loop pass
...> the module pass or obtain information about the loops present inside > the module and individually call the loop pass on them. > Kshitiz, Your loop pass should be able to manage this extra information. See various loop transformations implementation, for example LoopRotation maintains LoopHeaderInfo. - Devang
2009 Apr 22
2
[LLVMdev] Adding structures in a loop pass
Hello, I wanted to do some speculative execution on a loop for which I require some data storage structure for book keeping. The exact structure of this storage buffer can only be determined after loop analysis. Is there a clean way to add this new structure to the module. Since this structure is to be used for each loop iteration I do not want to allocate it inside the loop. A second
2009 Apr 23
1
[LLVMdev] Adding structures in a loop pass
...rmation about the loops present inside >> the module and individually call the loop pass on them. >> > > Kshitiz, > > Your loop pass should be able to manage this extra information. See > various loop transformations implementation, for example LoopRotation > maintains LoopHeaderInfo. > > - > Devang > > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu         http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev > -- Kshitiz Garg Graduate Student Department of Computer Sc...