[PM/AA] Move the LibCall AA creation routine declaration to that
[oota-llvm.git] / lib / Analysis / LoopPass.cpp
2015-06-23 Alexander KornienkoRevert r240137 (Fixed/added namespace ending comments...
2015-06-19 Alexander KornienkoFixed/added namespace ending comments using clang-tidy...
2015-03-23 Benjamin KramerPurge unused includes throughout libSupport.
2015-01-17 Chandler Carruth[PM] Split the LoopInfo object apart from the legacy...
2014-09-24 David PeixottoFix assertion in LICM doFinalization()
2014-06-21 Richard TrieuAdd back functionality removed in r210497.
2014-06-09 Richard TrieuRemoving an "if (!this)" check from two print methods...
2014-05-16 Juergen RibutzkaAdd C API for thread yielding callback.
2014-04-21 Chandler Carruth[Modules] Make Support/Debug.h modular. This requires...
2014-04-15 Craig Topper[C++11] More 'nullptr' conversion. In some cases just...
2014-03-05 Craig Topper[C++11] Add 'override' keyword to virtual methods that...
2014-02-26 Paul RobinsonConstify the Optnone checks in IR passes.
2014-02-06 Paul RobinsonDisable most IR-level transform passes on functions...
2014-01-12 Chandler Carruth[PM] Rename the IR printing pass header to a more gener...
2014-01-07 Chandler CarruthMove the LLVM IR asm writer header files into the IR...
2013-07-20 Andrew TrickComment: try to clarify loop iteration order.
2012-06-26 Andrew TrickEnable the new LoopInfo algorithm by default.
2012-03-23 Eric ChristopherTake out the debug info probe stuff. It's making some...
2011-08-29 Andrew TrickReapply r138695. Fix PassManager stack depths.
2011-08-27 Andrew TrickReverting r138695 to see if it fixes clang self host.
2011-08-27 Andrew TrickFix PassManager stack depths.
2011-08-10 Andrew TrickReapplying r136844.
2011-08-04 Andrew TrickReverting r136884 updateUnloop, which crashed a linux...
2011-08-03 Andrew TrickAn algorithm for incrementally updating LoopInfo within a
2011-08-03 Andrew Trickwhitespace
2011-03-10 Devang PatelIntroduce DebugInfoProbe. This is used to monitor how...
2010-09-04 Chris Lattnerzap dead code.
2010-08-19 Dan GohmanRevert r111199; it breaks -debug-pass=Structure output.
2010-08-16 Dan GohmanMake dumpPassStructure be a PMDataManager abstraction...
2010-08-11 Dan GohmanMake LoopPass::getContainedPass return a LoopPass*...
2010-08-06 Owen AndersonReapply r110396, with fixes to appease the Linux buildb...
2010-08-06 Owen AndersonRevert r110396 to fix buildbots.
2010-08-05 Owen AndersonDon't use PassInfo* as a type identifier for passes...
2010-04-02 David GreeneOk, third time's the charm. No changes from last time...
2010-04-02 Evan ChengRevert 100204. It broke a bunch of tests and apparently...
2010-04-02 David GreeneLet's try this again. Re-apply 100143 including an...
2010-04-01 Eric ChristopherRevert r100143.
2010-04-01 David GreeneAdd some switches helpful for debugging:
2010-03-31 Benjamin Kramers/getNameStr/getName/
2010-03-30 Chris Lattnerreapply my timer rewrite with a change for PassManager...
2010-03-30 Chris Lattnerrevert r99862 which is causing FNT failures.
2010-03-30 Chris Lattnerfairly major rewrite of various timing related stuff.
2010-01-22 Chris Lattnereliminate a bunch more unneeded dynamic_cast's.
2009-09-28 Dan GohmanFix this debug output to handle the case where the...
2009-09-28 Dan GohmanInclude the name of the loop header in debug messages.
2009-09-28 Dan GohmanMove the dominator verification code out of special...
2009-09-28 Dan GohmanMove this assert to check the condition as soon as...
2009-09-28 Dan GohmanExtend the StartPassTimer and StopPassTimer functions...
2009-09-27 Dan GohmanFix an old copy+pasto.
2009-09-27 Dan GohmanExtract the code for inserting a loop into the loop...
2009-09-27 Dan GohmanWhen a loop is deleted, immediately release all of...
2009-09-27 Dan GohmanDelete a bogus comment.
2009-09-03 Dan GohmanDon't try to verify a LoopPass analysis if the loop...
2009-08-23 Chris Lattnerconvert LoopInfo.h and GraphWriter.h to use raw_ostream
2009-06-29 Torok EdwinCall doInitialization(), releaseMemory(), and doFinaliz...
2009-03-25 Devang PatelBefore deleting a basic block, give other loop passes...
2009-03-06 Chris LattnerSprinkle some PrettyStackEntry magic into the passmanag...
2009-02-17 Dan GohmanAdd a method to ScalarEvolution for telling it when...
2009-02-17 Dan GohmanMove dumpPassStructure out of line.
2008-09-04 Dan GohmanTidy up several unbeseeming casts from pointer to intptr_t.
2008-08-08 Chris LattnerDon't call getAnalysisUsage unless -debug-pass is enabl...
2008-07-11 Dan GohmanFix spelling of "hierarchy" in comments.
2008-07-03 Devang PatelKeep track of inherited analysis (e.g. dominator tree).
2008-07-01 Devang PatelFix typos in comments.
2008-07-01 Devang PatelAdd dom info verifier.
2007-12-29 Chris LattnerRemove attribution from file headers, per discussion...
2007-10-03 Dan GohmanUse empty() member functions when that's what's being...
2007-09-18 Devang Patelooops...
2007-08-20 Anton Korobeynikov- Use correct header for SCEV inside LoopPass.cpp
2007-07-31 Devang PatelIntroduce Simple Analysis interface for loop passes.
2007-07-19 Devang PatelVerify loop info.
2007-07-19 Duncan SandsReplace mysterious code causing a g++-4.2 warning
2007-06-29 Devang PatelAdd loop info verification mechanism.
2007-05-03 Devang PatelDrop 'const'
2007-05-02 Devang PatelUse 'static const char' instead of 'static const int'.
2007-05-01 Devang PatelDo not use typeinfo to identify pass in pass manager.
2007-03-07 Devang PatelNow IndVarSimplify is a LoopPass.
2007-03-07 Devang PatelNow LoopUnswitch is a LoopPass.
2007-03-06 Devang PatelInsert loop into LQ before visiting children.
2007-03-06 Devang PatelUse schedulePass() instead of assignPassManager() to...
2007-03-06 Devang PatelAdd LPPassManager::insertLoop().
2007-03-06 Devang PatelLPPassManager::deleteLoopFromQueue() add meat. Cut...
2007-03-06 Devang PatelLPPassManager. Implement preparePassManager() hook.
2007-03-06 Devang PatelLPPassManager : Add initialization and finalizatino...
2007-03-06 Devang PatelUse std::deque to manage loop queue inside LPPassManager.
2007-03-05 Devang PatelAvoid constructing std::strings unless pass debugging...
2007-02-23 Devang PatelFix thinko.
2007-02-23 Devang PatelLoop passes are set up to accept pointer.
2007-02-23 Devang PatelTeach LoopPass to assign itself one Loop Pass Manager.
2007-02-23 Devang PatelAdd facility that allows LoopPass to re-insert a loop...
2007-02-23 Devang PatelAdd LPPassManager interface that LoopPass can use to...
2007-02-22 Devang PatelPopulate and walk loop queue.
2007-02-22 Devang PatelAdd LoopQueue. This is used by loop pass manager to...
2007-02-22 Devang PatelAdd Loop Pass Manager.