aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/LiveInterval.cpp
AgeCommit message (Expand)Author
2011-03-19Replace a broken LiveInterval::MergeValueInAsValue() with something simpler.Jakob Stoklund Olesen
2011-03-17Rewrite instructions as part of ConnectedVNInfoEqClasses::Distribute.Jakob Stoklund Olesen
2011-03-12That's it, I am declaring this a failure of the C++03 STL.Jakob Stoklund Olesen
2011-03-11Fix use of CompEnd predicate to be standards conformingJohn Wiegley
2011-03-08Fix the build for MSVC 9 whose upper_bound() wants to compare elements in the...Jakob Stoklund Olesen
2011-03-08Revert "Make a comparator's argument `const'. This fixes the build forOscar Fuentes
2011-03-08Make a comparator's argument `const'. This fixes the build for MSVC 9.Oscar Fuentes
2011-03-03Avoid comparing invalid slot indexes.Jakob Stoklund Olesen
2011-03-02Move LiveIntervalMap::extendTo into LiveInterval itself.Jakob Stoklund Olesen
2011-01-19Implement RAGreedy::splitAroundRegion and remove loop splitting.Jakob Stoklund Olesen
2011-01-09Teach TargetRegisterInfo how to cram stack slot indexes in with the virtual andJakob Stoklund Olesen
2011-01-09Replace TargetRegisterInfo::printReg with a PrintReg class that also works wi...Jakob Stoklund Olesen
2010-12-21Use IntEqClasses to compute connected components of live intervals.Jakob Stoklund Olesen
2010-12-19Fix PR8815 by checking for an explicit clobber def tied to a use operand inCameron Zwarich
2010-10-29Teach ConnectedVNInfoEqClasses::Classify to deal with unused values.Jakob Stoklund Olesen
2010-10-29Fix broken equivalence class calculation. We could probably also useJakob Stoklund Olesen
2010-10-09Silence compiler warning.Benjamin Kramer
2010-10-08Classify value numbers into connected components in linear time.Jakob Stoklund Olesen
2010-10-07After splitting, the remaining LiveInterval may be fragmented into multipleJakob Stoklund Olesen
2010-10-05Tweak VNInfo printing.Jakob Stoklund Olesen
2010-10-05Add assert for valid slot indexes.Jakob Stoklund Olesen
2010-10-01When RemoveCopyByCommutingDef is creating additional identity copies, just useJakob Stoklund Olesen
2010-09-25Removed VNInfo::isDefAccurate(). Def "accuracy" can be checked by testing whe...Lang Hames
2010-09-21Refix MSVC9 and upper_bound. It actually needs a fully symmetric comparator.Jakob Stoklund Olesen
2010-09-21Don't pollute the global namespace.Jakob Stoklund Olesen
2010-09-21MSVC9 does not support upper_bound with an asymmetric comparator.Jakob Stoklund Olesen
2010-09-21Add LiveInterval::find and use it for most LiveRange searching operationsJakob Stoklund Olesen
2010-09-21Remove dead method.Jakob Stoklund Olesen
2010-09-08Remove dead code.Jakob Stoklund Olesen
2010-09-04Remove dead code.Jakob Stoklund Olesen
2010-08-12Also recompute HasPHIKill flags in LiveInterval::RenumberValues.Jakob Stoklund Olesen
2010-08-12Remove trailing whitespace.Jakob Stoklund Olesen
2010-08-10Transpose the calculation of spill weights such that we are calculating oneJakob Stoklund Olesen
2010-08-06Add LiveInterval::RenumberValues - Garbage collection for VNInfos.Jakob Stoklund Olesen
2010-08-02Prefix `next' iterator operation with `llvm::'.Oscar Fuentes
2010-07-26Factored out a bit of common code to mark VNInfos for deletion.Lang Hames
2010-07-13Print VNInfo flags.Jakob Stoklund Olesen
2010-07-13Add an assertion to make PR7542 fail consistently.Jakob Stoklund Olesen
2010-07-13Fix LiveInterval::overlaps so it doesn't claim touching intervals overlap.Jakob Stoklund Olesen
2010-06-29Remove initialized but otherwise unused variables.Duncan Sands
2010-06-25Don't track kills in VNInfo. Use interval ends instead.Jakob Stoklund Olesen
2010-06-24Make sure all eliminated kills are removed from VNInfo lists.Jakob Stoklund Olesen
2010-06-23Add a few VNInfo data structure checks.Jakob Stoklund Olesen
2010-03-30Introduce SpecificBumpPtrAllocator, a wrapper for BumpPtrAllocator which allowsBenjamin Kramer
2010-03-30Fix -Asserts warning.Daniel Dunbar
2010-03-30Reapply r99881 with some fixes: only call destructor in releaseMemory!Torok Edwin
2010-01-12Fix a comment typo.Bob Wilson
2010-01-04Change errs() to dbgs().David Greene
2009-12-09Added a new "splitting" spiller.Lang Hames
2009-11-03The Indexes Patch.Lang Hames