aboutsummaryrefslogtreecommitdiffstats
path: root/lib/VMCore/Pass.cpp
Commit message (Expand)AuthorAgeFilesLines
* More dead code removal (using -Wunreachable-code)David Blaikie2012-01-201-1/+0
* Devirtualize Pass::getPassID, overriding it isn't useful and it gets called a...Benjamin Kramer2011-11-241-2/+0
* Fixing a commentJoe Abbey2011-11-211-1/+1
* Another step towards getting rid of static ctors for pass registration: have ...Owen Anderson2010-10-051-1/+0
* Revert r111199; it breaks -debug-pass=Structure output.Dan Gohman2010-08-191-2/+2
* Make dumpPassStructure be a PMDataManager abstraction, rather thanDan Gohman2010-08-161-2/+2
* Trim #includes.Dan Gohman2010-08-121-6/+0
* Remove BasicBlockPass::runOnFunction, which was unused.Dan Gohman2010-08-111-10/+0
* Delete FunctionPass::run, which is unused.Dan Gohman2010-08-111-11/+0
* Delete FunctionPass::runOnModule, which is unused.Dan Gohman2010-08-111-13/+0
* Tidy some #includes and forward-declarations, and move the C binding codeDan Gohman2010-08-071-5/+0
* Reapply r110396, with fixes to appease the Linux buildbot gods.Owen Anderson2010-08-061-28/+27
* Revert r110396 to fix buildbots.Owen Anderson2010-08-061-27/+28
* Don't use PassInfo* as a type identifier for passes. Instead, use the addres...Owen Anderson2010-08-051-28/+27
* Move the smarts of AnalysisGroup registration into PassRegistry.Owen Anderson2010-07-211-24/+3
* Move the handling of PassRegistrationListener's to PassRegistry.Owen Anderson2010-07-201-37/+3
* Move more functionality from Pass.cpp to PassRegistry.cpp. This global will ...Owen Anderson2010-07-201-47/+6
* Convert the internal PassRegistrar class into a new, external PassRegistry cl...Owen Anderson2010-07-201-99/+20
* Speculatively revert r108813, in an attempt to get the self-host buildbots wo...Owen Anderson2010-07-201-21/+21
* Reapply r108794, a fix for the failing test from last time.Owen Anderson2010-07-201-21/+21
* Revert r108794, "Separate PassInfo into two classes: a constructor-freeDaniel Dunbar2010-07-201-21/+21
* Separate PassInfo into two classes: a constructor-free superclass (StaticPass...Owen Anderson2010-07-201-21/+21
* Move several non-performance-critical member functinos out of line.Dan Gohman2010-06-211-0/+45
* Silence an unused variable warning.Eric Christopher2010-04-161-1/+1
* Fix namespace polution.Dan Gohman2010-04-151-0/+4
* Use a ManagedCleanup to prevent leaking the PassRegistrar map. In breaks theOwen Anderson2010-04-061-6/+14
* Ok, third time's the charm. No changes from last time except the CMakeDavid Greene2010-04-021-0/+18
* Revert 100204. It broke a bunch of tests and apparently changed what passes a...Evan Cheng2010-04-021-18/+0
* Let's try this again. Re-apply 100143 including an apparent missingDavid Greene2010-04-021-0/+18
* Revert r100143.Eric Christopher2010-04-011-18/+0
* Add some switches helpful for debugging:David Greene2010-04-011-0/+18
* Make PassRegistrar thread-safe since it can be modified by code running inJeffrey Yasskin2010-02-131-0/+9
* Kill ModuleProvider and ghost linkage by inverting the relationship betweenJeffrey Yasskin2010-01-271-1/+0
* give PassNameParser a home.Chris Lattner2010-01-221-0/+3
* Change errs() to dbgs().David Greene2010-01-051-2/+3
* Move several function bodies which are rarely inlined out of line.Dan Gohman2009-12-141-0/+67
* Pass StringRef by value.Daniel Dunbar2009-11-061-2/+2
* Hide MetadataContext implementation details.Devang Patel2009-10-221-0/+1
* Add a form of addPreserved which takes a string argument, to allow passesDan Gohman2009-10-081-0/+14
* Remove some unused fields.Dan Gohman2009-08-291-8/+5
* Change Pass::print to take a raw ostream instead of std::ostream,Chris Lattner2009-08-231-3/+4
* Have scoped mutexes take referenes instead of pointers.Owen Anderson2009-07-071-3/+3
* Guard the listeners list. Unfortunately, this requires a real static ratherOwen Anderson2009-06-241-0/+5
* Move the memory fences out of the path for single-threaded mode.Owen Anderson2009-06-191-5/+6
* Move Threading.[h|cpp] from Support to System.Owen Anderson2009-06-181-1/+1
* As pointed out by Duncan, I accidentally dropped the first MemoryFence of theOwen Anderson2009-06-181-4/+8
* Add braces to clarify if/else structure and remove warning.Nick Lewycky2009-06-181-1/+2
* We need to use double-checked locking for lazy initialization in this case wh...Owen Anderson2009-06-171-1/+15
* Rename getAnalysisToUpdate to getAnalysisIfAvailable.Duncan Sands2009-01-281-1/+1
* Speed up the passmgr by avoiding heap thrashing on vectors.Chris Lattner2008-08-081-2/+3