Jim Stichnoth | 5bc2b1d | 2014-05-22 13:38:48 -0700 | [diff] [blame] | 1 | //===- subzero/src/IceTargetLowering.h - Lowering interface -----*- C++ -*-===// |
| 2 | // |
| 3 | // The Subzero Code Generator |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
Jim Stichnoth | bbca754 | 2015-02-11 16:08:31 -0800 | [diff] [blame] | 10 | // This file declares the TargetLowering, LoweringContext, and |
| 11 | // TargetDataLowering classes. TargetLowering is an abstract class |
| 12 | // used to drive the translation/lowering process. LoweringContext |
| 13 | // maintains a context for lowering each instruction, offering |
| 14 | // conveniences such as iterating over non-deleted instructions. |
| 15 | // TargetDataLowering is an abstract class used to drive the |
| 16 | // lowering/emission of global initializers, external global |
| 17 | // declarations, and internal constant pools. |
Jim Stichnoth | 5bc2b1d | 2014-05-22 13:38:48 -0700 | [diff] [blame] | 18 | // |
| 19 | //===----------------------------------------------------------------------===// |
| 20 | |
| 21 | #ifndef SUBZERO_SRC_ICETARGETLOWERING_H |
| 22 | #define SUBZERO_SRC_ICETARGETLOWERING_H |
| 23 | |
| 24 | #include "IceDefs.h" |
Jim Stichnoth | 5bc2b1d | 2014-05-22 13:38:48 -0700 | [diff] [blame] | 25 | #include "IceInst.h" // for the names of the Inst subtypes |
Jan Voung | 76bb0be | 2015-05-14 09:26:19 -0700 | [diff] [blame] | 26 | #include "IceOperand.h" |
Jim Stichnoth | a18cc9c | 2014-09-30 19:10:22 -0700 | [diff] [blame] | 27 | #include "IceTypes.h" |
Jim Stichnoth | 5bc2b1d | 2014-05-22 13:38:48 -0700 | [diff] [blame] | 28 | |
| 29 | namespace Ice { |
| 30 | |
| 31 | // LoweringContext makes it easy to iterate through non-deleted |
| 32 | // instructions in a node, and insert new (lowered) instructions at |
| 33 | // the current point. Along with the instruction list container and |
| 34 | // associated iterators, it holds the current node, which is needed |
| 35 | // when inserting new instructions in order to track whether variables |
| 36 | // are used as single-block or multi-block. |
| 37 | class LoweringContext { |
Jim Stichnoth | 7b451a9 | 2014-10-15 14:39:23 -0700 | [diff] [blame] | 38 | LoweringContext(const LoweringContext &) = delete; |
| 39 | LoweringContext &operator=(const LoweringContext &) = delete; |
| 40 | |
Jim Stichnoth | 5bc2b1d | 2014-05-22 13:38:48 -0700 | [diff] [blame] | 41 | public: |
Jim Stichnoth | eafb56c | 2015-06-22 10:35:22 -0700 | [diff] [blame] | 42 | LoweringContext() = default; |
| 43 | ~LoweringContext() = default; |
Jim Stichnoth | 5bc2b1d | 2014-05-22 13:38:48 -0700 | [diff] [blame] | 44 | void init(CfgNode *Node); |
| 45 | Inst *getNextInst() const { |
| 46 | if (Next == End) |
Jim Stichnoth | ae95320 | 2014-12-20 06:17:49 -0800 | [diff] [blame] | 47 | return nullptr; |
Jim Stichnoth | 607e9f0 | 2014-11-06 13:32:05 -0800 | [diff] [blame] | 48 | return Next; |
Jim Stichnoth | 5bc2b1d | 2014-05-22 13:38:48 -0700 | [diff] [blame] | 49 | } |
Jan Voung | c820ddf | 2014-07-29 14:38:51 -0700 | [diff] [blame] | 50 | Inst *getNextInst(InstList::iterator &Iter) const { |
Jan Voung | e6e497d | 2014-07-30 10:06:03 -0700 | [diff] [blame] | 51 | advanceForward(Iter); |
Jan Voung | c820ddf | 2014-07-29 14:38:51 -0700 | [diff] [blame] | 52 | if (Iter == End) |
Jim Stichnoth | ae95320 | 2014-12-20 06:17:49 -0800 | [diff] [blame] | 53 | return nullptr; |
Jim Stichnoth | 607e9f0 | 2014-11-06 13:32:05 -0800 | [diff] [blame] | 54 | return Iter; |
Jan Voung | c820ddf | 2014-07-29 14:38:51 -0700 | [diff] [blame] | 55 | } |
Jim Stichnoth | 5bc2b1d | 2014-05-22 13:38:48 -0700 | [diff] [blame] | 56 | CfgNode *getNode() const { return Node; } |
| 57 | bool atEnd() const { return Cur == End; } |
| 58 | InstList::iterator getCur() const { return Cur; } |
Jim Stichnoth | 5d2fa0c | 2014-12-01 09:30:55 -0800 | [diff] [blame] | 59 | InstList::iterator getNext() const { return Next; } |
Jim Stichnoth | 5bc2b1d | 2014-05-22 13:38:48 -0700 | [diff] [blame] | 60 | InstList::iterator getEnd() const { return End; } |
| 61 | void insert(Inst *Inst); |
Jan Voung | e6e497d | 2014-07-30 10:06:03 -0700 | [diff] [blame] | 62 | Inst *getLastInserted() const; |
Jim Stichnoth | 5bc2b1d | 2014-05-22 13:38:48 -0700 | [diff] [blame] | 63 | void advanceCur() { Cur = Next; } |
Jan Voung | e6e497d | 2014-07-30 10:06:03 -0700 | [diff] [blame] | 64 | void advanceNext() { advanceForward(Next); } |
Jim Stichnoth | 336f6c4 | 2014-10-30 15:01:31 -0700 | [diff] [blame] | 65 | void rewind(); |
Jim Stichnoth | 5bc2b1d | 2014-05-22 13:38:48 -0700 | [diff] [blame] | 66 | void setInsertPoint(const InstList::iterator &Position) { Next = Position; } |
| 67 | |
| 68 | private: |
| 69 | // Node is the argument to Inst::updateVars(). |
Jim Stichnoth | eafb56c | 2015-06-22 10:35:22 -0700 | [diff] [blame] | 70 | CfgNode *Node = nullptr; |
| 71 | Inst *LastInserted = nullptr; |
Jim Stichnoth | 5bc2b1d | 2014-05-22 13:38:48 -0700 | [diff] [blame] | 72 | // Cur points to the current instruction being considered. It is |
| 73 | // guaranteed to point to a non-deleted instruction, or to be End. |
| 74 | InstList::iterator Cur; |
| 75 | // Next doubles as a pointer to the next valid instruction (if any), |
| 76 | // and the new-instruction insertion point. It is also updated for |
| 77 | // the caller in case the lowering consumes more than one high-level |
| 78 | // instruction. It is guaranteed to point to a non-deleted |
| 79 | // instruction after Cur, or to be End. TODO: Consider separating |
| 80 | // the notion of "next valid instruction" and "new instruction |
| 81 | // insertion point", to avoid confusion when previously-deleted |
| 82 | // instructions come between the two points. |
| 83 | InstList::iterator Next; |
Jan Voung | e6e497d | 2014-07-30 10:06:03 -0700 | [diff] [blame] | 84 | // Begin is a copy of Insts.begin(), used if iterators are moved backward. |
| 85 | InstList::iterator Begin; |
Jim Stichnoth | 5bc2b1d | 2014-05-22 13:38:48 -0700 | [diff] [blame] | 86 | // End is a copy of Insts.end(), used if Next needs to be advanced. |
| 87 | InstList::iterator End; |
| 88 | |
Jan Voung | c820ddf | 2014-07-29 14:38:51 -0700 | [diff] [blame] | 89 | void skipDeleted(InstList::iterator &I) const; |
Jan Voung | e6e497d | 2014-07-30 10:06:03 -0700 | [diff] [blame] | 90 | void advanceForward(InstList::iterator &I) const; |
Jim Stichnoth | 5bc2b1d | 2014-05-22 13:38:48 -0700 | [diff] [blame] | 91 | }; |
| 92 | |
| 93 | class TargetLowering { |
Jim Stichnoth | c6ead20 | 2015-02-24 09:30:30 -0800 | [diff] [blame] | 94 | TargetLowering() = delete; |
Jim Stichnoth | 7b451a9 | 2014-10-15 14:39:23 -0700 | [diff] [blame] | 95 | TargetLowering(const TargetLowering &) = delete; |
| 96 | TargetLowering &operator=(const TargetLowering &) = delete; |
| 97 | |
Jim Stichnoth | 5bc2b1d | 2014-05-22 13:38:48 -0700 | [diff] [blame] | 98 | public: |
Jan Voung | b36ad9b | 2015-04-21 17:01:49 -0700 | [diff] [blame] | 99 | // TODO(jvoung): return a unique_ptr like the other factory functions. |
Jim Stichnoth | 5bc2b1d | 2014-05-22 13:38:48 -0700 | [diff] [blame] | 100 | static TargetLowering *createLowering(TargetArch Target, Cfg *Func); |
Jan Voung | ec27073 | 2015-01-12 17:00:22 -0800 | [diff] [blame] | 101 | static std::unique_ptr<Assembler> createAssembler(TargetArch Target, |
| 102 | Cfg *Func); |
Jim Stichnoth | 5bc2b1d | 2014-05-22 13:38:48 -0700 | [diff] [blame] | 103 | void translate() { |
Jan Voung | 1f47ad0 | 2015-03-20 15:01:26 -0700 | [diff] [blame] | 104 | switch (Ctx->getFlags().getOptLevel()) { |
Jim Stichnoth | 5bc2b1d | 2014-05-22 13:38:48 -0700 | [diff] [blame] | 105 | case Opt_m1: |
| 106 | translateOm1(); |
| 107 | break; |
| 108 | case Opt_0: |
| 109 | translateO0(); |
| 110 | break; |
| 111 | case Opt_1: |
| 112 | translateO1(); |
| 113 | break; |
| 114 | case Opt_2: |
| 115 | translateO2(); |
| 116 | break; |
Jim Stichnoth | 5bc2b1d | 2014-05-22 13:38:48 -0700 | [diff] [blame] | 117 | } |
| 118 | } |
| 119 | virtual void translateOm1() { |
| 120 | Func->setError("Target doesn't specify Om1 lowering steps."); |
| 121 | } |
| 122 | virtual void translateO0() { |
| 123 | Func->setError("Target doesn't specify O0 lowering steps."); |
| 124 | } |
| 125 | virtual void translateO1() { |
| 126 | Func->setError("Target doesn't specify O1 lowering steps."); |
| 127 | } |
| 128 | virtual void translateO2() { |
| 129 | Func->setError("Target doesn't specify O2 lowering steps."); |
| 130 | } |
| 131 | |
Jim Stichnoth | d97c7df | 2014-06-04 11:57:08 -0700 | [diff] [blame] | 132 | // Tries to do address mode optimization on a single instruction. |
| 133 | void doAddressOpt(); |
Matt Wala | c330274 | 2014-08-15 16:21:56 -0700 | [diff] [blame] | 134 | // Randomly insert NOPs. |
| 135 | void doNopInsertion(); |
Jim Stichnoth | 336f6c4 | 2014-10-30 15:01:31 -0700 | [diff] [blame] | 136 | // Lowers a single non-Phi instruction. |
Jim Stichnoth | 5bc2b1d | 2014-05-22 13:38:48 -0700 | [diff] [blame] | 137 | void lower(); |
Jim Stichnoth | 336f6c4 | 2014-10-30 15:01:31 -0700 | [diff] [blame] | 138 | // Does preliminary lowering of the set of Phi instructions in the |
| 139 | // current node. The main intention is to do what's needed to keep |
| 140 | // the unlowered Phi instructions consistent with the lowered |
| 141 | // non-Phi instructions, e.g. to lower 64-bit operands on a 32-bit |
| 142 | // target. |
| 143 | virtual void prelowerPhis() {} |
| 144 | // Lowers a list of "parallel" assignment instructions representing |
| 145 | // a topological sort of the Phi instructions. |
| 146 | virtual void lowerPhiAssignments(CfgNode *Node, |
| 147 | const AssignList &Assignments) = 0; |
Jim Stichnoth | ff9c706 | 2014-09-18 04:50:49 -0700 | [diff] [blame] | 148 | // Tries to do branch optimization on a single instruction. Returns |
| 149 | // true if some optimization was done. |
| 150 | virtual bool doBranchOpt(Inst * /*I*/, const CfgNode * /*NextNode*/) { |
| 151 | return false; |
| 152 | } |
Jim Stichnoth | 5bc2b1d | 2014-05-22 13:38:48 -0700 | [diff] [blame] | 153 | |
Jim Stichnoth | 3d44fe8 | 2014-11-01 10:10:18 -0700 | [diff] [blame] | 154 | virtual SizeT getNumRegisters() const = 0; |
Jim Stichnoth | 5bc2b1d | 2014-05-22 13:38:48 -0700 | [diff] [blame] | 155 | // Returns a variable pre-colored to the specified physical |
| 156 | // register. This is generally used to get very direct access to |
| 157 | // the register such as in the prolog or epilog or for marking |
Jim Stichnoth | 98712a3 | 2014-10-24 10:59:02 -0700 | [diff] [blame] | 158 | // scratch registers as killed by a call. If a Type is not |
| 159 | // provided, a target-specific default type is used. |
| 160 | virtual Variable *getPhysicalRegister(SizeT RegNum, |
| 161 | Type Ty = IceType_void) = 0; |
Jim Stichnoth | 5bc2b1d | 2014-05-22 13:38:48 -0700 | [diff] [blame] | 162 | // Returns a printable name for the register. |
| 163 | virtual IceString getRegName(SizeT RegNum, Type Ty) const = 0; |
| 164 | |
| 165 | virtual bool hasFramePointer() const { return false; } |
| 166 | virtual SizeT getFrameOrStackReg() const = 0; |
Matt Wala | d4799f4 | 2014-08-14 14:24:12 -0700 | [diff] [blame] | 167 | virtual size_t typeWidthInBytesOnStack(Type Ty) const = 0; |
Jan Voung | 0fa6c5a | 2015-06-01 11:04:04 -0700 | [diff] [blame] | 168 | |
Jim Stichnoth | 5bc2b1d | 2014-05-22 13:38:48 -0700 | [diff] [blame] | 169 | bool hasComputedFrame() const { return HasComputedFrame; } |
Jan Voung | 44d53e1 | 2014-09-11 19:18:03 -0700 | [diff] [blame] | 170 | // Returns true if this function calls a function that has the |
| 171 | // "returns twice" attribute. |
| 172 | bool callsReturnsTwice() const { return CallsReturnsTwice; } |
Jim Stichnoth | dd842db | 2015-01-27 12:53:53 -0800 | [diff] [blame] | 173 | void setCallsReturnsTwice(bool RetTwice) { CallsReturnsTwice = RetTwice; } |
Jim Stichnoth | 5bc2b1d | 2014-05-22 13:38:48 -0700 | [diff] [blame] | 174 | int32_t getStackAdjustment() const { return StackAdjustment; } |
| 175 | void updateStackAdjustment(int32_t Offset) { StackAdjustment += Offset; } |
| 176 | void resetStackAdjustment() { StackAdjustment = 0; } |
Jan Voung | b36ad9b | 2015-04-21 17:01:49 -0700 | [diff] [blame] | 177 | SizeT makeNextLabelNumber() { return NextLabelNumber++; } |
Jim Stichnoth | 5bc2b1d | 2014-05-22 13:38:48 -0700 | [diff] [blame] | 178 | LoweringContext &getContext() { return Context; } |
| 179 | |
| 180 | enum RegSet { |
| 181 | RegSet_None = 0, |
| 182 | RegSet_CallerSave = 1 << 0, |
| 183 | RegSet_CalleeSave = 1 << 1, |
| 184 | RegSet_StackPointer = 1 << 2, |
| 185 | RegSet_FramePointer = 1 << 3, |
| 186 | RegSet_All = ~RegSet_None |
| 187 | }; |
| 188 | typedef uint32_t RegSetMask; |
| 189 | |
| 190 | virtual llvm::SmallBitVector getRegisterSet(RegSetMask Include, |
| 191 | RegSetMask Exclude) const = 0; |
| 192 | virtual const llvm::SmallBitVector &getRegisterSetForType(Type Ty) const = 0; |
Jim Stichnoth | 70d0a05 | 2014-11-14 15:53:46 -0800 | [diff] [blame] | 193 | void regAlloc(RegAllocKind Kind); |
Jim Stichnoth | 5bc2b1d | 2014-05-22 13:38:48 -0700 | [diff] [blame] | 194 | |
Jim Stichnoth | e6d2478 | 2014-12-19 05:42:24 -0800 | [diff] [blame] | 195 | virtual void makeRandomRegisterPermutation( |
| 196 | llvm::SmallVectorImpl<int32_t> &Permutation, |
| 197 | const llvm::SmallBitVector &ExcludeRegisters) const = 0; |
| 198 | |
Jim Stichnoth | 9738a9e | 2015-02-23 16:39:06 -0800 | [diff] [blame] | 199 | // Save/restore any mutable state for the situation where code |
| 200 | // emission needs multiple passes, such as sandboxing or relaxation. |
| 201 | // Subclasses may provide their own implementation, but should be |
| 202 | // sure to also call the parent class's methods. |
| 203 | virtual void snapshotEmitState() { |
| 204 | SnapshotStackAdjustment = StackAdjustment; |
| 205 | } |
| 206 | virtual void rollbackEmitState() { |
| 207 | StackAdjustment = SnapshotStackAdjustment; |
| 208 | } |
| 209 | |
Jim Stichnoth | 144cdce | 2014-09-22 16:02:59 -0700 | [diff] [blame] | 210 | virtual void emitVariable(const Variable *Var) const = 0; |
Jim Stichnoth | 5bc2b1d | 2014-05-22 13:38:48 -0700 | [diff] [blame] | 211 | |
Jan Voung | 76bb0be | 2015-05-14 09:26:19 -0700 | [diff] [blame] | 212 | void emitWithoutPrefix(const ConstantRelocatable *CR) const; |
| 213 | void emit(const ConstantRelocatable *CR) const; |
| 214 | virtual const char *getConstantPrefix() const = 0; |
| 215 | |
| 216 | virtual void emit(const ConstantUndef *C) const = 0; |
| 217 | virtual void emit(const ConstantInteger32 *C) const = 0; |
| 218 | virtual void emit(const ConstantInteger64 *C) const = 0; |
| 219 | virtual void emit(const ConstantFloat *C) const = 0; |
| 220 | virtual void emit(const ConstantDouble *C) const = 0; |
| 221 | |
Matt Wala | 45a0623 | 2014-07-09 16:33:22 -0700 | [diff] [blame] | 222 | // Performs target-specific argument lowering. |
| 223 | virtual void lowerArguments() = 0; |
| 224 | |
Jim Stichnoth | a59ae6f | 2015-05-17 10:11:41 -0700 | [diff] [blame] | 225 | virtual void initNodeForLowering(CfgNode *) {} |
Jim Stichnoth | 5bc2b1d | 2014-05-22 13:38:48 -0700 | [diff] [blame] | 226 | virtual void addProlog(CfgNode *Node) = 0; |
| 227 | virtual void addEpilog(CfgNode *Node) = 0; |
| 228 | |
Jim Stichnoth | eafb56c | 2015-06-22 10:35:22 -0700 | [diff] [blame] | 229 | virtual ~TargetLowering() = default; |
Jim Stichnoth | 5bc2b1d | 2014-05-22 13:38:48 -0700 | [diff] [blame] | 230 | |
| 231 | protected: |
Jim Stichnoth | c6ead20 | 2015-02-24 09:30:30 -0800 | [diff] [blame] | 232 | explicit TargetLowering(Cfg *Func); |
Jim Stichnoth | 5bc2b1d | 2014-05-22 13:38:48 -0700 | [diff] [blame] | 233 | virtual void lowerAlloca(const InstAlloca *Inst) = 0; |
| 234 | virtual void lowerArithmetic(const InstArithmetic *Inst) = 0; |
| 235 | virtual void lowerAssign(const InstAssign *Inst) = 0; |
| 236 | virtual void lowerBr(const InstBr *Inst) = 0; |
| 237 | virtual void lowerCall(const InstCall *Inst) = 0; |
| 238 | virtual void lowerCast(const InstCast *Inst) = 0; |
| 239 | virtual void lowerFcmp(const InstFcmp *Inst) = 0; |
Matt Wala | 4988923 | 2014-07-18 12:45:09 -0700 | [diff] [blame] | 240 | virtual void lowerExtractElement(const InstExtractElement *Inst) = 0; |
Jim Stichnoth | 5bc2b1d | 2014-05-22 13:38:48 -0700 | [diff] [blame] | 241 | virtual void lowerIcmp(const InstIcmp *Inst) = 0; |
Matt Wala | 4988923 | 2014-07-18 12:45:09 -0700 | [diff] [blame] | 242 | virtual void lowerInsertElement(const InstInsertElement *Inst) = 0; |
Jan Voung | 3bd9f1a | 2014-06-18 10:50:57 -0700 | [diff] [blame] | 243 | virtual void lowerIntrinsicCall(const InstIntrinsicCall *Inst) = 0; |
Jim Stichnoth | 5bc2b1d | 2014-05-22 13:38:48 -0700 | [diff] [blame] | 244 | virtual void lowerLoad(const InstLoad *Inst) = 0; |
| 245 | virtual void lowerPhi(const InstPhi *Inst) = 0; |
| 246 | virtual void lowerRet(const InstRet *Inst) = 0; |
| 247 | virtual void lowerSelect(const InstSelect *Inst) = 0; |
| 248 | virtual void lowerStore(const InstStore *Inst) = 0; |
| 249 | virtual void lowerSwitch(const InstSwitch *Inst) = 0; |
| 250 | virtual void lowerUnreachable(const InstUnreachable *Inst) = 0; |
Jim Stichnoth | e4f65d8 | 2015-06-17 22:16:02 -0700 | [diff] [blame] | 251 | virtual void lowerOther(const Inst *Instr); |
Jim Stichnoth | 5bc2b1d | 2014-05-22 13:38:48 -0700 | [diff] [blame] | 252 | |
Jim Stichnoth | d97c7df | 2014-06-04 11:57:08 -0700 | [diff] [blame] | 253 | virtual void doAddressOptLoad() {} |
| 254 | virtual void doAddressOptStore() {} |
Matt Wala | c330274 | 2014-08-15 16:21:56 -0700 | [diff] [blame] | 255 | virtual void randomlyInsertNop(float Probability) = 0; |
Jim Stichnoth | 5bc2b1d | 2014-05-22 13:38:48 -0700 | [diff] [blame] | 256 | // This gives the target an opportunity to post-process the lowered |
Jim Stichnoth | 70d0a05 | 2014-11-14 15:53:46 -0800 | [diff] [blame] | 257 | // expansion before returning. |
Jim Stichnoth | 5bc2b1d | 2014-05-22 13:38:48 -0700 | [diff] [blame] | 258 | virtual void postLower() {} |
| 259 | |
Jan Voung | b3401d2 | 2015-05-18 09:38:21 -0700 | [diff] [blame] | 260 | // Find two-address non-SSA instructions and set the DestNonKillable flag |
| 261 | // to keep liveness analysis consistent. |
| 262 | void inferTwoAddress(); |
| 263 | |
Jan Voung | 0fa6c5a | 2015-06-01 11:04:04 -0700 | [diff] [blame] | 264 | // Make a pass over the Cfg to determine which variables need stack slots |
| 265 | // and place them in a sorted list (SortedSpilledVariables). Among those, |
| 266 | // vars, classify the spill variables as local to the basic block vs |
| 267 | // global (multi-block) in order to compute the parameters GlobalsSize |
| 268 | // and SpillAreaSizeBytes (represents locals or general vars if the |
| 269 | // coalescing of locals is disallowed) along with alignments required |
| 270 | // for variables in each area. We rely on accurate VMetadata in order to |
| 271 | // classify a variable as global vs local (otherwise the variable is |
| 272 | // conservatively global). The in-args should be initialized to 0. |
| 273 | // |
| 274 | // This is only a pre-pass and the actual stack slot assignment is |
| 275 | // handled separately. |
| 276 | // |
| 277 | // There may be target-specific Variable types, which will be handled |
| 278 | // by TargetVarHook. If the TargetVarHook returns true, then the variable |
| 279 | // is skipped and not considered with the rest of the spilled variables. |
| 280 | void getVarStackSlotParams(VarList &SortedSpilledVariables, |
| 281 | llvm::SmallBitVector &RegsUsed, |
| 282 | size_t *GlobalsSize, size_t *SpillAreaSizeBytes, |
| 283 | uint32_t *SpillAreaAlignmentBytes, |
| 284 | uint32_t *LocalsSlotsAlignmentBytes, |
| 285 | std::function<bool(Variable *)> TargetVarHook); |
| 286 | |
| 287 | // Calculate the amount of padding needed to align the local and global |
| 288 | // areas to the required alignment. This assumes the globals/locals layout |
| 289 | // used by getVarStackSlotParams and assignVarStackSlots. |
| 290 | void alignStackSpillAreas(uint32_t SpillAreaStartOffset, |
| 291 | uint32_t SpillAreaAlignmentBytes, |
| 292 | size_t GlobalsSize, |
| 293 | uint32_t LocalsSlotsAlignmentBytes, |
| 294 | uint32_t *SpillAreaPaddingBytes, |
| 295 | uint32_t *LocalsSlotsPaddingBytes); |
| 296 | |
| 297 | // Make a pass through the SortedSpilledVariables and actually assign |
| 298 | // stack slots. SpillAreaPaddingBytes takes into account stack alignment |
| 299 | // padding. The SpillArea starts after that amount of padding. |
| 300 | // This matches the scheme in getVarStackSlotParams, where there may |
| 301 | // be a separate multi-block global var spill area and a local var |
| 302 | // spill area. |
| 303 | void assignVarStackSlots(VarList &SortedSpilledVariables, |
| 304 | size_t SpillAreaPaddingBytes, |
| 305 | size_t SpillAreaSizeBytes, |
| 306 | size_t GlobalsAndSubsequentPaddingSize, |
| 307 | bool UsesFramePointer); |
| 308 | |
| 309 | // Sort the variables in Source based on required alignment. |
| 310 | // The variables with the largest alignment need are placed in the front |
| 311 | // of the Dest list. |
| 312 | void sortVarsByAlignment(VarList &Dest, const VarList &Source) const; |
| 313 | |
Jan Voung | b36ad9b | 2015-04-21 17:01:49 -0700 | [diff] [blame] | 314 | // Make a call to an external helper function. |
| 315 | InstCall *makeHelperCall(const IceString &Name, Variable *Dest, |
| 316 | SizeT MaxSrcs); |
| 317 | |
Jan Voung | 0fa6c5a | 2015-06-01 11:04:04 -0700 | [diff] [blame] | 318 | void |
| 319 | _bundle_lock(InstBundleLock::Option BundleOption = InstBundleLock::Opt_None) { |
| 320 | Context.insert(InstBundleLock::create(Func, BundleOption)); |
| 321 | } |
| 322 | void _bundle_unlock() { Context.insert(InstBundleUnlock::create(Func)); } |
| 323 | |
Jim Stichnoth | 5bc2b1d | 2014-05-22 13:38:48 -0700 | [diff] [blame] | 324 | Cfg *Func; |
| 325 | GlobalContext *Ctx; |
Jim Stichnoth | eafb56c | 2015-06-22 10:35:22 -0700 | [diff] [blame] | 326 | bool HasComputedFrame = false; |
| 327 | bool CallsReturnsTwice = false; |
Jim Stichnoth | 5bc2b1d | 2014-05-22 13:38:48 -0700 | [diff] [blame] | 328 | // StackAdjustment keeps track of the current stack offset from its |
| 329 | // natural location, as arguments are pushed for a function call. |
Jim Stichnoth | eafb56c | 2015-06-22 10:35:22 -0700 | [diff] [blame] | 330 | int32_t StackAdjustment = 0; |
| 331 | SizeT NextLabelNumber = 0; |
Jim Stichnoth | 5bc2b1d | 2014-05-22 13:38:48 -0700 | [diff] [blame] | 332 | LoweringContext Context; |
Jim Stichnoth | 9738a9e | 2015-02-23 16:39:06 -0800 | [diff] [blame] | 333 | |
Jim Stichnoth | c450879 | 2015-03-01 23:12:55 -0800 | [diff] [blame] | 334 | // Runtime helper function names |
| 335 | const static constexpr char *H_bitcast_16xi1_i16 = "__Sz_bitcast_16xi1_i16"; |
| 336 | const static constexpr char *H_bitcast_8xi1_i8 = "__Sz_bitcast_8xi1_i8"; |
| 337 | const static constexpr char *H_bitcast_i16_16xi1 = "__Sz_bitcast_i16_16xi1"; |
| 338 | const static constexpr char *H_bitcast_i8_8xi1 = "__Sz_bitcast_i8_8xi1"; |
| 339 | const static constexpr char *H_call_ctpop_i32 = "__popcountsi2"; |
| 340 | const static constexpr char *H_call_ctpop_i64 = "__popcountdi2"; |
| 341 | const static constexpr char *H_call_longjmp = "longjmp"; |
| 342 | const static constexpr char *H_call_memcpy = "memcpy"; |
| 343 | const static constexpr char *H_call_memmove = "memmove"; |
| 344 | const static constexpr char *H_call_memset = "memset"; |
| 345 | const static constexpr char *H_call_read_tp = "__nacl_read_tp"; |
| 346 | const static constexpr char *H_call_setjmp = "setjmp"; |
| 347 | const static constexpr char *H_fptosi_f32_i64 = "__Sz_fptosi_f32_i64"; |
| 348 | const static constexpr char *H_fptosi_f64_i64 = "__Sz_fptosi_f64_i64"; |
| 349 | const static constexpr char *H_fptoui_4xi32_f32 = "__Sz_fptoui_4xi32_f32"; |
| 350 | const static constexpr char *H_fptoui_f32_i32 = "__Sz_fptoui_f32_i32"; |
| 351 | const static constexpr char *H_fptoui_f32_i64 = "__Sz_fptoui_f32_i64"; |
| 352 | const static constexpr char *H_fptoui_f64_i32 = "__Sz_fptoui_f64_i32"; |
| 353 | const static constexpr char *H_fptoui_f64_i64 = "__Sz_fptoui_f64_i64"; |
| 354 | const static constexpr char *H_frem_f32 = "fmodf"; |
| 355 | const static constexpr char *H_frem_f64 = "fmod"; |
| 356 | const static constexpr char *H_sdiv_i64 = "__divdi3"; |
| 357 | const static constexpr char *H_sitofp_i64_f32 = "__Sz_sitofp_i64_f32"; |
| 358 | const static constexpr char *H_sitofp_i64_f64 = "__Sz_sitofp_i64_f64"; |
| 359 | const static constexpr char *H_srem_i64 = "__moddi3"; |
| 360 | const static constexpr char *H_udiv_i64 = "__udivdi3"; |
| 361 | const static constexpr char *H_uitofp_4xi32_4xf32 = "__Sz_uitofp_4xi32_4xf32"; |
| 362 | const static constexpr char *H_uitofp_i32_f32 = "__Sz_uitofp_i32_f32"; |
| 363 | const static constexpr char *H_uitofp_i32_f64 = "__Sz_uitofp_i32_f64"; |
| 364 | const static constexpr char *H_uitofp_i64_f32 = "__Sz_uitofp_i64_f32"; |
| 365 | const static constexpr char *H_uitofp_i64_f64 = "__Sz_uitofp_i64_f64"; |
| 366 | const static constexpr char *H_urem_i64 = "__umoddi3"; |
| 367 | |
Jim Stichnoth | 9738a9e | 2015-02-23 16:39:06 -0800 | [diff] [blame] | 368 | private: |
Jim Stichnoth | eafb56c | 2015-06-22 10:35:22 -0700 | [diff] [blame] | 369 | int32_t SnapshotStackAdjustment = 0; |
Jim Stichnoth | 5bc2b1d | 2014-05-22 13:38:48 -0700 | [diff] [blame] | 370 | }; |
| 371 | |
Jan Voung | 72984d8 | 2015-01-29 14:42:38 -0800 | [diff] [blame] | 372 | // TargetDataLowering is used for "lowering" data including initializers |
| 373 | // for global variables, and the internal constant pools. It is separated |
| 374 | // out from TargetLowering because it does not require a Cfg. |
| 375 | class TargetDataLowering { |
| 376 | TargetDataLowering() = delete; |
| 377 | TargetDataLowering(const TargetDataLowering &) = delete; |
| 378 | TargetDataLowering &operator=(const TargetDataLowering &) = delete; |
Jim Stichnoth | 7b451a9 | 2014-10-15 14:39:23 -0700 | [diff] [blame] | 379 | |
Jim Stichnoth | de4ca71 | 2014-06-29 08:13:48 -0700 | [diff] [blame] | 380 | public: |
Jim Stichnoth | bbca754 | 2015-02-11 16:08:31 -0800 | [diff] [blame] | 381 | static std::unique_ptr<TargetDataLowering> createLowering(GlobalContext *Ctx); |
Jan Voung | 72984d8 | 2015-01-29 14:42:38 -0800 | [diff] [blame] | 382 | virtual ~TargetDataLowering(); |
Jan Voung | 839c4ce | 2014-07-28 15:19:43 -0700 | [diff] [blame] | 383 | |
John Porto | 8b1a705 | 2015-06-17 13:20:08 -0700 | [diff] [blame] | 384 | virtual void lowerGlobals(const VariableDeclarationList &Vars, |
| 385 | const IceString &SectionSuffix) = 0; |
John Porto | 0f86d03 | 2015-06-15 07:44:27 -0700 | [diff] [blame] | 386 | virtual void lowerConstants() = 0; |
Jim Stichnoth | de4ca71 | 2014-06-29 08:13:48 -0700 | [diff] [blame] | 387 | |
| 388 | protected: |
John Porto | 8b1a705 | 2015-06-17 13:20:08 -0700 | [diff] [blame] | 389 | void emitGlobal(const VariableDeclaration &Var, |
| 390 | const IceString &SectionSuffix); |
Jan Voung | 58eea4d | 2015-06-15 15:11:56 -0700 | [diff] [blame] | 391 | |
| 392 | // For now, we assume .long is the right directive for emitting 4 byte |
| 393 | // emit global relocations. However, LLVM MIPS usually uses .4byte instead. |
| 394 | // Perhaps there is some difference when the location is unaligned. |
John Porto | 8b1a705 | 2015-06-17 13:20:08 -0700 | [diff] [blame] | 395 | static const char *getEmit32Directive() { return ".long"; } |
Jan Voung | 58eea4d | 2015-06-15 15:11:56 -0700 | [diff] [blame] | 396 | |
Jim Stichnoth | c6ead20 | 2015-02-24 09:30:30 -0800 | [diff] [blame] | 397 | explicit TargetDataLowering(GlobalContext *Ctx) : Ctx(Ctx) {} |
Jim Stichnoth | de4ca71 | 2014-06-29 08:13:48 -0700 | [diff] [blame] | 398 | GlobalContext *Ctx; |
Jim Stichnoth | de4ca71 | 2014-06-29 08:13:48 -0700 | [diff] [blame] | 399 | }; |
| 400 | |
Jan Voung | fb79284 | 2015-06-11 15:27:50 -0700 | [diff] [blame] | 401 | // TargetHeaderLowering is used to "lower" the header of an output file. |
| 402 | // It writes out the target-specific header attributes. E.g., for ARM |
| 403 | // this writes out the build attributes (float ABI, etc.). |
| 404 | class TargetHeaderLowering { |
| 405 | TargetHeaderLowering() = delete; |
| 406 | TargetHeaderLowering(const TargetHeaderLowering &) = delete; |
| 407 | TargetHeaderLowering &operator=(const TargetHeaderLowering &) = delete; |
| 408 | |
| 409 | public: |
| 410 | static std::unique_ptr<TargetHeaderLowering> |
| 411 | createLowering(GlobalContext *Ctx); |
| 412 | virtual ~TargetHeaderLowering(); |
| 413 | |
| 414 | virtual void lower() {} |
| 415 | |
| 416 | protected: |
| 417 | explicit TargetHeaderLowering(GlobalContext *Ctx) : Ctx(Ctx) {} |
| 418 | GlobalContext *Ctx; |
| 419 | }; |
| 420 | |
Jim Stichnoth | 5bc2b1d | 2014-05-22 13:38:48 -0700 | [diff] [blame] | 421 | } // end of namespace Ice |
| 422 | |
| 423 | #endif // SUBZERO_SRC_ICETARGETLOWERING_H |