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