aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen/MachineLoopInfo.cpp
AgeCommit message (Expand)AuthorFilesLines
2019-11-13Sink all InitializePasses.h includesReid Kleckner1-0/+4
2019-10-28[PGO][PGSO] SizeOpts changes.Hiroshi Yamauchi1-2/+6
2019-10-20Reverted r375254 as it has broken some build bots for a long time.Vladimir Vereschaka1-6/+2
2019-10-18[PGO][PGSO] SizeOpts changes.Hiroshi Yamauchi1-2/+6
2019-01-19Update the file headers across all of the LLVM projects in the monorepoChandler Carruth1-4/+3
2018-04-30IWYU for llvm-config.h in llvm, additions.Nico Weber1-0/+1
2017-10-15Reverting r315590; it did not include changes for llvm-tblgen, which is causi...Aaron Ballman1-1/+1
2017-10-12[dump] Remove NDEBUG from test to enable dump methods [NFC]Don Hinton1-1/+1
2017-01-25New OptimizationRemarkEmitter pass for MIRAdam Nemet1-0/+16
2016-08-15MachineLoop: add methods findLoopControlBlock and findLoopPreheaderSjoerd Meijer1-0/+45
2016-02-21ADT: Remove == and != comparisons between ilist iterators and pointersDuncan P. N. Exon Smith1-3/+4
2016-01-29Annotate dump() methods with LLVM_DUMP_METHOD, addressing Richard Smith r2591...Yaron Keren1-1/+1
2015-10-09CodeGen: Continue removing ilist iterator implicit conversionsDuncan P. N. Exon Smith1-5/+6
2015-07-16Rename LoopInfo::Analyze() to LoopInfo::analyze() and turn its parameter type...Cong Hou1-1/+1
2015-03-23Re-sort includes with sort-includes.py and insert raw_ostream.h where it's used.Benjamin Kramer1-0/+1
2014-03-02[C++11] Replace llvm::next and llvm::prior with std::next and std::prev.Benjamin Kramer1-6/+6
2012-12-03Use the new script to sort the includes of every file under lib.Chandler Carruth1-1/+1
2012-09-11Release build: guard dump functions withManman Ren1-1/+1
2012-09-06Release build: guard dump functions with "ifndef NDEBUG"Manman Ren1-0/+2
2012-06-26Enable the new LoopInfo algorithm by default.Andrew Trick1-9/+1
2012-06-20A new algorithm for computing LoopInfo. Temporarily disabled.Andrew Trick1-1/+9
2012-06-20Move the implementation of LoopInfo into LoopInfoImpl.h.Andrew Trick1-9/+5
2010-10-12Begin adding static dependence information to passes, which will allow us toOwen Anderson1-1/+4
2010-10-07Now with fewer extraneous semicolons!Owen Anderson1-1/+1
2010-08-23Now that PassInfo and Pass::ID have been separated, move the rest of the pass...Owen Anderson1-2/+2
2010-08-06Reapply r110396, with fixes to appease the Linux buildbot gods.Owen Anderson1-1/+1
2010-08-06Revert r110396 to fix buildbots.Owen Anderson1-1/+1
2010-08-05Don't use PassInfo* as a type identifier for passes. Instead, use the addres...Owen Anderson1-1/+1
2010-01-05Restore dump() methods to Loop and MachineLoop.Dan Gohman1-0/+5
2009-12-16Explicit template instantiations must happen in the template's immediatelyJohn McCall1-0/+2
2009-12-03improve portability to avoid conflicting with std::next in c++'0x.Chris Lattner1-3/+3
2009-10-20Add getTopBlock and getBottomBlock member functions to MachineLoopInfo.Dan Gohman1-0/+28
2009-07-31Reapply r77654 with a fix: MachineFunctionPass's getAnalysisUsageDan Gohman1-0/+1
2009-07-31Revert r77654, it appears to be causing llvm-gcc bootstrap failures, and manyDaniel Dunbar1-1/+0
2009-07-31Manage MachineFunctions with an analysis Pass instead of the AnnotableDan Gohman1-0/+1
2009-07-13Make Loop and MachineLoop be subclasses of LoopBase, rather than typedefs,Dan Gohman1-2/+6
2009-06-27Eliminate a layer of indirection in LoopInfo and MachineLoopInfo.Dan Gohman1-1/+1
2008-05-13Change class' public PassInfo variables to by initialized with theDan Gohman1-1/+1
2008-05-13Clean up the use of static and anonymous namespaces. This turned upDan Gohman1-4/+2
2008-05-06Remove uses of llvm/System/IncludeFile.h that are no longer needed.Dan Gohman1-3/+0
2008-01-05make this build with newer gcc'sChris Lattner1-2/+1
2008-01-04Don't recalculate the loop info and loop dominators analyses if they'reBill Wendling1-3/+8
2007-12-29Remove attribution from file headers, per discussion on llvmdev.Chris Lattner1-2/+2
2007-11-28Add missing newlines at EOF.Duncan Sands1-1/+1
2007-11-27Add MachineLoopInfo. This is not yet tested.Owen Anderson1-0/+41