aboutsummaryrefslogtreecommitdiffstats
path: root/lib/VMCore/PassManager.cpp
Commit message (Expand)AuthorAgeFilesLines
* Fix a bunch of namespace pollution.Dan Gohman2009-08-071-2/+2
* Eliminate some uses of DOUT, cerr, and getNameStart().Daniel Dunbar2009-07-261-44/+44
* llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable.Torok Edwin2009-07-141-4/+4
* assert(0) -> LLVM_UNREACHABLE.Torok Edwin2009-07-111-4/+4
* Start converting to new error handling API.Torok Edwin2009-07-081-2/+2
* Have scoped mutexes take referenes instead of pointers.Owen Anderson2009-07-071-2/+2
* Use find instead of operator[] to test whether an element is in a std::map.Dan Gohman2009-07-011-2/+4
* Set wasRun to false here on Dan's suggestion.Torok Edwin2009-06-291-0/+1
* Call doInitialization(), releaseMemory(), and doFinalization() for on-the-fly...Torok Edwin2009-06-291-1/+39
* Add a SmartScopedLock, and use it to simplify code.Owen Anderson2009-06-181-5/+4
* Move Threading.[h|cpp] from Support to System.Owen Anderson2009-06-181-1/+1
* Guard mutation of the timing info global.Owen Anderson2009-06-171-0/+9
* Always verify dominfo if expensive checking is enabled.Duncan Sands2009-05-221-0/+5
* Clean up pass manager cache after each run.Devang Patel2009-04-011-0/+14
* Use WriteAsOperand instead of manually decorating the name for thisDan Gohman2009-03-101-11/+8
* Sprinkle some PrettyStackEntry magic into the passmanager. With this, we nowChris Lattner2009-03-061-85/+99
* various cosmetic cleanups.Chris Lattner2009-03-061-136/+107
* Reapply r64301. These uses of "inline" can cause strangeDuncan Sands2009-02-131-8/+8
* Revert r64300 and r64301. These were causing the following errors respectively:Bill Wendling2009-02-111-8/+8
* These uses of "inline" can cause strange link-timeDuncan Sands2009-02-111-8/+8
* Rename getAnalysisToUpdate to getAnalysisIfAvailable.Duncan Sands2009-01-281-4/+4
* Fix a use of an invalid iterator when -debug-pass=Details is used.Dan Gohman2008-11-061-1/+1
* fix memory leak in pass manager when adding an analysis pass that already exi...Nuno Lopes2008-11-041-1/+3
* Add <cstdio> include where needed by gcc-4.4.Duncan Sands2008-10-081-0/+1
* Remove interfaces implemented by dead pass from the list of available passes.Devang Patel2008-10-061-7/+17
* Add assertion check.Devang Patel2008-09-091-1/+1
* Simplify.Devang Patel2008-09-091-8/+2
* Tidy up several unbeseeming casts from pointer to intptr_t.Dan Gohman2008-09-041-5/+4
* The pass manager is not able to schedule -loop-deletion -loop-index-split.Devang Patel2008-08-141-14/+28
* Use SmallVector instead of std::vectorDevang Patel2008-08-121-12/+12
* Use DenseMap to keep track of last users.Devang Patel2008-08-121-6/+28
* Keep track of analysis usage information for passes. Avoid invokingDevang Patel2008-08-111-23/+38
* Don't call getAnalysisUsage unless -debug-pass is enabled. This speedsChris Lattner2008-08-081-23/+36
* Speed up the passmgr by avoiding heap thrashing on vectors.Chris Lattner2008-08-081-12/+12
* Don't verify passes when assertions are disabled.Chris Lattner2008-08-071-4/+7
* Consistently put quotes around pass names in debugging output.Dan Gohman2008-07-091-8/+8
* Disable dom info verifier by default.Devang Patel2008-07-011-1/+1
* Fix typos in comments. Devang Patel2008-07-011-5/+5
* Add dom info verifier.Devang Patel2008-07-011-1/+51
* Print debug message only if there are dead passes.Devang Patel2008-06-061-2/+3
* More pass manager debugging outputs.Evan Cheng2008-06-041-0/+5
* "Unable to schedule <A> required by <B>" is more helpful thenDevang Patel2008-06-031-1/+5
* Add debugging aid.Devang Patel2008-06-031-1/+7
* Clean up the use of static and anonymous namespaces. This turned upDan Gohman2008-05-131-2/+2
* Keep track of analysis information inherited from Module pass manager.Devang Patel2008-03-201-0/+4
* #if 1 .. #endif markers do not add any value.Devang Patel2008-03-191-2/+0
* PassInfo keep tracks whether a pass is an analysis pass or not.Devang Patel2008-03-191-1/+4
* Do not use virtual function to identify an analysis pass.Devang Patel2008-03-191-1/+1
* Identify Analysis pass.Devang Patel2008-03-181-0/+6
* C and Objective Caml bindings for PassManagers.Gordon Henriksen2008-03-161-0/+31