Jim Stichnoth | 6da4cef | 2015-06-11 13:26:33 -0700 | [diff] [blame] | 1 | //===- subzero/src/IceTargetLoweringMIPS32.h - MIPS32 lowering ---*- 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 | //===----------------------------------------------------------------------===// |
Andrew Scull | 9612d32 | 2015-07-06 14:53:25 -0700 | [diff] [blame] | 9 | /// |
| 10 | /// \file |
Jim Stichnoth | 92a6e5b | 2015-12-02 16:52:44 -0800 | [diff] [blame] | 11 | /// \brief Declares the TargetLoweringMIPS32 class, which implements the |
Andrew Scull | 9612d32 | 2015-07-06 14:53:25 -0700 | [diff] [blame] | 12 | /// TargetLowering interface for the MIPS 32-bit architecture. |
| 13 | /// |
Jim Stichnoth | 6da4cef | 2015-06-11 13:26:33 -0700 | [diff] [blame] | 14 | //===----------------------------------------------------------------------===// |
| 15 | |
| 16 | #ifndef SUBZERO_SRC_ICETARGETLOWERINGMIPS32_H |
| 17 | #define SUBZERO_SRC_ICETARGETLOWERINGMIPS32_H |
| 18 | |
John Porto | 53611e2 | 2015-12-30 07:30:10 -0800 | [diff] [blame] | 19 | #include "IceAssemblerMIPS32.h" |
Jim Stichnoth | 6da4cef | 2015-06-11 13:26:33 -0700 | [diff] [blame] | 20 | #include "IceDefs.h" |
| 21 | #include "IceInstMIPS32.h" |
| 22 | #include "IceRegistersMIPS32.h" |
| 23 | #include "IceTargetLowering.h" |
| 24 | |
| 25 | namespace Ice { |
John Porto | 4a56686 | 2016-01-04 09:33:41 -0800 | [diff] [blame] | 26 | namespace MIPS32 { |
Jim Stichnoth | 6da4cef | 2015-06-11 13:26:33 -0700 | [diff] [blame] | 27 | |
| 28 | class TargetMIPS32 : public TargetLowering { |
| 29 | TargetMIPS32() = delete; |
| 30 | TargetMIPS32(const TargetMIPS32 &) = delete; |
| 31 | TargetMIPS32 &operator=(const TargetMIPS32 &) = delete; |
| 32 | |
| 33 | public: |
John Porto | 53611e2 | 2015-12-30 07:30:10 -0800 | [diff] [blame] | 34 | ~TargetMIPS32() override = default; |
| 35 | |
Karl Schimpf | 5403f5d | 2016-01-15 11:07:46 -0800 | [diff] [blame] | 36 | static void staticInit(GlobalContext *Ctx); |
Jim Stichnoth | 467ffe5 | 2016-03-29 15:01:06 -0700 | [diff] [blame] | 37 | static bool shouldBePooled(const Constant *C) { |
Mohit Bhakkad | d1e9777 | 2016-07-07 05:07:35 -0700 | [diff] [blame] | 38 | if (auto *ConstDouble = llvm::dyn_cast<ConstantDouble>(C)) { |
| 39 | return !Utils::isPositiveZero(ConstDouble->getValue()); |
| 40 | } |
Jaydeep Patil | cf9c12f | 2016-09-20 08:38:11 -0700 | [diff] [blame] | 41 | if (auto *ConstFloat = llvm::dyn_cast<ConstantFloat>(C)) { |
| 42 | return !Utils::isPositiveZero(ConstFloat->getValue()); |
| 43 | } |
Jim Stichnoth | 467ffe5 | 2016-03-29 15:01:06 -0700 | [diff] [blame] | 44 | return false; |
| 45 | } |
Nicolas Capens | 32f9cce | 2016-10-19 01:24:27 -0400 | [diff] [blame] | 46 | static ::Ice::Type getPointerType() { return ::Ice::IceType_i32; } |
John Porto | 53611e2 | 2015-12-30 07:30:10 -0800 | [diff] [blame] | 47 | static std::unique_ptr<::Ice::TargetLowering> create(Cfg *Func) { |
| 48 | return makeUnique<TargetMIPS32>(Func); |
| 49 | } |
| 50 | |
| 51 | std::unique_ptr<::Ice::Assembler> createAssembler() const override { |
| 52 | return makeUnique<MIPS32::AssemblerMIPS32>(); |
| 53 | } |
Jim Stichnoth | 6da4cef | 2015-06-11 13:26:33 -0700 | [diff] [blame] | 54 | |
Sagar Thakur | 5cce761 | 2016-05-24 06:25:50 -0700 | [diff] [blame] | 55 | void initNodeForLowering(CfgNode *Node) override { |
| 56 | Computations.forgetProducers(); |
| 57 | Computations.recordProducers(Node); |
| 58 | Computations.dump(Func); |
| 59 | } |
| 60 | |
Jim Stichnoth | 6da4cef | 2015-06-11 13:26:33 -0700 | [diff] [blame] | 61 | void translateOm1() override; |
| 62 | void translateO2() override; |
Reed Kotler | 04bca5a | 2016-02-03 14:40:47 -0800 | [diff] [blame] | 63 | bool doBranchOpt(Inst *Instr, const CfgNode *NextNode) override; |
Jaydeep Patil | 958ddb7 | 2016-10-03 07:52:48 -0700 | [diff] [blame] | 64 | void setImplicitRet(Variable *Ret) { ImplicitRet = Ret; } |
| 65 | Variable *getImplicitRet() const { return ImplicitRet; } |
Jim Stichnoth | 6da4cef | 2015-06-11 13:26:33 -0700 | [diff] [blame] | 66 | SizeT getNumRegisters() const override { return RegMIPS32::Reg_NUM; } |
Jim Stichnoth | 8aa3966 | 2016-02-10 11:20:30 -0800 | [diff] [blame] | 67 | Variable *getPhysicalRegister(RegNumT RegNum, |
| 68 | Type Ty = IceType_void) override; |
Jim Stichnoth | 467ffe5 | 2016-03-29 15:01:06 -0700 | [diff] [blame] | 69 | const char *getRegName(RegNumT RegNum, Type Ty) const override; |
John Porto | e82b560 | 2016-02-24 15:58:55 -0800 | [diff] [blame] | 70 | SmallBitVector getRegisterSet(RegSetMask Include, |
| 71 | RegSetMask Exclude) const override; |
| 72 | const SmallBitVector & |
Jim Stichnoth | c59288b | 2015-11-09 11:38:40 -0800 | [diff] [blame] | 73 | getRegistersForVariable(const Variable *Var) const override { |
| 74 | RegClass RC = Var->getRegClass(); |
| 75 | assert(RC < RC_Target); |
| 76 | return TypeToRegisterSet[RC]; |
Jim Stichnoth | 6da4cef | 2015-06-11 13:26:33 -0700 | [diff] [blame] | 77 | } |
John Porto | e82b560 | 2016-02-24 15:58:55 -0800 | [diff] [blame] | 78 | const SmallBitVector & |
Jim Stichnoth | b40595a | 2016-01-29 06:14:31 -0800 | [diff] [blame] | 79 | getAllRegistersForVariable(const Variable *Var) const override { |
| 80 | RegClass RC = Var->getRegClass(); |
| 81 | assert(RC < RC_Target); |
| 82 | return TypeToRegisterSetUnfiltered[RC]; |
| 83 | } |
John Porto | e82b560 | 2016-02-24 15:58:55 -0800 | [diff] [blame] | 84 | const SmallBitVector &getAliasesForRegister(RegNumT Reg) const override { |
John Porto | bb0a5fe | 2015-09-04 11:23:41 -0700 | [diff] [blame] | 85 | return RegisterAliases[Reg]; |
| 86 | } |
Jim Stichnoth | 6da4cef | 2015-06-11 13:26:33 -0700 | [diff] [blame] | 87 | bool hasFramePointer() const override { return UsesFramePointer; } |
David Sehr | e39d0ca | 2015-11-06 11:25:41 -0800 | [diff] [blame] | 88 | void setHasFramePointer() override { UsesFramePointer = true; } |
Jim Stichnoth | 8aa3966 | 2016-02-10 11:20:30 -0800 | [diff] [blame] | 89 | RegNumT getStackReg() const override { return RegMIPS32::Reg_SP; } |
| 90 | RegNumT getFrameReg() const override { return RegMIPS32::Reg_FP; } |
| 91 | RegNumT getFrameOrStackReg() const override { |
David Sehr | 2f3b8ec | 2015-11-16 16:51:39 -0800 | [diff] [blame] | 92 | return UsesFramePointer ? getFrameReg() : getStackReg(); |
Jim Stichnoth | 6da4cef | 2015-06-11 13:26:33 -0700 | [diff] [blame] | 93 | } |
Jaydeep Patil | ec92917 | 2016-10-16 07:13:38 -0700 | [diff] [blame] | 94 | RegNumT getReservedTmpReg() const { return RegMIPS32::Reg_AT; } |
Jim Stichnoth | 6da4cef | 2015-06-11 13:26:33 -0700 | [diff] [blame] | 95 | size_t typeWidthInBytesOnStack(Type Ty) const override { |
Andrew Scull | 57e1268 | 2015-09-16 11:30:19 -0700 | [diff] [blame] | 96 | // Round up to the next multiple of 4 bytes. In particular, i1, i8, and i16 |
| 97 | // are rounded up to 4 bytes. |
Jim Stichnoth | 6da4cef | 2015-06-11 13:26:33 -0700 | [diff] [blame] | 98 | return (typeWidthInBytes(Ty) + 3) & ~3; |
| 99 | } |
Sagar Thakur | 1afb483 | 2016-06-16 15:30:24 -0700 | [diff] [blame] | 100 | uint32_t getStackAlignment() const override; |
David Sehr | 2f3b8ec | 2015-11-16 16:51:39 -0800 | [diff] [blame] | 101 | void reserveFixedAllocaArea(size_t Size, size_t Align) override { |
Sagar Thakur | 1afb483 | 2016-06-16 15:30:24 -0700 | [diff] [blame] | 102 | FixedAllocaSizeBytes = Size; |
| 103 | assert(llvm::isPowerOf2_32(Align)); |
| 104 | FixedAllocaAlignBytes = Align; |
| 105 | PrologEmitsFixedAllocas = true; |
David Sehr | 2f3b8ec | 2015-11-16 16:51:39 -0800 | [diff] [blame] | 106 | } |
| 107 | int32_t getFrameFixedAllocaOffset() const override { |
Sagar Thakur | 4683237 | 2016-10-16 07:20:44 -0700 | [diff] [blame] | 108 | int32_t FixedAllocaOffset = |
| 109 | Utils::applyAlignment(CurrentAllocaOffset, FixedAllocaAlignBytes); |
| 110 | return FixedAllocaOffset - MaxOutArgsSizeBytes; |
David Sehr | 2f3b8ec | 2015-11-16 16:51:39 -0800 | [diff] [blame] | 111 | } |
Andrew Scull | 87f80c1 | 2015-07-20 10:19:16 -0700 | [diff] [blame] | 112 | |
Sagar Thakur | 1afb483 | 2016-06-16 15:30:24 -0700 | [diff] [blame] | 113 | uint32_t maxOutArgsSizeBytes() const override { return MaxOutArgsSizeBytes; } |
| 114 | |
Andrew Scull | 6d47bcd | 2015-09-17 17:10:05 -0700 | [diff] [blame] | 115 | bool shouldSplitToVariable64On32(Type Ty) const override { |
| 116 | return Ty == IceType_i64; |
| 117 | } |
| 118 | |
Jaydeep Patil | 958ddb7 | 2016-10-03 07:52:48 -0700 | [diff] [blame] | 119 | bool shouldSplitToVariableVecOn32(Type Ty) const override { |
| 120 | return isVectorType(Ty); |
| 121 | } |
| 122 | |
Andrew Scull | 87f80c1 | 2015-07-20 10:19:16 -0700 | [diff] [blame] | 123 | // TODO(ascull): what is the best size of MIPS? |
| 124 | SizeT getMinJumpTableSize() const override { return 3; } |
Andrew Scull | 86df4e9 | 2015-07-30 13:54:44 -0700 | [diff] [blame] | 125 | void emitJumpTable(const Cfg *Func, |
| 126 | const InstJumpTable *JumpTable) const override; |
Andrew Scull | 87f80c1 | 2015-07-20 10:19:16 -0700 | [diff] [blame] | 127 | |
Jim Stichnoth | 6da4cef | 2015-06-11 13:26:33 -0700 | [diff] [blame] | 128 | void emitVariable(const Variable *Var) const override; |
| 129 | |
Jim Stichnoth | 6da4cef | 2015-06-11 13:26:33 -0700 | [diff] [blame] | 130 | void emit(const ConstantInteger32 *C) const final { |
Mohit Bhakkad | f3bc5cf | 2016-05-31 11:19:03 -0700 | [diff] [blame] | 131 | if (!BuildDefs::dump()) |
| 132 | return; |
| 133 | Ostream &Str = Ctx->getStrEmit(); |
| 134 | Str << C->getValue(); |
Jim Stichnoth | 6da4cef | 2015-06-11 13:26:33 -0700 | [diff] [blame] | 135 | } |
| 136 | void emit(const ConstantInteger64 *C) const final { |
Jan Voung | fb79284 | 2015-06-11 15:27:50 -0700 | [diff] [blame] | 137 | (void)C; |
Jim Stichnoth | 6da4cef | 2015-06-11 13:26:33 -0700 | [diff] [blame] | 138 | llvm::report_fatal_error("Not yet implemented"); |
| 139 | } |
| 140 | void emit(const ConstantFloat *C) const final { |
Jan Voung | fb79284 | 2015-06-11 15:27:50 -0700 | [diff] [blame] | 141 | (void)C; |
Jim Stichnoth | 6da4cef | 2015-06-11 13:26:33 -0700 | [diff] [blame] | 142 | llvm::report_fatal_error("Not yet implemented"); |
| 143 | } |
| 144 | void emit(const ConstantDouble *C) const final { |
Jan Voung | fb79284 | 2015-06-11 15:27:50 -0700 | [diff] [blame] | 145 | (void)C; |
Jim Stichnoth | 6da4cef | 2015-06-11 13:26:33 -0700 | [diff] [blame] | 146 | llvm::report_fatal_error("Not yet implemented"); |
| 147 | } |
Jim Stichnoth | 8ff4b28 | 2016-01-04 15:39:06 -0800 | [diff] [blame] | 148 | void emit(const ConstantUndef *C) const final { |
| 149 | (void)C; |
| 150 | llvm::report_fatal_error("Not yet implemented"); |
| 151 | } |
| 152 | void emit(const ConstantRelocatable *C) const final { |
| 153 | (void)C; |
| 154 | llvm::report_fatal_error("Not yet implemented"); |
| 155 | } |
Reed Kotler | 37af5b0 | 2015-11-05 17:07:19 -0800 | [diff] [blame] | 156 | |
| 157 | // The following are helpers that insert lowered MIPS32 instructions with |
| 158 | // minimal syntactic overhead, so that the lowering code can look as close to |
| 159 | // assembly as practical. |
| 160 | void _add(Variable *Dest, Variable *Src0, Variable *Src1) { |
John Porto | 1d937a8 | 2015-12-17 06:19:34 -0800 | [diff] [blame] | 161 | Context.insert<InstMIPS32Add>(Dest, Src0, Src1); |
Reed Kotler | 37af5b0 | 2015-11-05 17:07:19 -0800 | [diff] [blame] | 162 | } |
| 163 | |
Reed Kotler | 00e3604 | 2016-02-01 20:52:19 -0800 | [diff] [blame] | 164 | void _addu(Variable *Dest, Variable *Src0, Variable *Src1) { |
| 165 | Context.insert<InstMIPS32Addu>(Dest, Src0, Src1); |
| 166 | } |
| 167 | |
Reed Kotler | 37af5b0 | 2015-11-05 17:07:19 -0800 | [diff] [blame] | 168 | void _and(Variable *Dest, Variable *Src0, Variable *Src1) { |
John Porto | 1d937a8 | 2015-12-17 06:19:34 -0800 | [diff] [blame] | 169 | Context.insert<InstMIPS32And>(Dest, Src0, Src1); |
Reed Kotler | 37af5b0 | 2015-11-05 17:07:19 -0800 | [diff] [blame] | 170 | } |
| 171 | |
Sagar Thakur | 38dcb59 | 2016-05-09 11:57:59 -0700 | [diff] [blame] | 172 | void _andi(Variable *Dest, Variable *Src, uint32_t Imm) { |
| 173 | Context.insert<InstMIPS32Andi>(Dest, Src, Imm); |
| 174 | } |
| 175 | |
Reed Kotler | 3fe4b57 | 2016-02-23 18:59:43 -0800 | [diff] [blame] | 176 | void _br(CfgNode *Target) { Context.insert<InstMIPS32Br>(Target); } |
| 177 | |
Sagar Thakur | 5cce761 | 2016-05-24 06:25:50 -0700 | [diff] [blame] | 178 | void _br(CfgNode *TargetTrue, CfgNode *TargetFalse, Operand *Src0, |
| 179 | Operand *Src1, CondMIPS32::Cond Condition) { |
| 180 | Context.insert<InstMIPS32Br>(TargetTrue, TargetFalse, Src0, Src1, |
| 181 | Condition); |
| 182 | } |
| 183 | |
| 184 | void _br(CfgNode *TargetTrue, CfgNode *TargetFalse, Operand *Src0, |
| 185 | CondMIPS32::Cond Condition) { |
| 186 | Context.insert<InstMIPS32Br>(TargetTrue, TargetFalse, Src0, Condition); |
| 187 | } |
| 188 | |
Jaydeep Patil | 29823f1 | 2016-08-31 05:10:03 -0700 | [diff] [blame] | 189 | void _br(CfgNode *TargetTrue, CfgNode *TargetFalse, Operand *Src0, |
| 190 | Operand *Src1, const InstMIPS32Label *Label, |
| 191 | CondMIPS32::Cond Condition) { |
| 192 | Context.insert<InstMIPS32Br>(TargetTrue, TargetFalse, Src0, Src1, Label, |
| 193 | Condition); |
| 194 | } |
| 195 | |
Reed Kotler | d00d48d | 2015-07-08 09:49:07 -0700 | [diff] [blame] | 196 | void _ret(Variable *RA, Variable *Src0 = nullptr) { |
John Porto | 1d937a8 | 2015-12-17 06:19:34 -0800 | [diff] [blame] | 197 | Context.insert<InstMIPS32Ret>(RA, Src0); |
Reed Kotler | d00d48d | 2015-07-08 09:49:07 -0700 | [diff] [blame] | 198 | } |
Jim Stichnoth | 6da4cef | 2015-06-11 13:26:33 -0700 | [diff] [blame] | 199 | |
Srdjan Obucina | 53d0568 | 2016-09-10 08:25:37 -0700 | [diff] [blame] | 200 | void _abs_d(Variable *Dest, Variable *Src) { |
| 201 | Context.insert<InstMIPS32Abs_d>(Dest, Src); |
| 202 | } |
| 203 | |
| 204 | void _abs_s(Variable *Dest, Variable *Src) { |
| 205 | Context.insert<InstMIPS32Abs_s>(Dest, Src); |
| 206 | } |
| 207 | |
Jaydeep Patil | 130aca7 | 2016-10-28 05:30:54 -0700 | [diff] [blame] | 208 | void _addi(Variable *Dest, Variable *Src, uint32_t Imm) { |
| 209 | Context.insert<InstMIPS32Addi>(Dest, Src, Imm); |
| 210 | } |
| 211 | |
Srdjan Obucina | 2f593bb | 2016-05-27 14:40:32 -0700 | [diff] [blame] | 212 | void _add_d(Variable *Dest, Variable *Src0, Variable *Src1) { |
| 213 | Context.insert<InstMIPS32Add_d>(Dest, Src0, Src1); |
| 214 | } |
| 215 | |
| 216 | void _add_s(Variable *Dest, Variable *Src0, Variable *Src1) { |
| 217 | Context.insert<InstMIPS32Add_s>(Dest, Src0, Src1); |
| 218 | } |
| 219 | |
Jim Stichnoth | ac8da5c | 2015-10-21 06:57:46 -0700 | [diff] [blame] | 220 | void _addiu(Variable *Dest, Variable *Src, uint32_t Imm) { |
John Porto | 1d937a8 | 2015-12-17 06:19:34 -0800 | [diff] [blame] | 221 | Context.insert<InstMIPS32Addiu>(Dest, Src, Imm); |
Jim Stichnoth | ac8da5c | 2015-10-21 06:57:46 -0700 | [diff] [blame] | 222 | } |
| 223 | |
Jaydeep Patil | 45e4d5e | 2016-10-16 21:50:43 -0700 | [diff] [blame] | 224 | void _addiu(Variable *Dest, Variable *Src0, Operand *Src1, RelocOp Reloc) { |
| 225 | Context.insert<InstMIPS32Addiu>(Dest, Src0, Src1, Reloc); |
| 226 | } |
| 227 | |
Srdjan Obucina | f315f0d | 2016-09-13 05:46:30 -0700 | [diff] [blame] | 228 | void _c_eq_d(Variable *Src0, Variable *Src1) { |
| 229 | Context.insert<InstMIPS32C_eq_d>(Src0, Src1); |
| 230 | } |
| 231 | |
| 232 | void _c_eq_s(Variable *Src0, Variable *Src1) { |
| 233 | Context.insert<InstMIPS32C_eq_s>(Src0, Src1); |
| 234 | } |
| 235 | |
| 236 | void _c_ole_d(Variable *Src0, Variable *Src1) { |
| 237 | Context.insert<InstMIPS32C_ole_d>(Src0, Src1); |
| 238 | } |
| 239 | |
| 240 | void _c_ole_s(Variable *Src0, Variable *Src1) { |
| 241 | Context.insert<InstMIPS32C_ole_s>(Src0, Src1); |
| 242 | } |
| 243 | |
| 244 | void _c_olt_d(Variable *Src0, Variable *Src1) { |
| 245 | Context.insert<InstMIPS32C_olt_d>(Src0, Src1); |
| 246 | } |
| 247 | |
| 248 | void _c_olt_s(Variable *Src0, Variable *Src1) { |
| 249 | Context.insert<InstMIPS32C_olt_s>(Src0, Src1); |
| 250 | } |
| 251 | |
| 252 | void _c_ueq_d(Variable *Src0, Variable *Src1) { |
| 253 | Context.insert<InstMIPS32C_ueq_d>(Src0, Src1); |
| 254 | } |
| 255 | |
| 256 | void _c_ueq_s(Variable *Src0, Variable *Src1) { |
| 257 | Context.insert<InstMIPS32C_ueq_s>(Src0, Src1); |
| 258 | } |
| 259 | |
| 260 | void _c_ule_d(Variable *Src0, Variable *Src1) { |
| 261 | Context.insert<InstMIPS32C_ule_d>(Src0, Src1); |
| 262 | } |
| 263 | |
| 264 | void _c_ule_s(Variable *Src0, Variable *Src1) { |
| 265 | Context.insert<InstMIPS32C_ule_s>(Src0, Src1); |
| 266 | } |
| 267 | |
| 268 | void _c_ult_d(Variable *Src0, Variable *Src1) { |
| 269 | Context.insert<InstMIPS32C_ult_d>(Src0, Src1); |
| 270 | } |
| 271 | |
| 272 | void _c_ult_s(Variable *Src0, Variable *Src1) { |
| 273 | Context.insert<InstMIPS32C_ult_s>(Src0, Src1); |
| 274 | } |
| 275 | |
| 276 | void _c_un_d(Variable *Src0, Variable *Src1) { |
| 277 | Context.insert<InstMIPS32C_un_d>(Src0, Src1); |
| 278 | } |
| 279 | |
| 280 | void _c_un_s(Variable *Src0, Variable *Src1) { |
| 281 | Context.insert<InstMIPS32C_un_s>(Src0, Src1); |
| 282 | } |
| 283 | |
Srdjan Obucina | d27ce3d | 2016-09-22 12:56:12 -0700 | [diff] [blame] | 284 | void _clz(Variable *Dest, Variable *Src) { |
| 285 | Context.insert<InstMIPS32Clz>(Dest, Src); |
| 286 | } |
| 287 | |
Srdjan Obucina | 418135a | 2016-06-02 06:47:06 -0700 | [diff] [blame] | 288 | void _cvt_d_l(Variable *Dest, Variable *Src) { |
| 289 | Context.insert<InstMIPS32Cvt_d_l>(Dest, Src); |
| 290 | } |
| 291 | |
| 292 | void _cvt_d_s(Variable *Dest, Variable *Src) { |
| 293 | Context.insert<InstMIPS32Cvt_d_s>(Dest, Src); |
| 294 | } |
| 295 | |
| 296 | void _cvt_d_w(Variable *Dest, Variable *Src) { |
| 297 | Context.insert<InstMIPS32Cvt_d_w>(Dest, Src); |
| 298 | } |
| 299 | |
| 300 | void _cvt_s_d(Variable *Dest, Variable *Src) { |
| 301 | Context.insert<InstMIPS32Cvt_s_d>(Dest, Src); |
| 302 | } |
| 303 | |
| 304 | void _cvt_s_l(Variable *Dest, Variable *Src) { |
| 305 | Context.insert<InstMIPS32Cvt_s_l>(Dest, Src); |
| 306 | } |
| 307 | |
| 308 | void _cvt_s_w(Variable *Dest, Variable *Src) { |
| 309 | Context.insert<InstMIPS32Cvt_s_w>(Dest, Src); |
| 310 | } |
| 311 | |
Srdjan Obucina | ae93eee | 2016-05-18 11:31:15 -0700 | [diff] [blame] | 312 | void _div(Variable *Dest, Variable *Src0, Variable *Src1) { |
| 313 | Context.insert<InstMIPS32Div>(Dest, Src0, Src1); |
| 314 | } |
| 315 | |
Srdjan Obucina | 2f593bb | 2016-05-27 14:40:32 -0700 | [diff] [blame] | 316 | void _div_d(Variable *Dest, Variable *Src0, Variable *Src1) { |
| 317 | Context.insert<InstMIPS32Div_d>(Dest, Src0, Src1); |
| 318 | } |
| 319 | |
| 320 | void _div_s(Variable *Dest, Variable *Src0, Variable *Src1) { |
| 321 | Context.insert<InstMIPS32Div_s>(Dest, Src0, Src1); |
| 322 | } |
| 323 | |
Srdjan Obucina | ae93eee | 2016-05-18 11:31:15 -0700 | [diff] [blame] | 324 | void _divu(Variable *Dest, Variable *Src0, Variable *Src1) { |
| 325 | Context.insert<InstMIPS32Divu>(Dest, Src0, Src1); |
| 326 | } |
| 327 | |
Mohit Bhakkad | d1e9777 | 2016-07-07 05:07:35 -0700 | [diff] [blame] | 328 | void _ldc1(Variable *Value, OperandMIPS32Mem *Mem, RelocOp Reloc = RO_No) { |
| 329 | Context.insert<InstMIPS32Ldc1>(Value, Mem, Reloc); |
Srdjan Obucina | 418135a | 2016-06-02 06:47:06 -0700 | [diff] [blame] | 330 | } |
| 331 | |
Sagar Thakur | 633394c | 2016-06-25 08:34:10 -0700 | [diff] [blame] | 332 | void _lw(Variable *Value, OperandMIPS32Mem *Mem) { |
| 333 | Context.insert<InstMIPS32Lw>(Value, Mem); |
| 334 | } |
| 335 | |
Mohit Bhakkad | d1e9777 | 2016-07-07 05:07:35 -0700 | [diff] [blame] | 336 | void _lwc1(Variable *Value, OperandMIPS32Mem *Mem, RelocOp Reloc = RO_No) { |
| 337 | Context.insert<InstMIPS32Lwc1>(Value, Mem, Reloc); |
Srdjan Obucina | 418135a | 2016-06-02 06:47:06 -0700 | [diff] [blame] | 338 | } |
| 339 | |
Mohit Bhakkad | d1e9777 | 2016-07-07 05:07:35 -0700 | [diff] [blame] | 340 | void _lui(Variable *Dest, Operand *Src, RelocOp Reloc = RO_No) { |
| 341 | Context.insert<InstMIPS32Lui>(Dest, Src, Reloc); |
Jim Stichnoth | ac8da5c | 2015-10-21 06:57:46 -0700 | [diff] [blame] | 342 | } |
| 343 | |
Srdjan Obucina | d57ed5f | 2016-09-14 06:06:24 -0700 | [diff] [blame] | 344 | void _mfc1(Variable *Dest, Variable *Src) { |
| 345 | Context.insert<InstMIPS32Mfc1>(Dest, Src); |
| 346 | } |
| 347 | |
| 348 | void _mfhi(Variable *Dest, Operand *Src) { |
| 349 | Context.insert<InstMIPS32Mfhi>(Dest, Src); |
| 350 | } |
| 351 | |
| 352 | void _mflo(Variable *Dest, Operand *Src) { |
| 353 | Context.insert<InstMIPS32Mflo>(Dest, Src); |
| 354 | } |
| 355 | |
Sagar Thakur | b001cc4 | 2016-10-11 23:36:01 -0700 | [diff] [blame] | 356 | void _mov(Variable *Dest, Operand *Src0, Operand *Src1 = nullptr) { |
Jim Stichnoth | ac8da5c | 2015-10-21 06:57:46 -0700 | [diff] [blame] | 357 | assert(Dest != nullptr); |
| 358 | // Variable* Src0_ = llvm::dyn_cast<Variable>(Src0); |
| 359 | if (llvm::isa<ConstantRelocatable>(Src0)) { |
John Porto | 1d937a8 | 2015-12-17 06:19:34 -0800 | [diff] [blame] | 360 | Context.insert<InstMIPS32La>(Dest, Src0); |
Jim Stichnoth | ac8da5c | 2015-10-21 06:57:46 -0700 | [diff] [blame] | 361 | } else { |
Sagar Thakur | b001cc4 | 2016-10-11 23:36:01 -0700 | [diff] [blame] | 362 | auto *Instr = Context.insert<InstMIPS32Mov>(Dest, Src0, Src1); |
| 363 | if (Instr->getDestHi() != nullptr) { |
| 364 | // If DestHi is available, then Dest must be a Variable64On32. We add a |
Jim Stichnoth | ac8da5c | 2015-10-21 06:57:46 -0700 | [diff] [blame] | 365 | // fake-def for Instr.DestHi here. |
| 366 | assert(llvm::isa<Variable64On32>(Dest)); |
John Porto | 1d937a8 | 2015-12-17 06:19:34 -0800 | [diff] [blame] | 367 | Context.insert<InstFakeDef>(Instr->getDestHi()); |
Jim Stichnoth | ac8da5c | 2015-10-21 06:57:46 -0700 | [diff] [blame] | 368 | } |
| 369 | } |
| 370 | } |
| 371 | |
Stefan Maksimovic | f8c9977 | 2016-11-02 05:59:06 -0700 | [diff] [blame^] | 372 | void _mov_redefined(Variable *Dest, Operand *Src0, Operand *Src1 = nullptr) { |
| 373 | if (llvm::isa<ConstantRelocatable>(Src0)) { |
| 374 | Context.insert<InstMIPS32La>(Dest, Src0); |
| 375 | } else { |
| 376 | auto *Instr = Context.insert<InstMIPS32Mov>(Dest, Src0, Src1); |
| 377 | Instr->setDestRedefined(); |
| 378 | if (Instr->getDestHi() != nullptr) { |
| 379 | // If Instr is multi-dest, then Dest must be a Variable64On32. We add a |
| 380 | // fake-def for Instr.DestHi here. |
| 381 | assert(llvm::isa<Variable64On32>(Dest)); |
| 382 | Context.insert<InstFakeDef>(Instr->getDestHi()); |
| 383 | } |
| 384 | } |
| 385 | } |
| 386 | |
Srdjan Obucina | 2f593bb | 2016-05-27 14:40:32 -0700 | [diff] [blame] | 387 | void _mov_d(Variable *Dest, Variable *Src) { |
| 388 | Context.insert<InstMIPS32Mov_d>(Dest, Src); |
| 389 | } |
| 390 | |
| 391 | void _mov_s(Variable *Dest, Variable *Src) { |
| 392 | Context.insert<InstMIPS32Mov_s>(Dest, Src); |
| 393 | } |
| 394 | |
Stefan Maksimovic | afe5fe2 | 2016-10-05 10:45:19 -0700 | [diff] [blame] | 395 | void _movf(Variable *Dest, Variable *Src0, Operand *FCC) { |
| 396 | Context.insert<InstMIPS32Movf>(Dest, Src0, FCC)->setDestRedefined(); |
Srdjan Obucina | f315f0d | 2016-09-13 05:46:30 -0700 | [diff] [blame] | 397 | } |
| 398 | |
Srdjan Obucina | d57ed5f | 2016-09-14 06:06:24 -0700 | [diff] [blame] | 399 | void _movn(Variable *Dest, Variable *Src0, Variable *Src1) { |
Stefan Maksimovic | afe5fe2 | 2016-10-05 10:45:19 -0700 | [diff] [blame] | 400 | Context.insert<InstMIPS32Movn>(Dest, Src0, Src1)->setDestRedefined(); |
Srdjan Obucina | d57ed5f | 2016-09-14 06:06:24 -0700 | [diff] [blame] | 401 | } |
| 402 | |
| 403 | void _movn_d(Variable *Dest, Variable *Src0, Variable *Src1) { |
Stefan Maksimovic | afe5fe2 | 2016-10-05 10:45:19 -0700 | [diff] [blame] | 404 | Context.insert<InstMIPS32Movn_d>(Dest, Src0, Src1)->setDestRedefined(); |
Srdjan Obucina | d57ed5f | 2016-09-14 06:06:24 -0700 | [diff] [blame] | 405 | } |
| 406 | |
| 407 | void _movn_s(Variable *Dest, Variable *Src0, Variable *Src1) { |
Stefan Maksimovic | afe5fe2 | 2016-10-05 10:45:19 -0700 | [diff] [blame] | 408 | Context.insert<InstMIPS32Movn_s>(Dest, Src0, Src1)->setDestRedefined(); |
Srdjan Obucina | d57ed5f | 2016-09-14 06:06:24 -0700 | [diff] [blame] | 409 | } |
| 410 | |
Stefan Maksimovic | afe5fe2 | 2016-10-05 10:45:19 -0700 | [diff] [blame] | 411 | void _movt(Variable *Dest, Variable *Src0, Operand *FCC) { |
| 412 | Context.insert<InstMIPS32Movt>(Dest, Src0, FCC)->setDestRedefined(); |
Srdjan Obucina | f315f0d | 2016-09-13 05:46:30 -0700 | [diff] [blame] | 413 | } |
| 414 | |
Srdjan Obucina | d57ed5f | 2016-09-14 06:06:24 -0700 | [diff] [blame] | 415 | void _movz(Variable *Dest, Variable *Src0, Variable *Src1) { |
Stefan Maksimovic | afe5fe2 | 2016-10-05 10:45:19 -0700 | [diff] [blame] | 416 | Context.insert<InstMIPS32Movz>(Dest, Src0, Src1)->setDestRedefined(); |
Srdjan Obucina | 2f593bb | 2016-05-27 14:40:32 -0700 | [diff] [blame] | 417 | } |
| 418 | |
Srdjan Obucina | d57ed5f | 2016-09-14 06:06:24 -0700 | [diff] [blame] | 419 | void _movz_d(Variable *Dest, Variable *Src0, Variable *Src1) { |
Stefan Maksimovic | afe5fe2 | 2016-10-05 10:45:19 -0700 | [diff] [blame] | 420 | Context.insert<InstMIPS32Movz_d>(Dest, Src0, Src1)->setDestRedefined(); |
Reed Kotler | a80cdbc | 2016-02-19 22:03:29 -0800 | [diff] [blame] | 421 | } |
| 422 | |
Srdjan Obucina | d57ed5f | 2016-09-14 06:06:24 -0700 | [diff] [blame] | 423 | void _movz_s(Variable *Dest, Variable *Src0, Variable *Src1) { |
Stefan Maksimovic | afe5fe2 | 2016-10-05 10:45:19 -0700 | [diff] [blame] | 424 | Context.insert<InstMIPS32Movz_s>(Dest, Src0, Src1)->setDestRedefined(); |
Reed Kotler | a80cdbc | 2016-02-19 22:03:29 -0800 | [diff] [blame] | 425 | } |
| 426 | |
Srdjan Obucina | 2f593bb | 2016-05-27 14:40:32 -0700 | [diff] [blame] | 427 | void _mtc1(Variable *Dest, Variable *Src) { |
| 428 | Context.insert<InstMIPS32Mtc1>(Dest, Src); |
| 429 | } |
| 430 | |
Reed Kotler | a80cdbc | 2016-02-19 22:03:29 -0800 | [diff] [blame] | 431 | void _mthi(Variable *Dest, Operand *Src) { |
| 432 | Context.insert<InstMIPS32Mthi>(Dest, Src); |
| 433 | } |
| 434 | |
| 435 | void _mtlo(Variable *Dest, Operand *Src) { |
| 436 | Context.insert<InstMIPS32Mtlo>(Dest, Src); |
| 437 | } |
| 438 | |
Reed Kotler | 37af5b0 | 2015-11-05 17:07:19 -0800 | [diff] [blame] | 439 | void _mul(Variable *Dest, Variable *Src0, Variable *Src1) { |
John Porto | 1d937a8 | 2015-12-17 06:19:34 -0800 | [diff] [blame] | 440 | Context.insert<InstMIPS32Mul>(Dest, Src0, Src1); |
Reed Kotler | 37af5b0 | 2015-11-05 17:07:19 -0800 | [diff] [blame] | 441 | } |
| 442 | |
Srdjan Obucina | 2f593bb | 2016-05-27 14:40:32 -0700 | [diff] [blame] | 443 | void _mul_d(Variable *Dest, Variable *Src0, Variable *Src1) { |
| 444 | Context.insert<InstMIPS32Mul_d>(Dest, Src0, Src1); |
| 445 | } |
| 446 | |
| 447 | void _mul_s(Variable *Dest, Variable *Src0, Variable *Src1) { |
| 448 | Context.insert<InstMIPS32Mul_s>(Dest, Src0, Src1); |
| 449 | } |
| 450 | |
Reed Kotler | a80cdbc | 2016-02-19 22:03:29 -0800 | [diff] [blame] | 451 | void _mult(Variable *Dest, Variable *Src0, Variable *Src1) { |
| 452 | Context.insert<InstMIPS32Mult>(Dest, Src0, Src1); |
| 453 | } |
| 454 | |
| 455 | void _multu(Variable *Dest, Variable *Src0, Variable *Src1) { |
| 456 | Context.insert<InstMIPS32Multu>(Dest, Src0, Src1); |
| 457 | } |
| 458 | |
Srdjan Obucina | 8fbddc6 | 2016-09-15 17:26:40 -0700 | [diff] [blame] | 459 | void _nop() { Context.insert<InstMIPS32Sll>(getZero(), getZero(), 0); } |
| 460 | |
Srdjan Obucina | cadda79 | 2016-09-22 11:24:44 -0700 | [diff] [blame] | 461 | void _nor(Variable *Dest, Variable *Src0, Variable *Src1) { |
| 462 | Context.insert<InstMIPS32Nor>(Dest, Src0, Src1); |
| 463 | } |
| 464 | |
| 465 | void _not(Variable *Dest, Variable *Src0) { |
| 466 | Context.insert<InstMIPS32Nor>(Dest, Src0, getZero()); |
| 467 | } |
| 468 | |
Reed Kotler | 37af5b0 | 2015-11-05 17:07:19 -0800 | [diff] [blame] | 469 | void _or(Variable *Dest, Variable *Src0, Variable *Src1) { |
John Porto | 1d937a8 | 2015-12-17 06:19:34 -0800 | [diff] [blame] | 470 | Context.insert<InstMIPS32Or>(Dest, Src0, Src1); |
Reed Kotler | 37af5b0 | 2015-11-05 17:07:19 -0800 | [diff] [blame] | 471 | } |
| 472 | |
Jim Stichnoth | ac8da5c | 2015-10-21 06:57:46 -0700 | [diff] [blame] | 473 | void _ori(Variable *Dest, Variable *Src, uint32_t Imm) { |
John Porto | 1d937a8 | 2015-12-17 06:19:34 -0800 | [diff] [blame] | 474 | Context.insert<InstMIPS32Ori>(Dest, Src, Imm); |
Jim Stichnoth | ac8da5c | 2015-10-21 06:57:46 -0700 | [diff] [blame] | 475 | } |
| 476 | |
Srdjan Obucina | 418135a | 2016-06-02 06:47:06 -0700 | [diff] [blame] | 477 | void _sdc1(Variable *Value, OperandMIPS32Mem *Mem) { |
| 478 | Context.insert<InstMIPS32Sdc1>(Value, Mem); |
| 479 | } |
| 480 | |
Sagar Thakur | 38dcb59 | 2016-05-09 11:57:59 -0700 | [diff] [blame] | 481 | void _sll(Variable *Dest, Variable *Src, uint32_t Imm) { |
| 482 | Context.insert<InstMIPS32Sll>(Dest, Src, Imm); |
| 483 | } |
| 484 | |
Srdjan Obucina | c2ee36a | 2016-05-17 13:16:02 -0700 | [diff] [blame] | 485 | void _sllv(Variable *Dest, Variable *Src0, Variable *Src1) { |
| 486 | Context.insert<InstMIPS32Sllv>(Dest, Src0, Src1); |
| 487 | } |
| 488 | |
Sagar Thakur | 1a478b1 | 2016-04-25 08:39:19 -0700 | [diff] [blame] | 489 | void _slt(Variable *Dest, Variable *Src0, Variable *Src1) { |
| 490 | Context.insert<InstMIPS32Slt>(Dest, Src0, Src1); |
| 491 | } |
| 492 | |
| 493 | void _slti(Variable *Dest, Variable *Src, uint32_t Imm) { |
| 494 | Context.insert<InstMIPS32Slti>(Dest, Src, Imm); |
| 495 | } |
| 496 | |
| 497 | void _sltiu(Variable *Dest, Variable *Src, uint32_t Imm) { |
| 498 | Context.insert<InstMIPS32Sltiu>(Dest, Src, Imm); |
Reed Kotler | 37af5b0 | 2015-11-05 17:07:19 -0800 | [diff] [blame] | 499 | } |
| 500 | |
Reed Kotler | 00e3604 | 2016-02-01 20:52:19 -0800 | [diff] [blame] | 501 | void _sltu(Variable *Dest, Variable *Src0, Variable *Src1) { |
| 502 | Context.insert<InstMIPS32Sltu>(Dest, Src0, Src1); |
| 503 | } |
| 504 | |
Srdjan Obucina | 53d0568 | 2016-09-10 08:25:37 -0700 | [diff] [blame] | 505 | void _sqrt_d(Variable *Dest, Variable *Src) { |
| 506 | Context.insert<InstMIPS32Sqrt_d>(Dest, Src); |
| 507 | } |
| 508 | |
| 509 | void _sqrt_s(Variable *Dest, Variable *Src) { |
| 510 | Context.insert<InstMIPS32Sqrt_s>(Dest, Src); |
| 511 | } |
| 512 | |
Sagar Thakur | 38dcb59 | 2016-05-09 11:57:59 -0700 | [diff] [blame] | 513 | void _sra(Variable *Dest, Variable *Src, uint32_t Imm) { |
| 514 | Context.insert<InstMIPS32Sra>(Dest, Src, Imm); |
| 515 | } |
| 516 | |
Srdjan Obucina | c2ee36a | 2016-05-17 13:16:02 -0700 | [diff] [blame] | 517 | void _srav(Variable *Dest, Variable *Src0, Variable *Src1) { |
| 518 | Context.insert<InstMIPS32Srav>(Dest, Src0, Src1); |
| 519 | } |
| 520 | |
| 521 | void _srl(Variable *Dest, Variable *Src, uint32_t Imm) { |
| 522 | Context.insert<InstMIPS32Srl>(Dest, Src, Imm); |
| 523 | } |
| 524 | |
| 525 | void _srlv(Variable *Dest, Variable *Src0, Variable *Src1) { |
| 526 | Context.insert<InstMIPS32Srlv>(Dest, Src0, Src1); |
| 527 | } |
| 528 | |
Sagar Thakur | 1a478b1 | 2016-04-25 08:39:19 -0700 | [diff] [blame] | 529 | void _sub(Variable *Dest, Variable *Src0, Variable *Src1) { |
| 530 | Context.insert<InstMIPS32Sub>(Dest, Src0, Src1); |
| 531 | } |
| 532 | |
Srdjan Obucina | 2f593bb | 2016-05-27 14:40:32 -0700 | [diff] [blame] | 533 | void _sub_d(Variable *Dest, Variable *Src0, Variable *Src1) { |
| 534 | Context.insert<InstMIPS32Sub_d>(Dest, Src0, Src1); |
| 535 | } |
| 536 | |
| 537 | void _sub_s(Variable *Dest, Variable *Src0, Variable *Src1) { |
| 538 | Context.insert<InstMIPS32Sub_s>(Dest, Src0, Src1); |
| 539 | } |
| 540 | |
Reed Kotler | 00e3604 | 2016-02-01 20:52:19 -0800 | [diff] [blame] | 541 | void _subu(Variable *Dest, Variable *Src0, Variable *Src1) { |
| 542 | Context.insert<InstMIPS32Subu>(Dest, Src0, Src1); |
| 543 | } |
| 544 | |
Mohit Bhakkad | f3bc5cf | 2016-05-31 11:19:03 -0700 | [diff] [blame] | 545 | void _sw(Variable *Value, OperandMIPS32Mem *Mem) { |
| 546 | Context.insert<InstMIPS32Sw>(Value, Mem); |
| 547 | } |
| 548 | |
Srdjan Obucina | 418135a | 2016-06-02 06:47:06 -0700 | [diff] [blame] | 549 | void _swc1(Variable *Value, OperandMIPS32Mem *Mem) { |
| 550 | Context.insert<InstMIPS32Swc1>(Value, Mem); |
| 551 | } |
| 552 | |
Jaydeep Patil | cc6dea7 | 2016-09-19 16:48:34 -0700 | [diff] [blame] | 553 | void _teq(Variable *Src0, Variable *Src1, uint32_t TrapCode) { |
| 554 | Context.insert<InstMIPS32Teq>(Src0, Src1, TrapCode); |
| 555 | } |
| 556 | |
Srdjan Obucina | 418135a | 2016-06-02 06:47:06 -0700 | [diff] [blame] | 557 | void _trunc_l_d(Variable *Dest, Variable *Src) { |
| 558 | Context.insert<InstMIPS32Trunc_l_d>(Dest, Src); |
| 559 | } |
| 560 | |
| 561 | void _trunc_l_s(Variable *Dest, Variable *Src) { |
| 562 | Context.insert<InstMIPS32Trunc_l_s>(Dest, Src); |
| 563 | } |
| 564 | |
| 565 | void _trunc_w_d(Variable *Dest, Variable *Src) { |
| 566 | Context.insert<InstMIPS32Trunc_w_d>(Dest, Src); |
| 567 | } |
| 568 | |
| 569 | void _trunc_w_s(Variable *Dest, Variable *Src) { |
| 570 | Context.insert<InstMIPS32Trunc_w_s>(Dest, Src); |
| 571 | } |
| 572 | |
Reed Kotler | 37af5b0 | 2015-11-05 17:07:19 -0800 | [diff] [blame] | 573 | void _xor(Variable *Dest, Variable *Src0, Variable *Src1) { |
John Porto | 1d937a8 | 2015-12-17 06:19:34 -0800 | [diff] [blame] | 574 | Context.insert<InstMIPS32Xor>(Dest, Src0, Src1); |
Reed Kotler | 37af5b0 | 2015-11-05 17:07:19 -0800 | [diff] [blame] | 575 | } |
| 576 | |
Sagar Thakur | 1a478b1 | 2016-04-25 08:39:19 -0700 | [diff] [blame] | 577 | void _xori(Variable *Dest, Variable *Src, uint32_t Imm) { |
| 578 | Context.insert<InstMIPS32Xori>(Dest, Src, Imm); |
| 579 | } |
| 580 | |
Jim Stichnoth | 6da4cef | 2015-06-11 13:26:33 -0700 | [diff] [blame] | 581 | void lowerArguments() override; |
Jim Stichnoth | ac8da5c | 2015-10-21 06:57:46 -0700 | [diff] [blame] | 582 | |
Sagar Thakur | 752e59f | 2016-07-21 06:12:09 -0700 | [diff] [blame] | 583 | /// Make a pass through the SortedSpilledVariables and actually assign stack |
| 584 | /// slots. SpillAreaPaddingBytes takes into account stack alignment padding. |
| 585 | /// The SpillArea starts after that amount of padding. This matches the scheme |
| 586 | /// in getVarStackSlotParams, where there may be a separate multi-block global |
| 587 | /// var spill area and a local var spill area. |
| 588 | void assignVarStackSlots(VarList &SortedSpilledVariables, |
| 589 | size_t SpillAreaPaddingBytes, |
| 590 | size_t SpillAreaSizeBytes, |
| 591 | size_t GlobalsAndSubsequentPaddingSize); |
| 592 | |
Jim Stichnoth | ac8da5c | 2015-10-21 06:57:46 -0700 | [diff] [blame] | 593 | /// Operand legalization helpers. To deal with address mode constraints, |
| 594 | /// the helpers will create a new Operand and emit instructions that |
| 595 | /// guarantee that the Operand kind is one of those indicated by the |
| 596 | /// LegalMask (a bitmask of allowed kinds). If the input Operand is known |
| 597 | /// to already meet the constraints, it may be simply returned as the result, |
| 598 | /// without creating any new instructions or operands. |
| 599 | enum OperandLegalization { |
| 600 | Legal_None = 0, |
| 601 | Legal_Reg = 1 << 0, // physical register, not stack location |
| 602 | Legal_Imm = 1 << 1, |
| 603 | Legal_Mem = 1 << 2, |
Jaydeep Patil | 1d0690b | 2016-09-04 07:19:08 -0700 | [diff] [blame] | 604 | Legal_Rematerializable = 1 << 3, |
Jim Stichnoth | 8ff4b28 | 2016-01-04 15:39:06 -0800 | [diff] [blame] | 605 | Legal_Default = ~Legal_None |
Jim Stichnoth | ac8da5c | 2015-10-21 06:57:46 -0700 | [diff] [blame] | 606 | }; |
| 607 | typedef uint32_t LegalMask; |
Jim Stichnoth | 8ff4b28 | 2016-01-04 15:39:06 -0800 | [diff] [blame] | 608 | Operand *legalize(Operand *From, LegalMask Allowed = Legal_Default, |
Reed Kotler | 5fa0a5f | 2016-02-15 20:01:24 -0800 | [diff] [blame] | 609 | RegNumT RegNum = RegNumT()); |
Jim Stichnoth | ac8da5c | 2015-10-21 06:57:46 -0700 | [diff] [blame] | 610 | |
Reed Kotler | 5fa0a5f | 2016-02-15 20:01:24 -0800 | [diff] [blame] | 611 | Variable *legalizeToVar(Operand *From, RegNumT RegNum = RegNumT()); |
Jim Stichnoth | ac8da5c | 2015-10-21 06:57:46 -0700 | [diff] [blame] | 612 | |
Reed Kotler | 5fa0a5f | 2016-02-15 20:01:24 -0800 | [diff] [blame] | 613 | Variable *legalizeToReg(Operand *From, RegNumT RegNum = RegNumT()); |
Jim Stichnoth | ac8da5c | 2015-10-21 06:57:46 -0700 | [diff] [blame] | 614 | |
Reed Kotler | 5fa0a5f | 2016-02-15 20:01:24 -0800 | [diff] [blame] | 615 | Variable *makeReg(Type Ty, RegNumT RegNum = RegNumT()); |
Reed Kotler | 953568f | 2016-02-17 05:37:01 -0800 | [diff] [blame] | 616 | |
Sagar Thakur | 1a478b1 | 2016-04-25 08:39:19 -0700 | [diff] [blame] | 617 | Variable *getZero() { |
| 618 | return getPhysicalRegister(RegMIPS32::Reg_ZERO, IceType_i32); |
| 619 | } |
| 620 | |
Reed Kotler | 953568f | 2016-02-17 05:37:01 -0800 | [diff] [blame] | 621 | Variable *I32Reg(RegNumT RegNum = RegNumT()) { |
| 622 | return makeReg(IceType_i32, RegNum); |
| 623 | } |
| 624 | |
Srdjan Obucina | f315f0d | 2016-09-13 05:46:30 -0700 | [diff] [blame] | 625 | Variable *F32Reg(RegNumT RegNum = RegNumT()) { |
| 626 | return makeReg(IceType_f32, RegNum); |
| 627 | } |
| 628 | |
| 629 | Variable *F64Reg(RegNumT RegNum = RegNumT()) { |
| 630 | return makeReg(IceType_f64, RegNum); |
| 631 | } |
| 632 | |
Jim Stichnoth | ac8da5c | 2015-10-21 06:57:46 -0700 | [diff] [blame] | 633 | static Type stackSlotType(); |
Reed Kotler | 5fa0a5f | 2016-02-15 20:01:24 -0800 | [diff] [blame] | 634 | Variable *copyToReg(Operand *Src, RegNumT RegNum = RegNumT()); |
Jim Stichnoth | ac8da5c | 2015-10-21 06:57:46 -0700 | [diff] [blame] | 635 | |
Sagar Thakur | 1afb483 | 2016-06-16 15:30:24 -0700 | [diff] [blame] | 636 | void unsetIfNonLeafFunc(); |
| 637 | |
Sagar Thakur | a49fce0 | 2016-06-13 05:55:00 -0700 | [diff] [blame] | 638 | // Iterates over the CFG and determines the maximum outgoing stack arguments |
| 639 | // bytes. This information is later used during addProlog() to pre-allocate |
| 640 | // the outargs area |
| 641 | void findMaxStackOutArgsSize(); |
| 642 | |
Sagar Thakur | 5674c91 | 2016-07-14 14:50:37 -0700 | [diff] [blame] | 643 | void postLowerLegalization(); |
| 644 | |
Jim Stichnoth | 6da4cef | 2015-06-11 13:26:33 -0700 | [diff] [blame] | 645 | void addProlog(CfgNode *Node) override; |
| 646 | void addEpilog(CfgNode *Node) override; |
| 647 | |
Jim Stichnoth | ac8da5c | 2015-10-21 06:57:46 -0700 | [diff] [blame] | 648 | // Ensure that a 64-bit Variable has been split into 2 32-bit |
| 649 | // Variables, creating them if necessary. This is needed for all |
| 650 | // I64 operations. |
| 651 | void split64(Variable *Var); |
| 652 | Operand *loOperand(Operand *Operand); |
| 653 | Operand *hiOperand(Operand *Operand); |
Jaydeep Patil | 958ddb7 | 2016-10-03 07:52:48 -0700 | [diff] [blame] | 654 | Operand *getOperandAtIndex(Operand *Operand, Type BaseType, uint32_t Index); |
Jim Stichnoth | ac8da5c | 2015-10-21 06:57:46 -0700 | [diff] [blame] | 655 | |
Jaydeep Patil | 958ddb7 | 2016-10-03 07:52:48 -0700 | [diff] [blame] | 656 | void finishArgumentLowering(Variable *Arg, bool PartialOnStack, |
| 657 | Variable *FramePtr, size_t BasicFrameOffset, |
| 658 | size_t *InArgsSizeBytes); |
Sagar Thakur | a49fce0 | 2016-06-13 05:55:00 -0700 | [diff] [blame] | 659 | |
Reed Kotler | 5fa0a5f | 2016-02-15 20:01:24 -0800 | [diff] [blame] | 660 | Operand *legalizeUndef(Operand *From, RegNumT RegNum = RegNumT()); |
Jim Stichnoth | ac8da5c | 2015-10-21 06:57:46 -0700 | [diff] [blame] | 661 | |
Mohit Bhakkad | f90118a | 2016-06-13 00:28:13 -0700 | [diff] [blame] | 662 | /// Helper class that understands the Calling Convention and register |
| 663 | /// assignments as per MIPS O32 abi. |
| 664 | class CallingConv { |
| 665 | CallingConv(const CallingConv &) = delete; |
| 666 | CallingConv &operator=(const CallingConv &) = delete; |
| 667 | |
| 668 | public: |
| 669 | CallingConv(); |
| 670 | ~CallingConv() = default; |
| 671 | |
| 672 | /// argInReg returns true if there is a Register available for the requested |
| 673 | /// type, and false otherwise. If it returns true, Reg is set to the |
| 674 | /// appropriate register number. Note that, when Ty == IceType_i64, Reg will |
| 675 | /// be an I64 register pair. |
| 676 | bool argInReg(Type Ty, uint32_t ArgNo, RegNumT *Reg); |
Jaydeep Patil | 958ddb7 | 2016-10-03 07:52:48 -0700 | [diff] [blame] | 677 | void discardReg(RegNumT Reg) { GPRegsUsed |= RegisterAliases[Reg]; } |
Mohit Bhakkad | f90118a | 2016-06-13 00:28:13 -0700 | [diff] [blame] | 678 | |
| 679 | private: |
| 680 | // argInGPR is used to find if any GPR register is available for argument of |
| 681 | // type Ty |
| 682 | bool argInGPR(Type Ty, RegNumT *Reg); |
| 683 | /// argInVFP is to floating-point/vector types what argInGPR is for integer |
| 684 | /// types. |
| 685 | bool argInVFP(Type Ty, RegNumT *Reg); |
| 686 | inline void discardNextGPRAndItsAliases(CfgVector<RegNumT> *Regs); |
Mohit Bhakkad | bbb5fa7 | 2016-06-29 06:51:08 -0700 | [diff] [blame] | 687 | inline void alignGPR(CfgVector<RegNumT> *Regs); |
Mohit Bhakkad | f90118a | 2016-06-13 00:28:13 -0700 | [diff] [blame] | 688 | void discardUnavailableGPRsAndTheirAliases(CfgVector<RegNumT> *Regs); |
| 689 | SmallBitVector GPRegsUsed; |
| 690 | CfgVector<RegNumT> GPRArgs; |
| 691 | CfgVector<RegNumT> I64Args; |
| 692 | |
| 693 | void discardUnavailableVFPRegsAndTheirAliases(CfgVector<RegNumT> *Regs); |
| 694 | SmallBitVector VFPRegsUsed; |
| 695 | CfgVector<RegNumT> FP32Args; |
| 696 | CfgVector<RegNumT> FP64Args; |
| 697 | // UseFPRegs is a flag indicating if FP registers can be used |
| 698 | bool UseFPRegs = false; |
| 699 | }; |
| 700 | |
Jim Stichnoth | 6da4cef | 2015-06-11 13:26:33 -0700 | [diff] [blame] | 701 | protected: |
| 702 | explicit TargetMIPS32(Cfg *Func); |
| 703 | |
| 704 | void postLower() override; |
| 705 | |
Reed Kotler | 04bca5a | 2016-02-03 14:40:47 -0800 | [diff] [blame] | 706 | void lowerAlloca(const InstAlloca *Instr) override; |
| 707 | void lowerArithmetic(const InstArithmetic *Instr) override; |
| 708 | void lowerInt64Arithmetic(const InstArithmetic *Instr, Variable *Dest, |
Reed Kotler | 00e3604 | 2016-02-01 20:52:19 -0800 | [diff] [blame] | 709 | Operand *Src0, Operand *Src1); |
Reed Kotler | 04bca5a | 2016-02-03 14:40:47 -0800 | [diff] [blame] | 710 | void lowerAssign(const InstAssign *Instr) override; |
| 711 | void lowerBr(const InstBr *Instr) override; |
Eric Holk | 67c7c41 | 2016-04-15 13:05:37 -0700 | [diff] [blame] | 712 | void lowerBreakpoint(const InstBreakpoint *Instr) override; |
Reed Kotler | 04bca5a | 2016-02-03 14:40:47 -0800 | [diff] [blame] | 713 | void lowerCall(const InstCall *Instr) override; |
| 714 | void lowerCast(const InstCast *Instr) override; |
| 715 | void lowerExtractElement(const InstExtractElement *Instr) override; |
| 716 | void lowerFcmp(const InstFcmp *Instr) override; |
| 717 | void lowerIcmp(const InstIcmp *Instr) override; |
Sagar Thakur | 1a478b1 | 2016-04-25 08:39:19 -0700 | [diff] [blame] | 718 | void lower64Icmp(const InstIcmp *Instr); |
Reed Kotler | 04bca5a | 2016-02-03 14:40:47 -0800 | [diff] [blame] | 719 | void lowerIntrinsicCall(const InstIntrinsicCall *Instr) override; |
| 720 | void lowerInsertElement(const InstInsertElement *Instr) override; |
| 721 | void lowerLoad(const InstLoad *Instr) override; |
| 722 | void lowerPhi(const InstPhi *Instr) override; |
| 723 | void lowerRet(const InstRet *Instr) override; |
| 724 | void lowerSelect(const InstSelect *Instr) override; |
John Porto | a47c11c | 2016-04-21 05:53:42 -0700 | [diff] [blame] | 725 | void lowerShuffleVector(const InstShuffleVector *Instr) override; |
Reed Kotler | 04bca5a | 2016-02-03 14:40:47 -0800 | [diff] [blame] | 726 | void lowerStore(const InstStore *Instr) override; |
| 727 | void lowerSwitch(const InstSwitch *Instr) override; |
| 728 | void lowerUnreachable(const InstUnreachable *Instr) override; |
Jim Stichnoth | 6da4cef | 2015-06-11 13:26:33 -0700 | [diff] [blame] | 729 | void prelowerPhis() override; |
Sagar Thakur | 4683237 | 2016-10-16 07:20:44 -0700 | [diff] [blame] | 730 | uint32_t getCallStackArgumentsSizeBytes(const InstCall *Instr) override; |
Srdjan Obucina | b85cde1 | 2016-09-09 09:39:52 -0700 | [diff] [blame] | 731 | void genTargetHelperCallFor(Inst *Instr) override; |
Jim Stichnoth | 6da4cef | 2015-06-11 13:26:33 -0700 | [diff] [blame] | 732 | void doAddressOptLoad() override; |
| 733 | void doAddressOptStore() override; |
Qining Lu | aee5fa8 | 2015-08-20 14:59:03 -0700 | [diff] [blame] | 734 | void randomlyInsertNop(float Probability, |
| 735 | RandomNumberGenerator &RNG) override; |
| 736 | void |
Jim Stichnoth | 8aa3966 | 2016-02-10 11:20:30 -0800 | [diff] [blame] | 737 | makeRandomRegisterPermutation(llvm::SmallVectorImpl<RegNumT> &Permutation, |
John Porto | e82b560 | 2016-02-24 15:58:55 -0800 | [diff] [blame] | 738 | const SmallBitVector &ExcludeRegisters, |
Qining Lu | aee5fa8 | 2015-08-20 14:59:03 -0700 | [diff] [blame] | 739 | uint64_t Salt) const override; |
Jim Stichnoth | 6da4cef | 2015-06-11 13:26:33 -0700 | [diff] [blame] | 740 | |
Mohit Bhakkad | f3bc5cf | 2016-05-31 11:19:03 -0700 | [diff] [blame] | 741 | OperandMIPS32Mem *formMemoryOperand(Operand *Ptr, Type Ty); |
| 742 | |
Sagar Thakur | 5674c91 | 2016-07-14 14:50:37 -0700 | [diff] [blame] | 743 | class PostLoweringLegalizer { |
| 744 | PostLoweringLegalizer() = delete; |
| 745 | PostLoweringLegalizer(const PostLoweringLegalizer &) = delete; |
| 746 | PostLoweringLegalizer &operator=(const PostLoweringLegalizer &) = delete; |
| 747 | |
| 748 | public: |
| 749 | explicit PostLoweringLegalizer(TargetMIPS32 *Target) |
| 750 | : Target(Target), StackOrFrameReg(Target->getPhysicalRegister( |
| 751 | Target->getFrameOrStackReg())) {} |
| 752 | |
Jaydeep Patil | ec92917 | 2016-10-16 07:13:38 -0700 | [diff] [blame] | 753 | /// Legalizes Mem. if Mem.Base is a rematerializable variable, |
| 754 | /// Mem.Offset is fixed up. |
| 755 | OperandMIPS32Mem *legalizeMemOperand(OperandMIPS32Mem *Mem); |
| 756 | |
Sagar Thakur | 89be887 | 2016-10-18 07:32:21 -0700 | [diff] [blame] | 757 | /// Legalizes Immediate if larger value overflows range of 16 bits |
| 758 | Variable *legalizeImmediate(int32_t Imm); |
| 759 | |
Sagar Thakur | 5674c91 | 2016-07-14 14:50:37 -0700 | [diff] [blame] | 760 | /// Legalizes Mov if its Source (or Destination) is a spilled Variable, or |
| 761 | /// if its Source is a Rematerializable variable (this form is used in lieu |
| 762 | /// of lea, which is not available in MIPS.) |
| 763 | /// |
| 764 | /// Moves to memory become store instructions, and moves from memory, loads. |
| 765 | void legalizeMov(InstMIPS32Mov *Mov); |
| 766 | |
| 767 | private: |
| 768 | /// Creates a new Base register centered around [Base, +/- Offset]. |
| 769 | Variable *newBaseRegister(Variable *Base, int32_t Offset, |
| 770 | RegNumT ScratchRegNum); |
| 771 | |
| 772 | TargetMIPS32 *const Target; |
| 773 | Variable *const StackOrFrameReg; |
| 774 | }; |
| 775 | |
Jim Stichnoth | eafb56c | 2015-06-22 10:35:22 -0700 | [diff] [blame] | 776 | bool UsesFramePointer = false; |
| 777 | bool NeedsStackAlignment = false; |
Sagar Thakur | a49fce0 | 2016-06-13 05:55:00 -0700 | [diff] [blame] | 778 | bool MaybeLeafFunc = true; |
| 779 | bool PrologEmitsFixedAllocas = false; |
Sagar Thakur | c930d59 | 2016-07-12 04:06:44 -0700 | [diff] [blame] | 780 | bool VariableAllocaUsed = false; |
Sagar Thakur | a49fce0 | 2016-06-13 05:55:00 -0700 | [diff] [blame] | 781 | uint32_t MaxOutArgsSizeBytes = 0; |
Sagar Thakur | 633394c | 2016-06-25 08:34:10 -0700 | [diff] [blame] | 782 | uint32_t TotalStackSizeBytes = 0; |
Sagar Thakur | 4683237 | 2016-10-16 07:20:44 -0700 | [diff] [blame] | 783 | uint32_t CurrentAllocaOffset = 0; |
Sagar Thakur | 89be887 | 2016-10-18 07:32:21 -0700 | [diff] [blame] | 784 | uint32_t VariableAllocaAlignBytes = 0; |
John Porto | e82b560 | 2016-02-24 15:58:55 -0800 | [diff] [blame] | 785 | static SmallBitVector TypeToRegisterSet[RCMIPS32_NUM]; |
| 786 | static SmallBitVector TypeToRegisterSetUnfiltered[RCMIPS32_NUM]; |
| 787 | static SmallBitVector RegisterAliases[RegMIPS32::Reg_NUM]; |
| 788 | SmallBitVector RegsUsed; |
Jim Stichnoth | 6da4cef | 2015-06-11 13:26:33 -0700 | [diff] [blame] | 789 | VarList PhysicalRegisters[IceType_NUM]; |
Sagar Thakur | a49fce0 | 2016-06-13 05:55:00 -0700 | [diff] [blame] | 790 | VarList PreservedGPRs; |
Sagar Thakur | 38dcb59 | 2016-05-09 11:57:59 -0700 | [diff] [blame] | 791 | static constexpr uint32_t CHAR_BITS = 8; |
| 792 | static constexpr uint32_t INT32_BITS = 32; |
Sagar Thakur | a49fce0 | 2016-06-13 05:55:00 -0700 | [diff] [blame] | 793 | size_t SpillAreaSizeBytes = 0; |
Sagar Thakur | 1afb483 | 2016-06-16 15:30:24 -0700 | [diff] [blame] | 794 | size_t FixedAllocaSizeBytes = 0; |
| 795 | size_t FixedAllocaAlignBytes = 0; |
Sagar Thakur | 633394c | 2016-06-25 08:34:10 -0700 | [diff] [blame] | 796 | size_t PreservedRegsSizeBytes = 0; |
Jaydeep Patil | 958ddb7 | 2016-10-03 07:52:48 -0700 | [diff] [blame] | 797 | Variable *ImplicitRet = nullptr; /// Implicit return |
Jim Stichnoth | 6da4cef | 2015-06-11 13:26:33 -0700 | [diff] [blame] | 798 | |
| 799 | private: |
John Porto | 53611e2 | 2015-12-30 07:30:10 -0800 | [diff] [blame] | 800 | ENABLE_MAKE_UNIQUE; |
Sagar Thakur | 5cce761 | 2016-05-24 06:25:50 -0700 | [diff] [blame] | 801 | |
Jaydeep Patil | 47ef0be | 2016-09-13 06:09:48 -0700 | [diff] [blame] | 802 | OperandMIPS32Mem *formAddressingMode(Type Ty, Cfg *Func, const Inst *LdSt, |
| 803 | Operand *Base); |
| 804 | |
Sagar Thakur | 5cce761 | 2016-05-24 06:25:50 -0700 | [diff] [blame] | 805 | class ComputationTracker { |
| 806 | public: |
| 807 | ComputationTracker() = default; |
| 808 | ~ComputationTracker() = default; |
| 809 | |
| 810 | void forgetProducers() { KnownComputations.clear(); } |
| 811 | void recordProducers(CfgNode *Node); |
| 812 | |
| 813 | const Inst *getProducerOf(const Operand *Opnd) const { |
| 814 | auto *Var = llvm::dyn_cast<Variable>(Opnd); |
| 815 | if (Var == nullptr) { |
| 816 | return nullptr; |
| 817 | } |
| 818 | |
| 819 | auto Iter = KnownComputations.find(Var->getIndex()); |
| 820 | if (Iter == KnownComputations.end()) { |
| 821 | return nullptr; |
| 822 | } |
| 823 | |
| 824 | return Iter->second.Instr; |
| 825 | } |
| 826 | |
| 827 | void dump(const Cfg *Func) const { |
| 828 | if (!BuildDefs::dump() || !Func->isVerbose(IceV_Folding)) |
| 829 | return; |
| 830 | OstreamLocker L(Func->getContext()); |
| 831 | Ostream &Str = Func->getContext()->getStrDump(); |
| 832 | Str << "foldable producer:\n"; |
| 833 | for (const auto &Computation : KnownComputations) { |
| 834 | Str << " "; |
| 835 | Computation.second.Instr->dump(Func); |
| 836 | Str << "\n"; |
| 837 | } |
| 838 | Str << "\n"; |
| 839 | } |
| 840 | |
| 841 | private: |
| 842 | class ComputationEntry { |
| 843 | public: |
| 844 | ComputationEntry(Inst *I, Type Ty) : Instr(I), ComputationType(Ty) {} |
| 845 | Inst *const Instr; |
| 846 | // Boolean folding is disabled for variables whose live range is multi |
| 847 | // block. We conservatively initialize IsLiveOut to true, and set it to |
| 848 | // false once we find the end of the live range for the variable defined |
| 849 | // by this instruction. If liveness analysis is not performed (e.g., in |
| 850 | // Om1 mode) IsLiveOut will never be set to false, and folding will be |
| 851 | // disabled. |
| 852 | bool IsLiveOut = true; |
| 853 | int32_t NumUses = 0; |
| 854 | Type ComputationType; |
| 855 | }; |
| 856 | |
| 857 | // ComputationMap maps a Variable number to a payload identifying which |
| 858 | // instruction defined it. |
| 859 | using ComputationMap = CfgUnorderedMap<SizeT, ComputationEntry>; |
| 860 | ComputationMap KnownComputations; |
| 861 | }; |
| 862 | |
| 863 | ComputationTracker Computations; |
Jim Stichnoth | 6da4cef | 2015-06-11 13:26:33 -0700 | [diff] [blame] | 864 | }; |
| 865 | |
John Porto | 0f86d03 | 2015-06-15 07:44:27 -0700 | [diff] [blame] | 866 | class TargetDataMIPS32 final : public TargetDataLowering { |
Jim Stichnoth | 6da4cef | 2015-06-11 13:26:33 -0700 | [diff] [blame] | 867 | TargetDataMIPS32() = delete; |
| 868 | TargetDataMIPS32(const TargetDataMIPS32 &) = delete; |
| 869 | TargetDataMIPS32 &operator=(const TargetDataMIPS32 &) = delete; |
| 870 | |
| 871 | public: |
Jan Voung | fb79284 | 2015-06-11 15:27:50 -0700 | [diff] [blame] | 872 | static std::unique_ptr<TargetDataLowering> create(GlobalContext *Ctx) { |
| 873 | return std::unique_ptr<TargetDataLowering>(new TargetDataMIPS32(Ctx)); |
Jim Stichnoth | 6da4cef | 2015-06-11 13:26:33 -0700 | [diff] [blame] | 874 | } |
| 875 | |
John Porto | 8b1a705 | 2015-06-17 13:20:08 -0700 | [diff] [blame] | 876 | void lowerGlobals(const VariableDeclarationList &Vars, |
Jim Stichnoth | 467ffe5 | 2016-03-29 15:01:06 -0700 | [diff] [blame] | 877 | const std::string &SectionSuffix) override; |
John Porto | 0f86d03 | 2015-06-15 07:44:27 -0700 | [diff] [blame] | 878 | void lowerConstants() override; |
Andrew Scull | 86df4e9 | 2015-07-30 13:54:44 -0700 | [diff] [blame] | 879 | void lowerJumpTables() override; |
Jim Stichnoth | 6da4cef | 2015-06-11 13:26:33 -0700 | [diff] [blame] | 880 | |
| 881 | protected: |
| 882 | explicit TargetDataMIPS32(GlobalContext *Ctx); |
| 883 | |
| 884 | private: |
Jim Stichnoth | e587d94 | 2015-06-22 15:49:04 -0700 | [diff] [blame] | 885 | ~TargetDataMIPS32() override = default; |
Jim Stichnoth | 6da4cef | 2015-06-11 13:26:33 -0700 | [diff] [blame] | 886 | }; |
| 887 | |
Jan Voung | fb79284 | 2015-06-11 15:27:50 -0700 | [diff] [blame] | 888 | class TargetHeaderMIPS32 final : public TargetHeaderLowering { |
| 889 | TargetHeaderMIPS32() = delete; |
| 890 | TargetHeaderMIPS32(const TargetHeaderMIPS32 &) = delete; |
| 891 | TargetHeaderMIPS32 &operator=(const TargetHeaderMIPS32 &) = delete; |
| 892 | |
| 893 | public: |
| 894 | static std::unique_ptr<TargetHeaderLowering> create(GlobalContext *Ctx) { |
| 895 | return std::unique_ptr<TargetHeaderLowering>(new TargetHeaderMIPS32(Ctx)); |
| 896 | } |
| 897 | |
Jim Stichnoth | ac8da5c | 2015-10-21 06:57:46 -0700 | [diff] [blame] | 898 | void lower() override; |
| 899 | |
Jan Voung | fb79284 | 2015-06-11 15:27:50 -0700 | [diff] [blame] | 900 | protected: |
| 901 | explicit TargetHeaderMIPS32(GlobalContext *Ctx); |
| 902 | |
| 903 | private: |
| 904 | ~TargetHeaderMIPS32() = default; |
| 905 | }; |
| 906 | |
John Porto | 4a56686 | 2016-01-04 09:33:41 -0800 | [diff] [blame] | 907 | } // end of namespace MIPS32 |
Jim Stichnoth | 6da4cef | 2015-06-11 13:26:33 -0700 | [diff] [blame] | 908 | } // end of namespace Ice |
| 909 | |
| 910 | #endif // SUBZERO_SRC_ICETARGETLOWERINGMIPS32_H |