[llvm-commits] CVS: llvm/lib/CodeGen/LiveIntervalAnalysis.cpp

Chris Lattner sabre at nondot.org
Mon Nov 6 23:19:01 PST 2006



Changes in directory llvm/lib/CodeGen:

LiveIntervalAnalysis.cpp updated: 1.189 -> 1.190
---
Log message:

Add a new llcbeta option.  This speeds up viterbi from 12.34 to 8.76s on
X86.  If happy, I'll enable this by default.


---
Diffs of the changes:  (+19 -4)

 LiveIntervalAnalysis.cpp |   23 +++++++++++++++++++----
 1 files changed, 19 insertions(+), 4 deletions(-)


Index: llvm/lib/CodeGen/LiveIntervalAnalysis.cpp
diff -u llvm/lib/CodeGen/LiveIntervalAnalysis.cpp:1.189 llvm/lib/CodeGen/LiveIntervalAnalysis.cpp:1.190
--- llvm/lib/CodeGen/LiveIntervalAnalysis.cpp:1.189	Thu Nov  2 21:04:46 2006
+++ llvm/lib/CodeGen/LiveIntervalAnalysis.cpp	Tue Nov  7 01:18:40 2006
@@ -59,6 +59,9 @@
   EnableJoining("join-liveintervals",
                 cl::desc("Coallesce copies (default=true)"),
                 cl::init(true));
+  static cl::opt<bool>
+  EnableReweight("enable-majik-f00");
+  
 }
 
 void LiveIntervals::getAnalysisUsage(AnalysisUsage &AU) const {
@@ -208,14 +211,26 @@
     }
   }
 
+  
   for (iterator I = begin(), E = end(); I != E; ++I) {
-    LiveInterval &li = I->second;
-    if (MRegisterInfo::isVirtualRegister(li.reg)) {
+    LiveInterval &LI = I->second;
+    if (MRegisterInfo::isVirtualRegister(LI.reg)) {
       // If the live interval length is essentially zero, i.e. in every live
       // range the use follows def immediately, it doesn't make sense to spill
       // it and hope it will be easier to allocate for this li.
-      if (isZeroLengthInterval(&li))
-        li.weight = float(HUGE_VAL);
+      if (isZeroLengthInterval(&LI))
+        LI.weight = float(HUGE_VAL);
+      
+      if (EnableReweight) {
+        // Divide the weight of the interval by its size.  This encourages 
+        // spilling of intervals that are large and have few uses, and
+        // discourages spilling of small intervals with many uses.
+        unsigned Size = 0;
+        for (LiveInterval::iterator II = LI.begin(), E = LI.end(); II != E;++II)
+          Size += II->end - II->start;
+      
+        LI.weight /= Size;
+      }
     }
   }
 






More information about the llvm-commits mailing list