aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/Spiller.cpp
AgeCommit message (Expand)Author
2011-03-10Change the Spiller interface to take a LiveRangeEdit reference.Jakob Stoklund Olesen
2011-03-10Make SpillIs an optional pointer. Avoid creating a bunch of temporary SmallVe...Jakob Stoklund Olesen
2011-01-09Teach TargetRegisterInfo how to cram stack slot indexes in with the virtual andJakob Stoklund Olesen
2010-12-10Force the greedy register allocator to always use the inline spiller.Jakob Stoklund Olesen
2010-11-11Delete SplittingSpiller. It was not being used by anyone, and it is beingJakob Stoklund Olesen
2010-11-10RABasic is nearly functionally complete. There are a few remainingAndrew Trick
2010-10-26Make the spiller responsible for updating the LiveStacks analysis.Jakob Stoklund Olesen
2010-09-25Removed VNInfo::isDefAccurate(). Def "accuracy" can be checked by testing whe...Lang Hames
2010-09-25Remove the only use of SlotIndex::isPHI. This bit is not being set consistentlyJakob Stoklund Olesen
2010-08-13Clean up the Spiller.h interface.Jakob Stoklund Olesen
2010-07-20Change the createSpiller interface to take a MachineFunctionPass argument.Jakob Stoklund Olesen
2010-07-19Spillers may alter MachineLoopInfo when breaking critical edges, so make itJakob Stoklund Olesen
2010-07-10Replace copyRegToReg with COPY everywhere in lib/CodeGen except for FastISel.Jakob Stoklund Olesen
2010-07-06Fix to 80-col.Eric Christopher
2010-06-30Some fool committed without testing (or even building) first.Jakob Stoklund Olesen
2010-06-30Remember to track spill slot uses in VirtRegMap when inserting loads and stores.Jakob Stoklund Olesen
2010-06-30Use clEnumValN macro to work around keyword clashJakob Stoklund Olesen
2010-06-29Begin implementation of an inline spiller.Jakob Stoklund Olesen
2010-06-25Don't track kills in VNInfo. Use interval ends instead.Jakob Stoklund Olesen
2010-06-24Don't return a std::vector in the Spiller interface, but take a reference to aJakob Stoklund Olesen
2010-05-11Fixes for Microsoft Visual Studio 2010, from Steven Watanabe!Douglas Gregor
2010-05-06Add a DebugLoc argument to TargetInstrInfo::copyRegToReg, so that itDan Gohman
2010-05-06Add argument TargetRegisterInfo to loadRegFromStackSlot and storeRegToStackSlot.Evan Cheng
2010-05-0680 col violation.Evan Cheng
2010-04-07remove some unneeded errorhandling stuff.Chris Lattner
2010-01-05Change errs() to dbgs().David Greene
2009-12-22Changed slot index ranges for MachineBasicBlocks to be exclusive of endpoint.Lang Hames
2009-12-09Added a new "splitting" spiller.Lang Hames
2009-12-03improve portability to avoid conflicting with std::next in c++'0x.Chris Lattner
2009-11-20Removed references to LiveStacks from Spiller.* . They're no longer needed.Lang Hames
2009-11-19Added a new Spiller implementation which wraps LiveIntervals::addIntervalsFor...Lang Hames
2009-11-18Fixed the in-place spiller and trivial rewriter, which had been broken by the...Lang Hames
2009-11-14Added an API to the SlotIndexes pass to allow new instructions to be inserted...Lang Hames
2009-11-03The Indexes Patch.Lang Hames
2009-10-03Oops. Renamed remaining MachineInstrIndex references.Lang Hames
2009-10-03Renamed MachineInstrIndex to LiveIndex.Lang Hames
2009-09-04Replaces uses of unsigned for indexes in LiveInterval and VNInfo withLang Hames
2009-08-22Convert DOUT to DEBUG(errs()...).Bill Wendling
2009-07-09Improved tracking of value number kills. VN kills are now representedLang Hames
2009-06-24Completed basic intra block split implementation.Lang Hames
2009-06-19More VNInfo tweaking, plus a little progress on intra-block splitting.Lang Hames
2009-06-17VNInfo cleanup.Lang Hames
2009-06-02Update to in-place spilling framework. Includes live interval scaling and tri...Lang Hames
2009-05-18New Spiller interface and trivial implementation.Lang Hames
2009-05-06Renamed Spiller classes (plus uses and related files) to VirtRegRewriter.Lang Hames
2009-04-21It has finally happened. Spiller is now using live interval info.Evan Cheng
2009-04-17Teach spiller to unfold instructions which modref spill slot when a scratchEvan Cheng
2009-04-13When assigning a physical register to a MachineOperand, setDan Gohman
2009-04-09Fix pr3954. The register scavenger asserts for inline assembly withBob Wilson
2009-03-31Oy! When reverting r68073, I added in experimental code. Sorry...Bill Wendling