| Commit message (Expand) | Author | Age | Files | Lines |
* | Another step towards getting rid of static ctors for pass registration: have ... | Owen Anderson | 2010-10-05 | 1 | -1/+0 |
* | Revert r111199; it breaks -debug-pass=Structure output. | Dan Gohman | 2010-08-19 | 1 | -2/+2 |
* | Make dumpPassStructure be a PMDataManager abstraction, rather than | Dan Gohman | 2010-08-16 | 1 | -2/+2 |
* | Trim #includes. | Dan Gohman | 2010-08-12 | 1 | -6/+0 |
* | Remove BasicBlockPass::runOnFunction, which was unused. | Dan Gohman | 2010-08-11 | 1 | -10/+0 |
* | Delete FunctionPass::run, which is unused. | Dan Gohman | 2010-08-11 | 1 | -11/+0 |
* | Delete FunctionPass::runOnModule, which is unused. | Dan Gohman | 2010-08-11 | 1 | -13/+0 |
* | Tidy some #includes and forward-declarations, and move the C binding code | Dan Gohman | 2010-08-07 | 1 | -5/+0 |
* | Reapply r110396, with fixes to appease the Linux buildbot gods. | Owen Anderson | 2010-08-06 | 1 | -28/+27 |
* | Revert r110396 to fix buildbots. | Owen Anderson | 2010-08-06 | 1 | -27/+28 |
* | Don't use PassInfo* as a type identifier for passes. Instead, use the addres... | Owen Anderson | 2010-08-05 | 1 | -28/+27 |
* | Move the smarts of AnalysisGroup registration into PassRegistry. | Owen Anderson | 2010-07-21 | 1 | -24/+3 |
* | Move the handling of PassRegistrationListener's to PassRegistry. | Owen Anderson | 2010-07-20 | 1 | -37/+3 |
* | Move more functionality from Pass.cpp to PassRegistry.cpp. This global will ... | Owen Anderson | 2010-07-20 | 1 | -47/+6 |
* | Convert the internal PassRegistrar class into a new, external PassRegistry cl... | Owen Anderson | 2010-07-20 | 1 | -99/+20 |
* | Speculatively revert r108813, in an attempt to get the self-host buildbots wo... | Owen Anderson | 2010-07-20 | 1 | -21/+21 |
* | Reapply r108794, a fix for the failing test from last time. | Owen Anderson | 2010-07-20 | 1 | -21/+21 |
* | Revert r108794, "Separate PassInfo into two classes: a constructor-free | Daniel Dunbar | 2010-07-20 | 1 | -21/+21 |
* | Separate PassInfo into two classes: a constructor-free superclass (StaticPass... | Owen Anderson | 2010-07-20 | 1 | -21/+21 |
* | Move several non-performance-critical member functinos out of line. | Dan Gohman | 2010-06-21 | 1 | -0/+45 |
* | Silence an unused variable warning. | Eric Christopher | 2010-04-16 | 1 | -1/+1 |
* | Fix namespace polution. | Dan Gohman | 2010-04-15 | 1 | -0/+4 |
* | Use a ManagedCleanup to prevent leaking the PassRegistrar map. In breaks the | Owen Anderson | 2010-04-06 | 1 | -6/+14 |
* | Ok, third time's the charm. No changes from last time except the CMake | David Greene | 2010-04-02 | 1 | -0/+18 |
* | Revert 100204. It broke a bunch of tests and apparently changed what passes a... | Evan Cheng | 2010-04-02 | 1 | -18/+0 |
* | Let's try this again. Re-apply 100143 including an apparent missing | David Greene | 2010-04-02 | 1 | -0/+18 |
* | Revert r100143. | Eric Christopher | 2010-04-01 | 1 | -18/+0 |
* | Add some switches helpful for debugging: | David Greene | 2010-04-01 | 1 | -0/+18 |
* | Make PassRegistrar thread-safe since it can be modified by code running in | Jeffrey Yasskin | 2010-02-13 | 1 | -0/+9 |
* | Kill ModuleProvider and ghost linkage by inverting the relationship between | Jeffrey Yasskin | 2010-01-27 | 1 | -1/+0 |
* | give PassNameParser a home. | Chris Lattner | 2010-01-22 | 1 | -0/+3 |
* | Change errs() to dbgs(). | David Greene | 2010-01-05 | 1 | -2/+3 |
* | Move several function bodies which are rarely inlined out of line. | Dan Gohman | 2009-12-14 | 1 | -0/+67 |
* | Pass StringRef by value. | Daniel Dunbar | 2009-11-06 | 1 | -2/+2 |
* | Hide MetadataContext implementation details. | Devang Patel | 2009-10-22 | 1 | -0/+1 |
* | Add a form of addPreserved which takes a string argument, to allow passes | Dan Gohman | 2009-10-08 | 1 | -0/+14 |
* | Remove some unused fields. | Dan Gohman | 2009-08-29 | 1 | -8/+5 |
* | Change Pass::print to take a raw ostream instead of std::ostream, | Chris Lattner | 2009-08-23 | 1 | -3/+4 |
* | Have scoped mutexes take referenes instead of pointers. | Owen Anderson | 2009-07-07 | 1 | -3/+3 |
* | Guard the listeners list. Unfortunately, this requires a real static rather | Owen Anderson | 2009-06-24 | 1 | -0/+5 |
* | Move the memory fences out of the path for single-threaded mode. | Owen Anderson | 2009-06-19 | 1 | -5/+6 |
* | Move Threading.[h|cpp] from Support to System. | Owen Anderson | 2009-06-18 | 1 | -1/+1 |
* | As pointed out by Duncan, I accidentally dropped the first MemoryFence of the | Owen Anderson | 2009-06-18 | 1 | -4/+8 |
* | Add braces to clarify if/else structure and remove warning. | Nick Lewycky | 2009-06-18 | 1 | -1/+2 |
* | We need to use double-checked locking for lazy initialization in this case wh... | Owen Anderson | 2009-06-17 | 1 | -1/+15 |
* | Rename getAnalysisToUpdate to getAnalysisIfAvailable. | Duncan Sands | 2009-01-28 | 1 | -1/+1 |
* | Speed up the passmgr by avoiding heap thrashing on vectors. | Chris Lattner | 2008-08-08 | 1 | -2/+3 |
* | fix some warnings when assertions are disabled. | Chris Lattner | 2008-06-21 | 1 | -1/+1 |
* | Add #includes to make some dependencies explicit. | Dan Gohman | 2008-05-23 | 1 | -0/+1 |
* | Change class' public PassInfo variables to by initialized with the | Dan Gohman | 2008-05-13 | 1 | -21/+16 |