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 |
11 // classes. TargetLowering is an abstract class used to drive the | 11 // classes. TargetLowering is an abstract class used to drive the |
12 // translation/lowering process. LoweringContext maintains a | 12 // translation/lowering process. LoweringContext maintains a |
13 // context for lowering each instruction, offering conveniences such | 13 // context for lowering each instruction, offering conveniences such |
14 // as iterating over non-deleted instructions. | 14 // as iterating over non-deleted instructions. |
15 // | 15 // |
16 //===----------------------------------------------------------------------===// | 16 //===----------------------------------------------------------------------===// |
17 | 17 |
18 #ifndef SUBZERO_SRC_ICETARGETLOWERING_H | 18 #ifndef SUBZERO_SRC_ICETARGETLOWERING_H |
19 #define SUBZERO_SRC_ICETARGETLOWERING_H | 19 #define SUBZERO_SRC_ICETARGETLOWERING_H |
20 | 20 |
21 #include "IceDefs.h" | 21 #include "IceDefs.h" |
22 #include "IceInst.h" // for the names of the Inst subtypes | 22 #include "IceInst.h" // for the names of the Inst subtypes |
23 #include "IceTypes.h" | 23 #include "IceTypes.h" |
24 | 24 |
25 namespace Ice { | 25 namespace Ice { |
26 | 26 |
27 typedef uint8_t AsmCodeByte; | |
28 | |
29 class Assembler; | 27 class Assembler; |
30 | 28 |
31 // LoweringContext makes it easy to iterate through non-deleted | 29 // LoweringContext makes it easy to iterate through non-deleted |
32 // instructions in a node, and insert new (lowered) instructions at | 30 // instructions in a node, and insert new (lowered) instructions at |
33 // the current point. Along with the instruction list container and | 31 // the current point. Along with the instruction list container and |
34 // associated iterators, it holds the current node, which is needed | 32 // associated iterators, it holds the current node, which is needed |
35 // when inserting new instructions in order to track whether variables | 33 // when inserting new instructions in order to track whether variables |
36 // are used as single-block or multi-block. | 34 // are used as single-block or multi-block. |
37 class LoweringContext { | 35 class LoweringContext { |
38 LoweringContext(const LoweringContext &) = delete; | 36 LoweringContext(const LoweringContext &) = delete; |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
160 // scratch registers as killed by a call. If a Type is not | 158 // scratch registers as killed by a call. If a Type is not |
161 // provided, a target-specific default type is used. | 159 // provided, a target-specific default type is used. |
162 virtual Variable *getPhysicalRegister(SizeT RegNum, | 160 virtual Variable *getPhysicalRegister(SizeT RegNum, |
163 Type Ty = IceType_void) = 0; | 161 Type Ty = IceType_void) = 0; |
164 // Returns a printable name for the register. | 162 // Returns a printable name for the register. |
165 virtual IceString getRegName(SizeT RegNum, Type Ty) const = 0; | 163 virtual IceString getRegName(SizeT RegNum, Type Ty) const = 0; |
166 | 164 |
167 virtual bool hasFramePointer() const { return false; } | 165 virtual bool hasFramePointer() const { return false; } |
168 virtual SizeT getFrameOrStackReg() const = 0; | 166 virtual SizeT getFrameOrStackReg() const = 0; |
169 virtual size_t typeWidthInBytesOnStack(Type Ty) const = 0; | 167 virtual size_t typeWidthInBytesOnStack(Type Ty) const = 0; |
170 virtual SizeT getBundleAlignLog2Bytes() const = 0; | |
171 virtual llvm::ArrayRef<AsmCodeByte> getNonExecBundlePadding() const = 0; | |
172 bool hasComputedFrame() const { return HasComputedFrame; } | 168 bool hasComputedFrame() const { return HasComputedFrame; } |
173 bool shouldDoNopInsertion() const; | 169 bool shouldDoNopInsertion() const; |
174 // Returns true if this function calls a function that has the | 170 // Returns true if this function calls a function that has the |
175 // "returns twice" attribute. | 171 // "returns twice" attribute. |
176 bool callsReturnsTwice() const { return CallsReturnsTwice; } | 172 bool callsReturnsTwice() const { return CallsReturnsTwice; } |
177 void setCallsReturnsTwice(bool RetTwice) { | 173 void setCallsReturnsTwice(bool RetTwice) { |
178 CallsReturnsTwice = RetTwice; | 174 CallsReturnsTwice = RetTwice; |
179 } | 175 } |
180 int32_t getStackAdjustment() const { return StackAdjustment; } | 176 int32_t getStackAdjustment() const { return StackAdjustment; } |
181 void updateStackAdjustment(int32_t Offset) { StackAdjustment += Offset; } | 177 void updateStackAdjustment(int32_t Offset) { StackAdjustment += Offset; } |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
265 virtual void lower(const VariableDeclaration &Var) = 0; | 261 virtual void lower(const VariableDeclaration &Var) = 0; |
266 | 262 |
267 protected: | 263 protected: |
268 TargetGlobalInitLowering(GlobalContext *Ctx) : Ctx(Ctx) {} | 264 TargetGlobalInitLowering(GlobalContext *Ctx) : Ctx(Ctx) {} |
269 GlobalContext *Ctx; | 265 GlobalContext *Ctx; |
270 }; | 266 }; |
271 | 267 |
272 } // end of namespace Ice | 268 } // end of namespace Ice |
273 | 269 |
274 #endif // SUBZERO_SRC_ICETARGETLOWERING_H | 270 #endif // SUBZERO_SRC_ICETARGETLOWERING_H |
OLD | NEW |