summaryrefslogtreecommitdiffstats
path: root/lib/Target/Alpha/AlphaJITInfo.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Target/Alpha/AlphaJITInfo.h')
-rw-r--r--lib/Target/Alpha/AlphaJITInfo.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/Target/Alpha/AlphaJITInfo.h b/lib/Target/Alpha/AlphaJITInfo.h
index edff990..ecb467f 100644
--- a/lib/Target/Alpha/AlphaJITInfo.h
+++ b/lib/Target/Alpha/AlphaJITInfo.h
@@ -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; }
OpenPOWER on IntegriCloud