diff options
author | Chris Lattner <sabre@nondot.org> | 2004-11-18 01:29:39 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-11-18 01:29:39 +0000 |
commit | 23b71c1e1e33219327b1c0edf43034dbe4c3ae90 (patch) | |
tree | 74175edd2800cb139f7325891171acda9172adf3 /lib/CodeGen/RegAllocIterativeScan.cpp | |
parent | 4b92ed6d584aaa34eab7a3ef60d277617adb9aca (diff) |
Rename some methods, use 'begin' instead of 'start', add new LiveInterval
iterator/begin/end members.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17930 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/RegAllocIterativeScan.cpp')
-rw-r--r-- | lib/CodeGen/RegAllocIterativeScan.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/CodeGen/RegAllocIterativeScan.cpp b/lib/CodeGen/RegAllocIterativeScan.cpp index 4cdcc1d4dd..e5f7be7336 100644 --- a/lib/CodeGen/RegAllocIterativeScan.cpp +++ b/lib/CodeGen/RegAllocIterativeScan.cpp @@ -270,7 +270,7 @@ void RA::processActiveIntervals(IntervalPtrs::value_type cur) unsigned reg = i->reg; // remove expired intervals - if (i->expiredAt(cur->start())) { + if (i->expiredAt(cur->beginNumber())) { DEBUG(std::cerr << "\t\tinterval " << *i << " expired\n"); if (MRegisterInfo::isVirtualRegister(reg)) reg = vrm_->getPhys(reg); @@ -279,7 +279,7 @@ void RA::processActiveIntervals(IntervalPtrs::value_type cur) std::iter_swap(ii, --ie); } // move inactive intervals to inactive list - else if (!i->liveAt(cur->start())) { + else if (!i->liveAt(cur->beginNumber())) { DEBUG(std::cerr << "\t\tinterval " << *i << " inactive\n"); if (MRegisterInfo::isVirtualRegister(reg)) reg = vrm_->getPhys(reg); @@ -305,13 +305,13 @@ void RA::processInactiveIntervals(IntervalPtrs::value_type cur) unsigned reg = i->reg; // remove expired intervals - if (i->expiredAt(cur->start())) { + if (i->expiredAt(cur->beginNumber())) { DEBUG(std::cerr << "\t\tinterval " << *i << " expired\n"); // swap with last element and move end iterator back one position std::iter_swap(ii, --ie); } // move re-activated intervals in active list - else if (i->liveAt(cur->start())) { + else if (i->liveAt(cur->beginNumber())) { DEBUG(std::cerr << "\t\tinterval " << *i << " active\n"); if (MRegisterInfo::isVirtualRegister(reg)) reg = vrm_->getPhys(reg); @@ -424,7 +424,7 @@ void RA::assignRegOrSpillAtInterval(IntervalPtrs::value_type cur) toSpill[minReg] = true; for (const unsigned* as = mri_->getAliasSet(minReg); *as; ++as) toSpill[*as] = true; - unsigned earliestStart = cur->start(); + unsigned earliestStart = cur->beginNumber(); std::set<unsigned> spilled; |