summaryrefslogtreecommitdiff
path: root/lib/CodeGen/InlineSpiller.cpp
AgeCommit message (Expand)AuthorFilesLines
2012-09-12Add an analyzePhysReg() function to MachineOperandIteratorBase that analyses ...James Molloy1-2/+2
2012-09-01Fix typo.Logan Chien1-1/+1
2012-07-14Account for early-clobber reload instructions.Jakob Stoklund Olesen1-0/+4
2012-06-15Print out register number in InlineSpiller.Jakob Stoklund Olesen1-2/+2
2012-06-06Round 2 of dead private variable removal.Benjamin Kramer1-3/+1
2012-05-20Use LiveRangeQuery instead of getLiveRangeContaining().Jakob Stoklund Olesen1-4/+4
2012-04-02Moved LiveRangeEdit.h so that it can be called from other parts of the backen...Pete Cooper1-1/+1
2012-04-02Refactored the LiveRangeEdit interface so that MachineFunction, TargetInstrIn...Pete Cooper1-11/+11
2012-03-01Make InlineSpiller bundle-aware.Jakob Stoklund Olesen1-45/+48
2012-02-04Don't store COPY pointers in VNInfo.Jakob Stoklund Olesen1-9/+10
2011-12-12Fixed register allocator splitting a live range on a spilling variable.Pete Cooper1-2/+2
2011-12-07Add bundle aware API for querying instruction properties and switch the codeEvan Cheng1-2/+2
2011-11-14Use getVNInfoBefore() when it makes sense.Jakob Stoklund Olesen1-1/+1
2011-11-13Terminate all dead defs at the dead slot instead of the 'next' slot.Jakob Stoklund Olesen1-1/+1
2011-11-13Rename SlotIndexes to match how they are used.Jakob Stoklund Olesen1-12/+12
2011-11-13Stop tracking spill slot uses in VirtRegMap.Jakob Stoklund Olesen1-6/+0
2011-11-10Strip old implicit operands after foldMemoryOperand.Jakob Stoklund Olesen1-2/+19
2011-10-14Add value numbers when spilling dead defs.Jakob Stoklund Olesen1-1/+9
2011-09-16Disable local spill hoisting for non-killing copies.Jakob Stoklund Olesen1-5/+15
2011-09-15Add an option to disable spill hoisting.Jakob Stoklund Olesen1-1/+5
2011-09-15Count correctly when a COPY turns into a spill or reload.Jakob Stoklund Olesen1-1/+7
2011-09-15Count inserted spills and reloads more accurately.Jakob Stoklund Olesen1-14/+22
2011-09-15Trace through sibling PHIs in bulk.Jakob Stoklund Olesen1-23/+50
2011-09-09Reapply r139247: Cache intermediate results during traceSiblingValue.Jakob Stoklund Olesen1-82/+239
2011-09-07Revert r139247 "Cache intermediate results during traceSiblingValue."Jakob Stoklund Olesen1-221/+82
2011-09-07Cache intermediate results during traceSiblingValue.Jakob Stoklund Olesen1-82/+221
2011-09-01Revert r138794, "Do not try to rematerialize a value from a partial definition."Jakob Stoklund Olesen1-22/+1
2011-08-30Do not try to rematerialize a value from a partial definition.Bob Wilson1-1/+22
2011-07-18Fix PR10387.Jakob Stoklund Olesen1-1/+1
2011-07-09Oops, didn't mean to commit that.Jakob Stoklund Olesen1-1/+1
2011-07-09Hoist spills within a basic block.Jakob Stoklund Olesen1-3/+28
2011-07-05Fix PR10277.Jakob Stoklund Olesen1-0/+1
2011-06-30Create a isFullCopy predicate.Rafael Espindola1-5/+1
2011-05-11Avoid hoisting spills when looking at a copy from another register that is alsoJakob Stoklund Olesen1-7/+16
2011-05-05Add some statistics to the splitting and spilling frameworks.Jakob Stoklund Olesen1-5/+32
2011-04-30Avoid using stale entries form the sibling value map.Jakob Stoklund Olesen1-5/+21
2011-04-20Add debug output for rematerializable instructions.Jakob Stoklund Olesen1-2/+4
2011-04-18Handle spilling around an instruction that has an early-clobber re-definition ofJakob Stoklund Olesen1-14/+15
2011-03-31Pick a conservative register class when creating a small live range for remat.Jakob Stoklund Olesen1-1/+1
2011-03-29Recompute register class and hint for registers created during spilling.Jakob Stoklund Olesen1-33/+41
2011-03-29Remember to use the correct register when rematerializing for snippets.Jakob Stoklund Olesen1-6/+6
2011-03-29Run dead code elimination immediately after rematerialization.Jakob Stoklund Olesen1-9/+24
2011-03-29Properly enable rematerialization when spilling after live range splitting.Jakob Stoklund Olesen1-60/+102
2011-03-26Use individual register classes when spilling snippets.Jakob Stoklund Olesen1-21/+25
2011-03-20Also eliminate redundant spills downstream of inserted reloads.Jakob Stoklund Olesen1-9/+17
2011-03-20Change an argument to a LiveInterval instead of a register number to save som...Jakob Stoklund Olesen1-13/+13
2011-03-19Add debug output.Jakob Stoklund Olesen1-0/+4
2011-03-18Hoist spills when the same value is known to be in less loopy sibling registers.Jakob Stoklund Olesen1-22/+148
2011-03-17Dead code elimination may separate the live interval into multiple connected ...Jakob Stoklund Olesen1-2/+2
2011-03-15Trace back through sibling copies to hoist spills and find rematerializable d...Jakob Stoklund Olesen1-10/+208