diff options
author | Chris Lattner <sabre@nondot.org> | 2005-08-19 22:31:34 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-08-19 22:31:34 +0000 |
commit | f6b184981e429ff03742d66cf7111debd9e2bc61 (patch) | |
tree | 5be022b090bf21b9bbda52a7cec1265b0891b0e9 /include/llvm/CodeGen/SelectionDAG.h | |
parent | aaaa0b67dd0a943ee9275c42d7df4bd244d52c95 (diff) |
ADd support for TargetGlobalAddress nodes
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22939 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/SelectionDAG.h')
-rw-r--r-- | include/llvm/CodeGen/SelectionDAG.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/llvm/CodeGen/SelectionDAG.h b/include/llvm/CodeGen/SelectionDAG.h index b38648e303..b93dd124a1 100644 --- a/include/llvm/CodeGen/SelectionDAG.h +++ b/include/llvm/CodeGen/SelectionDAG.h @@ -97,6 +97,7 @@ public: SDOperand getTargetConstant(uint64_t Val, MVT::ValueType VT); SDOperand getConstantFP(double Val, MVT::ValueType VT); SDOperand getGlobalAddress(const GlobalValue *GV, MVT::ValueType VT); + SDOperand getTargetGlobalAddress(const GlobalValue *GV, MVT::ValueType VT); SDOperand getFrameIndex(int FI, MVT::ValueType VT); SDOperand getConstantPool(unsigned CPIdx, MVT::ValueType VT); SDOperand getBasicBlock(MachineBasicBlock *MBB); @@ -288,6 +289,7 @@ private: SDNode *> Loads; std::map<const GlobalValue*, SDNode*> GlobalValues; + std::map<const GlobalValue*, SDNode*> TargetGlobalValues; std::map<std::pair<uint64_t, MVT::ValueType>, SDNode*> Constants; std::map<std::pair<uint64_t, MVT::ValueType>, SDNode*> TargetConstants; std::map<std::pair<uint64_t, MVT::ValueType>, SDNode*> ConstantFPs; |