OLD | NEW |
1 //===- subzero/src/IceTargetLowering.h - Lowering interface -----*- C++ -*-===// | 1 //===- subzero/src/IceTargetLowering.h - Lowering interface -----*- 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 TargetLowering and LoweringContext | 10 // This file declares the TargetLowering and LoweringContext |
(...skipping 177 matching lines...) Loading... |
188 RegSet_CalleeSave = 1 << 1, | 188 RegSet_CalleeSave = 1 << 1, |
189 RegSet_StackPointer = 1 << 2, | 189 RegSet_StackPointer = 1 << 2, |
190 RegSet_FramePointer = 1 << 3, | 190 RegSet_FramePointer = 1 << 3, |
191 RegSet_All = ~RegSet_None | 191 RegSet_All = ~RegSet_None |
192 }; | 192 }; |
193 typedef uint32_t RegSetMask; | 193 typedef uint32_t RegSetMask; |
194 | 194 |
195 virtual llvm::SmallBitVector getRegisterSet(RegSetMask Include, | 195 virtual llvm::SmallBitVector getRegisterSet(RegSetMask Include, |
196 RegSetMask Exclude) const = 0; | 196 RegSetMask Exclude) const = 0; |
197 virtual const llvm::SmallBitVector &getRegisterSetForType(Type Ty) const = 0; | 197 virtual const llvm::SmallBitVector &getRegisterSetForType(Type Ty) const = 0; |
198 void regAlloc(); | 198 void regAlloc(RegAllocKind Kind); |
199 | 199 |
200 virtual void emitVariable(const Variable *Var) const = 0; | 200 virtual void emitVariable(const Variable *Var) const = 0; |
201 | 201 |
202 // Performs target-specific argument lowering. | 202 // Performs target-specific argument lowering. |
203 virtual void lowerArguments() = 0; | 203 virtual void lowerArguments() = 0; |
204 | 204 |
205 virtual void addProlog(CfgNode *Node) = 0; | 205 virtual void addProlog(CfgNode *Node) = 0; |
206 virtual void addEpilog(CfgNode *Node) = 0; | 206 virtual void addEpilog(CfgNode *Node) = 0; |
207 | 207 |
208 virtual void emitConstants() const = 0; | 208 virtual void emitConstants() const = 0; |
(...skipping 60 matching lines...) Loading... |
269 virtual void lower(const VariableDeclaration &Var) = 0; | 269 virtual void lower(const VariableDeclaration &Var) = 0; |
270 | 270 |
271 protected: | 271 protected: |
272 TargetGlobalInitLowering(GlobalContext *Ctx) : Ctx(Ctx) {} | 272 TargetGlobalInitLowering(GlobalContext *Ctx) : Ctx(Ctx) {} |
273 GlobalContext *Ctx; | 273 GlobalContext *Ctx; |
274 }; | 274 }; |
275 | 275 |
276 } // end of namespace Ice | 276 } // end of namespace Ice |
277 | 277 |
278 #endif // SUBZERO_SRC_ICETARGETLOWERING_H | 278 #endif // SUBZERO_SRC_ICETARGETLOWERING_H |
OLD | NEW |