aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/Pass.h
AgeCommit message (Expand)Author
2009-11-06Pass StringRef by value.Daniel Dunbar
2009-10-26Move DataTypes.h to include/llvm/System, update all users. This breaks the lastChandler Carruth
2009-10-14Remove a bunch of unused arguments from functions, silencing aEric Christopher
2009-10-08Add a form of addPreserved which takes a string argument, to allow passesDan Gohman
2009-09-01Fix a typo in a comment.Dan Gohman
2009-08-23Change Pass::print to take a raw ostream instead of std::ostream,Chris Lattner
2009-08-11Tidy #includes.Dan Gohman
2009-08-03Fix some comments referring to std::cerr.Daniel Dunbar
2009-07-22Get rid of the Pass+Context magic.Owen Anderson
2009-07-06"LLVMContext* " --> "LLVMContext *"Owen Anderson
2009-07-02Make the current LLVMContext available to passes.Owen Anderson
2009-04-01Remove dead code.Devang Patel
2009-01-28Rename getAnalysisToUpdate to getAnalysisIfAvailable.Duncan Sands
2009-01-05Tidy up #includes, deleting a bunch of unnecessary #includes.Dan Gohman
2009-01-02* Alphabetized system headers per the style guideMisha Brukman
2008-10-31Add an assert to catch user errors like:Torok Edwin
2008-07-01Add dom info verifier.Devang Patel
2008-05-19Remove warnings about unused parameters and shadowed variables.Bill Wendling
2008-05-14Whitespace cleanups.Dan Gohman
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