OLD | NEW |
1 //===- subzero/src/IceInstX8632.h - Low-level x86 instructions --*- C++ -*-===// | 1 //===- subzero/src/IceInstX8632.h - Low-level x86 instructions --*- C++ -*-===// |
2 // | 2 // |
3 // The Subzero Code Generator | 3 // The Subzero Code Generator |
4 // | 4 // |
5 // This file is distributed under the University of Illinois Open Source | 5 // This file is distributed under the University of Illinois Open Source |
6 // License. See LICENSE.TXT for details. | 6 // License. See LICENSE.TXT for details. |
7 // | 7 // |
8 //===----------------------------------------------------------------------===// | 8 //===----------------------------------------------------------------------===// |
9 // | 9 // |
10 // This file declares the InstX8632 and OperandX8632 classes and | 10 // This file declares the InstX8632 and OperandX8632 classes and |
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
127 NumVars = 1; | 127 NumVars = 1; |
128 } | 128 } |
129 VariableSplit(const VariableSplit &) LLVM_DELETED_FUNCTION; | 129 VariableSplit(const VariableSplit &) LLVM_DELETED_FUNCTION; |
130 VariableSplit &operator=(const VariableSplit &) LLVM_DELETED_FUNCTION; | 130 VariableSplit &operator=(const VariableSplit &) LLVM_DELETED_FUNCTION; |
131 virtual ~VariableSplit() { Func->deallocateArrayOf<Variable *>(Vars); } | 131 virtual ~VariableSplit() { Func->deallocateArrayOf<Variable *>(Vars); } |
132 Cfg *Func; // Held only for the destructor. | 132 Cfg *Func; // Held only for the destructor. |
133 Variable *Var; | 133 Variable *Var; |
134 Portion Part; | 134 Portion Part; |
135 }; | 135 }; |
136 | 136 |
| 137 // SpillVariable decorates a Variable by linking it to another |
| 138 // Variable. When stack frame offsets are computed, the SpillVariable |
| 139 // is given a distinct stack slot only if its linked Variable has a |
| 140 // register. If the linked Variable has a stack slot, then the |
| 141 // Variable and SpillVariable share that slot. |
| 142 class SpillVariable : public Variable { |
| 143 public: |
| 144 static SpillVariable *create(Cfg *Func, Type Ty, const CfgNode *Node, |
| 145 SizeT Index, const IceString &Name) { |
| 146 return new (Func->allocate<SpillVariable>()) |
| 147 SpillVariable(Ty, Node, Index, Name); |
| 148 } |
| 149 const static OperandKind SpillVariableKind = |
| 150 static_cast<OperandKind>(kVariable_Target); |
| 151 static bool classof(const Operand *Operand) { |
| 152 return Operand->getKind() == SpillVariableKind; |
| 153 } |
| 154 void setLinkedTo(Variable *Var) { LinkedTo = Var; } |
| 155 Variable *getLinkedTo() const { return LinkedTo; } |
| 156 // Inherit dump() and emit() from Variable. |
| 157 private: |
| 158 SpillVariable(Type Ty, const CfgNode *Node, SizeT Index, |
| 159 const IceString &Name) |
| 160 : Variable(SpillVariableKind, Ty, Node, Index, Name), LinkedTo(NULL) {} |
| 161 Variable *LinkedTo; |
| 162 }; |
| 163 |
137 class InstX8632 : public InstTarget { | 164 class InstX8632 : public InstTarget { |
138 public: | 165 public: |
139 enum InstKindX8632 { | 166 enum InstKindX8632 { |
140 k__Start = Inst::Target, | 167 k__Start = Inst::Target, |
141 Adc, | 168 Adc, |
142 Add, | 169 Add, |
143 Addps, | 170 Addps, |
144 Addss, | 171 Addss, |
145 Adjuststack, | 172 Adjuststack, |
146 And, | 173 And, |
(...skipping 1117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1264 template <> void InstX8632Pmuludq::emit(const Cfg *Func) const; | 1291 template <> void InstX8632Pmuludq::emit(const Cfg *Func) const; |
1265 template <> void InstX8632Psll::emit(const Cfg *Func) const; | 1292 template <> void InstX8632Psll::emit(const Cfg *Func) const; |
1266 template <> void InstX8632Psra::emit(const Cfg *Func) const; | 1293 template <> void InstX8632Psra::emit(const Cfg *Func) const; |
1267 template <> void InstX8632Psub::emit(const Cfg *Func) const; | 1294 template <> void InstX8632Psub::emit(const Cfg *Func) const; |
1268 template <> void InstX8632Sqrtss::emit(const Cfg *Func) const; | 1295 template <> void InstX8632Sqrtss::emit(const Cfg *Func) const; |
1269 template <> void InstX8632Subss::emit(const Cfg *Func) const; | 1296 template <> void InstX8632Subss::emit(const Cfg *Func) const; |
1270 | 1297 |
1271 } // end of namespace Ice | 1298 } // end of namespace Ice |
1272 | 1299 |
1273 #endif // SUBZERO_SRC_ICEINSTX8632_H | 1300 #endif // SUBZERO_SRC_ICEINSTX8632_H |
OLD | NEW |