aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen/MachineSink.cpp
AgeCommit message (Expand)AuthorFilesLines
2014-12-04Use DomTree in MachineSink to sink over diamonds.Patrik Hagglund1-15/+19
2014-11-19Update SetVector to rely on the underlying set's insert to return a pair<iter...David Blaikie1-1/+1
2014-10-15[MachineSink] Use the real post dominator treeJingyue Wu1-21/+14
2014-10-14Access subtarget specific variables off of the MachineFunction'sEric Christopher1-4/+2
2014-10-01Revert r216862 due to a performance regressionJingyue Wu1-9/+21
2014-09-25[MachineSink+PGO] Teach MachineSink to use BlockFrequencyInfoBruno Cardoso Lopes1-6/+23
2014-09-09[MachineSinking] Conservatively clear kill flags after coalescing.Patrik Hagglund1-0/+5
2014-09-04Revert r216803 "[MachineSinking] Clear kill flag of all operands at all their...Juergen Ributzka1-13/+3
2014-09-01[MachineSink] Use the real post dominator treeJingyue Wu1-21/+9
2014-08-29[MachineSinking] Clear kill flag of all operands at all their uses.Juergen Ributzka1-3/+13
2014-08-11[MachineSink] Improve the compile time by preserving the dominance informationQuentin Colombet1-39/+60
2014-08-04Remove the TargetMachine forwards for TargetSubtargetInfo basedEric Christopher1-2/+3
2014-07-29Add TargetInstrInfo interface isAsCheapAsAMove.Jiangning Liu1-1/+1
2014-04-22[Modules] Remove potential ODR violations by sinking the DEBUG_TYPEChandler Carruth1-1/+2
2014-04-14[C++11] More 'nullptr' conversion. In some cases just using a boolean check i...Craig Topper1-17/+17
2014-03-31Disable each MachineFunctionPass for 'optnone' functions, unless thatPaul Robinson1-0/+3
2014-03-17Switch a number of loops in lib/CodeGen over to range-based for-loops, now thatOwen Anderson1-16/+11
2014-03-13Phase 2 of the great MachineRegisterInfo cleanup. This time, we're changingOwen Anderson1-4/+4
2014-03-07[C++11] Add 'override' keyword to virtual methods that override their base cl...Craig Topper1-3/+3
2014-03-01Now that we have C++11, turn simple functors into lambdas and remove a ton of...Benjamin Kramer1-11/+6
2013-10-14MachineSink: Fix and tweak critical-edge breaking heuristic.Will Dietz1-7/+23
2013-07-14Use SmallVectorImpl& instead of SmallVector to avoid repeating small vector s...Craig Topper1-1/+1
2013-07-03Use SmallVectorImpl instead of SmallVector for iterators and references to av...Craig Topper1-3/+3
2012-12-03Use the new script to sort the includes of every file under lib.Chandler Carruth1-7/+7
2012-10-16Remove unused BitVectors from getAllocatableSet().Jakob Stoklund Olesen1-2/+0
2012-07-31MachineSink: Sort the successors before trying to find SuccToSinkTo.Manman Ren1-1/+1
2012-07-31MachineSink: Sort the successors before trying to find SuccToSinkTo.Manman Ren1-2/+15
2012-02-08Codegen pass definition cleanup. No functionality.Andrew Trick1-2/+1
2012-02-08whitespaceAndrew Trick1-5/+5
2012-01-16Extract method for detecting constant unallocatable physregs.Jakob Stoklund Olesen1-14/+1
2011-12-14Do not sink instruction, if it is not profitable.Devang Patel1-13/+76
2011-12-09Fix comment.Devang Patel1-2/+1
2011-12-09Update stale comment.Devang Patel1-4/+1
2011-12-08Revert r146184. I am seeing performance regression cause by this patch in one...Devang Patel1-10/+11
2011-12-08Refactor. No intentional functionality change.Devang Patel1-29/+41
2011-12-08Filter "sink to" candidate blocks sooner. This avoids unnecessary computation...Devang Patel1-11/+13
2011-12-07Add bundle aware API for querying instruction properties and switch the codeEvan Cheng1-1/+1
2011-09-07While sinking machine instructions, sink matching DBG_VALUEs also otherwise l...Devang Patel1-0/+31
2011-04-11Fix a couple of places where changes are made but not tracked.Evan Cheng1-1/+4
2010-10-19Get rid of static constructors for pass registration. Instead, every pass ex...Owen Anderson1-1/+3
2010-10-12Begin adding static dependence information to passes, which will allow us toOwen Anderson1-1/+6
2010-10-07Now with fewer extraneous semicolons!Owen Anderson1-1/+1
2010-09-23Don't sink insert_subreg, subreg_to_reg, reg_sequence. They are meant to beEvan Cheng1-1/+10
2010-09-20Enable machine sinking critical edge splitting. e.g.Evan Cheng1-7/+2
2010-09-20Avoid splitting critical edge twice for a set of PHI uses.Evan Cheng1-17/+23
2010-09-18Fix code that break critical edges for PHI uses. Watch out for multiple PHIs ...Evan Cheng1-71/+66
2010-09-17Teach machine sink toEvan Cheng1-68/+218
2010-08-19Update debug logs.Evan Cheng1-4/+4
2010-08-19It's possible to sink a def if its local uses are PHI's.Evan Cheng1-5/+5
2010-08-19Remove disabled assertion.Evan Cheng1-2/+0