Vasileios Kalintiris | 22ec97f | 2016-06-16 14:25:13 +0000 | [diff] [blame] | 1 | //===-- MipsFastISel.cpp - Mips FastISel implementation --------------------===// |
Vasileios Kalintiris | a9e5154 | 2016-06-08 13:13:15 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | /// |
| 10 | /// \file |
| 11 | /// \brief This file defines the MIPS-specific support for the FastISel class. |
| 12 | /// Some of the target-specific code is generated by tablegen in the file |
| 13 | /// MipsGenFastISel.inc, which is #included here. |
| 14 | /// |
| 15 | //===----------------------------------------------------------------------===// |
Reed Kotler | 720c5ca | 2014-04-17 22:15:34 +0000 | [diff] [blame] | 16 | |
Chandler Carruth | d990388 | 2015-01-14 11:23:27 +0000 | [diff] [blame] | 17 | #include "MipsCCState.h" |
Reed Kotler | 5fb7d8b | 2015-02-24 02:36:45 +0000 | [diff] [blame] | 18 | #include "MipsInstrInfo.h" |
Chandler Carruth | d990388 | 2015-01-14 11:23:27 +0000 | [diff] [blame] | 19 | #include "MipsISelLowering.h" |
| 20 | #include "MipsMachineFunction.h" |
| 21 | #include "MipsRegisterInfo.h" |
| 22 | #include "MipsSubtarget.h" |
| 23 | #include "MipsTargetMachine.h" |
Chandler Carruth | 62d4215 | 2015-01-15 02:16:27 +0000 | [diff] [blame] | 24 | #include "llvm/Analysis/TargetLibraryInfo.h" |
Reed Kotler | 720c5ca | 2014-04-17 22:15:34 +0000 | [diff] [blame] | 25 | #include "llvm/CodeGen/FastISel.h" |
Reed Kotler | aa150ed | 2015-02-12 21:05:12 +0000 | [diff] [blame] | 26 | #include "llvm/CodeGen/FunctionLoweringInfo.h" |
Reed Kotler | 67077b3 | 2014-04-29 17:57:50 +0000 | [diff] [blame] | 27 | #include "llvm/CodeGen/MachineInstrBuilder.h" |
Reed Kotler | aa150ed | 2015-02-12 21:05:12 +0000 | [diff] [blame] | 28 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
David Blaikie | 457343d | 2015-05-21 21:12:43 +0000 | [diff] [blame] | 29 | #include "llvm/IR/GetElementPtrTypeIterator.h" |
Reed Kotler | bab3f23 | 2014-05-01 20:39:21 +0000 | [diff] [blame] | 30 | #include "llvm/IR/GlobalAlias.h" |
| 31 | #include "llvm/IR/GlobalVariable.h" |
Rafael Espindola | ce4c2bc | 2015-06-23 12:21:54 +0000 | [diff] [blame] | 32 | #include "llvm/MC/MCSymbol.h" |
Reed Kotler | 67077b3 | 2014-04-29 17:57:50 +0000 | [diff] [blame] | 33 | #include "llvm/Target/TargetInstrInfo.h" |
Daniel Sanders | cbaca42 | 2016-07-29 12:27:28 +0000 | [diff] [blame] | 34 | #include "llvm/Support/Debug.h" |
| 35 | |
| 36 | #define DEBUG_TYPE "mips-fastisel" |
Reed Kotler | 720c5ca | 2014-04-17 22:15:34 +0000 | [diff] [blame] | 37 | |
| 38 | using namespace llvm; |
| 39 | |
| 40 | namespace { |
| 41 | |
| 42 | class MipsFastISel final : public FastISel { |
| 43 | |
Reed Kotler | a562b46 | 2014-10-13 21:46:41 +0000 | [diff] [blame] | 44 | // All possible address modes. |
| 45 | class Address { |
| 46 | public: |
| 47 | typedef enum { RegBase, FrameIndexBase } BaseKind; |
| 48 | |
| 49 | private: |
| 50 | BaseKind Kind; |
| 51 | union { |
| 52 | unsigned Reg; |
| 53 | int FI; |
| 54 | } Base; |
| 55 | |
| 56 | int64_t Offset; |
| 57 | |
| 58 | const GlobalValue *GV; |
| 59 | |
| 60 | public: |
| 61 | // Innocuous defaults for our address. |
| 62 | Address() : Kind(RegBase), Offset(0), GV(0) { Base.Reg = 0; } |
| 63 | void setKind(BaseKind K) { Kind = K; } |
| 64 | BaseKind getKind() const { return Kind; } |
| 65 | bool isRegBase() const { return Kind == RegBase; } |
Reed Kotler | 5fb7d8b | 2015-02-24 02:36:45 +0000 | [diff] [blame] | 66 | bool isFIBase() const { return Kind == FrameIndexBase; } |
Reed Kotler | a562b46 | 2014-10-13 21:46:41 +0000 | [diff] [blame] | 67 | void setReg(unsigned Reg) { |
| 68 | assert(isRegBase() && "Invalid base register access!"); |
| 69 | Base.Reg = Reg; |
| 70 | } |
| 71 | unsigned getReg() const { |
| 72 | assert(isRegBase() && "Invalid base register access!"); |
| 73 | return Base.Reg; |
| 74 | } |
Reed Kotler | 5fb7d8b | 2015-02-24 02:36:45 +0000 | [diff] [blame] | 75 | void setFI(unsigned FI) { |
| 76 | assert(isFIBase() && "Invalid base frame index access!"); |
| 77 | Base.FI = FI; |
| 78 | } |
| 79 | unsigned getFI() const { |
| 80 | assert(isFIBase() && "Invalid base frame index access!"); |
| 81 | return Base.FI; |
| 82 | } |
| 83 | |
Reed Kotler | a562b46 | 2014-10-13 21:46:41 +0000 | [diff] [blame] | 84 | void setOffset(int64_t Offset_) { Offset = Offset_; } |
| 85 | int64_t getOffset() const { return Offset; } |
| 86 | void setGlobalValue(const GlobalValue *G) { GV = G; } |
| 87 | const GlobalValue *getGlobalValue() { return GV; } |
| 88 | }; |
| 89 | |
Reed Kotler | 67077b3 | 2014-04-29 17:57:50 +0000 | [diff] [blame] | 90 | /// Subtarget - Keep a pointer to the MipsSubtarget around so that we can |
| 91 | /// make the right decision when generating code for different targets. |
Reed Kotler | 67077b3 | 2014-04-29 17:57:50 +0000 | [diff] [blame] | 92 | const TargetMachine &TM; |
Eric Christopher | 96e72c6 | 2015-01-29 23:27:36 +0000 | [diff] [blame] | 93 | const MipsSubtarget *Subtarget; |
Reed Kotler | 67077b3 | 2014-04-29 17:57:50 +0000 | [diff] [blame] | 94 | const TargetInstrInfo &TII; |
| 95 | const TargetLowering &TLI; |
| 96 | MipsFunctionInfo *MFI; |
| 97 | |
| 98 | // Convenience variables to avoid some queries. |
| 99 | LLVMContext *Context; |
| 100 | |
Daniel Sanders | cbaca42 | 2016-07-29 12:27:28 +0000 | [diff] [blame] | 101 | bool fastLowerArguments() override; |
Reed Kotler | d5c4196 | 2014-11-13 23:37:45 +0000 | [diff] [blame] | 102 | bool fastLowerCall(CallLoweringInfo &CLI) override; |
Vasileios Kalintiris | bdb91b3 | 2015-06-01 16:36:01 +0000 | [diff] [blame] | 103 | bool fastLowerIntrinsicCall(const IntrinsicInst *II) override; |
Reed Kotler | d5c4196 | 2014-11-13 23:37:45 +0000 | [diff] [blame] | 104 | |
Reed Kotler | 67077b3 | 2014-04-29 17:57:50 +0000 | [diff] [blame] | 105 | bool TargetSupported; |
Reed Kotler | a562b46 | 2014-10-13 21:46:41 +0000 | [diff] [blame] | 106 | bool UnsupportedFPMode; // To allow fast-isel to proceed and just not handle |
| 107 | // floating point but not reject doing fast-isel in other |
| 108 | // situations |
| 109 | |
| 110 | private: |
| 111 | // Selection routines. |
Reed Kotler | 07d3a2f | 2015-03-09 16:28:10 +0000 | [diff] [blame] | 112 | bool selectLogicalOp(const Instruction *I); |
Reed Kotler | a562b46 | 2014-10-13 21:46:41 +0000 | [diff] [blame] | 113 | bool selectLoad(const Instruction *I); |
| 114 | bool selectStore(const Instruction *I); |
| 115 | bool selectBranch(const Instruction *I); |
Vasileios Kalintiris | 127f894 | 2015-06-01 15:56:40 +0000 | [diff] [blame] | 116 | bool selectSelect(const Instruction *I); |
Reed Kotler | a562b46 | 2014-10-13 21:46:41 +0000 | [diff] [blame] | 117 | bool selectCmp(const Instruction *I); |
| 118 | bool selectFPExt(const Instruction *I); |
| 119 | bool selectFPTrunc(const Instruction *I); |
| 120 | bool selectFPToInt(const Instruction *I, bool IsSigned); |
| 121 | bool selectRet(const Instruction *I); |
| 122 | bool selectTrunc(const Instruction *I); |
| 123 | bool selectIntExt(const Instruction *I); |
Vasileios Kalintiris | 7a6b187 | 2015-04-27 13:28:05 +0000 | [diff] [blame] | 124 | bool selectShift(const Instruction *I); |
Vasileios Kalintiris | 8fcb398 | 2015-06-01 16:17:37 +0000 | [diff] [blame] | 125 | bool selectDivRem(const Instruction *I, unsigned ISDOpcode); |
Reed Kotler | a562b46 | 2014-10-13 21:46:41 +0000 | [diff] [blame] | 126 | |
| 127 | // Utility helper routines. |
Reed Kotler | a562b46 | 2014-10-13 21:46:41 +0000 | [diff] [blame] | 128 | bool isTypeLegal(Type *Ty, MVT &VT); |
Reed Kotler | 07d3a2f | 2015-03-09 16:28:10 +0000 | [diff] [blame] | 129 | bool isTypeSupported(Type *Ty, MVT &VT); |
Reed Kotler | a562b46 | 2014-10-13 21:46:41 +0000 | [diff] [blame] | 130 | bool isLoadTypeLegal(Type *Ty, MVT &VT); |
| 131 | bool computeAddress(const Value *Obj, Address &Addr); |
Reed Kotler | d5c4196 | 2014-11-13 23:37:45 +0000 | [diff] [blame] | 132 | bool computeCallAddress(const Value *V, Address &Addr); |
Reed Kotler | 5fb7d8b | 2015-02-24 02:36:45 +0000 | [diff] [blame] | 133 | void simplifyAddress(Address &Addr); |
Reed Kotler | a562b46 | 2014-10-13 21:46:41 +0000 | [diff] [blame] | 134 | |
| 135 | // Emit helper routines. |
| 136 | bool emitCmp(unsigned DestReg, const CmpInst *CI); |
| 137 | bool emitLoad(MVT VT, unsigned &ResultReg, Address &Addr, |
| 138 | unsigned Alignment = 0); |
Reed Kotler | d5c4196 | 2014-11-13 23:37:45 +0000 | [diff] [blame] | 139 | bool emitStore(MVT VT, unsigned SrcReg, Address Addr, |
| 140 | MachineMemOperand *MMO = nullptr); |
Reed Kotler | a562b46 | 2014-10-13 21:46:41 +0000 | [diff] [blame] | 141 | bool emitStore(MVT VT, unsigned SrcReg, Address &Addr, |
| 142 | unsigned Alignment = 0); |
Reed Kotler | d5c4196 | 2014-11-13 23:37:45 +0000 | [diff] [blame] | 143 | unsigned emitIntExt(MVT SrcVT, unsigned SrcReg, MVT DestVT, bool isZExt); |
Reed Kotler | a562b46 | 2014-10-13 21:46:41 +0000 | [diff] [blame] | 144 | bool emitIntExt(MVT SrcVT, unsigned SrcReg, MVT DestVT, unsigned DestReg, |
| 145 | |
| 146 | bool IsZExt); |
| 147 | bool emitIntZExt(MVT SrcVT, unsigned SrcReg, MVT DestVT, unsigned DestReg); |
| 148 | |
| 149 | bool emitIntSExt(MVT SrcVT, unsigned SrcReg, MVT DestVT, unsigned DestReg); |
| 150 | bool emitIntSExt32r1(MVT SrcVT, unsigned SrcReg, MVT DestVT, |
| 151 | unsigned DestReg); |
| 152 | bool emitIntSExt32r2(MVT SrcVT, unsigned SrcReg, MVT DestVT, |
| 153 | unsigned DestReg); |
| 154 | |
| 155 | unsigned getRegEnsuringSimpleIntegerWidening(const Value *, bool IsUnsigned); |
| 156 | |
Reed Kotler | 07d3a2f | 2015-03-09 16:28:10 +0000 | [diff] [blame] | 157 | unsigned emitLogicalOp(unsigned ISDOpc, MVT RetVT, const Value *LHS, |
| 158 | const Value *RHS); |
| 159 | |
Reed Kotler | a562b46 | 2014-10-13 21:46:41 +0000 | [diff] [blame] | 160 | unsigned materializeFP(const ConstantFP *CFP, MVT VT); |
| 161 | unsigned materializeGV(const GlobalValue *GV, MVT VT); |
| 162 | unsigned materializeInt(const Constant *C, MVT VT); |
| 163 | unsigned materialize32BitInt(int64_t Imm, const TargetRegisterClass *RC); |
Rafael Espindola | ce4c2bc | 2015-06-23 12:21:54 +0000 | [diff] [blame] | 164 | unsigned materializeExternalCallSym(MCSymbol *Syn); |
Reed Kotler | a562b46 | 2014-10-13 21:46:41 +0000 | [diff] [blame] | 165 | |
| 166 | MachineInstrBuilder emitInst(unsigned Opc) { |
| 167 | return BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opc)); |
| 168 | } |
| 169 | MachineInstrBuilder emitInst(unsigned Opc, unsigned DstReg) { |
| 170 | return BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opc), |
| 171 | DstReg); |
| 172 | } |
| 173 | MachineInstrBuilder emitInstStore(unsigned Opc, unsigned SrcReg, |
| 174 | unsigned MemReg, int64_t MemOffset) { |
| 175 | return emitInst(Opc).addReg(SrcReg).addReg(MemReg).addImm(MemOffset); |
| 176 | } |
| 177 | MachineInstrBuilder emitInstLoad(unsigned Opc, unsigned DstReg, |
| 178 | unsigned MemReg, int64_t MemOffset) { |
| 179 | return emitInst(Opc, DstReg).addReg(MemReg).addImm(MemOffset); |
| 180 | } |
Vasileios Kalintiris | 7f680e1 | 2015-06-01 15:48:09 +0000 | [diff] [blame] | 181 | |
| 182 | unsigned fastEmitInst_rr(unsigned MachineInstOpcode, |
| 183 | const TargetRegisterClass *RC, |
| 184 | unsigned Op0, bool Op0IsKill, |
| 185 | unsigned Op1, bool Op1IsKill); |
| 186 | |
Reed Kotler | a562b46 | 2014-10-13 21:46:41 +0000 | [diff] [blame] | 187 | // for some reason, this default is not generated by tablegen |
| 188 | // so we explicitly generate it here. |
| 189 | // |
| 190 | unsigned fastEmitInst_riir(uint64_t inst, const TargetRegisterClass *RC, |
| 191 | unsigned Op0, bool Op0IsKill, uint64_t imm1, |
| 192 | uint64_t imm2, unsigned Op3, bool Op3IsKill) { |
| 193 | return 0; |
| 194 | } |
Reed Kotler | 67077b3 | 2014-04-29 17:57:50 +0000 | [diff] [blame] | 195 | |
Reed Kotler | d5c4196 | 2014-11-13 23:37:45 +0000 | [diff] [blame] | 196 | // Call handling routines. |
| 197 | private: |
| 198 | CCAssignFn *CCAssignFnForCall(CallingConv::ID CC) const; |
| 199 | bool processCallArgs(CallLoweringInfo &CLI, SmallVectorImpl<MVT> &ArgVTs, |
| 200 | unsigned &NumBytes); |
| 201 | bool finishCall(CallLoweringInfo &CLI, MVT RetVT, unsigned NumBytes); |
Daniel Sanders | cbaca42 | 2016-07-29 12:27:28 +0000 | [diff] [blame] | 202 | const MipsABIInfo &getABI() const { |
| 203 | return static_cast<const MipsTargetMachine &>(TM).getABI(); |
| 204 | } |
Reed Kotler | d5c4196 | 2014-11-13 23:37:45 +0000 | [diff] [blame] | 205 | |
Reed Kotler | 720c5ca | 2014-04-17 22:15:34 +0000 | [diff] [blame] | 206 | public: |
Reed Kotler | a562b46 | 2014-10-13 21:46:41 +0000 | [diff] [blame] | 207 | // Backend specific FastISel code. |
Reed Kotler | 720c5ca | 2014-04-17 22:15:34 +0000 | [diff] [blame] | 208 | explicit MipsFastISel(FunctionLoweringInfo &funcInfo, |
| 209 | const TargetLibraryInfo *libInfo) |
Eric Christopher | 3ab9889 | 2014-12-20 00:07:09 +0000 | [diff] [blame] | 210 | : FastISel(funcInfo, libInfo), TM(funcInfo.MF->getTarget()), |
Eric Christopher | b2a5fa9 | 2015-02-14 00:09:46 +0000 | [diff] [blame] | 211 | Subtarget(&funcInfo.MF->getSubtarget<MipsSubtarget>()), |
Eric Christopher | 96e72c6 | 2015-01-29 23:27:36 +0000 | [diff] [blame] | 212 | TII(*Subtarget->getInstrInfo()), TLI(*Subtarget->getTargetLowering()) { |
Reed Kotler | 67077b3 | 2014-04-29 17:57:50 +0000 | [diff] [blame] | 213 | MFI = funcInfo.MF->getInfo<MipsFunctionInfo>(); |
| 214 | Context = &funcInfo.Fn->getContext(); |
Zoran Jovanovic | 838eabc | 2016-01-28 11:08:03 +0000 | [diff] [blame] | 215 | bool ISASupported = !Subtarget->hasMips32r6() && |
| 216 | !Subtarget->inMicroMipsMode() && Subtarget->hasMips32(); |
Eric Christopher | d86af63 | 2015-01-29 23:27:45 +0000 | [diff] [blame] | 217 | TargetSupported = |
Daniel Sanders | cbaca42 | 2016-07-29 12:27:28 +0000 | [diff] [blame] | 218 | ISASupported && TM.isPositionIndependent() && getABI().IsO32(); |
Reed Kotler | 12f9488 | 2014-10-10 17:00:46 +0000 | [diff] [blame] | 219 | UnsupportedFPMode = Subtarget->isFP64bit(); |
Reed Kotler | 67077b3 | 2014-04-29 17:57:50 +0000 | [diff] [blame] | 220 | } |
| 221 | |
Vasileios Kalintiris | 816ea84 | 2015-04-17 17:29:58 +0000 | [diff] [blame] | 222 | unsigned fastMaterializeAlloca(const AllocaInst *AI) override; |
Juergen Ributzka | 5b8bb4d | 2014-09-03 20:56:52 +0000 | [diff] [blame] | 223 | unsigned fastMaterializeConstant(const Constant *C) override; |
Reed Kotler | a562b46 | 2014-10-13 21:46:41 +0000 | [diff] [blame] | 224 | bool fastSelectInstruction(const Instruction *I) override; |
Reed Kotler | 9fe3bfd | 2014-06-16 22:05:47 +0000 | [diff] [blame] | 225 | |
Reed Kotler | 9fe25f3 | 2014-06-08 02:08:43 +0000 | [diff] [blame] | 226 | #include "MipsGenFastISel.inc" |
Reed Kotler | 720c5ca | 2014-04-17 22:15:34 +0000 | [diff] [blame] | 227 | }; |
Reed Kotler | a562b46 | 2014-10-13 21:46:41 +0000 | [diff] [blame] | 228 | } // end anonymous namespace. |
Reed Kotler | 67077b3 | 2014-04-29 17:57:50 +0000 | [diff] [blame] | 229 | |
Reed Kotler | d5c4196 | 2014-11-13 23:37:45 +0000 | [diff] [blame] | 230 | static bool CC_Mips(unsigned ValNo, MVT ValVT, MVT LocVT, |
| 231 | CCValAssign::LocInfo LocInfo, ISD::ArgFlagsTy ArgFlags, |
Reid Kleckner | d378174 | 2014-11-14 00:39:33 +0000 | [diff] [blame] | 232 | CCState &State) LLVM_ATTRIBUTE_UNUSED; |
Reed Kotler | d5c4196 | 2014-11-13 23:37:45 +0000 | [diff] [blame] | 233 | |
| 234 | static bool CC_MipsO32_FP32(unsigned ValNo, MVT ValVT, MVT LocVT, |
| 235 | CCValAssign::LocInfo LocInfo, |
| 236 | ISD::ArgFlagsTy ArgFlags, CCState &State) { |
| 237 | llvm_unreachable("should not be called"); |
| 238 | } |
| 239 | |
Benjamin Kramer | 970eac4 | 2015-02-06 17:51:54 +0000 | [diff] [blame] | 240 | static bool CC_MipsO32_FP64(unsigned ValNo, MVT ValVT, MVT LocVT, |
| 241 | CCValAssign::LocInfo LocInfo, |
| 242 | ISD::ArgFlagsTy ArgFlags, CCState &State) { |
Reed Kotler | d5c4196 | 2014-11-13 23:37:45 +0000 | [diff] [blame] | 243 | llvm_unreachable("should not be called"); |
| 244 | } |
| 245 | |
| 246 | #include "MipsGenCallingConv.inc" |
| 247 | |
| 248 | CCAssignFn *MipsFastISel::CCAssignFnForCall(CallingConv::ID CC) const { |
| 249 | return CC_MipsO32; |
| 250 | } |
| 251 | |
Reed Kotler | 07d3a2f | 2015-03-09 16:28:10 +0000 | [diff] [blame] | 252 | unsigned MipsFastISel::emitLogicalOp(unsigned ISDOpc, MVT RetVT, |
| 253 | const Value *LHS, const Value *RHS) { |
| 254 | // Canonicalize immediates to the RHS first. |
| 255 | if (isa<ConstantInt>(LHS) && !isa<ConstantInt>(RHS)) |
| 256 | std::swap(LHS, RHS); |
| 257 | |
| 258 | unsigned Opc; |
Vasileios Kalintiris | daad571 | 2015-10-07 18:14:24 +0000 | [diff] [blame] | 259 | switch (ISDOpc) { |
Vasileios Kalintiris | 2a95f82 | 2015-10-12 15:39:41 +0000 | [diff] [blame] | 260 | case ISD::AND: |
| 261 | Opc = Mips::AND; |
| 262 | break; |
| 263 | case ISD::OR: |
| 264 | Opc = Mips::OR; |
| 265 | break; |
| 266 | case ISD::XOR: |
| 267 | Opc = Mips::XOR; |
| 268 | break; |
| 269 | default: |
Reed Kotler | 07d3a2f | 2015-03-09 16:28:10 +0000 | [diff] [blame] | 270 | llvm_unreachable("unexpected opcode"); |
Vasileios Kalintiris | daad571 | 2015-10-07 18:14:24 +0000 | [diff] [blame] | 271 | } |
Reed Kotler | 07d3a2f | 2015-03-09 16:28:10 +0000 | [diff] [blame] | 272 | |
| 273 | unsigned LHSReg = getRegForValue(LHS); |
Reed Kotler | 07d3a2f | 2015-03-09 16:28:10 +0000 | [diff] [blame] | 274 | if (!LHSReg) |
| 275 | return 0; |
| 276 | |
Vasileios Kalintiris | daad571 | 2015-10-07 18:14:24 +0000 | [diff] [blame] | 277 | unsigned RHSReg; |
Reed Kotler | 07d3a2f | 2015-03-09 16:28:10 +0000 | [diff] [blame] | 278 | if (const auto *C = dyn_cast<ConstantInt>(RHS)) |
| 279 | RHSReg = materializeInt(C, MVT::i32); |
| 280 | else |
| 281 | RHSReg = getRegForValue(RHS); |
Reed Kotler | 07d3a2f | 2015-03-09 16:28:10 +0000 | [diff] [blame] | 282 | if (!RHSReg) |
| 283 | return 0; |
| 284 | |
Vasileios Kalintiris | daad571 | 2015-10-07 18:14:24 +0000 | [diff] [blame] | 285 | unsigned ResultReg = createResultReg(&Mips::GPR32RegClass); |
| 286 | if (!ResultReg) |
| 287 | return 0; |
| 288 | |
Reed Kotler | 07d3a2f | 2015-03-09 16:28:10 +0000 | [diff] [blame] | 289 | emitInst(Opc, ResultReg).addReg(LHSReg).addReg(RHSReg); |
| 290 | return ResultReg; |
| 291 | } |
| 292 | |
Vasileios Kalintiris | 816ea84 | 2015-04-17 17:29:58 +0000 | [diff] [blame] | 293 | unsigned MipsFastISel::fastMaterializeAlloca(const AllocaInst *AI) { |
Vasileios Kalintiris | 2f12b2e | 2015-08-04 14:35:50 +0000 | [diff] [blame] | 294 | if (!TargetSupported) |
| 295 | return 0; |
| 296 | |
Mehdi Amini | 44ede33 | 2015-07-09 02:09:04 +0000 | [diff] [blame] | 297 | assert(TLI.getValueType(DL, AI->getType(), true) == MVT::i32 && |
Vasileios Kalintiris | 816ea84 | 2015-04-17 17:29:58 +0000 | [diff] [blame] | 298 | "Alloca should always return a pointer."); |
| 299 | |
| 300 | DenseMap<const AllocaInst *, int>::iterator SI = |
| 301 | FuncInfo.StaticAllocaMap.find(AI); |
| 302 | |
| 303 | if (SI != FuncInfo.StaticAllocaMap.end()) { |
| 304 | unsigned ResultReg = createResultReg(&Mips::GPR32RegClass); |
| 305 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Mips::LEA_ADDiu), |
| 306 | ResultReg) |
| 307 | .addFrameIndex(SI->second) |
| 308 | .addImm(0); |
| 309 | return ResultReg; |
| 310 | } |
| 311 | |
| 312 | return 0; |
| 313 | } |
| 314 | |
Reed Kotler | d4ea29e | 2014-10-14 18:27:58 +0000 | [diff] [blame] | 315 | unsigned MipsFastISel::materializeInt(const Constant *C, MVT VT) { |
| 316 | if (VT != MVT::i32 && VT != MVT::i16 && VT != MVT::i8 && VT != MVT::i1) |
Reed Kotler | 497311a | 2014-10-10 17:39:51 +0000 | [diff] [blame] | 317 | return 0; |
Reed Kotler | d4ea29e | 2014-10-14 18:27:58 +0000 | [diff] [blame] | 318 | const TargetRegisterClass *RC = &Mips::GPR32RegClass; |
| 319 | const ConstantInt *CI = cast<ConstantInt>(C); |
Vasileios Kalintiris | 77fb0a3 | 2015-07-30 11:51:44 +0000 | [diff] [blame] | 320 | return materialize32BitInt(CI->getZExtValue(), RC); |
Reed Kotler | 497311a | 2014-10-10 17:39:51 +0000 | [diff] [blame] | 321 | } |
| 322 | |
Reed Kotler | d4ea29e | 2014-10-14 18:27:58 +0000 | [diff] [blame] | 323 | unsigned MipsFastISel::materialize32BitInt(int64_t Imm, |
| 324 | const TargetRegisterClass *RC) { |
| 325 | unsigned ResultReg = createResultReg(RC); |
| 326 | |
| 327 | if (isInt<16>(Imm)) { |
| 328 | unsigned Opc = Mips::ADDiu; |
| 329 | emitInst(Opc, ResultReg).addReg(Mips::ZERO).addImm(Imm); |
| 330 | return ResultReg; |
| 331 | } else if (isUInt<16>(Imm)) { |
| 332 | emitInst(Mips::ORi, ResultReg).addReg(Mips::ZERO).addImm(Imm); |
| 333 | return ResultReg; |
Reed Kotler | 9fe3bfd | 2014-06-16 22:05:47 +0000 | [diff] [blame] | 334 | } |
Reed Kotler | d4ea29e | 2014-10-14 18:27:58 +0000 | [diff] [blame] | 335 | unsigned Lo = Imm & 0xFFFF; |
| 336 | unsigned Hi = (Imm >> 16) & 0xFFFF; |
| 337 | if (Lo) { |
| 338 | // Both Lo and Hi have nonzero bits. |
| 339 | unsigned TmpReg = createResultReg(RC); |
| 340 | emitInst(Mips::LUi, TmpReg).addImm(Hi); |
| 341 | emitInst(Mips::ORi, ResultReg).addReg(TmpReg).addImm(Lo); |
| 342 | } else { |
| 343 | emitInst(Mips::LUi, ResultReg).addImm(Hi); |
Reed Kotler | 9fe3bfd | 2014-06-16 22:05:47 +0000 | [diff] [blame] | 344 | } |
Reed Kotler | d4ea29e | 2014-10-14 18:27:58 +0000 | [diff] [blame] | 345 | return ResultReg; |
| 346 | } |
| 347 | |
| 348 | unsigned MipsFastISel::materializeFP(const ConstantFP *CFP, MVT VT) { |
| 349 | if (UnsupportedFPMode) |
| 350 | return 0; |
| 351 | int64_t Imm = CFP->getValueAPF().bitcastToAPInt().getZExtValue(); |
| 352 | if (VT == MVT::f32) { |
| 353 | const TargetRegisterClass *RC = &Mips::FGR32RegClass; |
| 354 | unsigned DestReg = createResultReg(RC); |
| 355 | unsigned TempReg = materialize32BitInt(Imm, &Mips::GPR32RegClass); |
| 356 | emitInst(Mips::MTC1, DestReg).addReg(TempReg); |
| 357 | return DestReg; |
| 358 | } else if (VT == MVT::f64) { |
| 359 | const TargetRegisterClass *RC = &Mips::AFGR64RegClass; |
| 360 | unsigned DestReg = createResultReg(RC); |
| 361 | unsigned TempReg1 = materialize32BitInt(Imm >> 32, &Mips::GPR32RegClass); |
| 362 | unsigned TempReg2 = |
| 363 | materialize32BitInt(Imm & 0xFFFFFFFF, &Mips::GPR32RegClass); |
| 364 | emitInst(Mips::BuildPairF64, DestReg).addReg(TempReg2).addReg(TempReg1); |
| 365 | return DestReg; |
Reed Kotler | 9fe3bfd | 2014-06-16 22:05:47 +0000 | [diff] [blame] | 366 | } |
Reed Kotler | d4ea29e | 2014-10-14 18:27:58 +0000 | [diff] [blame] | 367 | return 0; |
| 368 | } |
| 369 | |
| 370 | unsigned MipsFastISel::materializeGV(const GlobalValue *GV, MVT VT) { |
| 371 | // For now 32-bit only. |
| 372 | if (VT != MVT::i32) |
| 373 | return 0; |
| 374 | const TargetRegisterClass *RC = &Mips::GPR32RegClass; |
| 375 | unsigned DestReg = createResultReg(RC); |
| 376 | const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV); |
| 377 | bool IsThreadLocal = GVar && GVar->isThreadLocal(); |
| 378 | // TLS not supported at this time. |
| 379 | if (IsThreadLocal) |
| 380 | return 0; |
| 381 | emitInst(Mips::LW, DestReg) |
| 382 | .addReg(MFI->getGlobalBaseReg()) |
| 383 | .addGlobalAddress(GV, 0, MipsII::MO_GOT); |
| 384 | if ((GV->hasInternalLinkage() || |
| 385 | (GV->hasLocalLinkage() && !isa<Function>(GV)))) { |
| 386 | unsigned TempReg = createResultReg(RC); |
| 387 | emitInst(Mips::ADDiu, TempReg) |
| 388 | .addReg(DestReg) |
| 389 | .addGlobalAddress(GV, 0, MipsII::MO_ABS_LO); |
| 390 | DestReg = TempReg; |
Reed Kotler | 9fe3bfd | 2014-06-16 22:05:47 +0000 | [diff] [blame] | 391 | } |
Reed Kotler | d4ea29e | 2014-10-14 18:27:58 +0000 | [diff] [blame] | 392 | return DestReg; |
Reed Kotler | 9fe3bfd | 2014-06-16 22:05:47 +0000 | [diff] [blame] | 393 | } |
| 394 | |
Rafael Espindola | ce4c2bc | 2015-06-23 12:21:54 +0000 | [diff] [blame] | 395 | unsigned MipsFastISel::materializeExternalCallSym(MCSymbol *Sym) { |
Vasileios Kalintiris | bdb91b3 | 2015-06-01 16:36:01 +0000 | [diff] [blame] | 396 | const TargetRegisterClass *RC = &Mips::GPR32RegClass; |
| 397 | unsigned DestReg = createResultReg(RC); |
| 398 | emitInst(Mips::LW, DestReg) |
| 399 | .addReg(MFI->getGlobalBaseReg()) |
Rafael Espindola | ce4c2bc | 2015-06-23 12:21:54 +0000 | [diff] [blame] | 400 | .addSym(Sym, MipsII::MO_GOT); |
Vasileios Kalintiris | bdb91b3 | 2015-06-01 16:36:01 +0000 | [diff] [blame] | 401 | return DestReg; |
| 402 | } |
| 403 | |
Reed Kotler | bab3f23 | 2014-05-01 20:39:21 +0000 | [diff] [blame] | 404 | // Materialize a constant into a register, and return the register |
| 405 | // number (or zero if we failed to handle it). |
Juergen Ributzka | 5b8bb4d | 2014-09-03 20:56:52 +0000 | [diff] [blame] | 406 | unsigned MipsFastISel::fastMaterializeConstant(const Constant *C) { |
Vasileios Kalintiris | 2f12b2e | 2015-08-04 14:35:50 +0000 | [diff] [blame] | 407 | if (!TargetSupported) |
| 408 | return 0; |
| 409 | |
Mehdi Amini | 44ede33 | 2015-07-09 02:09:04 +0000 | [diff] [blame] | 410 | EVT CEVT = TLI.getValueType(DL, C->getType(), true); |
Reed Kotler | bab3f23 | 2014-05-01 20:39:21 +0000 | [diff] [blame] | 411 | |
| 412 | // Only handle simple types. |
| 413 | if (!CEVT.isSimple()) |
| 414 | return 0; |
| 415 | MVT VT = CEVT.getSimpleVT(); |
| 416 | |
| 417 | if (const ConstantFP *CFP = dyn_cast<ConstantFP>(C)) |
Reed Kotler | a562b46 | 2014-10-13 21:46:41 +0000 | [diff] [blame] | 418 | return (UnsupportedFPMode) ? 0 : materializeFP(CFP, VT); |
Reed Kotler | bab3f23 | 2014-05-01 20:39:21 +0000 | [diff] [blame] | 419 | else if (const GlobalValue *GV = dyn_cast<GlobalValue>(C)) |
Reed Kotler | a562b46 | 2014-10-13 21:46:41 +0000 | [diff] [blame] | 420 | return materializeGV(GV, VT); |
Reed Kotler | bab3f23 | 2014-05-01 20:39:21 +0000 | [diff] [blame] | 421 | else if (isa<ConstantInt>(C)) |
Reed Kotler | a562b46 | 2014-10-13 21:46:41 +0000 | [diff] [blame] | 422 | return materializeInt(C, VT); |
Reed Kotler | bab3f23 | 2014-05-01 20:39:21 +0000 | [diff] [blame] | 423 | |
| 424 | return 0; |
| 425 | } |
| 426 | |
Reed Kotler | d4ea29e | 2014-10-14 18:27:58 +0000 | [diff] [blame] | 427 | bool MipsFastISel::computeAddress(const Value *Obj, Address &Addr) { |
Reed Kotler | 5fb7d8b | 2015-02-24 02:36:45 +0000 | [diff] [blame] | 428 | |
| 429 | const User *U = nullptr; |
| 430 | unsigned Opcode = Instruction::UserOp1; |
| 431 | if (const Instruction *I = dyn_cast<Instruction>(Obj)) { |
| 432 | // Don't walk into other basic blocks unless the object is an alloca from |
| 433 | // another block, otherwise it may not have a virtual register assigned. |
| 434 | if (FuncInfo.StaticAllocaMap.count(static_cast<const AllocaInst *>(Obj)) || |
| 435 | FuncInfo.MBBMap[I->getParent()] == FuncInfo.MBB) { |
| 436 | Opcode = I->getOpcode(); |
| 437 | U = I; |
| 438 | } |
Vasileios Kalintiris | 32cd69a | 2015-05-12 12:08:31 +0000 | [diff] [blame] | 439 | } else if (const ConstantExpr *C = dyn_cast<ConstantExpr>(Obj)) { |
| 440 | Opcode = C->getOpcode(); |
| 441 | U = C; |
| 442 | } |
Reed Kotler | 5fb7d8b | 2015-02-24 02:36:45 +0000 | [diff] [blame] | 443 | switch (Opcode) { |
| 444 | default: |
| 445 | break; |
| 446 | case Instruction::BitCast: { |
| 447 | // Look through bitcasts. |
| 448 | return computeAddress(U->getOperand(0), Addr); |
| 449 | } |
| 450 | case Instruction::GetElementPtr: { |
| 451 | Address SavedAddr = Addr; |
| 452 | uint64_t TmpOffset = Addr.getOffset(); |
| 453 | // Iterate through the GEP folding the constants into offsets where |
| 454 | // we can. |
| 455 | gep_type_iterator GTI = gep_type_begin(U); |
| 456 | for (User::const_op_iterator i = U->op_begin() + 1, e = U->op_end(); i != e; |
| 457 | ++i, ++GTI) { |
| 458 | const Value *Op = *i; |
| 459 | if (StructType *STy = dyn_cast<StructType>(*GTI)) { |
| 460 | const StructLayout *SL = DL.getStructLayout(STy); |
| 461 | unsigned Idx = cast<ConstantInt>(Op)->getZExtValue(); |
| 462 | TmpOffset += SL->getElementOffset(Idx); |
| 463 | } else { |
| 464 | uint64_t S = DL.getTypeAllocSize(GTI.getIndexedType()); |
| 465 | for (;;) { |
| 466 | if (const ConstantInt *CI = dyn_cast<ConstantInt>(Op)) { |
| 467 | // Constant-offset addressing. |
| 468 | TmpOffset += CI->getSExtValue() * S; |
| 469 | break; |
| 470 | } |
| 471 | if (canFoldAddIntoGEP(U, Op)) { |
| 472 | // A compatible add with a constant operand. Fold the constant. |
| 473 | ConstantInt *CI = |
| 474 | cast<ConstantInt>(cast<AddOperator>(Op)->getOperand(1)); |
| 475 | TmpOffset += CI->getSExtValue() * S; |
| 476 | // Iterate on the other operand. |
| 477 | Op = cast<AddOperator>(Op)->getOperand(0); |
| 478 | continue; |
| 479 | } |
| 480 | // Unsupported |
| 481 | goto unsupported_gep; |
| 482 | } |
| 483 | } |
| 484 | } |
| 485 | // Try to grab the base operand now. |
| 486 | Addr.setOffset(TmpOffset); |
| 487 | if (computeAddress(U->getOperand(0), Addr)) |
| 488 | return true; |
| 489 | // We failed, restore everything and try the other options. |
| 490 | Addr = SavedAddr; |
| 491 | unsupported_gep: |
| 492 | break; |
| 493 | } |
| 494 | case Instruction::Alloca: { |
| 495 | const AllocaInst *AI = cast<AllocaInst>(Obj); |
| 496 | DenseMap<const AllocaInst *, int>::iterator SI = |
| 497 | FuncInfo.StaticAllocaMap.find(AI); |
| 498 | if (SI != FuncInfo.StaticAllocaMap.end()) { |
| 499 | Addr.setKind(Address::FrameIndexBase); |
| 500 | Addr.setFI(SI->second); |
| 501 | return true; |
| 502 | } |
| 503 | break; |
| 504 | } |
| 505 | } |
Reed Kotler | d4ea29e | 2014-10-14 18:27:58 +0000 | [diff] [blame] | 506 | Addr.setReg(getRegForValue(Obj)); |
| 507 | return Addr.getReg() != 0; |
Reed Kotler | 3ebdcc9 | 2014-09-30 16:30:13 +0000 | [diff] [blame] | 508 | } |
| 509 | |
Reed Kotler | d5c4196 | 2014-11-13 23:37:45 +0000 | [diff] [blame] | 510 | bool MipsFastISel::computeCallAddress(const Value *V, Address &Addr) { |
Vasileios Kalintiris | bdb91b3 | 2015-06-01 16:36:01 +0000 | [diff] [blame] | 511 | const User *U = nullptr; |
| 512 | unsigned Opcode = Instruction::UserOp1; |
| 513 | |
| 514 | if (const auto *I = dyn_cast<Instruction>(V)) { |
| 515 | // Check if the value is defined in the same basic block. This information |
| 516 | // is crucial to know whether or not folding an operand is valid. |
| 517 | if (I->getParent() == FuncInfo.MBB->getBasicBlock()) { |
| 518 | Opcode = I->getOpcode(); |
| 519 | U = I; |
| 520 | } |
| 521 | } else if (const auto *C = dyn_cast<ConstantExpr>(V)) { |
| 522 | Opcode = C->getOpcode(); |
| 523 | U = C; |
| 524 | } |
| 525 | |
| 526 | switch (Opcode) { |
| 527 | default: |
| 528 | break; |
| 529 | case Instruction::BitCast: |
| 530 | // Look past bitcasts if its operand is in the same BB. |
| 531 | return computeCallAddress(U->getOperand(0), Addr); |
| 532 | break; |
| 533 | case Instruction::IntToPtr: |
| 534 | // Look past no-op inttoptrs if its operand is in the same BB. |
Mehdi Amini | 44ede33 | 2015-07-09 02:09:04 +0000 | [diff] [blame] | 535 | if (TLI.getValueType(DL, U->getOperand(0)->getType()) == |
| 536 | TLI.getPointerTy(DL)) |
Vasileios Kalintiris | bdb91b3 | 2015-06-01 16:36:01 +0000 | [diff] [blame] | 537 | return computeCallAddress(U->getOperand(0), Addr); |
| 538 | break; |
| 539 | case Instruction::PtrToInt: |
| 540 | // Look past no-op ptrtoints if its operand is in the same BB. |
Mehdi Amini | 44ede33 | 2015-07-09 02:09:04 +0000 | [diff] [blame] | 541 | if (TLI.getValueType(DL, U->getType()) == TLI.getPointerTy(DL)) |
Vasileios Kalintiris | bdb91b3 | 2015-06-01 16:36:01 +0000 | [diff] [blame] | 542 | return computeCallAddress(U->getOperand(0), Addr); |
| 543 | break; |
| 544 | } |
| 545 | |
Reed Kotler | d5c4196 | 2014-11-13 23:37:45 +0000 | [diff] [blame] | 546 | if (const GlobalValue *GV = dyn_cast<GlobalValue>(V)) { |
| 547 | Addr.setGlobalValue(GV); |
| 548 | return true; |
| 549 | } |
Vasileios Kalintiris | bdb91b3 | 2015-06-01 16:36:01 +0000 | [diff] [blame] | 550 | |
| 551 | // If all else fails, try to materialize the value in a register. |
| 552 | if (!Addr.getGlobalValue()) { |
| 553 | Addr.setReg(getRegForValue(V)); |
| 554 | return Addr.getReg() != 0; |
| 555 | } |
| 556 | |
Reed Kotler | d5c4196 | 2014-11-13 23:37:45 +0000 | [diff] [blame] | 557 | return false; |
| 558 | } |
| 559 | |
Reed Kotler | d4ea29e | 2014-10-14 18:27:58 +0000 | [diff] [blame] | 560 | bool MipsFastISel::isTypeLegal(Type *Ty, MVT &VT) { |
Mehdi Amini | 44ede33 | 2015-07-09 02:09:04 +0000 | [diff] [blame] | 561 | EVT evt = TLI.getValueType(DL, Ty, true); |
Reed Kotler | d4ea29e | 2014-10-14 18:27:58 +0000 | [diff] [blame] | 562 | // Only handle simple types. |
| 563 | if (evt == MVT::Other || !evt.isSimple()) |
Reed Kotler | 3ebdcc9 | 2014-09-30 16:30:13 +0000 | [diff] [blame] | 564 | return false; |
Reed Kotler | d4ea29e | 2014-10-14 18:27:58 +0000 | [diff] [blame] | 565 | VT = evt.getSimpleVT(); |
| 566 | |
| 567 | // Handle all legal types, i.e. a register that will directly hold this |
| 568 | // value. |
| 569 | return TLI.isTypeLegal(VT); |
Reed Kotler | 3ebdcc9 | 2014-09-30 16:30:13 +0000 | [diff] [blame] | 570 | } |
| 571 | |
Reed Kotler | 07d3a2f | 2015-03-09 16:28:10 +0000 | [diff] [blame] | 572 | bool MipsFastISel::isTypeSupported(Type *Ty, MVT &VT) { |
| 573 | if (Ty->isVectorTy()) |
| 574 | return false; |
| 575 | |
| 576 | if (isTypeLegal(Ty, VT)) |
| 577 | return true; |
| 578 | |
| 579 | // If this is a type than can be sign or zero-extended to a basic operation |
| 580 | // go ahead and accept it now. |
| 581 | if (VT == MVT::i1 || VT == MVT::i8 || VT == MVT::i16) |
| 582 | return true; |
| 583 | |
| 584 | return false; |
| 585 | } |
| 586 | |
Reed Kotler | d4ea29e | 2014-10-14 18:27:58 +0000 | [diff] [blame] | 587 | bool MipsFastISel::isLoadTypeLegal(Type *Ty, MVT &VT) { |
| 588 | if (isTypeLegal(Ty, VT)) |
Reed Kotler | 62de6b9 | 2014-10-11 00:55:18 +0000 | [diff] [blame] | 589 | return true; |
Reed Kotler | d4ea29e | 2014-10-14 18:27:58 +0000 | [diff] [blame] | 590 | // We will extend this in a later patch: |
| 591 | // If this is a type than can be sign or zero-extended to a basic operation |
| 592 | // go ahead and accept it now. |
| 593 | if (VT == MVT::i8 || VT == MVT::i16) |
| 594 | return true; |
Reed Kotler | 62de6b9 | 2014-10-11 00:55:18 +0000 | [diff] [blame] | 595 | return false; |
| 596 | } |
Reed Kotler | 62de6b9 | 2014-10-11 00:55:18 +0000 | [diff] [blame] | 597 | // Because of how EmitCmp is called with fast-isel, you can |
Reed Kotler | 497311a | 2014-10-10 17:39:51 +0000 | [diff] [blame] | 598 | // end up with redundant "andi" instructions after the sequences emitted below. |
| 599 | // We should try and solve this issue in the future. |
| 600 | // |
Reed Kotler | a562b46 | 2014-10-13 21:46:41 +0000 | [diff] [blame] | 601 | bool MipsFastISel::emitCmp(unsigned ResultReg, const CmpInst *CI) { |
Reed Kotler | 62de6b9 | 2014-10-11 00:55:18 +0000 | [diff] [blame] | 602 | const Value *Left = CI->getOperand(0), *Right = CI->getOperand(1); |
Reed Kotler | 497311a | 2014-10-10 17:39:51 +0000 | [diff] [blame] | 603 | bool IsUnsigned = CI->isUnsigned(); |
Reed Kotler | 497311a | 2014-10-10 17:39:51 +0000 | [diff] [blame] | 604 | unsigned LeftReg = getRegEnsuringSimpleIntegerWidening(Left, IsUnsigned); |
| 605 | if (LeftReg == 0) |
| 606 | return false; |
| 607 | unsigned RightReg = getRegEnsuringSimpleIntegerWidening(Right, IsUnsigned); |
| 608 | if (RightReg == 0) |
| 609 | return false; |
Reed Kotler | 1f64eca | 2014-10-10 20:46:28 +0000 | [diff] [blame] | 610 | CmpInst::Predicate P = CI->getPredicate(); |
Reed Kotler | 62de6b9 | 2014-10-11 00:55:18 +0000 | [diff] [blame] | 611 | |
Reed Kotler | 1f64eca | 2014-10-10 20:46:28 +0000 | [diff] [blame] | 612 | switch (P) { |
Reed Kotler | 497311a | 2014-10-10 17:39:51 +0000 | [diff] [blame] | 613 | default: |
| 614 | return false; |
| 615 | case CmpInst::ICMP_EQ: { |
| 616 | unsigned TempReg = createResultReg(&Mips::GPR32RegClass); |
Reed Kotler | a562b46 | 2014-10-13 21:46:41 +0000 | [diff] [blame] | 617 | emitInst(Mips::XOR, TempReg).addReg(LeftReg).addReg(RightReg); |
| 618 | emitInst(Mips::SLTiu, ResultReg).addReg(TempReg).addImm(1); |
Reed Kotler | 497311a | 2014-10-10 17:39:51 +0000 | [diff] [blame] | 619 | break; |
| 620 | } |
| 621 | case CmpInst::ICMP_NE: { |
| 622 | unsigned TempReg = createResultReg(&Mips::GPR32RegClass); |
Reed Kotler | a562b46 | 2014-10-13 21:46:41 +0000 | [diff] [blame] | 623 | emitInst(Mips::XOR, TempReg).addReg(LeftReg).addReg(RightReg); |
| 624 | emitInst(Mips::SLTu, ResultReg).addReg(Mips::ZERO).addReg(TempReg); |
Reed Kotler | 497311a | 2014-10-10 17:39:51 +0000 | [diff] [blame] | 625 | break; |
| 626 | } |
| 627 | case CmpInst::ICMP_UGT: { |
Reed Kotler | a562b46 | 2014-10-13 21:46:41 +0000 | [diff] [blame] | 628 | emitInst(Mips::SLTu, ResultReg).addReg(RightReg).addReg(LeftReg); |
Reed Kotler | 497311a | 2014-10-10 17:39:51 +0000 | [diff] [blame] | 629 | break; |
| 630 | } |
| 631 | case CmpInst::ICMP_ULT: { |
Reed Kotler | a562b46 | 2014-10-13 21:46:41 +0000 | [diff] [blame] | 632 | emitInst(Mips::SLTu, ResultReg).addReg(LeftReg).addReg(RightReg); |
Reed Kotler | 497311a | 2014-10-10 17:39:51 +0000 | [diff] [blame] | 633 | break; |
| 634 | } |
| 635 | case CmpInst::ICMP_UGE: { |
| 636 | unsigned TempReg = createResultReg(&Mips::GPR32RegClass); |
Reed Kotler | a562b46 | 2014-10-13 21:46:41 +0000 | [diff] [blame] | 637 | emitInst(Mips::SLTu, TempReg).addReg(LeftReg).addReg(RightReg); |
| 638 | emitInst(Mips::XORi, ResultReg).addReg(TempReg).addImm(1); |
Reed Kotler | 497311a | 2014-10-10 17:39:51 +0000 | [diff] [blame] | 639 | break; |
| 640 | } |
| 641 | case CmpInst::ICMP_ULE: { |
| 642 | unsigned TempReg = createResultReg(&Mips::GPR32RegClass); |
Reed Kotler | a562b46 | 2014-10-13 21:46:41 +0000 | [diff] [blame] | 643 | emitInst(Mips::SLTu, TempReg).addReg(RightReg).addReg(LeftReg); |
| 644 | emitInst(Mips::XORi, ResultReg).addReg(TempReg).addImm(1); |
Reed Kotler | 497311a | 2014-10-10 17:39:51 +0000 | [diff] [blame] | 645 | break; |
| 646 | } |
| 647 | case CmpInst::ICMP_SGT: { |
Reed Kotler | a562b46 | 2014-10-13 21:46:41 +0000 | [diff] [blame] | 648 | emitInst(Mips::SLT, ResultReg).addReg(RightReg).addReg(LeftReg); |
Reed Kotler | 497311a | 2014-10-10 17:39:51 +0000 | [diff] [blame] | 649 | break; |
| 650 | } |
| 651 | case CmpInst::ICMP_SLT: { |
Reed Kotler | a562b46 | 2014-10-13 21:46:41 +0000 | [diff] [blame] | 652 | emitInst(Mips::SLT, ResultReg).addReg(LeftReg).addReg(RightReg); |
Reed Kotler | 497311a | 2014-10-10 17:39:51 +0000 | [diff] [blame] | 653 | break; |
| 654 | } |
| 655 | case CmpInst::ICMP_SGE: { |
| 656 | unsigned TempReg = createResultReg(&Mips::GPR32RegClass); |
Reed Kotler | a562b46 | 2014-10-13 21:46:41 +0000 | [diff] [blame] | 657 | emitInst(Mips::SLT, TempReg).addReg(LeftReg).addReg(RightReg); |
| 658 | emitInst(Mips::XORi, ResultReg).addReg(TempReg).addImm(1); |
Reed Kotler | 497311a | 2014-10-10 17:39:51 +0000 | [diff] [blame] | 659 | break; |
| 660 | } |
| 661 | case CmpInst::ICMP_SLE: { |
| 662 | unsigned TempReg = createResultReg(&Mips::GPR32RegClass); |
Reed Kotler | a562b46 | 2014-10-13 21:46:41 +0000 | [diff] [blame] | 663 | emitInst(Mips::SLT, TempReg).addReg(RightReg).addReg(LeftReg); |
| 664 | emitInst(Mips::XORi, ResultReg).addReg(TempReg).addImm(1); |
Reed Kotler | 497311a | 2014-10-10 17:39:51 +0000 | [diff] [blame] | 665 | break; |
| 666 | } |
Reed Kotler | 1f64eca | 2014-10-10 20:46:28 +0000 | [diff] [blame] | 667 | case CmpInst::FCMP_OEQ: |
| 668 | case CmpInst::FCMP_UNE: |
| 669 | case CmpInst::FCMP_OLT: |
| 670 | case CmpInst::FCMP_OLE: |
| 671 | case CmpInst::FCMP_OGT: |
| 672 | case CmpInst::FCMP_OGE: { |
| 673 | if (UnsupportedFPMode) |
| 674 | return false; |
| 675 | bool IsFloat = Left->getType()->isFloatTy(); |
| 676 | bool IsDouble = Left->getType()->isDoubleTy(); |
| 677 | if (!IsFloat && !IsDouble) |
| 678 | return false; |
| 679 | unsigned Opc, CondMovOpc; |
| 680 | switch (P) { |
| 681 | case CmpInst::FCMP_OEQ: |
| 682 | Opc = IsFloat ? Mips::C_EQ_S : Mips::C_EQ_D32; |
| 683 | CondMovOpc = Mips::MOVT_I; |
| 684 | break; |
| 685 | case CmpInst::FCMP_UNE: |
| 686 | Opc = IsFloat ? Mips::C_EQ_S : Mips::C_EQ_D32; |
| 687 | CondMovOpc = Mips::MOVF_I; |
| 688 | break; |
| 689 | case CmpInst::FCMP_OLT: |
| 690 | Opc = IsFloat ? Mips::C_OLT_S : Mips::C_OLT_D32; |
| 691 | CondMovOpc = Mips::MOVT_I; |
| 692 | break; |
| 693 | case CmpInst::FCMP_OLE: |
| 694 | Opc = IsFloat ? Mips::C_OLE_S : Mips::C_OLE_D32; |
| 695 | CondMovOpc = Mips::MOVT_I; |
| 696 | break; |
| 697 | case CmpInst::FCMP_OGT: |
| 698 | Opc = IsFloat ? Mips::C_ULE_S : Mips::C_ULE_D32; |
| 699 | CondMovOpc = Mips::MOVF_I; |
| 700 | break; |
| 701 | case CmpInst::FCMP_OGE: |
| 702 | Opc = IsFloat ? Mips::C_ULT_S : Mips::C_ULT_D32; |
| 703 | CondMovOpc = Mips::MOVF_I; |
| 704 | break; |
| 705 | default: |
Chandler Carruth | 38811cc | 2014-10-10 21:07:03 +0000 | [diff] [blame] | 706 | llvm_unreachable("Only switching of a subset of CCs."); |
Reed Kotler | 1f64eca | 2014-10-10 20:46:28 +0000 | [diff] [blame] | 707 | } |
| 708 | unsigned RegWithZero = createResultReg(&Mips::GPR32RegClass); |
| 709 | unsigned RegWithOne = createResultReg(&Mips::GPR32RegClass); |
Reed Kotler | a562b46 | 2014-10-13 21:46:41 +0000 | [diff] [blame] | 710 | emitInst(Mips::ADDiu, RegWithZero).addReg(Mips::ZERO).addImm(0); |
| 711 | emitInst(Mips::ADDiu, RegWithOne).addReg(Mips::ZERO).addImm(1); |
| 712 | emitInst(Opc).addReg(LeftReg).addReg(RightReg).addReg( |
Reed Kotler | 1f64eca | 2014-10-10 20:46:28 +0000 | [diff] [blame] | 713 | Mips::FCC0, RegState::ImplicitDefine); |
Daniel Sanders | a6cda12 | 2016-05-06 12:57:26 +0000 | [diff] [blame] | 714 | emitInst(CondMovOpc, ResultReg) |
| 715 | .addReg(RegWithOne) |
| 716 | .addReg(Mips::FCC0) |
| 717 | .addReg(RegWithZero); |
Reed Kotler | 1f64eca | 2014-10-10 20:46:28 +0000 | [diff] [blame] | 718 | break; |
| 719 | } |
Reed Kotler | 497311a | 2014-10-10 17:39:51 +0000 | [diff] [blame] | 720 | } |
Reed Kotler | 62de6b9 | 2014-10-11 00:55:18 +0000 | [diff] [blame] | 721 | return true; |
| 722 | } |
Reed Kotler | d4ea29e | 2014-10-14 18:27:58 +0000 | [diff] [blame] | 723 | bool MipsFastISel::emitLoad(MVT VT, unsigned &ResultReg, Address &Addr, |
| 724 | unsigned Alignment) { |
| 725 | // |
| 726 | // more cases will be handled here in following patches. |
| 727 | // |
| 728 | unsigned Opc; |
| 729 | switch (VT.SimpleTy) { |
| 730 | case MVT::i32: { |
| 731 | ResultReg = createResultReg(&Mips::GPR32RegClass); |
| 732 | Opc = Mips::LW; |
| 733 | break; |
| 734 | } |
| 735 | case MVT::i16: { |
| 736 | ResultReg = createResultReg(&Mips::GPR32RegClass); |
| 737 | Opc = Mips::LHu; |
| 738 | break; |
| 739 | } |
| 740 | case MVT::i8: { |
| 741 | ResultReg = createResultReg(&Mips::GPR32RegClass); |
| 742 | Opc = Mips::LBu; |
| 743 | break; |
| 744 | } |
| 745 | case MVT::f32: { |
| 746 | if (UnsupportedFPMode) |
| 747 | return false; |
| 748 | ResultReg = createResultReg(&Mips::FGR32RegClass); |
| 749 | Opc = Mips::LWC1; |
| 750 | break; |
| 751 | } |
| 752 | case MVT::f64: { |
| 753 | if (UnsupportedFPMode) |
| 754 | return false; |
| 755 | ResultReg = createResultReg(&Mips::AFGR64RegClass); |
| 756 | Opc = Mips::LDC1; |
| 757 | break; |
| 758 | } |
| 759 | default: |
| 760 | return false; |
| 761 | } |
Reed Kotler | 5fb7d8b | 2015-02-24 02:36:45 +0000 | [diff] [blame] | 762 | if (Addr.isRegBase()) { |
| 763 | simplifyAddress(Addr); |
| 764 | emitInstLoad(Opc, ResultReg, Addr.getReg(), Addr.getOffset()); |
| 765 | return true; |
| 766 | } |
| 767 | if (Addr.isFIBase()) { |
| 768 | unsigned FI = Addr.getFI(); |
| 769 | unsigned Align = 4; |
| 770 | unsigned Offset = Addr.getOffset(); |
Matthias Braun | 941a705 | 2016-07-28 18:40:00 +0000 | [diff] [blame] | 771 | MachineFrameInfo &MFI = MF->getFrameInfo(); |
Reed Kotler | 5fb7d8b | 2015-02-24 02:36:45 +0000 | [diff] [blame] | 772 | MachineMemOperand *MMO = MF->getMachineMemOperand( |
Alex Lorenz | e40c8a2 | 2015-08-11 23:09:45 +0000 | [diff] [blame] | 773 | MachinePointerInfo::getFixedStack(*MF, FI), MachineMemOperand::MOLoad, |
Reed Kotler | 5fb7d8b | 2015-02-24 02:36:45 +0000 | [diff] [blame] | 774 | MFI.getObjectSize(FI), Align); |
| 775 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opc), ResultReg) |
| 776 | .addFrameIndex(FI) |
| 777 | .addImm(Offset) |
| 778 | .addMemOperand(MMO); |
| 779 | return true; |
| 780 | } |
| 781 | return false; |
Reed Kotler | d4ea29e | 2014-10-14 18:27:58 +0000 | [diff] [blame] | 782 | } |
| 783 | |
| 784 | bool MipsFastISel::emitStore(MVT VT, unsigned SrcReg, Address &Addr, |
| 785 | unsigned Alignment) { |
| 786 | // |
| 787 | // more cases will be handled here in following patches. |
| 788 | // |
| 789 | unsigned Opc; |
| 790 | switch (VT.SimpleTy) { |
| 791 | case MVT::i8: |
| 792 | Opc = Mips::SB; |
| 793 | break; |
| 794 | case MVT::i16: |
| 795 | Opc = Mips::SH; |
| 796 | break; |
| 797 | case MVT::i32: |
| 798 | Opc = Mips::SW; |
| 799 | break; |
| 800 | case MVT::f32: |
| 801 | if (UnsupportedFPMode) |
| 802 | return false; |
| 803 | Opc = Mips::SWC1; |
| 804 | break; |
| 805 | case MVT::f64: |
| 806 | if (UnsupportedFPMode) |
| 807 | return false; |
| 808 | Opc = Mips::SDC1; |
| 809 | break; |
| 810 | default: |
| 811 | return false; |
| 812 | } |
Reed Kotler | 5fb7d8b | 2015-02-24 02:36:45 +0000 | [diff] [blame] | 813 | if (Addr.isRegBase()) { |
| 814 | simplifyAddress(Addr); |
| 815 | emitInstStore(Opc, SrcReg, Addr.getReg(), Addr.getOffset()); |
| 816 | return true; |
| 817 | } |
| 818 | if (Addr.isFIBase()) { |
| 819 | unsigned FI = Addr.getFI(); |
| 820 | unsigned Align = 4; |
| 821 | unsigned Offset = Addr.getOffset(); |
Matthias Braun | 941a705 | 2016-07-28 18:40:00 +0000 | [diff] [blame] | 822 | MachineFrameInfo &MFI = MF->getFrameInfo(); |
Reed Kotler | 5fb7d8b | 2015-02-24 02:36:45 +0000 | [diff] [blame] | 823 | MachineMemOperand *MMO = MF->getMachineMemOperand( |
Simon Dardis | d8bceb9 | 2016-04-29 16:07:47 +0000 | [diff] [blame] | 824 | MachinePointerInfo::getFixedStack(*MF, FI), MachineMemOperand::MOStore, |
Reed Kotler | 5fb7d8b | 2015-02-24 02:36:45 +0000 | [diff] [blame] | 825 | MFI.getObjectSize(FI), Align); |
| 826 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opc)) |
| 827 | .addReg(SrcReg) |
| 828 | .addFrameIndex(FI) |
| 829 | .addImm(Offset) |
| 830 | .addMemOperand(MMO); |
| 831 | return true; |
| 832 | } |
| 833 | return false; |
Reed Kotler | d4ea29e | 2014-10-14 18:27:58 +0000 | [diff] [blame] | 834 | } |
| 835 | |
Reed Kotler | 07d3a2f | 2015-03-09 16:28:10 +0000 | [diff] [blame] | 836 | bool MipsFastISel::selectLogicalOp(const Instruction *I) { |
| 837 | MVT VT; |
| 838 | if (!isTypeSupported(I->getType(), VT)) |
| 839 | return false; |
| 840 | |
| 841 | unsigned ResultReg; |
| 842 | switch (I->getOpcode()) { |
| 843 | default: |
| 844 | llvm_unreachable("Unexpected instruction."); |
| 845 | case Instruction::And: |
| 846 | ResultReg = emitLogicalOp(ISD::AND, VT, I->getOperand(0), I->getOperand(1)); |
| 847 | break; |
| 848 | case Instruction::Or: |
| 849 | ResultReg = emitLogicalOp(ISD::OR, VT, I->getOperand(0), I->getOperand(1)); |
| 850 | break; |
| 851 | case Instruction::Xor: |
| 852 | ResultReg = emitLogicalOp(ISD::XOR, VT, I->getOperand(0), I->getOperand(1)); |
| 853 | break; |
| 854 | } |
| 855 | |
| 856 | if (!ResultReg) |
| 857 | return false; |
| 858 | |
| 859 | updateValueMap(I, ResultReg); |
| 860 | return true; |
| 861 | } |
| 862 | |
Reed Kotler | d4ea29e | 2014-10-14 18:27:58 +0000 | [diff] [blame] | 863 | bool MipsFastISel::selectLoad(const Instruction *I) { |
| 864 | // Atomic loads need special handling. |
| 865 | if (cast<LoadInst>(I)->isAtomic()) |
| 866 | return false; |
| 867 | |
| 868 | // Verify we have a legal type before going any further. |
| 869 | MVT VT; |
| 870 | if (!isLoadTypeLegal(I->getType(), VT)) |
| 871 | return false; |
| 872 | |
| 873 | // See if we can handle this address. |
| 874 | Address Addr; |
| 875 | if (!computeAddress(I->getOperand(0), Addr)) |
| 876 | return false; |
| 877 | |
| 878 | unsigned ResultReg; |
| 879 | if (!emitLoad(VT, ResultReg, Addr, cast<LoadInst>(I)->getAlignment())) |
| 880 | return false; |
| 881 | updateValueMap(I, ResultReg); |
| 882 | return true; |
| 883 | } |
| 884 | |
| 885 | bool MipsFastISel::selectStore(const Instruction *I) { |
| 886 | Value *Op0 = I->getOperand(0); |
| 887 | unsigned SrcReg = 0; |
| 888 | |
| 889 | // Atomic stores need special handling. |
| 890 | if (cast<StoreInst>(I)->isAtomic()) |
| 891 | return false; |
| 892 | |
| 893 | // Verify we have a legal type before going any further. |
| 894 | MVT VT; |
| 895 | if (!isLoadTypeLegal(I->getOperand(0)->getType(), VT)) |
| 896 | return false; |
| 897 | |
| 898 | // Get the value to be stored into a register. |
| 899 | SrcReg = getRegForValue(Op0); |
| 900 | if (SrcReg == 0) |
| 901 | return false; |
| 902 | |
| 903 | // See if we can handle this address. |
| 904 | Address Addr; |
| 905 | if (!computeAddress(I->getOperand(1), Addr)) |
| 906 | return false; |
| 907 | |
| 908 | if (!emitStore(VT, SrcReg, Addr, cast<StoreInst>(I)->getAlignment())) |
| 909 | return false; |
| 910 | return true; |
| 911 | } |
| 912 | |
| 913 | // |
| 914 | // This can cause a redundant sltiu to be generated. |
| 915 | // FIXME: try and eliminate this in a future patch. |
| 916 | // |
| 917 | bool MipsFastISel::selectBranch(const Instruction *I) { |
| 918 | const BranchInst *BI = cast<BranchInst>(I); |
| 919 | MachineBasicBlock *BrBB = FuncInfo.MBB; |
| 920 | // |
| 921 | // TBB is the basic block for the case where the comparison is true. |
| 922 | // FBB is the basic block for the case where the comparison is false. |
| 923 | // if (cond) goto TBB |
| 924 | // goto FBB |
| 925 | // TBB: |
| 926 | // |
| 927 | MachineBasicBlock *TBB = FuncInfo.MBBMap[BI->getSuccessor(0)]; |
| 928 | MachineBasicBlock *FBB = FuncInfo.MBBMap[BI->getSuccessor(1)]; |
| 929 | BI->getCondition(); |
| 930 | // For now, just try the simplest case where it's fed by a compare. |
| 931 | if (const CmpInst *CI = dyn_cast<CmpInst>(BI->getCondition())) { |
| 932 | unsigned CondReg = createResultReg(&Mips::GPR32RegClass); |
| 933 | if (!emitCmp(CondReg, CI)) |
| 934 | return false; |
| 935 | BuildMI(*BrBB, FuncInfo.InsertPt, DbgLoc, TII.get(Mips::BGTZ)) |
| 936 | .addReg(CondReg) |
| 937 | .addMBB(TBB); |
Matthias Braun | ccfc9c8 | 2015-08-26 01:55:47 +0000 | [diff] [blame] | 938 | finishCondBranch(BI->getParent(), TBB, FBB); |
Reed Kotler | d4ea29e | 2014-10-14 18:27:58 +0000 | [diff] [blame] | 939 | return true; |
| 940 | } |
| 941 | return false; |
| 942 | } |
Reed Kotler | 62de6b9 | 2014-10-11 00:55:18 +0000 | [diff] [blame] | 943 | |
Reed Kotler | a562b46 | 2014-10-13 21:46:41 +0000 | [diff] [blame] | 944 | bool MipsFastISel::selectCmp(const Instruction *I) { |
Reed Kotler | 62de6b9 | 2014-10-11 00:55:18 +0000 | [diff] [blame] | 945 | const CmpInst *CI = cast<CmpInst>(I); |
| 946 | unsigned ResultReg = createResultReg(&Mips::GPR32RegClass); |
Reed Kotler | a562b46 | 2014-10-13 21:46:41 +0000 | [diff] [blame] | 947 | if (!emitCmp(ResultReg, CI)) |
Reed Kotler | 62de6b9 | 2014-10-11 00:55:18 +0000 | [diff] [blame] | 948 | return false; |
Reed Kotler | 497311a | 2014-10-10 17:39:51 +0000 | [diff] [blame] | 949 | updateValueMap(I, ResultReg); |
| 950 | return true; |
| 951 | } |
| 952 | |
Reed Kotler | d4ea29e | 2014-10-14 18:27:58 +0000 | [diff] [blame] | 953 | // Attempt to fast-select a floating-point extend instruction. |
| 954 | bool MipsFastISel::selectFPExt(const Instruction *I) { |
| 955 | if (UnsupportedFPMode) |
| 956 | return false; |
| 957 | Value *Src = I->getOperand(0); |
Mehdi Amini | 44ede33 | 2015-07-09 02:09:04 +0000 | [diff] [blame] | 958 | EVT SrcVT = TLI.getValueType(DL, Src->getType(), true); |
| 959 | EVT DestVT = TLI.getValueType(DL, I->getType(), true); |
Reed Kotler | d4ea29e | 2014-10-14 18:27:58 +0000 | [diff] [blame] | 960 | |
| 961 | if (SrcVT != MVT::f32 || DestVT != MVT::f64) |
| 962 | return false; |
| 963 | |
| 964 | unsigned SrcReg = |
Nico Weber | 2cf5e89 | 2016-06-10 20:06:03 +0000 | [diff] [blame] | 965 | getRegForValue(Src); // this must be a 32bit floating point register class |
Reed Kotler | d4ea29e | 2014-10-14 18:27:58 +0000 | [diff] [blame] | 966 | // maybe we should handle this differently |
| 967 | if (!SrcReg) |
| 968 | return false; |
| 969 | |
| 970 | unsigned DestReg = createResultReg(&Mips::AFGR64RegClass); |
| 971 | emitInst(Mips::CVT_D32_S, DestReg).addReg(SrcReg); |
| 972 | updateValueMap(I, DestReg); |
| 973 | return true; |
| 974 | } |
| 975 | |
Vasileios Kalintiris | 127f894 | 2015-06-01 15:56:40 +0000 | [diff] [blame] | 976 | bool MipsFastISel::selectSelect(const Instruction *I) { |
| 977 | assert(isa<SelectInst>(I) && "Expected a select instruction."); |
| 978 | |
Simon Dardis | b432a3e | 2016-09-06 12:36:24 +0000 | [diff] [blame^] | 979 | DEBUG(dbgs() << "selectSelect\n"); |
| 980 | |
Vasileios Kalintiris | 127f894 | 2015-06-01 15:56:40 +0000 | [diff] [blame] | 981 | MVT VT; |
Simon Dardis | b432a3e | 2016-09-06 12:36:24 +0000 | [diff] [blame^] | 982 | if (!isTypeSupported(I->getType(), VT) || UnsupportedFPMode) { |
| 983 | DEBUG(dbgs() << ".. .. gave up (!isTypeSupported || UnsupportedFPMode)\n"); |
Vasileios Kalintiris | 127f894 | 2015-06-01 15:56:40 +0000 | [diff] [blame] | 984 | return false; |
Simon Dardis | b432a3e | 2016-09-06 12:36:24 +0000 | [diff] [blame^] | 985 | } |
Vasileios Kalintiris | 127f894 | 2015-06-01 15:56:40 +0000 | [diff] [blame] | 986 | |
| 987 | unsigned CondMovOpc; |
| 988 | const TargetRegisterClass *RC; |
| 989 | |
| 990 | if (VT.isInteger() && !VT.isVector() && VT.getSizeInBits() <= 32) { |
| 991 | CondMovOpc = Mips::MOVN_I_I; |
| 992 | RC = &Mips::GPR32RegClass; |
| 993 | } else if (VT == MVT::f32) { |
| 994 | CondMovOpc = Mips::MOVN_I_S; |
| 995 | RC = &Mips::FGR32RegClass; |
| 996 | } else if (VT == MVT::f64) { |
| 997 | CondMovOpc = Mips::MOVN_I_D32; |
| 998 | RC = &Mips::AFGR64RegClass; |
| 999 | } else |
| 1000 | return false; |
| 1001 | |
| 1002 | const SelectInst *SI = cast<SelectInst>(I); |
| 1003 | const Value *Cond = SI->getCondition(); |
| 1004 | unsigned Src1Reg = getRegForValue(SI->getTrueValue()); |
| 1005 | unsigned Src2Reg = getRegForValue(SI->getFalseValue()); |
| 1006 | unsigned CondReg = getRegForValue(Cond); |
| 1007 | |
| 1008 | if (!Src1Reg || !Src2Reg || !CondReg) |
| 1009 | return false; |
| 1010 | |
Vasileios Kalintiris | 9ec6114 | 2015-07-28 19:57:25 +0000 | [diff] [blame] | 1011 | unsigned ZExtCondReg = createResultReg(&Mips::GPR32RegClass); |
| 1012 | if (!ZExtCondReg) |
| 1013 | return false; |
| 1014 | |
| 1015 | if (!emitIntExt(MVT::i1, CondReg, MVT::i32, ZExtCondReg, true)) |
| 1016 | return false; |
| 1017 | |
Vasileios Kalintiris | 127f894 | 2015-06-01 15:56:40 +0000 | [diff] [blame] | 1018 | unsigned ResultReg = createResultReg(RC); |
| 1019 | unsigned TempReg = createResultReg(RC); |
| 1020 | |
| 1021 | if (!ResultReg || !TempReg) |
| 1022 | return false; |
| 1023 | |
| 1024 | emitInst(TargetOpcode::COPY, TempReg).addReg(Src2Reg); |
| 1025 | emitInst(CondMovOpc, ResultReg) |
Vasileios Kalintiris | 9ec6114 | 2015-07-28 19:57:25 +0000 | [diff] [blame] | 1026 | .addReg(Src1Reg).addReg(ZExtCondReg).addReg(TempReg); |
Vasileios Kalintiris | 127f894 | 2015-06-01 15:56:40 +0000 | [diff] [blame] | 1027 | updateValueMap(I, ResultReg); |
| 1028 | return true; |
| 1029 | } |
| 1030 | |
Reed Kotler | d4ea29e | 2014-10-14 18:27:58 +0000 | [diff] [blame] | 1031 | // Attempt to fast-select a floating-point truncate instruction. |
| 1032 | bool MipsFastISel::selectFPTrunc(const Instruction *I) { |
| 1033 | if (UnsupportedFPMode) |
| 1034 | return false; |
| 1035 | Value *Src = I->getOperand(0); |
Mehdi Amini | 44ede33 | 2015-07-09 02:09:04 +0000 | [diff] [blame] | 1036 | EVT SrcVT = TLI.getValueType(DL, Src->getType(), true); |
| 1037 | EVT DestVT = TLI.getValueType(DL, I->getType(), true); |
Reed Kotler | d4ea29e | 2014-10-14 18:27:58 +0000 | [diff] [blame] | 1038 | |
| 1039 | if (SrcVT != MVT::f64 || DestVT != MVT::f32) |
| 1040 | return false; |
| 1041 | |
| 1042 | unsigned SrcReg = getRegForValue(Src); |
| 1043 | if (!SrcReg) |
| 1044 | return false; |
| 1045 | |
| 1046 | unsigned DestReg = createResultReg(&Mips::FGR32RegClass); |
| 1047 | if (!DestReg) |
| 1048 | return false; |
| 1049 | |
| 1050 | emitInst(Mips::CVT_S_D32, DestReg).addReg(SrcReg); |
| 1051 | updateValueMap(I, DestReg); |
| 1052 | return true; |
| 1053 | } |
| 1054 | |
| 1055 | // Attempt to fast-select a floating-point-to-integer conversion. |
| 1056 | bool MipsFastISel::selectFPToInt(const Instruction *I, bool IsSigned) { |
| 1057 | if (UnsupportedFPMode) |
| 1058 | return false; |
| 1059 | MVT DstVT, SrcVT; |
| 1060 | if (!IsSigned) |
| 1061 | return false; // We don't handle this case yet. There is no native |
| 1062 | // instruction for this but it can be synthesized. |
| 1063 | Type *DstTy = I->getType(); |
| 1064 | if (!isTypeLegal(DstTy, DstVT)) |
| 1065 | return false; |
| 1066 | |
| 1067 | if (DstVT != MVT::i32) |
| 1068 | return false; |
| 1069 | |
| 1070 | Value *Src = I->getOperand(0); |
| 1071 | Type *SrcTy = Src->getType(); |
| 1072 | if (!isTypeLegal(SrcTy, SrcVT)) |
| 1073 | return false; |
| 1074 | |
| 1075 | if (SrcVT != MVT::f32 && SrcVT != MVT::f64) |
| 1076 | return false; |
| 1077 | |
| 1078 | unsigned SrcReg = getRegForValue(Src); |
| 1079 | if (SrcReg == 0) |
| 1080 | return false; |
| 1081 | |
| 1082 | // Determine the opcode for the conversion, which takes place |
| 1083 | // entirely within FPRs. |
| 1084 | unsigned DestReg = createResultReg(&Mips::GPR32RegClass); |
| 1085 | unsigned TempReg = createResultReg(&Mips::FGR32RegClass); |
Vasileios Kalintiris | 6ae1b35 | 2015-10-07 19:43:31 +0000 | [diff] [blame] | 1086 | unsigned Opc = (SrcVT == MVT::f32) ? Mips::TRUNC_W_S : Mips::TRUNC_W_D32; |
Reed Kotler | d4ea29e | 2014-10-14 18:27:58 +0000 | [diff] [blame] | 1087 | |
| 1088 | // Generate the convert. |
| 1089 | emitInst(Opc, TempReg).addReg(SrcReg); |
Reed Kotler | d4ea29e | 2014-10-14 18:27:58 +0000 | [diff] [blame] | 1090 | emitInst(Mips::MFC1, DestReg).addReg(TempReg); |
| 1091 | |
| 1092 | updateValueMap(I, DestReg); |
| 1093 | return true; |
| 1094 | } |
Vasileios Kalintiris | 6ae1b35 | 2015-10-07 19:43:31 +0000 | [diff] [blame] | 1095 | |
Reed Kotler | d5c4196 | 2014-11-13 23:37:45 +0000 | [diff] [blame] | 1096 | bool MipsFastISel::processCallArgs(CallLoweringInfo &CLI, |
| 1097 | SmallVectorImpl<MVT> &OutVTs, |
| 1098 | unsigned &NumBytes) { |
| 1099 | CallingConv::ID CC = CLI.CallConv; |
| 1100 | SmallVector<CCValAssign, 16> ArgLocs; |
| 1101 | CCState CCInfo(CC, false, *FuncInfo.MF, ArgLocs, *Context); |
| 1102 | CCInfo.AnalyzeCallOperands(OutVTs, CLI.OutFlags, CCAssignFnForCall(CC)); |
| 1103 | // Get a count of how many bytes are to be pushed on the stack. |
| 1104 | NumBytes = CCInfo.getNextStackOffset(); |
| 1105 | // This is the minimum argument area used for A0-A3. |
| 1106 | if (NumBytes < 16) |
| 1107 | NumBytes = 16; |
| 1108 | |
| 1109 | emitInst(Mips::ADJCALLSTACKDOWN).addImm(16); |
| 1110 | // Process the args. |
| 1111 | MVT firstMVT; |
| 1112 | for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) { |
| 1113 | CCValAssign &VA = ArgLocs[i]; |
| 1114 | const Value *ArgVal = CLI.OutVals[VA.getValNo()]; |
| 1115 | MVT ArgVT = OutVTs[VA.getValNo()]; |
| 1116 | |
| 1117 | if (i == 0) { |
| 1118 | firstMVT = ArgVT; |
| 1119 | if (ArgVT == MVT::f32) { |
| 1120 | VA.convertToReg(Mips::F12); |
| 1121 | } else if (ArgVT == MVT::f64) { |
| 1122 | VA.convertToReg(Mips::D6); |
| 1123 | } |
| 1124 | } else if (i == 1) { |
| 1125 | if ((firstMVT == MVT::f32) || (firstMVT == MVT::f64)) { |
| 1126 | if (ArgVT == MVT::f32) { |
| 1127 | VA.convertToReg(Mips::F14); |
| 1128 | } else if (ArgVT == MVT::f64) { |
| 1129 | VA.convertToReg(Mips::D7); |
| 1130 | } |
| 1131 | } |
| 1132 | } |
Vasileios Kalintiris | b48c905 | 2015-05-12 12:29:17 +0000 | [diff] [blame] | 1133 | if (((ArgVT == MVT::i32) || (ArgVT == MVT::f32) || (ArgVT == MVT::i16) || |
| 1134 | (ArgVT == MVT::i8)) && |
| 1135 | VA.isMemLoc()) { |
Reed Kotler | d5c4196 | 2014-11-13 23:37:45 +0000 | [diff] [blame] | 1136 | switch (VA.getLocMemOffset()) { |
| 1137 | case 0: |
| 1138 | VA.convertToReg(Mips::A0); |
| 1139 | break; |
| 1140 | case 4: |
| 1141 | VA.convertToReg(Mips::A1); |
| 1142 | break; |
| 1143 | case 8: |
| 1144 | VA.convertToReg(Mips::A2); |
| 1145 | break; |
| 1146 | case 12: |
| 1147 | VA.convertToReg(Mips::A3); |
| 1148 | break; |
| 1149 | default: |
| 1150 | break; |
| 1151 | } |
| 1152 | } |
| 1153 | unsigned ArgReg = getRegForValue(ArgVal); |
| 1154 | if (!ArgReg) |
| 1155 | return false; |
| 1156 | |
| 1157 | // Handle arg promotion: SExt, ZExt, AExt. |
| 1158 | switch (VA.getLocInfo()) { |
| 1159 | case CCValAssign::Full: |
| 1160 | break; |
| 1161 | case CCValAssign::AExt: |
| 1162 | case CCValAssign::SExt: { |
| 1163 | MVT DestVT = VA.getLocVT(); |
| 1164 | MVT SrcVT = ArgVT; |
| 1165 | ArgReg = emitIntExt(SrcVT, ArgReg, DestVT, /*isZExt=*/false); |
| 1166 | if (!ArgReg) |
| 1167 | return false; |
| 1168 | break; |
| 1169 | } |
| 1170 | case CCValAssign::ZExt: { |
| 1171 | MVT DestVT = VA.getLocVT(); |
| 1172 | MVT SrcVT = ArgVT; |
| 1173 | ArgReg = emitIntExt(SrcVT, ArgReg, DestVT, /*isZExt=*/true); |
| 1174 | if (!ArgReg) |
| 1175 | return false; |
| 1176 | break; |
| 1177 | } |
| 1178 | default: |
| 1179 | llvm_unreachable("Unknown arg promotion!"); |
| 1180 | } |
| 1181 | |
| 1182 | // Now copy/store arg to correct locations. |
| 1183 | if (VA.isRegLoc() && !VA.needsCustom()) { |
| 1184 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, |
| 1185 | TII.get(TargetOpcode::COPY), VA.getLocReg()).addReg(ArgReg); |
| 1186 | CLI.OutRegs.push_back(VA.getLocReg()); |
| 1187 | } else if (VA.needsCustom()) { |
| 1188 | llvm_unreachable("Mips does not use custom args."); |
| 1189 | return false; |
| 1190 | } else { |
| 1191 | // |
| 1192 | // FIXME: This path will currently return false. It was copied |
| 1193 | // from the AArch64 port and should be essentially fine for Mips too. |
| 1194 | // The work to finish up this path will be done in a follow-on patch. |
| 1195 | // |
| 1196 | assert(VA.isMemLoc() && "Assuming store on stack."); |
| 1197 | // Don't emit stores for undef values. |
| 1198 | if (isa<UndefValue>(ArgVal)) |
| 1199 | continue; |
| 1200 | |
| 1201 | // Need to store on the stack. |
| 1202 | // FIXME: This alignment is incorrect but this path is disabled |
| 1203 | // for now (will return false). We need to determine the right alignment |
| 1204 | // based on the normal alignment for the underlying machine type. |
| 1205 | // |
Rui Ueyama | da00f2f | 2016-01-14 21:06:47 +0000 | [diff] [blame] | 1206 | unsigned ArgSize = alignTo(ArgVT.getSizeInBits(), 4); |
Reed Kotler | d5c4196 | 2014-11-13 23:37:45 +0000 | [diff] [blame] | 1207 | |
| 1208 | unsigned BEAlign = 0; |
| 1209 | if (ArgSize < 8 && !Subtarget->isLittle()) |
| 1210 | BEAlign = 8 - ArgSize; |
| 1211 | |
| 1212 | Address Addr; |
| 1213 | Addr.setKind(Address::RegBase); |
| 1214 | Addr.setReg(Mips::SP); |
| 1215 | Addr.setOffset(VA.getLocMemOffset() + BEAlign); |
| 1216 | |
| 1217 | unsigned Alignment = DL.getABITypeAlignment(ArgVal->getType()); |
| 1218 | MachineMemOperand *MMO = FuncInfo.MF->getMachineMemOperand( |
Alex Lorenz | e40c8a2 | 2015-08-11 23:09:45 +0000 | [diff] [blame] | 1219 | MachinePointerInfo::getStack(*FuncInfo.MF, Addr.getOffset()), |
Reed Kotler | d5c4196 | 2014-11-13 23:37:45 +0000 | [diff] [blame] | 1220 | MachineMemOperand::MOStore, ArgVT.getStoreSize(), Alignment); |
| 1221 | (void)(MMO); |
| 1222 | // if (!emitStore(ArgVT, ArgReg, Addr, MMO)) |
| 1223 | return false; // can't store on the stack yet. |
| 1224 | } |
| 1225 | } |
| 1226 | |
| 1227 | return true; |
| 1228 | } |
| 1229 | |
| 1230 | bool MipsFastISel::finishCall(CallLoweringInfo &CLI, MVT RetVT, |
| 1231 | unsigned NumBytes) { |
| 1232 | CallingConv::ID CC = CLI.CallConv; |
Daniel Sanders | 01bcefd | 2016-05-03 14:19:26 +0000 | [diff] [blame] | 1233 | emitInst(Mips::ADJCALLSTACKUP).addImm(16).addImm(0); |
Reed Kotler | d5c4196 | 2014-11-13 23:37:45 +0000 | [diff] [blame] | 1234 | if (RetVT != MVT::isVoid) { |
| 1235 | SmallVector<CCValAssign, 16> RVLocs; |
| 1236 | CCState CCInfo(CC, false, *FuncInfo.MF, RVLocs, *Context); |
| 1237 | CCInfo.AnalyzeCallResult(RetVT, RetCC_Mips); |
| 1238 | |
| 1239 | // Only handle a single return value. |
| 1240 | if (RVLocs.size() != 1) |
| 1241 | return false; |
| 1242 | // Copy all of the result registers out of their specified physreg. |
| 1243 | MVT CopyVT = RVLocs[0].getValVT(); |
| 1244 | // Special handling for extended integers. |
| 1245 | if (RetVT == MVT::i1 || RetVT == MVT::i8 || RetVT == MVT::i16) |
| 1246 | CopyVT = MVT::i32; |
| 1247 | |
| 1248 | unsigned ResultReg = createResultReg(TLI.getRegClassFor(CopyVT)); |
Vasileios Kalintiris | 1249e74 | 2015-04-29 14:17:14 +0000 | [diff] [blame] | 1249 | if (!ResultReg) |
| 1250 | return false; |
Reed Kotler | d5c4196 | 2014-11-13 23:37:45 +0000 | [diff] [blame] | 1251 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, |
| 1252 | TII.get(TargetOpcode::COPY), |
| 1253 | ResultReg).addReg(RVLocs[0].getLocReg()); |
| 1254 | CLI.InRegs.push_back(RVLocs[0].getLocReg()); |
| 1255 | |
| 1256 | CLI.ResultReg = ResultReg; |
| 1257 | CLI.NumResultRegs = 1; |
| 1258 | } |
| 1259 | return true; |
| 1260 | } |
| 1261 | |
Daniel Sanders | cbaca42 | 2016-07-29 12:27:28 +0000 | [diff] [blame] | 1262 | bool MipsFastISel::fastLowerArguments() { |
| 1263 | DEBUG(dbgs() << "fastLowerArguments\n"); |
| 1264 | |
| 1265 | if (!FuncInfo.CanLowerReturn) { |
| 1266 | DEBUG(dbgs() << ".. gave up (!CanLowerReturn)\n"); |
| 1267 | return false; |
| 1268 | } |
| 1269 | |
| 1270 | const Function *F = FuncInfo.Fn; |
| 1271 | if (F->isVarArg()) { |
| 1272 | DEBUG(dbgs() << ".. gave up (varargs)\n"); |
| 1273 | return false; |
| 1274 | } |
| 1275 | |
| 1276 | CallingConv::ID CC = F->getCallingConv(); |
| 1277 | if (CC != CallingConv::C) { |
| 1278 | DEBUG(dbgs() << ".. gave up (calling convention is not C)\n"); |
| 1279 | return false; |
| 1280 | } |
| 1281 | |
Daniel Sanders | b3ae33c | 2016-08-01 15:32:51 +0000 | [diff] [blame] | 1282 | const ArrayRef<MCPhysReg> GPR32ArgRegs = {Mips::A0, Mips::A1, Mips::A2, |
| 1283 | Mips::A3}; |
| 1284 | const ArrayRef<MCPhysReg> FGR32ArgRegs = {Mips::F12, Mips::F14}; |
| 1285 | const ArrayRef<MCPhysReg> AFGR64ArgRegs = {Mips::D6, Mips::D7}; |
| 1286 | ArrayRef<MCPhysReg>::iterator NextGPR32 = GPR32ArgRegs.begin(); |
| 1287 | ArrayRef<MCPhysReg>::iterator NextFGR32 = FGR32ArgRegs.begin(); |
| 1288 | ArrayRef<MCPhysReg>::iterator NextAFGR64 = AFGR64ArgRegs.begin(); |
Daniel Sanders | cbaca42 | 2016-07-29 12:27:28 +0000 | [diff] [blame] | 1289 | |
| 1290 | struct AllocatedReg { |
| 1291 | const TargetRegisterClass *RC; |
| 1292 | unsigned Reg; |
| 1293 | AllocatedReg(const TargetRegisterClass *RC, unsigned Reg) |
| 1294 | : RC(RC), Reg(Reg) {} |
| 1295 | }; |
| 1296 | |
Daniel Sanders | b3ae33c | 2016-08-01 15:32:51 +0000 | [diff] [blame] | 1297 | // Only handle simple cases. i.e. All arguments are directly mapped to |
| 1298 | // registers of the appropriate type. |
Daniel Sanders | cbaca42 | 2016-07-29 12:27:28 +0000 | [diff] [blame] | 1299 | SmallVector<AllocatedReg, 4> Allocation; |
| 1300 | unsigned Idx = 1; |
Daniel Sanders | cbaca42 | 2016-07-29 12:27:28 +0000 | [diff] [blame] | 1301 | for (const auto &FormalArg : F->args()) { |
Daniel Sanders | cbaca42 | 2016-07-29 12:27:28 +0000 | [diff] [blame] | 1302 | if (F->getAttributes().hasAttribute(Idx, Attribute::InReg) || |
| 1303 | F->getAttributes().hasAttribute(Idx, Attribute::StructRet) || |
| 1304 | F->getAttributes().hasAttribute(Idx, Attribute::ByVal)) { |
| 1305 | DEBUG(dbgs() << ".. gave up (inreg, structret, byval)\n"); |
| 1306 | return false; |
| 1307 | } |
| 1308 | |
| 1309 | Type *ArgTy = FormalArg.getType(); |
| 1310 | if (ArgTy->isStructTy() || ArgTy->isArrayTy() || ArgTy->isVectorTy()) { |
| 1311 | DEBUG(dbgs() << ".. gave up (struct, array, or vector)\n"); |
| 1312 | return false; |
| 1313 | } |
| 1314 | |
| 1315 | EVT ArgVT = TLI.getValueType(DL, ArgTy); |
| 1316 | DEBUG(dbgs() << ".. " << (Idx - 1) << ": " << ArgVT.getEVTString() << "\n"); |
| 1317 | if (!ArgVT.isSimple()) { |
| 1318 | DEBUG(dbgs() << ".. .. gave up (not a simple type)\n"); |
| 1319 | return false; |
| 1320 | } |
| 1321 | |
| 1322 | switch (ArgVT.getSimpleVT().SimpleTy) { |
| 1323 | case MVT::i1: |
| 1324 | case MVT::i8: |
| 1325 | case MVT::i16: |
| 1326 | if (!F->getAttributes().hasAttribute(Idx, Attribute::SExt) && |
| 1327 | !F->getAttributes().hasAttribute(Idx, Attribute::ZExt)) { |
| 1328 | // It must be any extend, this shouldn't happen for clang-generated IR |
| 1329 | // so just fall back on SelectionDAG. |
| 1330 | DEBUG(dbgs() << ".. .. gave up (i8/i16 arg is not extended)\n"); |
| 1331 | return false; |
| 1332 | } |
Daniel Sanders | b3ae33c | 2016-08-01 15:32:51 +0000 | [diff] [blame] | 1333 | |
| 1334 | if (NextGPR32 == GPR32ArgRegs.end()) { |
| 1335 | DEBUG(dbgs() << ".. .. gave up (ran out of GPR32 arguments)\n"); |
| 1336 | return false; |
| 1337 | } |
| 1338 | |
| 1339 | DEBUG(dbgs() << ".. .. GPR32(" << *NextGPR32 << ")\n"); |
| 1340 | Allocation.emplace_back(&Mips::GPR32RegClass, *NextGPR32++); |
| 1341 | |
| 1342 | // Allocating any GPR32 prohibits further use of floating point arguments. |
| 1343 | NextFGR32 = FGR32ArgRegs.end(); |
| 1344 | NextAFGR64 = AFGR64ArgRegs.end(); |
Daniel Sanders | cbaca42 | 2016-07-29 12:27:28 +0000 | [diff] [blame] | 1345 | break; |
| 1346 | |
| 1347 | case MVT::i32: |
| 1348 | if (F->getAttributes().hasAttribute(Idx, Attribute::ZExt)) { |
| 1349 | // The O32 ABI does not permit a zero-extended i32. |
| 1350 | DEBUG(dbgs() << ".. .. gave up (i32 arg is zero extended)\n"); |
| 1351 | return false; |
| 1352 | } |
Daniel Sanders | b3ae33c | 2016-08-01 15:32:51 +0000 | [diff] [blame] | 1353 | |
| 1354 | if (NextGPR32 == GPR32ArgRegs.end()) { |
| 1355 | DEBUG(dbgs() << ".. .. gave up (ran out of GPR32 arguments)\n"); |
| 1356 | return false; |
| 1357 | } |
| 1358 | |
| 1359 | DEBUG(dbgs() << ".. .. GPR32(" << *NextGPR32 << ")\n"); |
| 1360 | Allocation.emplace_back(&Mips::GPR32RegClass, *NextGPR32++); |
| 1361 | |
| 1362 | // Allocating any GPR32 prohibits further use of floating point arguments. |
| 1363 | NextFGR32 = FGR32ArgRegs.end(); |
| 1364 | NextAFGR64 = AFGR64ArgRegs.end(); |
Daniel Sanders | cbaca42 | 2016-07-29 12:27:28 +0000 | [diff] [blame] | 1365 | break; |
| 1366 | |
| 1367 | case MVT::f32: |
Daniel Sanders | b3ae33c | 2016-08-01 15:32:51 +0000 | [diff] [blame] | 1368 | if (NextFGR32 == FGR32ArgRegs.end()) { |
| 1369 | DEBUG(dbgs() << ".. .. gave up (ran out of FGR32 arguments)\n"); |
Daniel Sanders | cbaca42 | 2016-07-29 12:27:28 +0000 | [diff] [blame] | 1370 | return false; |
Daniel Sanders | cbaca42 | 2016-07-29 12:27:28 +0000 | [diff] [blame] | 1371 | } |
Daniel Sanders | b3ae33c | 2016-08-01 15:32:51 +0000 | [diff] [blame] | 1372 | DEBUG(dbgs() << ".. .. FGR32(" << *NextFGR32 << ")\n"); |
| 1373 | Allocation.emplace_back(&Mips::FGR32RegClass, *NextFGR32++); |
| 1374 | // Allocating an FGR32 also allocates the super-register AFGR64, and |
| 1375 | // ABI rules require us to skip the corresponding GPR32. |
| 1376 | if (NextGPR32 != GPR32ArgRegs.end()) |
| 1377 | NextGPR32++; |
| 1378 | if (NextAFGR64 != AFGR64ArgRegs.end()) |
| 1379 | NextAFGR64++; |
Daniel Sanders | cbaca42 | 2016-07-29 12:27:28 +0000 | [diff] [blame] | 1380 | break; |
| 1381 | |
| 1382 | case MVT::f64: |
Simon Dardis | b432a3e | 2016-09-06 12:36:24 +0000 | [diff] [blame^] | 1383 | if (UnsupportedFPMode) { |
| 1384 | DEBUG(dbgs() << ".. .. gave up (UnsupportedFPMode\n"); |
| 1385 | return false; |
| 1386 | } |
Daniel Sanders | b3ae33c | 2016-08-01 15:32:51 +0000 | [diff] [blame] | 1387 | if (NextAFGR64 == AFGR64ArgRegs.end()) { |
| 1388 | DEBUG(dbgs() << ".. .. gave up (ran out of AFGR64 arguments)\n"); |
Daniel Sanders | cbaca42 | 2016-07-29 12:27:28 +0000 | [diff] [blame] | 1389 | return false; |
Daniel Sanders | cbaca42 | 2016-07-29 12:27:28 +0000 | [diff] [blame] | 1390 | } |
Daniel Sanders | b3ae33c | 2016-08-01 15:32:51 +0000 | [diff] [blame] | 1391 | DEBUG(dbgs() << ".. .. AFGR64(" << *NextAFGR64 << ")\n"); |
| 1392 | Allocation.emplace_back(&Mips::AFGR64RegClass, *NextAFGR64++); |
| 1393 | // Allocating an FGR32 also allocates the super-register AFGR64, and |
| 1394 | // ABI rules require us to skip the corresponding GPR32 pair. |
| 1395 | if (NextGPR32 != GPR32ArgRegs.end()) |
| 1396 | NextGPR32++; |
| 1397 | if (NextGPR32 != GPR32ArgRegs.end()) |
| 1398 | NextGPR32++; |
| 1399 | if (NextFGR32 != FGR32ArgRegs.end()) |
| 1400 | NextFGR32++; |
Daniel Sanders | cbaca42 | 2016-07-29 12:27:28 +0000 | [diff] [blame] | 1401 | break; |
| 1402 | |
| 1403 | default: |
| 1404 | DEBUG(dbgs() << ".. .. gave up (unknown type)\n"); |
| 1405 | return false; |
| 1406 | } |
| 1407 | |
| 1408 | ++Idx; |
| 1409 | } |
| 1410 | |
| 1411 | Idx = 0; |
| 1412 | for (const auto &FormalArg : F->args()) { |
| 1413 | unsigned SrcReg = Allocation[Idx].Reg; |
| 1414 | unsigned DstReg = FuncInfo.MF->addLiveIn(SrcReg, Allocation[Idx].RC); |
| 1415 | // FIXME: Unfortunately it's necessary to emit a copy from the livein copy. |
| 1416 | // Without this, EmitLiveInCopies may eliminate the livein if its only |
| 1417 | // use is a bitcast (which isn't turned into an instruction). |
| 1418 | unsigned ResultReg = createResultReg(Allocation[Idx].RC); |
| 1419 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, |
| 1420 | TII.get(TargetOpcode::COPY), ResultReg) |
| 1421 | .addReg(DstReg, getKillRegState(true)); |
| 1422 | updateValueMap(&FormalArg, ResultReg); |
| 1423 | ++Idx; |
| 1424 | } |
| 1425 | |
| 1426 | // Calculate the size of the incoming arguments area. |
| 1427 | // We currently reject all the cases where this would be non-zero. |
| 1428 | unsigned IncomingArgSizeInBytes = 0; |
| 1429 | |
| 1430 | // Account for the reserved argument area on ABI's that have one (O32). |
| 1431 | // It seems strange to do this on the caller side but it's necessary in |
| 1432 | // SelectionDAG's implementation. |
| 1433 | IncomingArgSizeInBytes = std::min(getABI().GetCalleeAllocdArgSizeInBytes(CC), |
| 1434 | IncomingArgSizeInBytes); |
| 1435 | |
| 1436 | MF->getInfo<MipsFunctionInfo>()->setFormalArgInfo(IncomingArgSizeInBytes, |
| 1437 | false); |
| 1438 | |
| 1439 | return true; |
| 1440 | } |
| 1441 | |
Reed Kotler | d5c4196 | 2014-11-13 23:37:45 +0000 | [diff] [blame] | 1442 | bool MipsFastISel::fastLowerCall(CallLoweringInfo &CLI) { |
Vasileios Kalintiris | 2f12b2e | 2015-08-04 14:35:50 +0000 | [diff] [blame] | 1443 | if (!TargetSupported) |
| 1444 | return false; |
| 1445 | |
Reed Kotler | d5c4196 | 2014-11-13 23:37:45 +0000 | [diff] [blame] | 1446 | CallingConv::ID CC = CLI.CallConv; |
| 1447 | bool IsTailCall = CLI.IsTailCall; |
| 1448 | bool IsVarArg = CLI.IsVarArg; |
| 1449 | const Value *Callee = CLI.Callee; |
Rafael Espindola | ce4c2bc | 2015-06-23 12:21:54 +0000 | [diff] [blame] | 1450 | MCSymbol *Symbol = CLI.Symbol; |
Reed Kotler | d5c4196 | 2014-11-13 23:37:45 +0000 | [diff] [blame] | 1451 | |
Vasileios Kalintiris | 9876946 | 2015-07-28 21:43:31 +0000 | [diff] [blame] | 1452 | // Do not handle FastCC. |
| 1453 | if (CC == CallingConv::Fast) |
| 1454 | return false; |
| 1455 | |
Reed Kotler | d5c4196 | 2014-11-13 23:37:45 +0000 | [diff] [blame] | 1456 | // Allow SelectionDAG isel to handle tail calls. |
| 1457 | if (IsTailCall) |
| 1458 | return false; |
| 1459 | |
| 1460 | // Let SDISel handle vararg functions. |
| 1461 | if (IsVarArg) |
| 1462 | return false; |
| 1463 | |
| 1464 | // FIXME: Only handle *simple* calls for now. |
| 1465 | MVT RetVT; |
| 1466 | if (CLI.RetTy->isVoidTy()) |
| 1467 | RetVT = MVT::isVoid; |
Vasileios Kalintiris | 1249e74 | 2015-04-29 14:17:14 +0000 | [diff] [blame] | 1468 | else if (!isTypeSupported(CLI.RetTy, RetVT)) |
Reed Kotler | d5c4196 | 2014-11-13 23:37:45 +0000 | [diff] [blame] | 1469 | return false; |
| 1470 | |
| 1471 | for (auto Flag : CLI.OutFlags) |
| 1472 | if (Flag.isInReg() || Flag.isSRet() || Flag.isNest() || Flag.isByVal()) |
| 1473 | return false; |
| 1474 | |
| 1475 | // Set up the argument vectors. |
| 1476 | SmallVector<MVT, 16> OutVTs; |
| 1477 | OutVTs.reserve(CLI.OutVals.size()); |
| 1478 | |
| 1479 | for (auto *Val : CLI.OutVals) { |
| 1480 | MVT VT; |
| 1481 | if (!isTypeLegal(Val->getType(), VT) && |
| 1482 | !(VT == MVT::i1 || VT == MVT::i8 || VT == MVT::i16)) |
| 1483 | return false; |
| 1484 | |
| 1485 | // We don't handle vector parameters yet. |
| 1486 | if (VT.isVector() || VT.getSizeInBits() > 64) |
| 1487 | return false; |
| 1488 | |
| 1489 | OutVTs.push_back(VT); |
| 1490 | } |
| 1491 | |
| 1492 | Address Addr; |
| 1493 | if (!computeCallAddress(Callee, Addr)) |
| 1494 | return false; |
| 1495 | |
| 1496 | // Handle the arguments now that we've gotten them. |
| 1497 | unsigned NumBytes; |
| 1498 | if (!processCallArgs(CLI, OutVTs, NumBytes)) |
| 1499 | return false; |
| 1500 | |
Vasileios Kalintiris | bdb91b3 | 2015-06-01 16:36:01 +0000 | [diff] [blame] | 1501 | if (!Addr.getGlobalValue()) |
| 1502 | return false; |
| 1503 | |
Reed Kotler | d5c4196 | 2014-11-13 23:37:45 +0000 | [diff] [blame] | 1504 | // Issue the call. |
Vasileios Kalintiris | bdb91b3 | 2015-06-01 16:36:01 +0000 | [diff] [blame] | 1505 | unsigned DestAddress; |
Rafael Espindola | ce4c2bc | 2015-06-23 12:21:54 +0000 | [diff] [blame] | 1506 | if (Symbol) |
| 1507 | DestAddress = materializeExternalCallSym(Symbol); |
Vasileios Kalintiris | bdb91b3 | 2015-06-01 16:36:01 +0000 | [diff] [blame] | 1508 | else |
| 1509 | DestAddress = materializeGV(Addr.getGlobalValue(), MVT::i32); |
Reed Kotler | d5c4196 | 2014-11-13 23:37:45 +0000 | [diff] [blame] | 1510 | emitInst(TargetOpcode::COPY, Mips::T9).addReg(DestAddress); |
| 1511 | MachineInstrBuilder MIB = |
| 1512 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Mips::JALR), |
| 1513 | Mips::RA).addReg(Mips::T9); |
| 1514 | |
| 1515 | // Add implicit physical register uses to the call. |
| 1516 | for (auto Reg : CLI.OutRegs) |
| 1517 | MIB.addReg(Reg, RegState::Implicit); |
| 1518 | |
| 1519 | // Add a register mask with the call-preserved registers. |
| 1520 | // Proper defs for return values will be added by setPhysRegsDeadExcept(). |
Eric Christopher | 9deb75d | 2015-03-11 22:42:13 +0000 | [diff] [blame] | 1521 | MIB.addRegMask(TRI.getCallPreservedMask(*FuncInfo.MF, CC)); |
Reed Kotler | d5c4196 | 2014-11-13 23:37:45 +0000 | [diff] [blame] | 1522 | |
| 1523 | CLI.Call = MIB; |
| 1524 | |
Reed Kotler | d5c4196 | 2014-11-13 23:37:45 +0000 | [diff] [blame] | 1525 | // Finish off the call including any return values. |
| 1526 | return finishCall(CLI, RetVT, NumBytes); |
| 1527 | } |
| 1528 | |
Vasileios Kalintiris | bdb91b3 | 2015-06-01 16:36:01 +0000 | [diff] [blame] | 1529 | bool MipsFastISel::fastLowerIntrinsicCall(const IntrinsicInst *II) { |
Vasileios Kalintiris | 2f12b2e | 2015-08-04 14:35:50 +0000 | [diff] [blame] | 1530 | if (!TargetSupported) |
| 1531 | return false; |
| 1532 | |
Vasileios Kalintiris | bdb91b3 | 2015-06-01 16:36:01 +0000 | [diff] [blame] | 1533 | switch (II->getIntrinsicID()) { |
| 1534 | default: |
| 1535 | return false; |
Vasileios Kalintiris | cbbf8e0 | 2015-06-01 16:40:45 +0000 | [diff] [blame] | 1536 | case Intrinsic::bswap: { |
| 1537 | Type *RetTy = II->getCalledFunction()->getReturnType(); |
| 1538 | |
| 1539 | MVT VT; |
| 1540 | if (!isTypeSupported(RetTy, VT)) |
| 1541 | return false; |
| 1542 | |
| 1543 | unsigned SrcReg = getRegForValue(II->getOperand(0)); |
| 1544 | if (SrcReg == 0) |
| 1545 | return false; |
| 1546 | unsigned DestReg = createResultReg(&Mips::GPR32RegClass); |
| 1547 | if (DestReg == 0) |
| 1548 | return false; |
| 1549 | if (VT == MVT::i16) { |
| 1550 | if (Subtarget->hasMips32r2()) { |
| 1551 | emitInst(Mips::WSBH, DestReg).addReg(SrcReg); |
| 1552 | updateValueMap(II, DestReg); |
| 1553 | return true; |
| 1554 | } else { |
| 1555 | unsigned TempReg[3]; |
| 1556 | for (int i = 0; i < 3; i++) { |
| 1557 | TempReg[i] = createResultReg(&Mips::GPR32RegClass); |
| 1558 | if (TempReg[i] == 0) |
| 1559 | return false; |
| 1560 | } |
| 1561 | emitInst(Mips::SLL, TempReg[0]).addReg(SrcReg).addImm(8); |
| 1562 | emitInst(Mips::SRL, TempReg[1]).addReg(SrcReg).addImm(8); |
| 1563 | emitInst(Mips::OR, TempReg[2]).addReg(TempReg[0]).addReg(TempReg[1]); |
| 1564 | emitInst(Mips::ANDi, DestReg).addReg(TempReg[2]).addImm(0xFFFF); |
| 1565 | updateValueMap(II, DestReg); |
| 1566 | return true; |
| 1567 | } |
| 1568 | } else if (VT == MVT::i32) { |
| 1569 | if (Subtarget->hasMips32r2()) { |
| 1570 | unsigned TempReg = createResultReg(&Mips::GPR32RegClass); |
| 1571 | emitInst(Mips::WSBH, TempReg).addReg(SrcReg); |
| 1572 | emitInst(Mips::ROTR, DestReg).addReg(TempReg).addImm(16); |
| 1573 | updateValueMap(II, DestReg); |
| 1574 | return true; |
| 1575 | } else { |
| 1576 | unsigned TempReg[8]; |
| 1577 | for (int i = 0; i < 8; i++) { |
| 1578 | TempReg[i] = createResultReg(&Mips::GPR32RegClass); |
| 1579 | if (TempReg[i] == 0) |
| 1580 | return false; |
| 1581 | } |
| 1582 | |
| 1583 | emitInst(Mips::SRL, TempReg[0]).addReg(SrcReg).addImm(8); |
| 1584 | emitInst(Mips::SRL, TempReg[1]).addReg(SrcReg).addImm(24); |
| 1585 | emitInst(Mips::ANDi, TempReg[2]).addReg(TempReg[0]).addImm(0xFF00); |
| 1586 | emitInst(Mips::OR, TempReg[3]).addReg(TempReg[1]).addReg(TempReg[2]); |
| 1587 | |
| 1588 | emitInst(Mips::ANDi, TempReg[4]).addReg(SrcReg).addImm(0xFF00); |
| 1589 | emitInst(Mips::SLL, TempReg[5]).addReg(TempReg[4]).addImm(8); |
| 1590 | |
| 1591 | emitInst(Mips::SLL, TempReg[6]).addReg(SrcReg).addImm(24); |
| 1592 | emitInst(Mips::OR, TempReg[7]).addReg(TempReg[3]).addReg(TempReg[5]); |
| 1593 | emitInst(Mips::OR, DestReg).addReg(TempReg[6]).addReg(TempReg[7]); |
| 1594 | updateValueMap(II, DestReg); |
| 1595 | return true; |
| 1596 | } |
| 1597 | } |
| 1598 | return false; |
| 1599 | } |
Vasileios Kalintiris | bdb91b3 | 2015-06-01 16:36:01 +0000 | [diff] [blame] | 1600 | case Intrinsic::memcpy: |
| 1601 | case Intrinsic::memmove: { |
| 1602 | const auto *MTI = cast<MemTransferInst>(II); |
| 1603 | // Don't handle volatile. |
| 1604 | if (MTI->isVolatile()) |
| 1605 | return false; |
| 1606 | if (!MTI->getLength()->getType()->isIntegerTy(32)) |
| 1607 | return false; |
| 1608 | const char *IntrMemName = isa<MemCpyInst>(II) ? "memcpy" : "memmove"; |
Pete Cooper | 67cf9a7 | 2015-11-19 05:56:52 +0000 | [diff] [blame] | 1609 | return lowerCallTo(II, IntrMemName, II->getNumArgOperands() - 2); |
Vasileios Kalintiris | bdb91b3 | 2015-06-01 16:36:01 +0000 | [diff] [blame] | 1610 | } |
| 1611 | case Intrinsic::memset: { |
| 1612 | const MemSetInst *MSI = cast<MemSetInst>(II); |
| 1613 | // Don't handle volatile. |
| 1614 | if (MSI->isVolatile()) |
| 1615 | return false; |
| 1616 | if (!MSI->getLength()->getType()->isIntegerTy(32)) |
| 1617 | return false; |
Pete Cooper | 67cf9a7 | 2015-11-19 05:56:52 +0000 | [diff] [blame] | 1618 | return lowerCallTo(II, "memset", II->getNumArgOperands() - 2); |
Vasileios Kalintiris | bdb91b3 | 2015-06-01 16:36:01 +0000 | [diff] [blame] | 1619 | } |
| 1620 | } |
| 1621 | return false; |
| 1622 | } |
| 1623 | |
Reed Kotler | d4ea29e | 2014-10-14 18:27:58 +0000 | [diff] [blame] | 1624 | bool MipsFastISel::selectRet(const Instruction *I) { |
Reed Kotler | aa150ed | 2015-02-12 21:05:12 +0000 | [diff] [blame] | 1625 | const Function &F = *I->getParent()->getParent(); |
Reed Kotler | d4ea29e | 2014-10-14 18:27:58 +0000 | [diff] [blame] | 1626 | const ReturnInst *Ret = cast<ReturnInst>(I); |
| 1627 | |
Simon Dardis | b432a3e | 2016-09-06 12:36:24 +0000 | [diff] [blame^] | 1628 | DEBUG(dbgs() << "selectRet\n"); |
| 1629 | |
Reed Kotler | d4ea29e | 2014-10-14 18:27:58 +0000 | [diff] [blame] | 1630 | if (!FuncInfo.CanLowerReturn) |
| 1631 | return false; |
Reed Kotler | aa150ed | 2015-02-12 21:05:12 +0000 | [diff] [blame] | 1632 | |
| 1633 | // Build a list of return value registers. |
| 1634 | SmallVector<unsigned, 4> RetRegs; |
| 1635 | |
Reed Kotler | d4ea29e | 2014-10-14 18:27:58 +0000 | [diff] [blame] | 1636 | if (Ret->getNumOperands() > 0) { |
Reed Kotler | aa150ed | 2015-02-12 21:05:12 +0000 | [diff] [blame] | 1637 | CallingConv::ID CC = F.getCallingConv(); |
Vasileios Kalintiris | 9876946 | 2015-07-28 21:43:31 +0000 | [diff] [blame] | 1638 | |
| 1639 | // Do not handle FastCC. |
| 1640 | if (CC == CallingConv::Fast) |
| 1641 | return false; |
| 1642 | |
Reed Kotler | aa150ed | 2015-02-12 21:05:12 +0000 | [diff] [blame] | 1643 | SmallVector<ISD::OutputArg, 4> Outs; |
Mehdi Amini | 56228da | 2015-07-09 01:57:34 +0000 | [diff] [blame] | 1644 | GetReturnInfo(F.getReturnType(), F.getAttributes(), Outs, TLI, DL); |
| 1645 | |
Reed Kotler | aa150ed | 2015-02-12 21:05:12 +0000 | [diff] [blame] | 1646 | // Analyze operands of the call, assigning locations to each operand. |
| 1647 | SmallVector<CCValAssign, 16> ValLocs; |
| 1648 | MipsCCState CCInfo(CC, F.isVarArg(), *FuncInfo.MF, ValLocs, |
| 1649 | I->getContext()); |
| 1650 | CCAssignFn *RetCC = RetCC_Mips; |
| 1651 | CCInfo.AnalyzeReturn(Outs, RetCC); |
| 1652 | |
| 1653 | // Only handle a single return value for now. |
| 1654 | if (ValLocs.size() != 1) |
| 1655 | return false; |
| 1656 | |
| 1657 | CCValAssign &VA = ValLocs[0]; |
| 1658 | const Value *RV = Ret->getOperand(0); |
| 1659 | |
| 1660 | // Don't bother handling odd stuff for now. |
| 1661 | if ((VA.getLocInfo() != CCValAssign::Full) && |
| 1662 | (VA.getLocInfo() != CCValAssign::BCvt)) |
| 1663 | return false; |
| 1664 | |
| 1665 | // Only handle register returns for now. |
| 1666 | if (!VA.isRegLoc()) |
| 1667 | return false; |
| 1668 | |
| 1669 | unsigned Reg = getRegForValue(RV); |
| 1670 | if (Reg == 0) |
| 1671 | return false; |
| 1672 | |
| 1673 | unsigned SrcReg = Reg + VA.getValNo(); |
| 1674 | unsigned DestReg = VA.getLocReg(); |
| 1675 | // Avoid a cross-class copy. This is very unlikely. |
| 1676 | if (!MRI.getRegClass(SrcReg)->contains(DestReg)) |
| 1677 | return false; |
| 1678 | |
Mehdi Amini | 44ede33 | 2015-07-09 02:09:04 +0000 | [diff] [blame] | 1679 | EVT RVEVT = TLI.getValueType(DL, RV->getType()); |
Reed Kotler | aa150ed | 2015-02-12 21:05:12 +0000 | [diff] [blame] | 1680 | if (!RVEVT.isSimple()) |
| 1681 | return false; |
| 1682 | |
| 1683 | if (RVEVT.isVector()) |
| 1684 | return false; |
| 1685 | |
| 1686 | MVT RVVT = RVEVT.getSimpleVT(); |
| 1687 | if (RVVT == MVT::f128) |
| 1688 | return false; |
| 1689 | |
Simon Dardis | b432a3e | 2016-09-06 12:36:24 +0000 | [diff] [blame^] | 1690 | // Do not handle FGR64 returns for now. |
| 1691 | if (RVVT == MVT::f64 && UnsupportedFPMode) { |
| 1692 | DEBUG(dbgs() << ".. .. gave up (UnsupportedFPMode\n"); |
| 1693 | return false; |
| 1694 | } |
| 1695 | |
Reed Kotler | aa150ed | 2015-02-12 21:05:12 +0000 | [diff] [blame] | 1696 | MVT DestVT = VA.getValVT(); |
| 1697 | // Special handling for extended integers. |
| 1698 | if (RVVT != DestVT) { |
| 1699 | if (RVVT != MVT::i1 && RVVT != MVT::i8 && RVVT != MVT::i16) |
| 1700 | return false; |
| 1701 | |
Vasileios Kalintiris | 1249e74 | 2015-04-29 14:17:14 +0000 | [diff] [blame] | 1702 | if (Outs[0].Flags.isZExt() || Outs[0].Flags.isSExt()) { |
| 1703 | bool IsZExt = Outs[0].Flags.isZExt(); |
| 1704 | SrcReg = emitIntExt(RVVT, SrcReg, DestVT, IsZExt); |
| 1705 | if (SrcReg == 0) |
| 1706 | return false; |
| 1707 | } |
Reed Kotler | aa150ed | 2015-02-12 21:05:12 +0000 | [diff] [blame] | 1708 | } |
| 1709 | |
| 1710 | // Make the copy. |
| 1711 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, |
| 1712 | TII.get(TargetOpcode::COPY), DestReg).addReg(SrcReg); |
| 1713 | |
| 1714 | // Add register to return instruction. |
| 1715 | RetRegs.push_back(VA.getLocReg()); |
Reed Kotler | d4ea29e | 2014-10-14 18:27:58 +0000 | [diff] [blame] | 1716 | } |
Reed Kotler | aa150ed | 2015-02-12 21:05:12 +0000 | [diff] [blame] | 1717 | MachineInstrBuilder MIB = emitInst(Mips::RetRA); |
| 1718 | for (unsigned i = 0, e = RetRegs.size(); i != e; ++i) |
| 1719 | MIB.addReg(RetRegs[i], RegState::Implicit); |
Reed Kotler | d4ea29e | 2014-10-14 18:27:58 +0000 | [diff] [blame] | 1720 | return true; |
| 1721 | } |
| 1722 | |
| 1723 | bool MipsFastISel::selectTrunc(const Instruction *I) { |
| 1724 | // The high bits for a type smaller than the register size are assumed to be |
| 1725 | // undefined. |
| 1726 | Value *Op = I->getOperand(0); |
| 1727 | |
| 1728 | EVT SrcVT, DestVT; |
Mehdi Amini | 44ede33 | 2015-07-09 02:09:04 +0000 | [diff] [blame] | 1729 | SrcVT = TLI.getValueType(DL, Op->getType(), true); |
| 1730 | DestVT = TLI.getValueType(DL, I->getType(), true); |
Reed Kotler | d4ea29e | 2014-10-14 18:27:58 +0000 | [diff] [blame] | 1731 | |
| 1732 | if (SrcVT != MVT::i32 && SrcVT != MVT::i16 && SrcVT != MVT::i8) |
| 1733 | return false; |
| 1734 | if (DestVT != MVT::i16 && DestVT != MVT::i8 && DestVT != MVT::i1) |
| 1735 | return false; |
| 1736 | |
| 1737 | unsigned SrcReg = getRegForValue(Op); |
| 1738 | if (!SrcReg) |
| 1739 | return false; |
| 1740 | |
| 1741 | // Because the high bits are undefined, a truncate doesn't generate |
| 1742 | // any code. |
| 1743 | updateValueMap(I, SrcReg); |
| 1744 | return true; |
| 1745 | } |
| 1746 | bool MipsFastISel::selectIntExt(const Instruction *I) { |
| 1747 | Type *DestTy = I->getType(); |
| 1748 | Value *Src = I->getOperand(0); |
| 1749 | Type *SrcTy = Src->getType(); |
| 1750 | |
| 1751 | bool isZExt = isa<ZExtInst>(I); |
| 1752 | unsigned SrcReg = getRegForValue(Src); |
| 1753 | if (!SrcReg) |
| 1754 | return false; |
| 1755 | |
| 1756 | EVT SrcEVT, DestEVT; |
Mehdi Amini | 44ede33 | 2015-07-09 02:09:04 +0000 | [diff] [blame] | 1757 | SrcEVT = TLI.getValueType(DL, SrcTy, true); |
| 1758 | DestEVT = TLI.getValueType(DL, DestTy, true); |
Reed Kotler | d4ea29e | 2014-10-14 18:27:58 +0000 | [diff] [blame] | 1759 | if (!SrcEVT.isSimple()) |
| 1760 | return false; |
| 1761 | if (!DestEVT.isSimple()) |
| 1762 | return false; |
| 1763 | |
| 1764 | MVT SrcVT = SrcEVT.getSimpleVT(); |
| 1765 | MVT DestVT = DestEVT.getSimpleVT(); |
| 1766 | unsigned ResultReg = createResultReg(&Mips::GPR32RegClass); |
| 1767 | |
| 1768 | if (!emitIntExt(SrcVT, SrcReg, DestVT, ResultReg, isZExt)) |
| 1769 | return false; |
| 1770 | updateValueMap(I, ResultReg); |
| 1771 | return true; |
| 1772 | } |
| 1773 | bool MipsFastISel::emitIntSExt32r1(MVT SrcVT, unsigned SrcReg, MVT DestVT, |
| 1774 | unsigned DestReg) { |
| 1775 | unsigned ShiftAmt; |
| 1776 | switch (SrcVT.SimpleTy) { |
| 1777 | default: |
| 1778 | return false; |
| 1779 | case MVT::i8: |
| 1780 | ShiftAmt = 24; |
| 1781 | break; |
| 1782 | case MVT::i16: |
| 1783 | ShiftAmt = 16; |
| 1784 | break; |
| 1785 | } |
| 1786 | unsigned TempReg = createResultReg(&Mips::GPR32RegClass); |
| 1787 | emitInst(Mips::SLL, TempReg).addReg(SrcReg).addImm(ShiftAmt); |
| 1788 | emitInst(Mips::SRA, DestReg).addReg(TempReg).addImm(ShiftAmt); |
| 1789 | return true; |
| 1790 | } |
| 1791 | |
| 1792 | bool MipsFastISel::emitIntSExt32r2(MVT SrcVT, unsigned SrcReg, MVT DestVT, |
| 1793 | unsigned DestReg) { |
| 1794 | switch (SrcVT.SimpleTy) { |
| 1795 | default: |
| 1796 | return false; |
| 1797 | case MVT::i8: |
| 1798 | emitInst(Mips::SEB, DestReg).addReg(SrcReg); |
| 1799 | break; |
| 1800 | case MVT::i16: |
| 1801 | emitInst(Mips::SEH, DestReg).addReg(SrcReg); |
| 1802 | break; |
| 1803 | } |
| 1804 | return true; |
| 1805 | } |
| 1806 | |
| 1807 | bool MipsFastISel::emitIntSExt(MVT SrcVT, unsigned SrcReg, MVT DestVT, |
| 1808 | unsigned DestReg) { |
| 1809 | if ((DestVT != MVT::i32) && (DestVT != MVT::i16)) |
| 1810 | return false; |
| 1811 | if (Subtarget->hasMips32r2()) |
| 1812 | return emitIntSExt32r2(SrcVT, SrcReg, DestVT, DestReg); |
| 1813 | return emitIntSExt32r1(SrcVT, SrcReg, DestVT, DestReg); |
| 1814 | } |
| 1815 | |
| 1816 | bool MipsFastISel::emitIntZExt(MVT SrcVT, unsigned SrcReg, MVT DestVT, |
| 1817 | unsigned DestReg) { |
Vasileios Kalintiris | b876b58 | 2015-10-07 20:06:30 +0000 | [diff] [blame] | 1818 | int64_t Imm; |
| 1819 | |
Reed Kotler | d4ea29e | 2014-10-14 18:27:58 +0000 | [diff] [blame] | 1820 | switch (SrcVT.SimpleTy) { |
| 1821 | default: |
| 1822 | return false; |
| 1823 | case MVT::i1: |
Vasileios Kalintiris | b876b58 | 2015-10-07 20:06:30 +0000 | [diff] [blame] | 1824 | Imm = 1; |
Reed Kotler | d4ea29e | 2014-10-14 18:27:58 +0000 | [diff] [blame] | 1825 | break; |
| 1826 | case MVT::i8: |
Vasileios Kalintiris | b876b58 | 2015-10-07 20:06:30 +0000 | [diff] [blame] | 1827 | Imm = 0xff; |
Reed Kotler | d4ea29e | 2014-10-14 18:27:58 +0000 | [diff] [blame] | 1828 | break; |
| 1829 | case MVT::i16: |
Vasileios Kalintiris | b876b58 | 2015-10-07 20:06:30 +0000 | [diff] [blame] | 1830 | Imm = 0xffff; |
Reed Kotler | d5c4196 | 2014-11-13 23:37:45 +0000 | [diff] [blame] | 1831 | break; |
Reed Kotler | d4ea29e | 2014-10-14 18:27:58 +0000 | [diff] [blame] | 1832 | } |
Vasileios Kalintiris | b876b58 | 2015-10-07 20:06:30 +0000 | [diff] [blame] | 1833 | |
| 1834 | emitInst(Mips::ANDi, DestReg).addReg(SrcReg).addImm(Imm); |
Reed Kotler | d4ea29e | 2014-10-14 18:27:58 +0000 | [diff] [blame] | 1835 | return true; |
| 1836 | } |
| 1837 | |
| 1838 | bool MipsFastISel::emitIntExt(MVT SrcVT, unsigned SrcReg, MVT DestVT, |
| 1839 | unsigned DestReg, bool IsZExt) { |
Vasileios Kalintiris | 1202f36 | 2015-04-24 13:48:19 +0000 | [diff] [blame] | 1840 | // FastISel does not have plumbing to deal with extensions where the SrcVT or |
| 1841 | // DestVT are odd things, so test to make sure that they are both types we can |
| 1842 | // handle (i1/i8/i16/i32 for SrcVT and i8/i16/i32/i64 for DestVT), otherwise |
| 1843 | // bail out to SelectionDAG. |
| 1844 | if (((DestVT != MVT::i8) && (DestVT != MVT::i16) && (DestVT != MVT::i32)) || |
| 1845 | ((SrcVT != MVT::i1) && (SrcVT != MVT::i8) && (SrcVT != MVT::i16))) |
| 1846 | return false; |
Reed Kotler | d4ea29e | 2014-10-14 18:27:58 +0000 | [diff] [blame] | 1847 | if (IsZExt) |
| 1848 | return emitIntZExt(SrcVT, SrcReg, DestVT, DestReg); |
| 1849 | return emitIntSExt(SrcVT, SrcReg, DestVT, DestReg); |
| 1850 | } |
Reed Kotler | d5c4196 | 2014-11-13 23:37:45 +0000 | [diff] [blame] | 1851 | |
| 1852 | unsigned MipsFastISel::emitIntExt(MVT SrcVT, unsigned SrcReg, MVT DestVT, |
| 1853 | bool isZExt) { |
| 1854 | unsigned DestReg = createResultReg(&Mips::GPR32RegClass); |
Reed Kotler | aa150ed | 2015-02-12 21:05:12 +0000 | [diff] [blame] | 1855 | bool Success = emitIntExt(SrcVT, SrcReg, DestVT, DestReg, isZExt); |
| 1856 | return Success ? DestReg : 0; |
Reed Kotler | d5c4196 | 2014-11-13 23:37:45 +0000 | [diff] [blame] | 1857 | } |
| 1858 | |
Vasileios Kalintiris | 8fcb398 | 2015-06-01 16:17:37 +0000 | [diff] [blame] | 1859 | bool MipsFastISel::selectDivRem(const Instruction *I, unsigned ISDOpcode) { |
Mehdi Amini | 44ede33 | 2015-07-09 02:09:04 +0000 | [diff] [blame] | 1860 | EVT DestEVT = TLI.getValueType(DL, I->getType(), true); |
Vasileios Kalintiris | 8fcb398 | 2015-06-01 16:17:37 +0000 | [diff] [blame] | 1861 | if (!DestEVT.isSimple()) |
| 1862 | return false; |
| 1863 | |
| 1864 | MVT DestVT = DestEVT.getSimpleVT(); |
| 1865 | if (DestVT != MVT::i32) |
| 1866 | return false; |
| 1867 | |
| 1868 | unsigned DivOpc; |
| 1869 | switch (ISDOpcode) { |
| 1870 | default: |
| 1871 | return false; |
| 1872 | case ISD::SDIV: |
| 1873 | case ISD::SREM: |
| 1874 | DivOpc = Mips::SDIV; |
| 1875 | break; |
| 1876 | case ISD::UDIV: |
| 1877 | case ISD::UREM: |
| 1878 | DivOpc = Mips::UDIV; |
| 1879 | break; |
| 1880 | } |
| 1881 | |
| 1882 | unsigned Src0Reg = getRegForValue(I->getOperand(0)); |
| 1883 | unsigned Src1Reg = getRegForValue(I->getOperand(1)); |
| 1884 | if (!Src0Reg || !Src1Reg) |
| 1885 | return false; |
| 1886 | |
| 1887 | emitInst(DivOpc).addReg(Src0Reg).addReg(Src1Reg); |
| 1888 | emitInst(Mips::TEQ).addReg(Src1Reg).addReg(Mips::ZERO).addImm(7); |
| 1889 | |
| 1890 | unsigned ResultReg = createResultReg(&Mips::GPR32RegClass); |
| 1891 | if (!ResultReg) |
| 1892 | return false; |
| 1893 | |
| 1894 | unsigned MFOpc = (ISDOpcode == ISD::SREM || ISDOpcode == ISD::UREM) |
| 1895 | ? Mips::MFHI |
| 1896 | : Mips::MFLO; |
| 1897 | emitInst(MFOpc, ResultReg); |
| 1898 | |
| 1899 | updateValueMap(I, ResultReg); |
| 1900 | return true; |
| 1901 | } |
| 1902 | |
Vasileios Kalintiris | 7a6b187 | 2015-04-27 13:28:05 +0000 | [diff] [blame] | 1903 | bool MipsFastISel::selectShift(const Instruction *I) { |
| 1904 | MVT RetVT; |
| 1905 | |
| 1906 | if (!isTypeSupported(I->getType(), RetVT)) |
| 1907 | return false; |
| 1908 | |
| 1909 | unsigned ResultReg = createResultReg(&Mips::GPR32RegClass); |
| 1910 | if (!ResultReg) |
| 1911 | return false; |
| 1912 | |
| 1913 | unsigned Opcode = I->getOpcode(); |
| 1914 | const Value *Op0 = I->getOperand(0); |
| 1915 | unsigned Op0Reg = getRegForValue(Op0); |
| 1916 | if (!Op0Reg) |
| 1917 | return false; |
| 1918 | |
| 1919 | // If AShr or LShr, then we need to make sure the operand0 is sign extended. |
| 1920 | if (Opcode == Instruction::AShr || Opcode == Instruction::LShr) { |
| 1921 | unsigned TempReg = createResultReg(&Mips::GPR32RegClass); |
| 1922 | if (!TempReg) |
| 1923 | return false; |
| 1924 | |
Mehdi Amini | 44ede33 | 2015-07-09 02:09:04 +0000 | [diff] [blame] | 1925 | MVT Op0MVT = TLI.getValueType(DL, Op0->getType(), true).getSimpleVT(); |
Vasileios Kalintiris | 7a6b187 | 2015-04-27 13:28:05 +0000 | [diff] [blame] | 1926 | bool IsZExt = Opcode == Instruction::LShr; |
| 1927 | if (!emitIntExt(Op0MVT, Op0Reg, MVT::i32, TempReg, IsZExt)) |
| 1928 | return false; |
| 1929 | |
| 1930 | Op0Reg = TempReg; |
| 1931 | } |
| 1932 | |
| 1933 | if (const auto *C = dyn_cast<ConstantInt>(I->getOperand(1))) { |
| 1934 | uint64_t ShiftVal = C->getZExtValue(); |
| 1935 | |
| 1936 | switch (Opcode) { |
| 1937 | default: |
| 1938 | llvm_unreachable("Unexpected instruction."); |
| 1939 | case Instruction::Shl: |
| 1940 | Opcode = Mips::SLL; |
| 1941 | break; |
| 1942 | case Instruction::AShr: |
| 1943 | Opcode = Mips::SRA; |
| 1944 | break; |
| 1945 | case Instruction::LShr: |
| 1946 | Opcode = Mips::SRL; |
| 1947 | break; |
| 1948 | } |
| 1949 | |
| 1950 | emitInst(Opcode, ResultReg).addReg(Op0Reg).addImm(ShiftVal); |
| 1951 | updateValueMap(I, ResultReg); |
| 1952 | return true; |
| 1953 | } |
| 1954 | |
| 1955 | unsigned Op1Reg = getRegForValue(I->getOperand(1)); |
| 1956 | if (!Op1Reg) |
| 1957 | return false; |
| 1958 | |
| 1959 | switch (Opcode) { |
| 1960 | default: |
| 1961 | llvm_unreachable("Unexpected instruction."); |
| 1962 | case Instruction::Shl: |
| 1963 | Opcode = Mips::SLLV; |
| 1964 | break; |
| 1965 | case Instruction::AShr: |
| 1966 | Opcode = Mips::SRAV; |
| 1967 | break; |
| 1968 | case Instruction::LShr: |
| 1969 | Opcode = Mips::SRLV; |
| 1970 | break; |
| 1971 | } |
| 1972 | |
| 1973 | emitInst(Opcode, ResultReg).addReg(Op0Reg).addReg(Op1Reg); |
| 1974 | updateValueMap(I, ResultReg); |
| 1975 | return true; |
| 1976 | } |
| 1977 | |
Juergen Ributzka | 5b8bb4d | 2014-09-03 20:56:52 +0000 | [diff] [blame] | 1978 | bool MipsFastISel::fastSelectInstruction(const Instruction *I) { |
Reed Kotler | 67077b3 | 2014-04-29 17:57:50 +0000 | [diff] [blame] | 1979 | if (!TargetSupported) |
| 1980 | return false; |
| 1981 | switch (I->getOpcode()) { |
| 1982 | default: |
| 1983 | break; |
Reed Kotler | 9fe3bfd | 2014-06-16 22:05:47 +0000 | [diff] [blame] | 1984 | case Instruction::Load: |
Reed Kotler | a562b46 | 2014-10-13 21:46:41 +0000 | [diff] [blame] | 1985 | return selectLoad(I); |
Reed Kotler | bab3f23 | 2014-05-01 20:39:21 +0000 | [diff] [blame] | 1986 | case Instruction::Store: |
Reed Kotler | a562b46 | 2014-10-13 21:46:41 +0000 | [diff] [blame] | 1987 | return selectStore(I); |
Vasileios Kalintiris | 8fcb398 | 2015-06-01 16:17:37 +0000 | [diff] [blame] | 1988 | case Instruction::SDiv: |
| 1989 | if (!selectBinaryOp(I, ISD::SDIV)) |
| 1990 | return selectDivRem(I, ISD::SDIV); |
| 1991 | return true; |
| 1992 | case Instruction::UDiv: |
| 1993 | if (!selectBinaryOp(I, ISD::UDIV)) |
| 1994 | return selectDivRem(I, ISD::UDIV); |
| 1995 | return true; |
| 1996 | case Instruction::SRem: |
| 1997 | if (!selectBinaryOp(I, ISD::SREM)) |
| 1998 | return selectDivRem(I, ISD::SREM); |
| 1999 | return true; |
| 2000 | case Instruction::URem: |
| 2001 | if (!selectBinaryOp(I, ISD::UREM)) |
| 2002 | return selectDivRem(I, ISD::UREM); |
| 2003 | return true; |
Vasileios Kalintiris | 7a6b187 | 2015-04-27 13:28:05 +0000 | [diff] [blame] | 2004 | case Instruction::Shl: |
| 2005 | case Instruction::LShr: |
| 2006 | case Instruction::AShr: |
| 2007 | return selectShift(I); |
Reed Kotler | 07d3a2f | 2015-03-09 16:28:10 +0000 | [diff] [blame] | 2008 | case Instruction::And: |
| 2009 | case Instruction::Or: |
| 2010 | case Instruction::Xor: |
| 2011 | return selectLogicalOp(I); |
Reed Kotler | 62de6b9 | 2014-10-11 00:55:18 +0000 | [diff] [blame] | 2012 | case Instruction::Br: |
Reed Kotler | a562b46 | 2014-10-13 21:46:41 +0000 | [diff] [blame] | 2013 | return selectBranch(I); |
Reed Kotler | 67077b3 | 2014-04-29 17:57:50 +0000 | [diff] [blame] | 2014 | case Instruction::Ret: |
Reed Kotler | a562b46 | 2014-10-13 21:46:41 +0000 | [diff] [blame] | 2015 | return selectRet(I); |
Reed Kotler | 3ebdcc9 | 2014-09-30 16:30:13 +0000 | [diff] [blame] | 2016 | case Instruction::Trunc: |
Reed Kotler | a562b46 | 2014-10-13 21:46:41 +0000 | [diff] [blame] | 2017 | return selectTrunc(I); |
Reed Kotler | 3ebdcc9 | 2014-09-30 16:30:13 +0000 | [diff] [blame] | 2018 | case Instruction::ZExt: |
| 2019 | case Instruction::SExt: |
Reed Kotler | a562b46 | 2014-10-13 21:46:41 +0000 | [diff] [blame] | 2020 | return selectIntExt(I); |
Reed Kotler | b9dc248 | 2014-10-01 18:47:02 +0000 | [diff] [blame] | 2021 | case Instruction::FPTrunc: |
Reed Kotler | a562b46 | 2014-10-13 21:46:41 +0000 | [diff] [blame] | 2022 | return selectFPTrunc(I); |
Reed Kotler | 3ebdcc9 | 2014-09-30 16:30:13 +0000 | [diff] [blame] | 2023 | case Instruction::FPExt: |
Reed Kotler | a562b46 | 2014-10-13 21:46:41 +0000 | [diff] [blame] | 2024 | return selectFPExt(I); |
Reed Kotler | 12f9488 | 2014-10-10 17:00:46 +0000 | [diff] [blame] | 2025 | case Instruction::FPToSI: |
Reed Kotler | a562b46 | 2014-10-13 21:46:41 +0000 | [diff] [blame] | 2026 | return selectFPToInt(I, /*isSigned*/ true); |
Reed Kotler | 12f9488 | 2014-10-10 17:00:46 +0000 | [diff] [blame] | 2027 | case Instruction::FPToUI: |
Reed Kotler | a562b46 | 2014-10-13 21:46:41 +0000 | [diff] [blame] | 2028 | return selectFPToInt(I, /*isSigned*/ false); |
Reed Kotler | 497311a | 2014-10-10 17:39:51 +0000 | [diff] [blame] | 2029 | case Instruction::ICmp: |
| 2030 | case Instruction::FCmp: |
Reed Kotler | a562b46 | 2014-10-13 21:46:41 +0000 | [diff] [blame] | 2031 | return selectCmp(I); |
Vasileios Kalintiris | 127f894 | 2015-06-01 15:56:40 +0000 | [diff] [blame] | 2032 | case Instruction::Select: |
| 2033 | return selectSelect(I); |
Reed Kotler | 67077b3 | 2014-04-29 17:57:50 +0000 | [diff] [blame] | 2034 | } |
| 2035 | return false; |
| 2036 | } |
Reed Kotler | 720c5ca | 2014-04-17 22:15:34 +0000 | [diff] [blame] | 2037 | |
Reed Kotler | d4ea29e | 2014-10-14 18:27:58 +0000 | [diff] [blame] | 2038 | unsigned MipsFastISel::getRegEnsuringSimpleIntegerWidening(const Value *V, |
| 2039 | bool IsUnsigned) { |
| 2040 | unsigned VReg = getRegForValue(V); |
| 2041 | if (VReg == 0) |
Reed Kotler | 12f9488 | 2014-10-10 17:00:46 +0000 | [diff] [blame] | 2042 | return 0; |
Mehdi Amini | 44ede33 | 2015-07-09 02:09:04 +0000 | [diff] [blame] | 2043 | MVT VMVT = TLI.getValueType(DL, V->getType(), true).getSimpleVT(); |
Reed Kotler | d4ea29e | 2014-10-14 18:27:58 +0000 | [diff] [blame] | 2044 | if ((VMVT == MVT::i8) || (VMVT == MVT::i16)) { |
| 2045 | unsigned TempReg = createResultReg(&Mips::GPR32RegClass); |
| 2046 | if (!emitIntExt(VMVT, VReg, MVT::i32, TempReg, IsUnsigned)) |
| 2047 | return 0; |
| 2048 | VReg = TempReg; |
Reed Kotler | 063d4fb | 2014-06-10 16:45:44 +0000 | [diff] [blame] | 2049 | } |
Reed Kotler | d4ea29e | 2014-10-14 18:27:58 +0000 | [diff] [blame] | 2050 | return VReg; |
Reed Kotler | bab3f23 | 2014-05-01 20:39:21 +0000 | [diff] [blame] | 2051 | } |
| 2052 | |
Reed Kotler | 5fb7d8b | 2015-02-24 02:36:45 +0000 | [diff] [blame] | 2053 | void MipsFastISel::simplifyAddress(Address &Addr) { |
| 2054 | if (!isInt<16>(Addr.getOffset())) { |
| 2055 | unsigned TempReg = |
Reed Kotler | 07d3a2f | 2015-03-09 16:28:10 +0000 | [diff] [blame] | 2056 | materialize32BitInt(Addr.getOffset(), &Mips::GPR32RegClass); |
Reed Kotler | 5fb7d8b | 2015-02-24 02:36:45 +0000 | [diff] [blame] | 2057 | unsigned DestReg = createResultReg(&Mips::GPR32RegClass); |
| 2058 | emitInst(Mips::ADDu, DestReg).addReg(TempReg).addReg(Addr.getReg()); |
| 2059 | Addr.setReg(DestReg); |
| 2060 | Addr.setOffset(0); |
| 2061 | } |
| 2062 | } |
| 2063 | |
Vasileios Kalintiris | 7f680e1 | 2015-06-01 15:48:09 +0000 | [diff] [blame] | 2064 | unsigned MipsFastISel::fastEmitInst_rr(unsigned MachineInstOpcode, |
| 2065 | const TargetRegisterClass *RC, |
| 2066 | unsigned Op0, bool Op0IsKill, |
| 2067 | unsigned Op1, bool Op1IsKill) { |
| 2068 | // We treat the MUL instruction in a special way because it clobbers |
| 2069 | // the HI0 & LO0 registers. The TableGen definition of this instruction can |
| 2070 | // mark these registers only as implicitly defined. As a result, the |
| 2071 | // register allocator runs out of registers when this instruction is |
| 2072 | // followed by another instruction that defines the same registers too. |
| 2073 | // We can fix this by explicitly marking those registers as dead. |
| 2074 | if (MachineInstOpcode == Mips::MUL) { |
| 2075 | unsigned ResultReg = createResultReg(RC); |
| 2076 | const MCInstrDesc &II = TII.get(MachineInstOpcode); |
| 2077 | Op0 = constrainOperandRegClass(II, Op0, II.getNumDefs()); |
| 2078 | Op1 = constrainOperandRegClass(II, Op1, II.getNumDefs() + 1); |
| 2079 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II, ResultReg) |
| 2080 | .addReg(Op0, getKillRegState(Op0IsKill)) |
| 2081 | .addReg(Op1, getKillRegState(Op1IsKill)) |
| 2082 | .addReg(Mips::HI0, RegState::ImplicitDefine | RegState::Dead) |
| 2083 | .addReg(Mips::LO0, RegState::ImplicitDefine | RegState::Dead); |
| 2084 | return ResultReg; |
| 2085 | } |
| 2086 | |
| 2087 | return FastISel::fastEmitInst_rr(MachineInstOpcode, RC, Op0, Op0IsKill, Op1, |
| 2088 | Op1IsKill); |
| 2089 | } |
| 2090 | |
Reed Kotler | 720c5ca | 2014-04-17 22:15:34 +0000 | [diff] [blame] | 2091 | namespace llvm { |
| 2092 | FastISel *Mips::createFastISel(FunctionLoweringInfo &funcInfo, |
| 2093 | const TargetLibraryInfo *libInfo) { |
| 2094 | return new MipsFastISel(funcInfo, libInfo); |
| 2095 | } |
| 2096 | } |