aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/IfConversion.cpp
Commit message (Expand)AuthorAgeFilesLines
* Teach if-converter to avoid removing BBs whose addresses are takne. rdar://13...Evan Cheng2013-05-051-2/+19
* Manually remove successors in if conversion when CopyAndPredicateBlock is usedHal Finkel2013-04-101-0/+8
* Avoid creating duplicate CFG edges in the IfConversion pass.Jakob Stoklund Olesen2013-01-241-1/+1
* Split TargetLowering into a CodeGen and a SelectionDAG part.Benjamin Kramer2013-01-111-1/+1
* Use MachineInstrBuilder in a few CodeGen passes.Jakob Stoklund Olesen2012-12-201-3/+3
* Use the new script to sort the includes of every file under lib.Chandler Carruth2012-12-031-9/+9
* Reduce duplicated hash map lookups.Benjamin Kramer2012-08-221-2/+1
* Add a getName function to MachineFunction. Use it in places that previously d...Craig Topper2012-08-221-2/+1
* Start implementing pre-ra if-converter: using speculation and selects to elim...Evan Cheng2012-06-081-6/+15
* Switch all register list clients to the new MC*Iterator interface.Jakob Stoklund Olesen2012-06-011-11/+10
* If-converter models predicated defs as read + write. The read should be marke...Evan Cheng2012-05-301-1/+2
* Convert more GenRegisterInfo tables from unsigned to uint16_t to reduce stati...Craig Topper2012-03-051-5/+5
* Codegen pass definition cleanup. No functionality.Andrew Trick2012-02-081-3/+2
* Convert assert(0) to llvm_unreachableCraig Topper2012-02-051-6/+5
* Add a if-conversion optimization that allows 'true' side of a diamond to beEvan Cheng2011-12-191-5/+91
* Add bundle aware API for querying instruction properties and switch the codeEvan Cheng2011-12-071-7/+5
* Added missing &. Fixes <rdar://problem/10393723>Pete Cooper2011-11-041-1/+1
* Fix typo in #include which revealed in the case-sensitive filesystem.Jakub Staszak2011-08-031-1/+1
* Use MachineBranchProbabilityInfo in If-Conversion instead of its own heuristics.Jakub Staszak2011-08-031-29/+10
* Revert patch which broke some IfConversion tests.Jakub Staszak2011-07-221-10/+29
* Fix typo in #include which revealed in the case-sensitive filesystem.Jakub Staszak2011-07-221-1/+1
* Use MachineBranchProbabilityInfo instead of MachineLoopInfo in IfConversion.Jakub Staszak2011-07-211-29/+10
* Use BranchProbability instead of floating points in IfConverter.Jakub Staszak2011-07-101-30/+29
* Don't analyze block if it's not considered for ifcvt anymore.Jakub Staszak2011-07-101-2/+3
* Sink SubtargetFeature and TargetInstrItineraries (renamed MCInstrItineraries)...Evan Cheng2011-06-291-1/+1
* - Rename TargetInstrDesc, TargetOperandInfo to MCInstrDesc and MCOperandInfo andEvan Cheng2011-06-281-5/+5
* Re-commit 131172 with fix. MachineInstr identity checks should check deadEvan Cheng2011-05-121-2/+2
* Revert 131172 as it is causing clang to miscompile itself. I will tryRafael Espindola2011-05-111-2/+2
* Add a late optimization to BranchFolding that hoist common instruction sequencesEvan Cheng2011-05-111-2/+2
* If converter was being too cute. It look for root BBs (which don't haveEvan Cheng2011-04-271-18/+3
* Prune includes.Benjamin Kramer2010-11-061-0/+1
* Two sets of changes. Sorry they are intermingled.Evan Cheng2010-11-031-23/+36
* When the "true" and "false" blocks of a diamond if-conversion are the same,Bob Wilson2010-10-261-52/+46
* Change if-conversion to keep track of the extra cost due to microcodedBob Wilson2010-10-261-11/+25
* Get rid of static constructors for pass registration. Instead, every pass ex...Owen Anderson2010-10-191-1/+3
* Begin adding static dependence information to passes, which will allow us toOwen Anderson2010-10-121-1/+3
* Now with fewer extraneous semicolons!Owen Anderson2010-10-071-1/+1
* Thread the determination of branch prediction hit rates back through the if-c...Owen Anderson2010-10-011-23/+39
* Silence msvc warnings.Benjamin Kramer2010-09-291-6/+6
* Give the if-converter access to MachineLoopInfo, and use it to generate plaus...Owen Anderson2010-09-281-16/+50
* Part one of switching to using a more sane heuristic for determining if-conve...Owen Anderson2010-09-281-4/+4
* Teach if-converter to be more careful with predicating instructions that wouldEvan Cheng2010-09-101-4/+9
* Reapply r110396, with fixes to appease the Linux buildbot gods.Owen Anderson2010-08-061-1/+1
* Revert r110396 to fix buildbots.Owen Anderson2010-08-061-1/+1
* Don't use PassInfo* as a type identifier for passes. Instead, use the addres...Owen Anderson2010-08-051-1/+1
* Fix batch of converting RegisterPass<> to INTIALIZE_PASS().Owen Anderson2010-07-211-2/+1
* Reapply my if-conversion cleanup from svn r106939 with fixes.Bob Wilson2010-06-291-34/+45
* new, no longer brain-dead, r106907Jim Grosbach2010-06-281-2/+9
* Revert r106907, "make sure to handle dbg_value instructions in the middle of theDaniel Dunbar2010-06-281-10/+2
* Revert my if-conversion cleanup since it caused a bunch of nightly testBob Wilson2010-06-261-37/+33