aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen/LiveInterval.cpp
AgeCommit message (Expand)AuthorFilesLines
2014-04-14[C++11] More 'nullptr' conversion. In some cases just using a boolean check i...Craig Topper1-6/+6
2014-03-13Phase 2 of the great MachineRegisterInfo cleanup. This time, we're changingOwen Anderson1-2/+2
2014-03-02[C++11] Replace llvm::next and llvm::prior with std::next and std::prev.Benjamin Kramer1-11/+11
2013-10-10Print register in LiveInterval::print()Matthias Braun1-0/+9
2013-10-10Pass LiveQueryResult by valueMatthias Braun1-1/+1
2013-10-10Refactor LiveInterval: introduce new LiveRange classMatthias Braun1-98/+92
2013-10-10Rename LiveRange to LiveInterval::SegmentMatthias Braun1-112/+110
2013-09-06avoid unnecessary direct access to LiveInterval::rangesMatthias Braun1-24/+23
2013-09-06remove unused argument from LiveRanges::join()Matthias Braun1-2/+1
2013-08-14Remove unnecessary parameter to RenumberValues.Jakob Stoklund Olesen1-1/+1
2013-07-11Use SmallVectorImpl& instead of SmallVector to avoid repeating small vector s...Craig Topper1-1/+1
2013-05-23Fix PR16110: Handle DBG_VALUE in ConnectedVNInfoEqClasses::Distribute().Jakob Stoklund Olesen1-2/+10
2013-02-20Don't allocate memory in LiveInterval::join().Jakob Stoklund Olesen1-10/+7
2013-02-20Use LiveRangeUpdater instead of mergeIntervalRanges.Jakob Stoklund Olesen1-140/+11
2013-02-20Add a LiveRangeUpdater class.Jakob Stoklund Olesen1-0/+200
2013-02-20Fully qualify llvm::next to avoid ambiguity when building as C++11.David Blaikie1-1/+1
2012-12-03Use the new script to sort the includes of every file under lib.Chandler Carruth1-4/+4
2012-11-19Handle mixed normal and early-clobber defs on inline asm.Jakob Stoklund Olesen1-2/+10
2012-09-27Don't dereference begin() on an empty vector.Jakob Stoklund Olesen1-1/+1
2012-09-12Delete dead code.Jakob Stoklund Olesen1-36/+0
2012-09-11Release build: guard dump functions withManman Ren1-2/+2
2012-09-06Release build: guard dump functions with "ifndef NDEBUG"Manman Ren1-0/+4
2012-09-06Allow overlaps between virtreg and physreg live ranges.Jakob Stoklund Olesen1-0/+43
2012-08-03Completely eliminate VNInfo flags.Jakob Stoklund Olesen1-4/+1
2012-08-03Eliminate the VNInfo::hasPHIKill() flag.Jakob Stoklund Olesen1-3/+1
2012-07-25Preserve 2-addr constraints in ConnectedVNInfoEqClasses.Jakob Stoklund Olesen1-7/+4
2012-07-10Teach the LiveInterval::join function to use the fast merge algorithm,Chandler Carruth1-14/+17
2012-07-10Fix a bug where I didn't test for an empty range before inspecting theChandler Carruth1-1/+2
2012-07-10Add an efficient merge operation to LiveInterval and use it to avoidChandler Carruth1-32/+132
2012-07-10Teach LiveIntervals how to verify themselves and start using it in someChandler Carruth1-0/+33
2012-07-05Optimize extendIntervalEndTo a tiny bit by saving one call through theChandler Carruth1-7/+7
2012-06-05Simplify LiveInterval::print().Jakob Stoklund Olesen1-7/+2
2012-06-05Implement LiveRangeCalc::extendToUses() and createDeadDefs().Jakob Stoklund Olesen1-0/+20
2012-05-19Run proper recursive dead code elimination during coalescing.Jakob Stoklund Olesen1-1/+4
2012-04-28Don't update spill weights when joining intervals.Jakob Stoklund Olesen1-25/+0
2012-04-28Spring cleaning - Delete dead code.Jakob Stoklund Olesen1-12/+0
2012-02-04Drop the REDEF_BY_EC VNInfo flag.Jakob Stoklund Olesen1-2/+0
2012-02-02Break as soon as the MustMapCurValNos flag is set - no need to reiterate.Lang Hames1-1/+3
2012-02-02PR11868. The previous loop in LiveIntervals::join would sometimes fall over ifLang Hames1-11/+12
2011-11-14Use getVNInfoBefore() when it makes sense.Jakob Stoklund Olesen1-3/+2
2011-11-13Rename SlotIndexes to match how they are used.Jakob Stoklund Olesen1-1/+1
2011-09-15Leave hasPHIKill flags alone in LiveInterval::RenumberValues.Jakob Stoklund Olesen1-21/+0
2011-09-13Switch extendInBlock() to take a kill slot instead of the last use slot.Jakob Stoklund Olesen1-7/+7
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