[llvm-commits] [llvm] r129442 - in /llvm/trunk/lib/CodeGen: RegAllocGreedy.cpp SplitKit.cpp SplitKit.h
Jakob Stoklund Olesen
stoklund at 2pi.dk
Wed Apr 13 08:00:11 PDT 2011
Author: stoklund
Date: Wed Apr 13 10:00:11 2011
New Revision: 129442
URL: http://llvm.org/viewvc/llvm-project?rev=129442&view=rev
Log:
Stop using dead function.
Modified:
llvm/trunk/lib/CodeGen/RegAllocGreedy.cpp
llvm/trunk/lib/CodeGen/SplitKit.cpp
llvm/trunk/lib/CodeGen/SplitKit.h
Modified: llvm/trunk/lib/CodeGen/RegAllocGreedy.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/RegAllocGreedy.cpp?rev=129442&r1=129441&r2=129442&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/RegAllocGreedy.cpp (original)
+++ llvm/trunk/lib/CodeGen/RegAllocGreedy.cpp Wed Apr 13 10:00:11 2011
@@ -843,8 +843,6 @@
SE->enterIntvAtEnd(*MBB);
}
- SE->closeIntv();
-
// FIXME: Should we be more aggressive about splitting the stack region into
// per-block segments? The current approach allows the stack region to
// separate into connected components. Some components may be allocatable.
@@ -1171,7 +1169,6 @@
SlotIndex SegStart = SE->enterIntvBefore(Uses[BestBefore]);
SlotIndex SegStop = SE->leaveIntvAfter(Uses[BestAfter]);
SE->useIntv(SegStart, SegStop);
- SE->closeIntv();
SE->finish();
setStage(NewVRegs.begin(), NewVRegs.end(), RS_Local);
++NumLocalSplits;
Modified: llvm/trunk/lib/CodeGen/SplitKit.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/SplitKit.cpp?rev=129442&r1=129441&r2=129442&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/SplitKit.cpp (original)
+++ llvm/trunk/lib/CodeGen/SplitKit.cpp Wed Apr 13 10:00:11 2011
@@ -558,8 +558,6 @@
/// Create a new virtual register and live interval.
unsigned SplitEditor::openIntv() {
- assert(!OpenIdx && "Previous LI not closed before openIntv");
-
// Create the complement as index 0.
if (Edit->empty())
Edit->create(LIS, VRM);
@@ -696,13 +694,6 @@
DEBUG(dump());
}
-/// closeIntv - Indicate that we are done editing the currently open
-/// LiveInterval, and ranges can be trimmed.
-void SplitEditor::closeIntv() {
- assert(OpenIdx && "openIntv not called before closeIntv");
- OpenIdx = 0;
-}
-
/// transferSimpleValues - Transfer all simply defined values to the new live
/// ranges.
/// Values that were rematerialized or that have multiple defs are left alone.
@@ -846,7 +837,6 @@
}
void SplitEditor::finish() {
- assert(OpenIdx == 0 && "Previous LI not closed before rewrite");
++NumFinished;
// At this point, the live intervals in Edit contain VNInfos corresponding to
@@ -948,7 +938,6 @@
useIntv(SegStart, SegStop);
overlapIntv(SegStop, BI.LastUse);
}
- closeIntv();
}
/// splitSingleBlocks - Split CurLI into a separate live interval inside each
Modified: llvm/trunk/lib/CodeGen/SplitKit.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/SplitKit.h?rev=129442&r1=129441&r2=129442&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/SplitKit.h (original)
+++ llvm/trunk/lib/CodeGen/SplitKit.h Wed Apr 13 10:00:11 2011
@@ -337,10 +337,6 @@
///
void overlapIntv(SlotIndex Start, SlotIndex End);
- /// closeIntv - Indicate that we are done editing the currently open
- /// LiveInterval, and ranges can be trimmed.
- void closeIntv();
-
/// finish - after all the new live ranges have been created, compute the
/// remaining live range, and rewrite instructions to use the new registers.
void finish();
More information about the llvm-commits
mailing list