search for: pmt_looppassmanag

Displaying 4 results from an estimated 4 matches for "pmt_looppassmanag".

Did you mean: pmt_looppassmanager
2012 Jun 05
0
[LLVMdev] How to unroll loops in opposite loop nest order
...var. If you need any of these things I suggest changing the interface. Maybe it would work to pass in FunctionPass instead of LPM. In the one place we actually need an LPM (deleteLoopFromQueue), we could check FunctionPass's type and cast. Maybe getAsPMDataManager()->getPassManagerType() == PMT_LoopPassManager? -Andy -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120605/d1df85f8/attachment.html>
2012 Jun 05
2
[LLVMdev] How to unroll loops in opposite loop nest order
I am trying to implement loop unrolling in a context, where lots of constant propagation has taken place. Unrolling an outer loop might make an inner loop have constant bounds, therefore I want to process the loops outside in, i.e. from parent loops to nested loops. Unfortunately the standard loop pass manager performs loop passes inside out, i.e. from nested loops to parent loops, thereby missing
2010 Feb 12
2
[LLVMdev] [PATCH] Fix off-by-one errors in the doxygen documentation
...-56,11 +56,11 @@ typedef const PassInfo* AnalysisID; /// Ordering of pass manager types is important here. enum PassManagerType { PMT_Unknown = 0, - PMT_ModulePassManager = 1, /// MPPassManager - PMT_CallGraphPassManager, /// CGPassManager - PMT_FunctionPassManager, /// FPPassManager - PMT_LoopPassManager, /// LPPassManager - PMT_BasicBlockPassManager, /// BBPassManager + PMT_ModulePassManager = 1, ///< MPPassManager + PMT_CallGraphPassManager, ///< CGPassManager + PMT_FunctionPassManager, ///< FPPassManager + PMT_LoopPassManager, ///< LPPassManager + PMT_BasicBlo...
2010 Mar 06
1
[LLVMdev] region pass - new pass for llvm
...;This pass findS ..." - "This pass printS ..." - "This pass simple removeS ..." * include/llvm/LinkAllPasses.h - PMT_ModulePassManager = 1, ///< MPPassManager - PMT_CallGraphPassManager, ///< CGPassManager - PMT_FunctionPassManager, ///< FPPassManager - PMT_LoopPassManager, ///< LPPassManager - PMT_BasicBlockPassManager, ///< BBPassManager + PMT_ModulePassManager = 1, /// MPPassManager + PMT_CallGraphPassManager, /// CGPassManager + PMT_FunctionPassManager, /// FPPassManager Why do you remove the "<"? Does not seem to be related to...