aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/PassAnalysisSupport.h
Commit message (Expand)AuthorAgeFilesLines
* eliminate dynamic_cast from the pass manager.Chris Lattner2010-01-211-22/+20
* Pass StringRef by value.Daniel Dunbar2009-11-061-1/+2
* Add another required #include for freestanding .h files.Daniel Dunbar2009-10-171-2/+1
* Add a form of addPreserved which takes a string argument, to allow passesDan Gohman2009-10-081-0/+17
* Simplify assertion message to avoid confusion.Devang Patel2009-06-021-17/+15
* Clean up pass manager cache after each run.Devang Patel2009-04-011-0/+6
* Remove dead code.Devang Patel2009-04-011-2/+0
* Rename getAnalysisToUpdate to getAnalysisIfAvailable.Duncan Sands2009-01-281-11/+11
* Speed up the passmgr by avoiding heap thrashing on vectors.Chris Lattner2008-08-081-4/+10
* Don't attribute in file headers anymore. See llvmdev for theChris Lattner2007-12-291-2/+2
* Add a addRequiredTransitiveID member function, which is toDan Gohman2007-05-141-6/+8
* Proivde getAnalysis<FPAnalysis>(Func) support.Devang Patel2007-04-161-0/+36
* Add the 'explicit' keyword to several constructors that accept oneDan Gohman2007-03-231-1/+1
* 1) Remove old AnalysisResolver.Devang Patel2007-01-051-40/+9
* Remove old pass manager.Devang Patel2007-01-051-33/+3
* fit in 80 colsChris Lattner2006-12-131-4/+3
* Add #ifdef switch toggle between old and new pass manager. However,Devang Patel2006-12-131-2/+26
* Move getAnalysis() and getAnalysisID() definitions from Pass.h toDevang Patel2006-12-131-0/+40
* Add AnalysisResolver_New. It is a replacement for existingDevang Patel2006-12-081-0/+44
* Make the LLVM headers "-ansi -pedantic -Wno-long-long" clean.Chris Lattner2006-02-221-0/+2
* Older compilers won't like the inline virtual destructor in the header fileReid Spencer2005-04-251-1/+1
* Shut GCC 4.0 up when it complains about classes with virtual functions thatReid Spencer2005-04-241-0/+1
* Remove trailing whitespaceMisha Brukman2005-04-211-5/+5
* Add AnalysisUsage::addRequiredTransitive() to keep analysis info alive forMisha Brukman2004-03-121-4/+17
* Put all LLVM code into the llvm namespace, as per bug 109.Brian Gaeke2003-11-111-0/+4
* Added LLVM copyright header (for lack of a better term).John Criswell2003-10-201-0/+7
* Standardize header file commentsChris Lattner2003-09-301-1/+1
* Move getAnalysisToUpdate to after the definition of AnalysisResolver.Chris Lattner2003-08-291-0/+16
* Remove a ton of extraneous #includesChris Lattner2003-06-221-2/+0
* Included assert.h so that the code compiles under newer versions of GCC.John Criswell2003-06-111-1/+1
* - Rename AnalysisUsage::preservesAll to getPreservesAll & preservesCFG toChris Lattner2002-10-211-11/+12
* Add support for ImmutablePasses, which are not run, and cannot beChris Lattner2002-09-251-0/+1
* Make the getAnalyss<> members const. Using them does NOT modify the Pass obj...Chris Lattner2002-08-291-2/+2
* Add assertion checks to nail bugs early.Chris Lattner2002-08-211-0/+2
* - Eliminate the need for analyses to expose an ::ID member.Chris Lattner2002-08-211-2/+2
* - Cleaned up the interface to AnalysisUsage to take analysis class namesChris Lattner2002-08-081-7/+17
* Add hooks to get information out of concrete pass manager implementationsChris Lattner2002-07-301-0/+3
* * Eliminate the Provided set. All Passes now finally just automaticallyChris Lattner2002-07-291-9/+3
* * Standardize how analysis results/passes as printed with the print() virtualChris Lattner2002-07-271-53/+0
* Analysis contructors now no longer take AnalysisID's as their argument,Chris Lattner2002-07-261-4/+4
* Break part of Pass.h out into PassAnalysisSupport.hChris Lattner2002-07-231-0/+157