aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/Pass.h
AgeCommit message (Expand)Author
2008-03-21Don't include <map> in Pass.h, which doesn't need it. This requiresDan Gohman
2008-03-19PassInfo keep tracks whether a pass is an analysis pass or not.Devang Patel
2008-03-19Do not use virtual function to identify an analysis pass.Devang Patel
2008-03-18Identify Analysis pass.Devang Patel
2008-03-14Update comments; getPassName no longer uses RTTI.Dan Gohman
2008-03-14Move the PMStack class out of Pass.h and into PassManagers.h.Dan Gohman
2008-03-13Change PMStack::push to accept a PMDataManager* instead ofDan Gohman
2008-03-13Fix a typo in a comment.Dan Gohman
2008-03-13No need for typedefs with enums in C++.Dan Gohman
2008-03-08Remove unused runPass methods.Dan Gohman
2007-12-29Don't attribute in file headers anymore. See llvmdev for theChris Lattner
2007-10-08Allow passes to just pass up "FunctionPass(&ID)" instead of "FunctionPass((in...Chris Lattner
2007-10-06Include DataTypes.h to provide intptr_t type. This fixes OpenBSD compilation ...Anton Korobeynikov
2007-08-12Change casts from old style to new style. This helps document the detailsReid Spencer
2007-08-01Make ImmutablePass::runOnModule non-virtual, since it is notDan Gohman
2007-07-19Verify loop info.Devang Patel
2007-07-19Set up ground work to verify preserved analysis info.Devang Patel
2007-07-09Fix memory leak.Devang Patel
2007-05-11Remove forward-declarations for classes that don't exist.Dan Gohman
2007-05-11Add explicit keywords to several constructors that now have one argument.Dan Gohman
2007-05-03Unbreak VC++ build.Jeff Cohen
2007-05-02Re-install patch to enable use of PassID.Devang Patel
2007-05-02revert enough of devang's recent patches to get the tree basically working againChris Lattner
2007-05-01Do not use typeinfo to identify pass in pass manager.Devang Patel
2007-04-26Move ~Pass() from Pass.h into Pass.cppDevang Patel
2007-04-26Delete Analysis Resolver.Devang Patel
2007-04-16Proivde getAnalysis<FPAnalysis>(Func) support.Devang Patel
2007-04-16Add getPotentialPassManagerType(). No functionality change, yet.Devang Patel
2007-04-16Removed tabs everywhere except autogenerated & external files. Add makeAnton Korobeynikov
2007-03-06Keep track of inherited analysis. For example, if a loop pass does notDevang Patel
2007-03-06Add preparePassManager() hook. This allows each pass to check whetherDevang Patel
2007-01-26Inherit FunctionPass directly from Pass.Devang Patel
2007-01-25Inherit BasicBlockPass directly from Pass.Devang Patel
2007-01-25Remove dead code.Devang Patel
2007-01-17Update assignPassManager() signature to allow selection of preferredDevang Patel
2007-01-16Undo last check-in.Devang Patel
2007-01-16Setup pass manager before scheduling required analysis.Devang Patel
2007-01-11Add PassManagerType enum.Devang Patel
2007-01-11Robustify assingPassManager() for Module, Function and Basic BlockDevang Patel
2007-01-08Add PMStack, a Pass Manager stack.Devang Patel
2007-01-051) Remove old AnalysisResolver.Devang Patel
2007-01-05Remove old pass manager.Devang Patel
2007-01-04Enable new pass manager, which was accidentally disabled.Devang Patel
2006-12-23For PR950:Reid Spencer
2006-12-22Enable new pass manager. 2nd attempt.Devang Patel
2006-12-22ModulePass and ImmutablePass. Force out of line virtual method.Devang Patel
2006-12-20Enable old pass manager. New pass manager causes CBE failures in llvm-test.Devang Patel
2006-12-19Enable new pass manager.Devang Patel
2006-12-17Added an automatic cast to "std::ostream*" etc. from OStream. We then canBill Wendling
2006-12-13Using PDL as a prefix for PassDebugLevel enums is not a good idea.Devang Patel