aboutsummaryrefslogtreecommitdiff
path: root/lib/VMCore/Pass.cpp
AgeCommit message (Expand)Author
2009-11-06Pass StringRef by value.Daniel Dunbar
2009-10-22Hide MetadataContext implementation details.Devang Patel
2009-10-08Add a form of addPreserved which takes a string argument, to allow passesDan Gohman
2009-08-29Remove some unused fields.Dan Gohman
2009-08-23Change Pass::print to take a raw ostream instead of std::ostream,Chris Lattner
2009-07-07Have scoped mutexes take referenes instead of pointers.Owen Anderson
2009-06-24Guard the listeners list. Unfortunately, this requires a real static ratherOwen Anderson
2009-06-19Move the memory fences out of the path for single-threaded mode.Owen Anderson
2009-06-18Move Threading.[h|cpp] from Support to System.Owen Anderson
2009-06-18As pointed out by Duncan, I accidentally dropped the first MemoryFence of theOwen Anderson
2009-06-18Add braces to clarify if/else structure and remove warning.Nick Lewycky
2009-06-17We need to use double-checked locking for lazy initialization in this case wh...Owen Anderson
2009-01-28Rename getAnalysisToUpdate to getAnalysisIfAvailable.Duncan Sands
2008-08-08Speed up the passmgr by avoiding heap thrashing on vectors.Chris Lattner
2008-06-21fix some warnings when assertions are disabled.Chris Lattner
2008-05-23Add #includes to make some dependencies explicit.Dan Gohman
2008-05-13Change class' public PassInfo variables to by initialized with theDan Gohman
2008-03-21Don't include <map> in Pass.h, which doesn't need it. This requiresDan Gohman
2008-03-14Update comments; getPassName no longer uses RTTI.Dan Gohman
2008-03-08Remove unused runPass methods.Dan Gohman
2008-01-29Fix 80-col violations.Dan Gohman
2007-12-29Remove attribution from file headers, per discussion on llvmdev.Chris Lattner
2007-10-18Reduce reliance on rtti infoChris Lattner
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-02disable this assertion as a hack to get the build more unbroken :(Chris 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-21Fix a bug that prevented the JIT from working correctly after llvm_shutdown.Chris Lattner
2007-03-05Unbreak VC++ build.Jeff Cohen
2007-01-30For PR1136: Rename GlobalVariable::isExternal as isDeclaration to avoidReid Spencer
2007-01-051) Remove old AnalysisResolver.Devang Patel
2007-01-05Remove old pass manager.Devang Patel
2006-12-22ModulePass and ImmutablePass. Force out of line virtual method.Devang Patel
2006-12-13Using PDL as a prefix for PassDebugLevel enums is not a good idea.Devang Patel
2006-12-13Move enum PassDebugLevel from PassManagerT.h to Pass.h.Devang Patel
2006-12-13Add #ifdef switch toggle between old and new pass manager. However,Devang Patel
2006-12-10fix PR1039 by making timing info be destroyed by llvm_shutdown, not byChris Lattner
2006-12-07Removing even more <iostream> includes.Bill Wendling
2006-12-01Switch analysis groups to be unregistered when llvm_shutdown is called.Chris Lattner
2006-12-01Start moving pass registration over to using the ManagedStatic mechanism.Chris Lattner
2006-12-01move 'cfgonly' pass tracking into PassInfo, instead of handling it withChris Lattner
2006-09-04Add explicit doInitialization/doFinalization methods instead of makingChris Lattner
2006-08-27We no longer care whether something is an opt vs analysis pass, only whetherChris Lattner
2006-07-06Change the ModuleProvider interface to not throw exceptions.Chris Lattner
2006-06-07For PR780:Reid Spencer
2006-01-23Speedup and simplify pass registration by the observation that there isChris Lattner
2006-01-04Patch #6's in Saem's refactor-the-passmanager patch series. From him:Chris Lattner
2005-04-25Older compilers won't like the inline virtual destructor in the header fileReid Spencer
2005-04-21Remove trailing whitespaceMisha Brukman