Introduce the TargetInstrInfo::KILL machine instruction and get rid of the
[oota-llvm.git] / lib / Target / Alpha / AlphaJITInfo.h
index edff990dbc2447159942d2a9f146f8214b683749..ecb467fbc5ec950f77ee29c58b207413b68b1c66 100644 (file)
@@ -15,6 +15,7 @@
 #define ALPHA_JITINFO_H
 
 #include "llvm/Target/TargetJITInfo.h"
+#include <map>
 
 namespace llvm {
   class TargetMachine;
@@ -22,6 +23,10 @@ namespace llvm {
   class AlphaJITInfo : public TargetJITInfo {
   protected:
     TargetMachine &TM;
+    
+    //because gpdist are paired and relative to the pc of the first inst,
+    //we need to have some state
+    std::map<std::pair<void*, int>, void*> gpdistmap;
   public:
     explicit AlphaJITInfo(TargetMachine &tm) : TM(tm)
     { useGOT = true; }