Chromium Code Reviews

Side by Side Diff: src/IceTargetLowering.h

Issue 733643005: Subzero: Use the linear-scan register allocator for Om1 as well. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
OLDNEW
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...)
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...)
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
OLDNEW
« no previous file with comments | « src/IceRegAlloc.cpp ('k') | src/IceTargetLowering.cpp » ('j') | src/IceTranslator.cpp » ('J')

Powered by Google App Engine