Fix include guards so they exactly match file names.
[oota-llvm.git] / include / llvm / Analysis / LoopPass.h
2013-01-10 Jakub StaszakFix include guards so they exactly match file names.
2013-01-02 Chandler CarruthMove all of the header files which are involved in...
2012-12-03 Pedro Artigasmoves doInitialization and doFinalization to the Pass...
2012-12-03 Chandler CarruthSort the #include lines for the include/... tree with...
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.
2010-08-11 Dan GohmanMake LoopPass::getContainedPass return a LoopPass*...
2010-08-07 Dan GohmanRemove assignPassManager's default arguments. It's...
2010-08-07 Dan GohmanTidy up PMStack. Add a bunch of consts, use std::vector...
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-01-22 Chris Lattnerelimiante the dynamic_cast's from opt.
2010-01-22 Chris Lattnereliminate a bunch of dynamic_cast's.
2009-12-07 John Mosbyfixed some typos in method comments, reworded some...
2009-09-27 Dan GohmanExtract the code for inserting a loop into the loop...
2009-07-22 Owen AndersonGet rid of the Pass+Context magic.
2009-07-16 Owen AndersonMove the ConstantInt uniquing table into LLVMContextImp...
2009-06-26 Jeffrey YasskinDelete LoopPass::runOnFunctionBody. It was never used...
2009-02-17 Dan GohmanMove dumpPassStructure out of line.
2009-02-17 Dan GohmanTidy whitespace.
2008-11-26 Devang PatelFix typo.
2008-09-04 Dan GohmanTidy up several unbeseeming casts from pointer to intptr_t.
2008-07-11 Dan GohmanFix spelling of "hierarchy" in comments.
2008-07-11 Dan GohmanFix typos in comments.
2008-03-19 Devang PatelPassInfo keep tracks whether a pass is an analysis...
2008-03-19 Devang PatelDo not use virtual function to identify an analysis...
2008-03-14 Dan GohmanMove the PMStack class out of Pass.h and into PassManag...
2007-12-29 Chris LattnerDon't attribute in file headers anymore. See llvmdev...
2007-11-14 Owen AndersonStart the process of making MachineLoopInfo possible...
2007-08-01 Dan GohmanMore explicit keywords.
2007-07-31 Devang PatelIntroduce Simple Analysis interface for loop passes.
2007-07-19 Devang PatelVerify loop info.
2007-07-02 Dan GohmanAdd explicit keywords.
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-04-16 Devang PatelAdd getPotentialPassManagerType(). No functionality...
2007-04-16 Anton KorobeynikovRemoved tabs everywhere except autogenerated & external...
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-02-27 Devang PatelMake getPassManagerType() const.
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 PatelAdd LoopQueue. This is used by loop pass manager to...
2007-02-22 Devang PatelAdd Loop Pass Manager.