summaryrefslogtreecommitdiff
path: root/lib/CodeGen/IfConversion.cpp
AgeCommit message (Expand)AuthorFilesLines
2014-03-07[C++11] Add 'override' keyword to virtual methods that override their base cl...Craig Topper1-2/+2
2014-03-02[C++11] Replace llvm::next and llvm::prior with std::next and std::prev.Benjamin Kramer1-1/+1
2014-02-07PGO branch weight: fix PR18752.Manman Ren1-5/+4
2014-01-29PGO branch weight: update edge weights in IfConverter.Manman Ren1-0/+47
2014-01-07Re-sort all of the includes with ./utils/sort_includes.py so thatChandler Carruth1-1/+1
2013-12-14Convert register liveness tracking to work on a sub-register level instead of...Juergen Ributzka1-24/+22
2013-12-13Revert "Convert liveness tracking to work on a sub-register level instead of ...Andrew Trick1-22/+24
2013-12-13Convert liveness tracking to work on a sub-register level instead of just reg...Andrew Trick1-24/+22
2013-10-14LiveRegUnits: Use *MBB for consistency and convenience.Andrew Trick1-6/+6
2013-10-14Use a SparseSet in LiveRegUnits.Andrew Trick1-19/+18
2013-10-14Convert LiveRegUnits methods to the current convention (it's new code).Andrew Trick1-12/+12
2013-10-11fConversion: Attempt #2 at fixing the MSVC build.Benjamin Kramer1-2/+2
2013-10-11IfConversion: Try to unbreak the MSVC build.Benjamin Kramer1-1/+1
2013-10-11Remove kill flags after if conversion if necessaryMatthias Braun1-66/+89
2013-09-30IfConverter: Use TargetSchedule for instruction latenciesArnold Schwaighofer1-7/+13
2013-09-09[ARMv8] Prevent generation of deprecated IT blocks on ARMv8 in Thumb mode.Joey Gouly1-21/+18
2013-07-24Fix a bug in IfConverter with nested predicates.Quentin Colombet1-3/+3
2013-05-22Simplify logic now that r182490 is in place. No functional change intended.Chad Rosier1-8/+8
2013-05-05Teach if-converter to avoid removing BBs whose addresses are takne. rdar://13...Evan Cheng1-2/+19
2013-04-10Manually remove successors in if conversion when CopyAndPredicateBlock is usedHal Finkel1-0/+8
2013-01-24Avoid creating duplicate CFG edges in the IfConversion pass.Jakob Stoklund Olesen1-1/+1
2013-01-11Split TargetLowering into a CodeGen and a SelectionDAG part.Benjamin Kramer1-1/+1
2012-12-20Use MachineInstrBuilder in a few CodeGen passes.Jakob Stoklund Olesen1-3/+3
2012-12-03Use the new script to sort the includes of every file under lib.Chandler Carruth1-9/+9
2012-08-22Reduce duplicated hash map lookups.Benjamin Kramer1-2/+1
2012-08-22Add a getName function to MachineFunction. Use it in places that previously d...Craig Topper1-2/+1
2012-06-08Start implementing pre-ra if-converter: using speculation and selects to elim...Evan Cheng1-6/+15
2012-06-01Switch all register list clients to the new MC*Iterator interface.Jakob Stoklund Olesen1-11/+10
2012-05-30If-converter models predicated defs as read + write. The read should be marke...Evan Cheng1-1/+2
2012-03-05Convert more GenRegisterInfo tables from unsigned to uint16_t to reduce stati...Craig Topper1-5/+5
2012-02-08Codegen pass definition cleanup. No functionality.Andrew Trick1-3/+2
2012-02-05Convert assert(0) to llvm_unreachableCraig Topper1-6/+5
2011-12-19Add a if-conversion optimization that allows 'true' side of a diamond to beEvan Cheng1-5/+91
2011-12-07Add bundle aware API for querying instruction properties and switch the codeEvan Cheng1-7/+5
2011-11-04Added missing &. Fixes <rdar://problem/10393723>Pete Cooper1-1/+1
2011-08-03Fix typo in #include which revealed in the case-sensitive filesystem.Jakub Staszak1-1/+1
2011-08-03Use MachineBranchProbabilityInfo in If-Conversion instead of its own heuristics.Jakub Staszak1-29/+10
2011-07-22Revert patch which broke some IfConversion tests.Jakub Staszak1-10/+29
2011-07-22Fix typo in #include which revealed in the case-sensitive filesystem.Jakub Staszak1-1/+1
2011-07-21Use MachineBranchProbabilityInfo instead of MachineLoopInfo in IfConversion.Jakub Staszak1-29/+10
2011-07-10Use BranchProbability instead of floating points in IfConverter.Jakub Staszak1-30/+29
2011-07-10Don't analyze block if it's not considered for ifcvt anymore.Jakub Staszak1-2/+3
2011-06-29Sink SubtargetFeature and TargetInstrItineraries (renamed MCInstrItineraries)...Evan Cheng1-1/+1
2011-06-28- Rename TargetInstrDesc, TargetOperandInfo to MCInstrDesc and MCOperandInfo andEvan Cheng1-5/+5
2011-05-12Re-commit 131172 with fix. MachineInstr identity checks should check deadEvan Cheng1-2/+2
2011-05-11Revert 131172 as it is causing clang to miscompile itself. I will tryRafael Espindola1-2/+2
2011-05-11Add a late optimization to BranchFolding that hoist common instruction sequencesEvan Cheng1-2/+2
2011-04-27If converter was being too cute. It look for root BBs (which don't haveEvan Cheng1-18/+3
2010-11-06Prune includes.Benjamin Kramer1-0/+1
2010-11-03Two sets of changes. Sorry they are intermingled.Evan Cheng1-23/+36