Use the new script to sort the includes of every file under lib.
[oota-llvm.git] / lib / Transforms / IPO / LoopExtractor.cpp
2012-12-03 Chandler CarruthUse the new script to sort the includes of every file...
2012-05-04 Chandler CarruthMove the CodeExtractor utility to a dedicated header...
2011-09-20 Bill WendlingPlace the check for an exit landing pad where it will...
2011-09-20 Bill WendlingOmit extracting a loop if one of the exits is a landing...
2011-09-20 Bill WendlingCheck the terminator, not the basic block.
2011-09-20 Bill WendlingWhen extracting a basic block that ends in an 'invoke...
2010-10-19 Owen AndersonGet rid of static constructors for pass registration...
2010-10-12 Owen AndersonBegin adding static dependence information to passes...
2010-10-07 Owen AndersonNow with fewer extraneous semicolons!
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-07-31 Rafael EspindolaThe BlockExtractorPass() constructor was not reading...
2010-07-21 Owen AndersonFix batch of converting RegisterPass<> to INTIALIZE_PASS().
2009-11-05 Dan GohmanUpdate various Loop optimization passes to cope with...
2009-10-25 Nick LewyckyRemove includes of Support/Compiler.h that are no longe...
2009-10-25 Nick LewyckyRemove VISIBILITY_HIDDEN from class/struct found inside...
2009-09-28 Dan GohmanConvert LoopSimplify and LoopExtractor from FunctionPas...
2009-08-23 Chris Lattnerconvert LoopInfo.h and GraphWriter.h to use raw_ostream
2008-09-04 Dan GohmanTidy up several unbeseeming casts from pointer to intptr_t.
2008-08-14 Dan GohmanUse empty() instead of begin() == end().
2008-05-13 Dan GohmanClean up the use of static and anonymous namespaces...
2008-05-06 Dan GohmanMake several variable declarations static.
2007-12-29 Chris LattnerRemove attribution from file headers, per discussion...
2007-11-14 Nick LewyckyAllow the block extractor take to take a list of basic...
2007-11-05 Gordon HenriksenDeleting redundant copy of block extractor pass. See...
2007-08-21 Devang PatelUse SmallVector instead of std::vector.
2007-08-01 Dan GohmanMore explicit keywords.
2007-06-07 Devang PatelDo not use ETForest as well as DomiantorTree. Dominato...
2007-05-06 Nick LewyckyFix typo in comment.
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-07 Owen AndersonExpunge DomSet from CodeExtractor. This is part of...
2007-02-05 Reid SpencerApply the VISIBILITY_HIDDEN field to the remaining...
2007-02-05 Reid SpencerFor PR411:
2006-12-19 Chris LattnerEliminate static ctors due to Statistic objects
2006-12-06 Chris LattnerDetemplatize the Statistic class. The only type it...
2006-08-27 Chris Lattnereliminate RegisterOpt. It does the same thing as Regis...
2005-04-21 Misha BrukmanRemove trailing whitespace
2005-01-10 Jeff CohenApply feedback from Chris.
2005-01-08 Jeff CohenAdd more missing createXxxPass functions.
2004-09-20 Chris Lattner'Pass' should now not be derived from by clients. ...
2004-09-01 Reid SpencerChanges For Bug 352
2004-08-13 Chris Lattner"extract" the block extractor pass from bugpoint (haha)
2004-07-29 Misha BrukmanFix #includes of i*.h => Instructions.h as per PR403.
2004-04-18 Chris LattnerChange the ExitBlocks list from being explicitly contai...
2004-03-18 Chris LattnerAdd statistics to the loop extractor. The loop extract...
2004-03-18 Chris LattnerFix problem with PHI nodes having multiple predecessors...
2004-03-18 Chris LattnerThe code extractor needs dominator info. Provide it
2004-03-15 Chris LattnerFix several bugs in the loop extractor. In particular...
2004-03-14 Chris LattnerSplit into two passes. Now there is the general loop...
2004-03-14 Chris LattnerPasses don't print stuff!
2004-03-14 Chris LattnerFunctionPass's should not define their own 'run' method.
2004-03-14 Chris LattnerMove prototype to IPO.h instead of Scalar.h
2004-03-14 Chris LattnerIndent anon namespace properly, add copyright block
2004-03-14 Chris LattnerMove to the IPO library. Utils shouldn't contain passes.