aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen/LiveInterval.cpp
AgeCommit message (Expand)AuthorFilesLines
2016-02-27CodeGen: Take MachineInstr& in SlotIndexes and LiveIntervals, NFCDuncan P. N. Exon Smith1-6/+6
2016-02-18Remove uses of builtin comma operator.Richard Trieu1-3/+5
2016-02-08[regalloc][WinEH] Do not mark intervals as not spillable if they contain a re...Andrew Kaylor1-0/+34
2016-01-29Annotate dump() methods with LLVM_DUMP_METHOD, addressing Richard Smith r2591...Yaron Keren1-5/+4
2016-01-20LiveInterval: Add utility class to rename independent subregister usageMatthias Braun1-0/+183
2016-01-08LiveInterval: A LiveRange is enough for ConnectedVNInfoEqClasses::Classify()Matthias Braun1-5/+5
2015-09-25TargetRegisterInfo: Introduce PrintLaneMask.Matthias Braun1-2/+1
2015-09-25TargetRegisterInfo: Add typedef unsigned LaneBitmask and use it where apropri...Matthias Braun1-4/+4
2015-09-24Fix typoMatt Arsenault1-1/+1
2015-09-22LiveInterval: Distribute subregister liveranges to new intervals in Connected...Matthias Braun1-29/+65
2015-09-22LiveIntervalAnalysis: Factor common code into splitSeparateComponents; NFCMatthias Braun1-9/+7
2015-07-16LiveInterval: Document and enforce rules about empty subranges.Matthias Braun1-0/+2
2015-04-08Oops, didn't mean to commit my debug fprintfsMatthias Braun1-4/+1
2015-04-08LiveInterval: Fix computeFromMainRange() producing adjacent segments with sam...Matthias Braun1-14/+45
2015-03-23Move private classes into anonymous namespacesBenjamin Kramer1-0/+2
2015-03-04Recommit r231168: unique_ptrify LiveRange::segmentSetDavid Blaikie1-1/+0
2015-03-04Revert "unique_ptrify LiveRange::segmentSet"David Blaikie1-0/+1
2015-03-03Recommit r231168: unique_ptrify LiveRange::segmentSetDavid Blaikie1-1/+0
2015-03-03Revert "unique_ptrify LiveRange::segmentSet"David Blaikie1-0/+1
2015-03-03unique_ptrify LiveRange::segmentSetDavid Blaikie1-1/+0
2015-03-03Revert "Remove the explicit SDNodeIterator::operator= in favor of the implici...David Blaikie1-0/+1
2015-03-03Remove the explicit SDNodeIterator::operator= in favor of the implicit defaultDavid Blaikie1-1/+0
2015-02-28LiveRange: Replace a creative vector erase loop with std::remove_if.Benjamin Kramer1-7/+3
2015-02-18LiveRangeCalc: Rename some parameters from kill to use, NFC.Matthias Braun1-4/+4
2015-02-06[LiveIntervalAnalysis] Speed up creation of live ranges for physical registersQuentin Colombet1-142/+303
2015-02-06LiveInterval: Fix SubRange memory leak.Matthias Braun1-1/+16
2015-01-07LiveInterval: Implement feedback by Quentin Colombet.Matthias Braun1-25/+32
2014-12-24LiveInterval: Remove accidentally committed debug code.Matthias Braun1-10/+0
2014-12-24LiveInterval: Introduce createMainRangeFromSubranges().Matthias Braun1-0/+214
2014-12-11LiveInterval: Use range based for loops for subregister ranges.Matthias Braun1-9/+7
2014-12-10LiveInterval: Use more range based for loops for value numbers and segments.Matthias Braun1-28/+26
2014-12-10LiveInterval: Add removeEmptySubRanges().Matthias Braun1-0/+17
2014-12-10LiveInterval: Add support to track liveness of subregisters.Matthias Braun1-0/+29
2014-12-10LiveInterval: Add a 'covers' operation to LiveRange.Matthias Braun1-0/+21
2014-11-19Update SetVector to rely on the underlying set's insert to return a pair<iter...David Blaikie1-1/+1
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