Eliminate yet another copy of getOpcode.
[oota-llvm.git] / lib / CodeGen / Spiller.h
index f17a0b55a072340b4296df6719aad316bcf1a8f5..f339336f61cd3756d6af1f305af366eaaa9ef827 100644 (file)
 
 namespace llvm {
 
+  struct LiveInterval;
+  class LiveIntervals;
+  class LiveStacks;
+  class MachineFunction;
+  class MachineInstr;
+  class VirtRegMap;
+  class VNInfo;
+
   /// Spiller interface.
   ///
   /// Implementations are utility classes which insert spill or remat code on
@@ -21,12 +29,20 @@ namespace llvm {
   class Spiller {
   public:
     virtual ~Spiller() = 0;
-    virtual std::vector<class LiveInterval*> spill(class LiveInterval *li) = 0;
+
+    /// Spill the given live range. The method used will depend on the Spiller
+    /// implementation selected.
+    virtual std::vector<LiveInterval*> spill(LiveInterval *li) = 0;
+
+    /// Intra-block split.
+    virtual std::vector<LiveInterval*> intraBlockSplit(LiveInterval *li,
+                                                       VNInfo *valno) = 0;
+
   };
 
   /// Create and return a spiller object, as specified on the command line.
-  Spiller* createSpiller(class MachineFunction *mf, class LiveIntervals *li,
-                         class VirtRegMap *vrm);
+  Spiller* createSpiller(MachineFunction *mf, LiveIntervals *li,
+                         LiveStacks *ls, VirtRegMap *vrm);
 }
 
 #endif