MC/Mach-O: Initial x86_64 support.
[oota-llvm.git] / lib / CodeGen / Spiller.h
index 12506fe4dec88a961b02c22d48af1f1f5bc5de4c..dda52e871feafffff473e967eec8cac57dc58b0f 100644 (file)
 #ifndef LLVM_CODEGEN_SPILLER_H
 #define LLVM_CODEGEN_SPILLER_H
 
+#include "llvm/ADT/SmallVector.h"
 #include <vector>
 
 namespace llvm {
-  struct LiveInterval;
+
+  class LiveInterval;
+  class LiveIntervals;
+  class LiveStacks;
+  class MachineFunction;
+  class MachineInstr;
+  class MachineLoopInfo;
+  class SlotIndex;
+  class VirtRegMap;
+  class VNInfo;
 
   /// Spiller interface.
   ///
@@ -22,12 +32,18 @@ namespace llvm {
   class Spiller {
   public:
     virtual ~Spiller() = 0;
-    virtual std::vector<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,
+                                            SmallVectorImpl<LiveInterval*> &spillIs,
+                                             SlotIndex *earliestIndex = 0) = 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,
+                         const MachineLoopInfo *loopInfo, VirtRegMap *vrm);
 }
 
 #endif