Bill Schmidt | 646cd79 | 2013-07-30 00:50:39 +0000 | [diff] [blame] | 1 | //===-- PPCFastISel.cpp - PowerPC FastISel implementation -----------------===// |
| 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 | // This file defines the PowerPC-specific support for the FastISel class. Some |
| 11 | // of the target-specific code is generated by tablegen in the file |
| 12 | // PPCGenFastISel.inc, which is #included here. |
| 13 | // |
| 14 | //===----------------------------------------------------------------------===// |
| 15 | |
| 16 | #define DEBUG_TYPE "ppcfastisel" |
| 17 | #include "PPC.h" |
| 18 | #include "PPCISelLowering.h" |
| 19 | #include "PPCSubtarget.h" |
| 20 | #include "PPCTargetMachine.h" |
| 21 | #include "MCTargetDesc/PPCPredicates.h" |
| 22 | #include "llvm/ADT/Optional.h" |
| 23 | #include "llvm/CodeGen/CallingConvLower.h" |
| 24 | #include "llvm/CodeGen/FastISel.h" |
| 25 | #include "llvm/CodeGen/FunctionLoweringInfo.h" |
| 26 | #include "llvm/CodeGen/MachineConstantPool.h" |
| 27 | #include "llvm/CodeGen/MachineFrameInfo.h" |
| 28 | #include "llvm/CodeGen/MachineInstrBuilder.h" |
| 29 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
| 30 | #include "llvm/IR/CallingConv.h" |
| 31 | #include "llvm/IR/GlobalAlias.h" |
| 32 | #include "llvm/IR/GlobalVariable.h" |
| 33 | #include "llvm/IR/IntrinsicInst.h" |
| 34 | #include "llvm/IR/Operator.h" |
| 35 | #include "llvm/Support/Debug.h" |
| 36 | #include "llvm/Support/GetElementPtrTypeIterator.h" |
| 37 | #include "llvm/Target/TargetLowering.h" |
| 38 | #include "llvm/Target/TargetMachine.h" |
| 39 | |
| 40 | using namespace llvm; |
| 41 | |
| 42 | namespace { |
| 43 | |
| 44 | typedef struct Address { |
| 45 | enum { |
| 46 | RegBase, |
| 47 | FrameIndexBase |
| 48 | } BaseType; |
| 49 | |
| 50 | union { |
| 51 | unsigned Reg; |
| 52 | int FI; |
| 53 | } Base; |
| 54 | |
Bill Schmidt | 7248968 | 2013-08-30 02:29:45 +0000 | [diff] [blame] | 55 | long Offset; |
Bill Schmidt | 646cd79 | 2013-07-30 00:50:39 +0000 | [diff] [blame] | 56 | |
| 57 | // Innocuous defaults for our address. |
| 58 | Address() |
| 59 | : BaseType(RegBase), Offset(0) { |
| 60 | Base.Reg = 0; |
| 61 | } |
| 62 | } Address; |
| 63 | |
| 64 | class PPCFastISel : public FastISel { |
| 65 | |
| 66 | const TargetMachine &TM; |
| 67 | const TargetInstrInfo &TII; |
| 68 | const TargetLowering &TLI; |
| 69 | const PPCSubtarget &PPCSubTarget; |
| 70 | LLVMContext *Context; |
| 71 | |
| 72 | public: |
| 73 | explicit PPCFastISel(FunctionLoweringInfo &FuncInfo, |
| 74 | const TargetLibraryInfo *LibInfo) |
| 75 | : FastISel(FuncInfo, LibInfo), |
| 76 | TM(FuncInfo.MF->getTarget()), |
| 77 | TII(*TM.getInstrInfo()), |
| 78 | TLI(*TM.getTargetLowering()), |
| 79 | PPCSubTarget( |
| 80 | *((static_cast<const PPCTargetMachine *>(&TM))->getSubtargetImpl()) |
| 81 | ), |
| 82 | Context(&FuncInfo.Fn->getContext()) { } |
| 83 | |
| 84 | // Backend specific FastISel code. |
| 85 | private: |
| 86 | virtual bool TargetSelectInstruction(const Instruction *I); |
| 87 | virtual unsigned TargetMaterializeConstant(const Constant *C); |
| 88 | virtual unsigned TargetMaterializeAlloca(const AllocaInst *AI); |
| 89 | virtual bool tryToFoldLoadIntoMI(MachineInstr *MI, unsigned OpNo, |
| 90 | const LoadInst *LI); |
| 91 | virtual bool FastLowerArguments(); |
Bill Schmidt | 3fad2bc | 2013-08-25 22:33:42 +0000 | [diff] [blame] | 92 | virtual unsigned FastEmit_i(MVT Ty, MVT RetTy, unsigned Opc, uint64_t Imm); |
Bill Schmidt | 7248968 | 2013-08-30 02:29:45 +0000 | [diff] [blame] | 93 | virtual unsigned FastEmitInst_ri(unsigned MachineInstOpcode, |
| 94 | const TargetRegisterClass *RC, |
| 95 | unsigned Op0, bool Op0IsKill, |
| 96 | uint64_t Imm); |
| 97 | virtual unsigned FastEmitInst_r(unsigned MachineInstOpcode, |
| 98 | const TargetRegisterClass *RC, |
| 99 | unsigned Op0, bool Op0IsKill); |
| 100 | virtual unsigned FastEmitInst_rr(unsigned MachineInstOpcode, |
| 101 | const TargetRegisterClass *RC, |
| 102 | unsigned Op0, bool Op0IsKill, |
| 103 | unsigned Op1, bool Op1IsKill); |
Bill Schmidt | 3fad2bc | 2013-08-25 22:33:42 +0000 | [diff] [blame] | 104 | |
| 105 | // Instruction selection routines. |
| 106 | private: |
Bill Schmidt | 7248968 | 2013-08-30 02:29:45 +0000 | [diff] [blame] | 107 | bool SelectLoad(const Instruction *I); |
| 108 | bool SelectStore(const Instruction *I); |
Bill Schmidt | 3fad2bc | 2013-08-25 22:33:42 +0000 | [diff] [blame] | 109 | bool SelectBranch(const Instruction *I); |
| 110 | bool SelectIndirectBr(const Instruction *I); |
Bill Schmidt | e206efd3 | 2013-08-30 03:16:48 +0000 | [diff] [blame] | 111 | bool SelectCmp(const Instruction *I); |
Bill Schmidt | 9bc9427 | 2013-08-30 15:18:11 +0000 | [diff] [blame] | 112 | bool SelectFPExt(const Instruction *I); |
| 113 | bool SelectFPTrunc(const Instruction *I); |
| 114 | bool SelectIToFP(const Instruction *I, bool IsSigned); |
| 115 | bool SelectFPToI(const Instruction *I, bool IsSigned); |
Bill Schmidt | 7248968 | 2013-08-30 02:29:45 +0000 | [diff] [blame] | 116 | bool SelectBinaryIntOp(const Instruction *I, unsigned ISDOpcode); |
Bill Schmidt | 11addd2 | 2013-08-30 22:18:55 +0000 | [diff] [blame^] | 117 | bool SelectCall(const Instruction *I); |
Bill Schmidt | 055d207 | 2013-08-26 19:42:51 +0000 | [diff] [blame] | 118 | bool SelectRet(const Instruction *I); |
| 119 | bool SelectIntExt(const Instruction *I); |
Bill Schmidt | 646cd79 | 2013-07-30 00:50:39 +0000 | [diff] [blame] | 120 | |
| 121 | // Utility routines. |
| 122 | private: |
Bill Schmidt | 7248968 | 2013-08-30 02:29:45 +0000 | [diff] [blame] | 123 | bool isTypeLegal(Type *Ty, MVT &VT); |
| 124 | bool isLoadTypeLegal(Type *Ty, MVT &VT); |
Bill Schmidt | 3fad2bc | 2013-08-25 22:33:42 +0000 | [diff] [blame] | 125 | bool PPCEmitCmp(const Value *Src1Value, const Value *Src2Value, |
| 126 | bool isZExt, unsigned DestReg); |
Bill Schmidt | 7248968 | 2013-08-30 02:29:45 +0000 | [diff] [blame] | 127 | bool PPCEmitLoad(MVT VT, unsigned &ResultReg, Address &Addr, |
| 128 | const TargetRegisterClass *RC, bool IsZExt = true, |
| 129 | unsigned FP64LoadOpc = PPC::LFD); |
| 130 | bool PPCEmitStore(MVT VT, unsigned SrcReg, Address &Addr); |
| 131 | bool PPCComputeAddress(const Value *Obj, Address &Addr); |
| 132 | void PPCSimplifyAddress(Address &Addr, MVT VT, bool &UseOffset, |
| 133 | unsigned &IndexReg); |
Bill Schmidt | 3fad2bc | 2013-08-25 22:33:42 +0000 | [diff] [blame] | 134 | bool PPCEmitIntExt(MVT SrcVT, unsigned SrcReg, MVT DestVT, |
| 135 | unsigned DestReg, bool IsZExt); |
Bill Schmidt | 646cd79 | 2013-07-30 00:50:39 +0000 | [diff] [blame] | 136 | unsigned PPCMaterializeFP(const ConstantFP *CFP, MVT VT); |
Bill Schmidt | 7248968 | 2013-08-30 02:29:45 +0000 | [diff] [blame] | 137 | unsigned PPCMaterializeGV(const GlobalValue *GV, MVT VT); |
Bill Schmidt | 646cd79 | 2013-07-30 00:50:39 +0000 | [diff] [blame] | 138 | unsigned PPCMaterializeInt(const Constant *C, MVT VT); |
| 139 | unsigned PPCMaterialize32BitInt(int64_t Imm, |
| 140 | const TargetRegisterClass *RC); |
| 141 | unsigned PPCMaterialize64BitInt(int64_t Imm, |
| 142 | const TargetRegisterClass *RC); |
Bill Schmidt | 9bc9427 | 2013-08-30 15:18:11 +0000 | [diff] [blame] | 143 | unsigned PPCMoveToIntReg(const Instruction *I, MVT VT, |
| 144 | unsigned SrcReg, bool IsSigned); |
| 145 | unsigned PPCMoveToFPReg(MVT VT, unsigned SrcReg, bool IsSigned); |
Bill Schmidt | 646cd79 | 2013-07-30 00:50:39 +0000 | [diff] [blame] | 146 | |
Bill Schmidt | 055d207 | 2013-08-26 19:42:51 +0000 | [diff] [blame] | 147 | // Call handling routines. |
| 148 | private: |
Bill Schmidt | 11addd2 | 2013-08-30 22:18:55 +0000 | [diff] [blame^] | 149 | bool processCallArgs(SmallVectorImpl<Value*> &Args, |
| 150 | SmallVectorImpl<unsigned> &ArgRegs, |
| 151 | SmallVectorImpl<MVT> &ArgVTs, |
| 152 | SmallVectorImpl<ISD::ArgFlagsTy> &ArgFlags, |
| 153 | SmallVectorImpl<unsigned> &RegArgs, |
| 154 | CallingConv::ID CC, |
| 155 | unsigned &NumBytes, |
| 156 | bool IsVarArg); |
| 157 | void finishCall(MVT RetVT, SmallVectorImpl<unsigned> &UsedRegs, |
| 158 | const Instruction *I, CallingConv::ID CC, |
| 159 | unsigned &NumBytes, bool IsVarArg); |
Bill Schmidt | 055d207 | 2013-08-26 19:42:51 +0000 | [diff] [blame] | 160 | CCAssignFn *usePPC32CCs(unsigned Flag); |
| 161 | |
Bill Schmidt | 646cd79 | 2013-07-30 00:50:39 +0000 | [diff] [blame] | 162 | private: |
| 163 | #include "PPCGenFastISel.inc" |
| 164 | |
| 165 | }; |
| 166 | |
| 167 | } // end anonymous namespace |
| 168 | |
Bill Schmidt | 055d207 | 2013-08-26 19:42:51 +0000 | [diff] [blame] | 169 | #include "PPCGenCallingConv.inc" |
| 170 | |
| 171 | // Function whose sole purpose is to kill compiler warnings |
| 172 | // stemming from unused functions included from PPCGenCallingConv.inc. |
| 173 | CCAssignFn *PPCFastISel::usePPC32CCs(unsigned Flag) { |
| 174 | if (Flag == 1) |
| 175 | return CC_PPC32_SVR4; |
| 176 | else if (Flag == 2) |
| 177 | return CC_PPC32_SVR4_ByVal; |
| 178 | else if (Flag == 3) |
| 179 | return CC_PPC32_SVR4_VarArg; |
| 180 | else |
| 181 | return RetCC_PPC; |
| 182 | } |
| 183 | |
Bill Schmidt | 3fad2bc | 2013-08-25 22:33:42 +0000 | [diff] [blame] | 184 | static Optional<PPC::Predicate> getComparePred(CmpInst::Predicate Pred) { |
| 185 | switch (Pred) { |
| 186 | // These are not representable with any single compare. |
| 187 | case CmpInst::FCMP_FALSE: |
| 188 | case CmpInst::FCMP_UEQ: |
| 189 | case CmpInst::FCMP_UGT: |
| 190 | case CmpInst::FCMP_UGE: |
| 191 | case CmpInst::FCMP_ULT: |
| 192 | case CmpInst::FCMP_ULE: |
| 193 | case CmpInst::FCMP_UNE: |
| 194 | case CmpInst::FCMP_TRUE: |
| 195 | default: |
| 196 | return Optional<PPC::Predicate>(); |
| 197 | |
| 198 | case CmpInst::FCMP_OEQ: |
| 199 | case CmpInst::ICMP_EQ: |
| 200 | return PPC::PRED_EQ; |
| 201 | |
| 202 | case CmpInst::FCMP_OGT: |
| 203 | case CmpInst::ICMP_UGT: |
| 204 | case CmpInst::ICMP_SGT: |
| 205 | return PPC::PRED_GT; |
| 206 | |
| 207 | case CmpInst::FCMP_OGE: |
| 208 | case CmpInst::ICMP_UGE: |
| 209 | case CmpInst::ICMP_SGE: |
| 210 | return PPC::PRED_GE; |
| 211 | |
| 212 | case CmpInst::FCMP_OLT: |
| 213 | case CmpInst::ICMP_ULT: |
| 214 | case CmpInst::ICMP_SLT: |
| 215 | return PPC::PRED_LT; |
| 216 | |
| 217 | case CmpInst::FCMP_OLE: |
| 218 | case CmpInst::ICMP_ULE: |
| 219 | case CmpInst::ICMP_SLE: |
| 220 | return PPC::PRED_LE; |
| 221 | |
| 222 | case CmpInst::FCMP_ONE: |
| 223 | case CmpInst::ICMP_NE: |
| 224 | return PPC::PRED_NE; |
| 225 | |
| 226 | case CmpInst::FCMP_ORD: |
| 227 | return PPC::PRED_NU; |
| 228 | |
| 229 | case CmpInst::FCMP_UNO: |
| 230 | return PPC::PRED_UN; |
| 231 | } |
| 232 | } |
| 233 | |
Bill Schmidt | 7248968 | 2013-08-30 02:29:45 +0000 | [diff] [blame] | 234 | // Determine whether the type Ty is simple enough to be handled by |
| 235 | // fast-isel, and return its equivalent machine type in VT. |
| 236 | // FIXME: Copied directly from ARM -- factor into base class? |
| 237 | bool PPCFastISel::isTypeLegal(Type *Ty, MVT &VT) { |
| 238 | EVT Evt = TLI.getValueType(Ty, true); |
| 239 | |
| 240 | // Only handle simple types. |
| 241 | if (Evt == MVT::Other || !Evt.isSimple()) return false; |
| 242 | VT = Evt.getSimpleVT(); |
| 243 | |
| 244 | // Handle all legal types, i.e. a register that will directly hold this |
| 245 | // value. |
| 246 | return TLI.isTypeLegal(VT); |
| 247 | } |
| 248 | |
| 249 | // Determine whether the type Ty is simple enough to be handled by |
| 250 | // fast-isel as a load target, and return its equivalent machine type in VT. |
| 251 | bool PPCFastISel::isLoadTypeLegal(Type *Ty, MVT &VT) { |
| 252 | if (isTypeLegal(Ty, VT)) return true; |
| 253 | |
| 254 | // If this is a type than can be sign or zero-extended to a basic operation |
| 255 | // go ahead and accept it now. |
| 256 | if (VT == MVT::i8 || VT == MVT::i16 || VT == MVT::i32) { |
| 257 | return true; |
| 258 | } |
| 259 | |
| 260 | return false; |
| 261 | } |
| 262 | |
| 263 | // Given a value Obj, create an Address object Addr that represents its |
| 264 | // address. Return false if we can't handle it. |
| 265 | bool PPCFastISel::PPCComputeAddress(const Value *Obj, Address &Addr) { |
| 266 | const User *U = NULL; |
| 267 | unsigned Opcode = Instruction::UserOp1; |
| 268 | if (const Instruction *I = dyn_cast<Instruction>(Obj)) { |
| 269 | // Don't walk into other basic blocks unless the object is an alloca from |
| 270 | // another block, otherwise it may not have a virtual register assigned. |
| 271 | if (FuncInfo.StaticAllocaMap.count(static_cast<const AllocaInst *>(Obj)) || |
| 272 | FuncInfo.MBBMap[I->getParent()] == FuncInfo.MBB) { |
| 273 | Opcode = I->getOpcode(); |
| 274 | U = I; |
| 275 | } |
| 276 | } else if (const ConstantExpr *C = dyn_cast<ConstantExpr>(Obj)) { |
| 277 | Opcode = C->getOpcode(); |
| 278 | U = C; |
| 279 | } |
| 280 | |
| 281 | switch (Opcode) { |
| 282 | default: |
| 283 | break; |
| 284 | case Instruction::BitCast: |
| 285 | // Look through bitcasts. |
| 286 | return PPCComputeAddress(U->getOperand(0), Addr); |
| 287 | case Instruction::IntToPtr: |
| 288 | // Look past no-op inttoptrs. |
| 289 | if (TLI.getValueType(U->getOperand(0)->getType()) == TLI.getPointerTy()) |
| 290 | return PPCComputeAddress(U->getOperand(0), Addr); |
| 291 | break; |
| 292 | case Instruction::PtrToInt: |
| 293 | // Look past no-op ptrtoints. |
| 294 | if (TLI.getValueType(U->getType()) == TLI.getPointerTy()) |
| 295 | return PPCComputeAddress(U->getOperand(0), Addr); |
| 296 | break; |
| 297 | case Instruction::GetElementPtr: { |
| 298 | Address SavedAddr = Addr; |
| 299 | long TmpOffset = Addr.Offset; |
| 300 | |
| 301 | // Iterate through the GEP folding the constants into offsets where |
| 302 | // we can. |
| 303 | gep_type_iterator GTI = gep_type_begin(U); |
| 304 | for (User::const_op_iterator II = U->op_begin() + 1, IE = U->op_end(); |
| 305 | II != IE; ++II, ++GTI) { |
| 306 | const Value *Op = *II; |
| 307 | if (StructType *STy = dyn_cast<StructType>(*GTI)) { |
| 308 | const StructLayout *SL = TD.getStructLayout(STy); |
| 309 | unsigned Idx = cast<ConstantInt>(Op)->getZExtValue(); |
| 310 | TmpOffset += SL->getElementOffset(Idx); |
| 311 | } else { |
| 312 | uint64_t S = TD.getTypeAllocSize(GTI.getIndexedType()); |
| 313 | for (;;) { |
| 314 | if (const ConstantInt *CI = dyn_cast<ConstantInt>(Op)) { |
| 315 | // Constant-offset addressing. |
| 316 | TmpOffset += CI->getSExtValue() * S; |
| 317 | break; |
| 318 | } |
| 319 | if (isa<AddOperator>(Op) && |
| 320 | (!isa<Instruction>(Op) || |
| 321 | FuncInfo.MBBMap[cast<Instruction>(Op)->getParent()] |
| 322 | == FuncInfo.MBB) && |
| 323 | isa<ConstantInt>(cast<AddOperator>(Op)->getOperand(1))) { |
| 324 | // An add (in the same block) with a constant operand. Fold the |
| 325 | // constant. |
| 326 | ConstantInt *CI = |
| 327 | cast<ConstantInt>(cast<AddOperator>(Op)->getOperand(1)); |
| 328 | TmpOffset += CI->getSExtValue() * S; |
| 329 | // Iterate on the other operand. |
| 330 | Op = cast<AddOperator>(Op)->getOperand(0); |
| 331 | continue; |
| 332 | } |
| 333 | // Unsupported |
| 334 | goto unsupported_gep; |
| 335 | } |
| 336 | } |
| 337 | } |
| 338 | |
| 339 | // Try to grab the base operand now. |
| 340 | Addr.Offset = TmpOffset; |
| 341 | if (PPCComputeAddress(U->getOperand(0), Addr)) return true; |
| 342 | |
| 343 | // We failed, restore everything and try the other options. |
| 344 | Addr = SavedAddr; |
| 345 | |
| 346 | unsupported_gep: |
| 347 | break; |
| 348 | } |
| 349 | case Instruction::Alloca: { |
| 350 | const AllocaInst *AI = cast<AllocaInst>(Obj); |
| 351 | DenseMap<const AllocaInst*, int>::iterator SI = |
| 352 | FuncInfo.StaticAllocaMap.find(AI); |
| 353 | if (SI != FuncInfo.StaticAllocaMap.end()) { |
| 354 | Addr.BaseType = Address::FrameIndexBase; |
| 355 | Addr.Base.FI = SI->second; |
| 356 | return true; |
| 357 | } |
| 358 | break; |
| 359 | } |
| 360 | } |
| 361 | |
| 362 | // FIXME: References to parameters fall through to the behavior |
| 363 | // below. They should be able to reference a frame index since |
| 364 | // they are stored to the stack, so we can get "ld rx, offset(r1)" |
| 365 | // instead of "addi ry, r1, offset / ld rx, 0(ry)". Obj will |
| 366 | // just contain the parameter. Try to handle this with a FI. |
| 367 | |
| 368 | // Try to get this in a register if nothing else has worked. |
| 369 | if (Addr.Base.Reg == 0) |
| 370 | Addr.Base.Reg = getRegForValue(Obj); |
| 371 | |
| 372 | // Prevent assignment of base register to X0, which is inappropriate |
| 373 | // for loads and stores alike. |
| 374 | if (Addr.Base.Reg != 0) |
| 375 | MRI.setRegClass(Addr.Base.Reg, &PPC::G8RC_and_G8RC_NOX0RegClass); |
| 376 | |
| 377 | return Addr.Base.Reg != 0; |
| 378 | } |
| 379 | |
| 380 | // Fix up some addresses that can't be used directly. For example, if |
| 381 | // an offset won't fit in an instruction field, we may need to move it |
| 382 | // into an index register. |
| 383 | void PPCFastISel::PPCSimplifyAddress(Address &Addr, MVT VT, bool &UseOffset, |
| 384 | unsigned &IndexReg) { |
| 385 | |
| 386 | // Check whether the offset fits in the instruction field. |
| 387 | if (!isInt<16>(Addr.Offset)) |
| 388 | UseOffset = false; |
| 389 | |
| 390 | // If this is a stack pointer and the offset needs to be simplified then |
| 391 | // put the alloca address into a register, set the base type back to |
| 392 | // register and continue. This should almost never happen. |
| 393 | if (!UseOffset && Addr.BaseType == Address::FrameIndexBase) { |
| 394 | unsigned ResultReg = createResultReg(&PPC::G8RC_and_G8RC_NOX0RegClass); |
| 395 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(PPC::ADDI8), |
| 396 | ResultReg).addFrameIndex(Addr.Base.FI).addImm(0); |
| 397 | Addr.Base.Reg = ResultReg; |
| 398 | Addr.BaseType = Address::RegBase; |
| 399 | } |
| 400 | |
| 401 | if (!UseOffset) { |
| 402 | IntegerType *OffsetTy = ((VT == MVT::i32) ? Type::getInt32Ty(*Context) |
| 403 | : Type::getInt64Ty(*Context)); |
| 404 | const ConstantInt *Offset = |
| 405 | ConstantInt::getSigned(OffsetTy, (int64_t)(Addr.Offset)); |
| 406 | IndexReg = PPCMaterializeInt(Offset, MVT::i64); |
| 407 | assert(IndexReg && "Unexpected error in PPCMaterializeInt!"); |
| 408 | } |
| 409 | } |
| 410 | |
| 411 | // Emit a load instruction if possible, returning true if we succeeded, |
| 412 | // otherwise false. See commentary below for how the register class of |
| 413 | // the load is determined. |
| 414 | bool PPCFastISel::PPCEmitLoad(MVT VT, unsigned &ResultReg, Address &Addr, |
| 415 | const TargetRegisterClass *RC, |
| 416 | bool IsZExt, unsigned FP64LoadOpc) { |
| 417 | unsigned Opc; |
| 418 | bool UseOffset = true; |
| 419 | |
| 420 | // If ResultReg is given, it determines the register class of the load. |
| 421 | // Otherwise, RC is the register class to use. If the result of the |
| 422 | // load isn't anticipated in this block, both may be zero, in which |
| 423 | // case we must make a conservative guess. In particular, don't assign |
| 424 | // R0 or X0 to the result register, as the result may be used in a load, |
| 425 | // store, add-immediate, or isel that won't permit this. (Though |
| 426 | // perhaps the spill and reload of live-exit values would handle this?) |
| 427 | const TargetRegisterClass *UseRC = |
| 428 | (ResultReg ? MRI.getRegClass(ResultReg) : |
| 429 | (RC ? RC : |
| 430 | (VT == MVT::f64 ? &PPC::F8RCRegClass : |
| 431 | (VT == MVT::f32 ? &PPC::F4RCRegClass : |
| 432 | (VT == MVT::i64 ? &PPC::G8RC_and_G8RC_NOX0RegClass : |
| 433 | &PPC::GPRC_and_GPRC_NOR0RegClass))))); |
| 434 | |
| 435 | bool Is32BitInt = UseRC->hasSuperClassEq(&PPC::GPRCRegClass); |
| 436 | |
| 437 | switch (VT.SimpleTy) { |
| 438 | default: // e.g., vector types not handled |
| 439 | return false; |
| 440 | case MVT::i8: |
| 441 | Opc = Is32BitInt ? PPC::LBZ : PPC::LBZ8; |
| 442 | break; |
| 443 | case MVT::i16: |
| 444 | Opc = (IsZExt ? |
| 445 | (Is32BitInt ? PPC::LHZ : PPC::LHZ8) : |
| 446 | (Is32BitInt ? PPC::LHA : PPC::LHA8)); |
| 447 | break; |
| 448 | case MVT::i32: |
| 449 | Opc = (IsZExt ? |
| 450 | (Is32BitInt ? PPC::LWZ : PPC::LWZ8) : |
| 451 | (Is32BitInt ? PPC::LWA_32 : PPC::LWA)); |
| 452 | if ((Opc == PPC::LWA || Opc == PPC::LWA_32) && ((Addr.Offset & 3) != 0)) |
| 453 | UseOffset = false; |
| 454 | break; |
| 455 | case MVT::i64: |
| 456 | Opc = PPC::LD; |
| 457 | assert(UseRC->hasSuperClassEq(&PPC::G8RCRegClass) && |
| 458 | "64-bit load with 32-bit target??"); |
| 459 | UseOffset = ((Addr.Offset & 3) == 0); |
| 460 | break; |
| 461 | case MVT::f32: |
| 462 | Opc = PPC::LFS; |
| 463 | break; |
| 464 | case MVT::f64: |
| 465 | Opc = FP64LoadOpc; |
| 466 | break; |
| 467 | } |
| 468 | |
| 469 | // If necessary, materialize the offset into a register and use |
| 470 | // the indexed form. Also handle stack pointers with special needs. |
| 471 | unsigned IndexReg = 0; |
| 472 | PPCSimplifyAddress(Addr, VT, UseOffset, IndexReg); |
| 473 | if (ResultReg == 0) |
| 474 | ResultReg = createResultReg(UseRC); |
| 475 | |
| 476 | // Note: If we still have a frame index here, we know the offset is |
| 477 | // in range, as otherwise PPCSimplifyAddress would have converted it |
| 478 | // into a RegBase. |
| 479 | if (Addr.BaseType == Address::FrameIndexBase) { |
| 480 | |
| 481 | MachineMemOperand *MMO = |
| 482 | FuncInfo.MF->getMachineMemOperand( |
| 483 | MachinePointerInfo::getFixedStack(Addr.Base.FI, Addr.Offset), |
| 484 | MachineMemOperand::MOLoad, MFI.getObjectSize(Addr.Base.FI), |
| 485 | MFI.getObjectAlignment(Addr.Base.FI)); |
| 486 | |
| 487 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(Opc), ResultReg) |
| 488 | .addImm(Addr.Offset).addFrameIndex(Addr.Base.FI).addMemOperand(MMO); |
| 489 | |
| 490 | // Base reg with offset in range. |
| 491 | } else if (UseOffset) { |
| 492 | |
| 493 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(Opc), ResultReg) |
| 494 | .addImm(Addr.Offset).addReg(Addr.Base.Reg); |
| 495 | |
| 496 | // Indexed form. |
| 497 | } else { |
| 498 | // Get the RR opcode corresponding to the RI one. FIXME: It would be |
| 499 | // preferable to use the ImmToIdxMap from PPCRegisterInfo.cpp, but it |
| 500 | // is hard to get at. |
| 501 | switch (Opc) { |
| 502 | default: llvm_unreachable("Unexpected opcode!"); |
| 503 | case PPC::LBZ: Opc = PPC::LBZX; break; |
| 504 | case PPC::LBZ8: Opc = PPC::LBZX8; break; |
| 505 | case PPC::LHZ: Opc = PPC::LHZX; break; |
| 506 | case PPC::LHZ8: Opc = PPC::LHZX8; break; |
| 507 | case PPC::LHA: Opc = PPC::LHAX; break; |
| 508 | case PPC::LHA8: Opc = PPC::LHAX8; break; |
| 509 | case PPC::LWZ: Opc = PPC::LWZX; break; |
| 510 | case PPC::LWZ8: Opc = PPC::LWZX8; break; |
| 511 | case PPC::LWA: Opc = PPC::LWAX; break; |
| 512 | case PPC::LWA_32: Opc = PPC::LWAX_32; break; |
| 513 | case PPC::LD: Opc = PPC::LDX; break; |
| 514 | case PPC::LFS: Opc = PPC::LFSX; break; |
| 515 | case PPC::LFD: Opc = PPC::LFDX; break; |
| 516 | } |
| 517 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(Opc), ResultReg) |
| 518 | .addReg(Addr.Base.Reg).addReg(IndexReg); |
| 519 | } |
| 520 | |
| 521 | return true; |
| 522 | } |
| 523 | |
| 524 | // Attempt to fast-select a load instruction. |
| 525 | bool PPCFastISel::SelectLoad(const Instruction *I) { |
| 526 | // FIXME: No atomic loads are supported. |
| 527 | if (cast<LoadInst>(I)->isAtomic()) |
| 528 | return false; |
| 529 | |
| 530 | // Verify we have a legal type before going any further. |
| 531 | MVT VT; |
| 532 | if (!isLoadTypeLegal(I->getType(), VT)) |
| 533 | return false; |
| 534 | |
| 535 | // See if we can handle this address. |
| 536 | Address Addr; |
| 537 | if (!PPCComputeAddress(I->getOperand(0), Addr)) |
| 538 | return false; |
| 539 | |
| 540 | // Look at the currently assigned register for this instruction |
| 541 | // to determine the required register class. This is necessary |
| 542 | // to constrain RA from using R0/X0 when this is not legal. |
| 543 | unsigned AssignedReg = FuncInfo.ValueMap[I]; |
| 544 | const TargetRegisterClass *RC = |
| 545 | AssignedReg ? MRI.getRegClass(AssignedReg) : 0; |
| 546 | |
| 547 | unsigned ResultReg = 0; |
| 548 | if (!PPCEmitLoad(VT, ResultReg, Addr, RC)) |
| 549 | return false; |
| 550 | UpdateValueMap(I, ResultReg); |
| 551 | return true; |
| 552 | } |
| 553 | |
| 554 | // Emit a store instruction to store SrcReg at Addr. |
| 555 | bool PPCFastISel::PPCEmitStore(MVT VT, unsigned SrcReg, Address &Addr) { |
| 556 | assert(SrcReg && "Nothing to store!"); |
| 557 | unsigned Opc; |
| 558 | bool UseOffset = true; |
| 559 | |
| 560 | const TargetRegisterClass *RC = MRI.getRegClass(SrcReg); |
| 561 | bool Is32BitInt = RC->hasSuperClassEq(&PPC::GPRCRegClass); |
| 562 | |
| 563 | switch (VT.SimpleTy) { |
| 564 | default: // e.g., vector types not handled |
| 565 | return false; |
| 566 | case MVT::i8: |
| 567 | Opc = Is32BitInt ? PPC::STB : PPC::STB8; |
| 568 | break; |
| 569 | case MVT::i16: |
| 570 | Opc = Is32BitInt ? PPC::STH : PPC::STH8; |
| 571 | break; |
| 572 | case MVT::i32: |
| 573 | assert(Is32BitInt && "Not GPRC for i32??"); |
| 574 | Opc = PPC::STW; |
| 575 | break; |
| 576 | case MVT::i64: |
| 577 | Opc = PPC::STD; |
| 578 | UseOffset = ((Addr.Offset & 3) == 0); |
| 579 | break; |
| 580 | case MVT::f32: |
| 581 | Opc = PPC::STFS; |
| 582 | break; |
| 583 | case MVT::f64: |
| 584 | Opc = PPC::STFD; |
| 585 | break; |
| 586 | } |
| 587 | |
| 588 | // If necessary, materialize the offset into a register and use |
| 589 | // the indexed form. Also handle stack pointers with special needs. |
| 590 | unsigned IndexReg = 0; |
| 591 | PPCSimplifyAddress(Addr, VT, UseOffset, IndexReg); |
| 592 | |
| 593 | // Note: If we still have a frame index here, we know the offset is |
| 594 | // in range, as otherwise PPCSimplifyAddress would have converted it |
| 595 | // into a RegBase. |
| 596 | if (Addr.BaseType == Address::FrameIndexBase) { |
| 597 | MachineMemOperand *MMO = |
| 598 | FuncInfo.MF->getMachineMemOperand( |
| 599 | MachinePointerInfo::getFixedStack(Addr.Base.FI, Addr.Offset), |
| 600 | MachineMemOperand::MOStore, MFI.getObjectSize(Addr.Base.FI), |
| 601 | MFI.getObjectAlignment(Addr.Base.FI)); |
| 602 | |
| 603 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(Opc)).addReg(SrcReg) |
| 604 | .addImm(Addr.Offset).addFrameIndex(Addr.Base.FI).addMemOperand(MMO); |
| 605 | |
| 606 | // Base reg with offset in range. |
Bill Schmidt | 40433e5 | 2013-08-30 03:07:11 +0000 | [diff] [blame] | 607 | } else if (UseOffset) |
Bill Schmidt | 7248968 | 2013-08-30 02:29:45 +0000 | [diff] [blame] | 608 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(Opc)) |
| 609 | .addReg(SrcReg).addImm(Addr.Offset).addReg(Addr.Base.Reg); |
| 610 | |
| 611 | // Indexed form. |
Bill Schmidt | 40433e5 | 2013-08-30 03:07:11 +0000 | [diff] [blame] | 612 | else { |
Bill Schmidt | 7248968 | 2013-08-30 02:29:45 +0000 | [diff] [blame] | 613 | // Get the RR opcode corresponding to the RI one. FIXME: It would be |
| 614 | // preferable to use the ImmToIdxMap from PPCRegisterInfo.cpp, but it |
| 615 | // is hard to get at. |
| 616 | switch (Opc) { |
| 617 | default: llvm_unreachable("Unexpected opcode!"); |
| 618 | case PPC::STB: Opc = PPC::STBX; break; |
| 619 | case PPC::STH : Opc = PPC::STHX; break; |
| 620 | case PPC::STW : Opc = PPC::STWX; break; |
| 621 | case PPC::STB8: Opc = PPC::STBX8; break; |
| 622 | case PPC::STH8: Opc = PPC::STHX8; break; |
| 623 | case PPC::STW8: Opc = PPC::STWX8; break; |
| 624 | case PPC::STD: Opc = PPC::STDX; break; |
| 625 | case PPC::STFS: Opc = PPC::STFSX; break; |
| 626 | case PPC::STFD: Opc = PPC::STFDX; break; |
| 627 | } |
| 628 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(Opc)) |
| 629 | .addReg(SrcReg).addReg(Addr.Base.Reg).addReg(IndexReg); |
| 630 | } |
| 631 | |
| 632 | return true; |
| 633 | } |
| 634 | |
| 635 | // Attempt to fast-select a store instruction. |
| 636 | bool PPCFastISel::SelectStore(const Instruction *I) { |
| 637 | Value *Op0 = I->getOperand(0); |
| 638 | unsigned SrcReg = 0; |
| 639 | |
| 640 | // FIXME: No atomics loads are supported. |
| 641 | if (cast<StoreInst>(I)->isAtomic()) |
| 642 | return false; |
| 643 | |
| 644 | // Verify we have a legal type before going any further. |
| 645 | MVT VT; |
| 646 | if (!isLoadTypeLegal(Op0->getType(), VT)) |
| 647 | return false; |
| 648 | |
| 649 | // Get the value to be stored into a register. |
| 650 | SrcReg = getRegForValue(Op0); |
| 651 | if (SrcReg == 0) |
| 652 | return false; |
| 653 | |
| 654 | // See if we can handle this address. |
| 655 | Address Addr; |
| 656 | if (!PPCComputeAddress(I->getOperand(1), Addr)) |
| 657 | return false; |
| 658 | |
| 659 | if (!PPCEmitStore(VT, SrcReg, Addr)) |
| 660 | return false; |
| 661 | |
| 662 | return true; |
| 663 | } |
| 664 | |
Bill Schmidt | 3fad2bc | 2013-08-25 22:33:42 +0000 | [diff] [blame] | 665 | // Attempt to fast-select a branch instruction. |
| 666 | bool PPCFastISel::SelectBranch(const Instruction *I) { |
| 667 | const BranchInst *BI = cast<BranchInst>(I); |
| 668 | MachineBasicBlock *BrBB = FuncInfo.MBB; |
| 669 | MachineBasicBlock *TBB = FuncInfo.MBBMap[BI->getSuccessor(0)]; |
| 670 | MachineBasicBlock *FBB = FuncInfo.MBBMap[BI->getSuccessor(1)]; |
| 671 | |
| 672 | // For now, just try the simplest case where it's fed by a compare. |
| 673 | if (const CmpInst *CI = dyn_cast<CmpInst>(BI->getCondition())) { |
| 674 | Optional<PPC::Predicate> OptPPCPred = getComparePred(CI->getPredicate()); |
| 675 | if (!OptPPCPred) |
| 676 | return false; |
| 677 | |
| 678 | PPC::Predicate PPCPred = OptPPCPred.getValue(); |
| 679 | |
| 680 | // Take advantage of fall-through opportunities. |
| 681 | if (FuncInfo.MBB->isLayoutSuccessor(TBB)) { |
| 682 | std::swap(TBB, FBB); |
| 683 | PPCPred = PPC::InvertPredicate(PPCPred); |
| 684 | } |
| 685 | |
| 686 | unsigned CondReg = createResultReg(&PPC::CRRCRegClass); |
| 687 | |
| 688 | if (!PPCEmitCmp(CI->getOperand(0), CI->getOperand(1), CI->isUnsigned(), |
| 689 | CondReg)) |
| 690 | return false; |
| 691 | |
| 692 | BuildMI(*BrBB, FuncInfo.InsertPt, DL, TII.get(PPC::BCC)) |
| 693 | .addImm(PPCPred).addReg(CondReg).addMBB(TBB); |
| 694 | FastEmitBranch(FBB, DL); |
| 695 | FuncInfo.MBB->addSuccessor(TBB); |
| 696 | return true; |
| 697 | |
| 698 | } else if (const ConstantInt *CI = |
| 699 | dyn_cast<ConstantInt>(BI->getCondition())) { |
| 700 | uint64_t Imm = CI->getZExtValue(); |
| 701 | MachineBasicBlock *Target = (Imm == 0) ? FBB : TBB; |
| 702 | FastEmitBranch(Target, DL); |
| 703 | return true; |
| 704 | } |
| 705 | |
| 706 | // FIXME: ARM looks for a case where the block containing the compare |
| 707 | // has been split from the block containing the branch. If this happens, |
| 708 | // there is a vreg available containing the result of the compare. I'm |
| 709 | // not sure we can do much, as we've lost the predicate information with |
| 710 | // the compare instruction -- we have a 4-bit CR but don't know which bit |
| 711 | // to test here. |
| 712 | return false; |
| 713 | } |
| 714 | |
| 715 | // Attempt to emit a compare of the two source values. Signed and unsigned |
| 716 | // comparisons are supported. Return false if we can't handle it. |
| 717 | bool PPCFastISel::PPCEmitCmp(const Value *SrcValue1, const Value *SrcValue2, |
| 718 | bool IsZExt, unsigned DestReg) { |
| 719 | Type *Ty = SrcValue1->getType(); |
| 720 | EVT SrcEVT = TLI.getValueType(Ty, true); |
| 721 | if (!SrcEVT.isSimple()) |
| 722 | return false; |
| 723 | MVT SrcVT = SrcEVT.getSimpleVT(); |
| 724 | |
| 725 | // See if operand 2 is an immediate encodeable in the compare. |
| 726 | // FIXME: Operands are not in canonical order at -O0, so an immediate |
| 727 | // operand in position 1 is a lost opportunity for now. We are |
| 728 | // similar to ARM in this regard. |
| 729 | long Imm = 0; |
| 730 | bool UseImm = false; |
| 731 | |
| 732 | // Only 16-bit integer constants can be represented in compares for |
| 733 | // PowerPC. Others will be materialized into a register. |
| 734 | if (const ConstantInt *ConstInt = dyn_cast<ConstantInt>(SrcValue2)) { |
| 735 | if (SrcVT == MVT::i64 || SrcVT == MVT::i32 || SrcVT == MVT::i16 || |
| 736 | SrcVT == MVT::i8 || SrcVT == MVT::i1) { |
| 737 | const APInt &CIVal = ConstInt->getValue(); |
| 738 | Imm = (IsZExt) ? (long)CIVal.getZExtValue() : (long)CIVal.getSExtValue(); |
| 739 | if ((IsZExt && isUInt<16>(Imm)) || (!IsZExt && isInt<16>(Imm))) |
| 740 | UseImm = true; |
| 741 | } |
| 742 | } |
| 743 | |
| 744 | unsigned CmpOpc; |
| 745 | bool NeedsExt = false; |
| 746 | switch (SrcVT.SimpleTy) { |
| 747 | default: return false; |
| 748 | case MVT::f32: |
| 749 | CmpOpc = PPC::FCMPUS; |
| 750 | break; |
| 751 | case MVT::f64: |
| 752 | CmpOpc = PPC::FCMPUD; |
| 753 | break; |
| 754 | case MVT::i1: |
| 755 | case MVT::i8: |
| 756 | case MVT::i16: |
| 757 | NeedsExt = true; |
| 758 | // Intentional fall-through. |
| 759 | case MVT::i32: |
| 760 | if (!UseImm) |
| 761 | CmpOpc = IsZExt ? PPC::CMPLW : PPC::CMPW; |
| 762 | else |
| 763 | CmpOpc = IsZExt ? PPC::CMPLWI : PPC::CMPWI; |
| 764 | break; |
| 765 | case MVT::i64: |
| 766 | if (!UseImm) |
| 767 | CmpOpc = IsZExt ? PPC::CMPLD : PPC::CMPD; |
| 768 | else |
| 769 | CmpOpc = IsZExt ? PPC::CMPLDI : PPC::CMPDI; |
| 770 | break; |
| 771 | } |
| 772 | |
| 773 | unsigned SrcReg1 = getRegForValue(SrcValue1); |
| 774 | if (SrcReg1 == 0) |
| 775 | return false; |
| 776 | |
| 777 | unsigned SrcReg2 = 0; |
| 778 | if (!UseImm) { |
| 779 | SrcReg2 = getRegForValue(SrcValue2); |
| 780 | if (SrcReg2 == 0) |
| 781 | return false; |
| 782 | } |
| 783 | |
| 784 | if (NeedsExt) { |
| 785 | unsigned ExtReg = createResultReg(&PPC::GPRCRegClass); |
| 786 | if (!PPCEmitIntExt(SrcVT, SrcReg1, MVT::i32, ExtReg, IsZExt)) |
| 787 | return false; |
| 788 | SrcReg1 = ExtReg; |
| 789 | |
| 790 | if (!UseImm) { |
| 791 | unsigned ExtReg = createResultReg(&PPC::GPRCRegClass); |
| 792 | if (!PPCEmitIntExt(SrcVT, SrcReg2, MVT::i32, ExtReg, IsZExt)) |
| 793 | return false; |
| 794 | SrcReg2 = ExtReg; |
| 795 | } |
| 796 | } |
| 797 | |
| 798 | if (!UseImm) |
| 799 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(CmpOpc), DestReg) |
| 800 | .addReg(SrcReg1).addReg(SrcReg2); |
| 801 | else |
| 802 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(CmpOpc), DestReg) |
| 803 | .addReg(SrcReg1).addImm(Imm); |
| 804 | |
| 805 | return true; |
| 806 | } |
| 807 | |
Bill Schmidt | 9bc9427 | 2013-08-30 15:18:11 +0000 | [diff] [blame] | 808 | // Attempt to fast-select a floating-point extend instruction. |
| 809 | bool PPCFastISel::SelectFPExt(const Instruction *I) { |
| 810 | Value *Src = I->getOperand(0); |
| 811 | EVT SrcVT = TLI.getValueType(Src->getType(), true); |
| 812 | EVT DestVT = TLI.getValueType(I->getType(), true); |
| 813 | |
| 814 | if (SrcVT != MVT::f32 || DestVT != MVT::f64) |
| 815 | return false; |
| 816 | |
| 817 | unsigned SrcReg = getRegForValue(Src); |
| 818 | if (!SrcReg) |
| 819 | return false; |
| 820 | |
| 821 | // No code is generated for a FP extend. |
| 822 | UpdateValueMap(I, SrcReg); |
| 823 | return true; |
| 824 | } |
| 825 | |
| 826 | // Attempt to fast-select a floating-point truncate instruction. |
| 827 | bool PPCFastISel::SelectFPTrunc(const Instruction *I) { |
| 828 | Value *Src = I->getOperand(0); |
| 829 | EVT SrcVT = TLI.getValueType(Src->getType(), true); |
| 830 | EVT DestVT = TLI.getValueType(I->getType(), true); |
| 831 | |
| 832 | if (SrcVT != MVT::f64 || DestVT != MVT::f32) |
| 833 | return false; |
| 834 | |
| 835 | unsigned SrcReg = getRegForValue(Src); |
| 836 | if (!SrcReg) |
| 837 | return false; |
| 838 | |
| 839 | // Round the result to single precision. |
| 840 | unsigned DestReg = createResultReg(&PPC::F4RCRegClass); |
| 841 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(PPC::FRSP), DestReg) |
| 842 | .addReg(SrcReg); |
| 843 | |
| 844 | UpdateValueMap(I, DestReg); |
| 845 | return true; |
| 846 | } |
| 847 | |
| 848 | // Move an i32 or i64 value in a GPR to an f64 value in an FPR. |
| 849 | // FIXME: When direct register moves are implemented (see PowerISA 2.08), |
| 850 | // those should be used instead of moving via a stack slot when the |
| 851 | // subtarget permits. |
| 852 | // FIXME: The code here is sloppy for the 4-byte case. Can use a 4-byte |
| 853 | // stack slot and 4-byte store/load sequence. Or just sext the 4-byte |
| 854 | // case to 8 bytes which produces tighter code but wastes stack space. |
| 855 | unsigned PPCFastISel::PPCMoveToFPReg(MVT SrcVT, unsigned SrcReg, |
| 856 | bool IsSigned) { |
| 857 | |
| 858 | // If necessary, extend 32-bit int to 64-bit. |
| 859 | if (SrcVT == MVT::i32) { |
| 860 | unsigned TmpReg = createResultReg(&PPC::G8RCRegClass); |
| 861 | if (!PPCEmitIntExt(MVT::i32, SrcReg, MVT::i64, TmpReg, !IsSigned)) |
| 862 | return 0; |
| 863 | SrcReg = TmpReg; |
| 864 | } |
| 865 | |
| 866 | // Get a stack slot 8 bytes wide, aligned on an 8-byte boundary. |
| 867 | Address Addr; |
| 868 | Addr.BaseType = Address::FrameIndexBase; |
| 869 | Addr.Base.FI = MFI.CreateStackObject(8, 8, false); |
| 870 | |
| 871 | // Store the value from the GPR. |
| 872 | if (!PPCEmitStore(MVT::i64, SrcReg, Addr)) |
| 873 | return 0; |
| 874 | |
| 875 | // Load the integer value into an FPR. The kind of load used depends |
| 876 | // on a number of conditions. |
| 877 | unsigned LoadOpc = PPC::LFD; |
| 878 | |
| 879 | if (SrcVT == MVT::i32) { |
| 880 | Addr.Offset = 4; |
| 881 | if (!IsSigned) |
| 882 | LoadOpc = PPC::LFIWZX; |
| 883 | else if (PPCSubTarget.hasLFIWAX()) |
| 884 | LoadOpc = PPC::LFIWAX; |
| 885 | } |
| 886 | |
| 887 | const TargetRegisterClass *RC = &PPC::F8RCRegClass; |
| 888 | unsigned ResultReg = 0; |
| 889 | if (!PPCEmitLoad(MVT::f64, ResultReg, Addr, RC, !IsSigned, LoadOpc)) |
| 890 | return 0; |
| 891 | |
| 892 | return ResultReg; |
| 893 | } |
| 894 | |
| 895 | // Attempt to fast-select an integer-to-floating-point conversion. |
| 896 | bool PPCFastISel::SelectIToFP(const Instruction *I, bool IsSigned) { |
| 897 | MVT DstVT; |
| 898 | Type *DstTy = I->getType(); |
| 899 | if (!isTypeLegal(DstTy, DstVT)) |
| 900 | return false; |
| 901 | |
| 902 | if (DstVT != MVT::f32 && DstVT != MVT::f64) |
| 903 | return false; |
| 904 | |
| 905 | Value *Src = I->getOperand(0); |
| 906 | EVT SrcEVT = TLI.getValueType(Src->getType(), true); |
| 907 | if (!SrcEVT.isSimple()) |
| 908 | return false; |
| 909 | |
| 910 | MVT SrcVT = SrcEVT.getSimpleVT(); |
| 911 | |
| 912 | if (SrcVT != MVT::i8 && SrcVT != MVT::i16 && |
| 913 | SrcVT != MVT::i32 && SrcVT != MVT::i64) |
| 914 | return false; |
| 915 | |
| 916 | unsigned SrcReg = getRegForValue(Src); |
| 917 | if (SrcReg == 0) |
| 918 | return false; |
| 919 | |
| 920 | // We can only lower an unsigned convert if we have the newer |
| 921 | // floating-point conversion operations. |
| 922 | if (!IsSigned && !PPCSubTarget.hasFPCVT()) |
| 923 | return false; |
| 924 | |
| 925 | // FIXME: For now we require the newer floating-point conversion operations |
| 926 | // (which are present only on P7 and A2 server models) when converting |
| 927 | // to single-precision float. Otherwise we have to generate a lot of |
| 928 | // fiddly code to avoid double rounding. If necessary, the fiddly code |
| 929 | // can be found in PPCTargetLowering::LowerINT_TO_FP(). |
| 930 | if (DstVT == MVT::f32 && !PPCSubTarget.hasFPCVT()) |
| 931 | return false; |
| 932 | |
| 933 | // Extend the input if necessary. |
| 934 | if (SrcVT == MVT::i8 || SrcVT == MVT::i16) { |
| 935 | unsigned TmpReg = createResultReg(&PPC::G8RCRegClass); |
| 936 | if (!PPCEmitIntExt(SrcVT, SrcReg, MVT::i64, TmpReg, !IsSigned)) |
| 937 | return false; |
| 938 | SrcVT = MVT::i64; |
| 939 | SrcReg = TmpReg; |
| 940 | } |
| 941 | |
| 942 | // Move the integer value to an FPR. |
| 943 | unsigned FPReg = PPCMoveToFPReg(SrcVT, SrcReg, IsSigned); |
| 944 | if (FPReg == 0) |
| 945 | return false; |
| 946 | |
| 947 | // Determine the opcode for the conversion. |
| 948 | const TargetRegisterClass *RC = &PPC::F8RCRegClass; |
| 949 | unsigned DestReg = createResultReg(RC); |
| 950 | unsigned Opc; |
| 951 | |
| 952 | if (DstVT == MVT::f32) |
| 953 | Opc = IsSigned ? PPC::FCFIDS : PPC::FCFIDUS; |
| 954 | else |
| 955 | Opc = IsSigned ? PPC::FCFID : PPC::FCFIDU; |
| 956 | |
| 957 | // Generate the convert. |
| 958 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(Opc), DestReg) |
| 959 | .addReg(FPReg); |
| 960 | |
| 961 | UpdateValueMap(I, DestReg); |
| 962 | return true; |
| 963 | } |
| 964 | |
| 965 | // Move the floating-point value in SrcReg into an integer destination |
| 966 | // register, and return the register (or zero if we can't handle it). |
| 967 | // FIXME: When direct register moves are implemented (see PowerISA 2.08), |
| 968 | // those should be used instead of moving via a stack slot when the |
| 969 | // subtarget permits. |
| 970 | unsigned PPCFastISel::PPCMoveToIntReg(const Instruction *I, MVT VT, |
| 971 | unsigned SrcReg, bool IsSigned) { |
| 972 | // Get a stack slot 8 bytes wide, aligned on an 8-byte boundary. |
| 973 | // Note that if have STFIWX available, we could use a 4-byte stack |
| 974 | // slot for i32, but this being fast-isel we'll just go with the |
| 975 | // easiest code gen possible. |
| 976 | Address Addr; |
| 977 | Addr.BaseType = Address::FrameIndexBase; |
| 978 | Addr.Base.FI = MFI.CreateStackObject(8, 8, false); |
| 979 | |
| 980 | // Store the value from the FPR. |
| 981 | if (!PPCEmitStore(MVT::f64, SrcReg, Addr)) |
| 982 | return 0; |
| 983 | |
| 984 | // Reload it into a GPR. If we want an i32, modify the address |
| 985 | // to have a 4-byte offset so we load from the right place. |
| 986 | if (VT == MVT::i32) |
| 987 | Addr.Offset = 4; |
| 988 | |
| 989 | // Look at the currently assigned register for this instruction |
| 990 | // to determine the required register class. |
| 991 | unsigned AssignedReg = FuncInfo.ValueMap[I]; |
| 992 | const TargetRegisterClass *RC = |
| 993 | AssignedReg ? MRI.getRegClass(AssignedReg) : 0; |
| 994 | |
| 995 | unsigned ResultReg = 0; |
| 996 | if (!PPCEmitLoad(VT, ResultReg, Addr, RC, !IsSigned)) |
| 997 | return 0; |
| 998 | |
| 999 | return ResultReg; |
| 1000 | } |
| 1001 | |
| 1002 | // Attempt to fast-select a floating-point-to-integer conversion. |
| 1003 | bool PPCFastISel::SelectFPToI(const Instruction *I, bool IsSigned) { |
| 1004 | MVT DstVT, SrcVT; |
| 1005 | Type *DstTy = I->getType(); |
| 1006 | if (!isTypeLegal(DstTy, DstVT)) |
| 1007 | return false; |
| 1008 | |
| 1009 | if (DstVT != MVT::i32 && DstVT != MVT::i64) |
| 1010 | return false; |
| 1011 | |
| 1012 | Value *Src = I->getOperand(0); |
| 1013 | Type *SrcTy = Src->getType(); |
| 1014 | if (!isTypeLegal(SrcTy, SrcVT)) |
| 1015 | return false; |
| 1016 | |
| 1017 | if (SrcVT != MVT::f32 && SrcVT != MVT::f64) |
| 1018 | return false; |
| 1019 | |
| 1020 | unsigned SrcReg = getRegForValue(Src); |
| 1021 | if (SrcReg == 0) |
| 1022 | return false; |
| 1023 | |
| 1024 | // Convert f32 to f64 if necessary. This is just a meaningless copy |
| 1025 | // to get the register class right. COPY_TO_REGCLASS is needed since |
| 1026 | // a COPY from F4RC to F8RC is converted to a F4RC-F4RC copy downstream. |
| 1027 | const TargetRegisterClass *InRC = MRI.getRegClass(SrcReg); |
| 1028 | if (InRC == &PPC::F4RCRegClass) { |
| 1029 | unsigned TmpReg = createResultReg(&PPC::F8RCRegClass); |
| 1030 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, |
| 1031 | TII.get(TargetOpcode::COPY_TO_REGCLASS), TmpReg) |
| 1032 | .addReg(SrcReg).addImm(PPC::F8RCRegClassID); |
| 1033 | SrcReg = TmpReg; |
| 1034 | } |
| 1035 | |
| 1036 | // Determine the opcode for the conversion, which takes place |
| 1037 | // entirely within FPRs. |
| 1038 | unsigned DestReg = createResultReg(&PPC::F8RCRegClass); |
| 1039 | unsigned Opc; |
| 1040 | |
| 1041 | if (DstVT == MVT::i32) |
| 1042 | if (IsSigned) |
| 1043 | Opc = PPC::FCTIWZ; |
| 1044 | else |
| 1045 | Opc = PPCSubTarget.hasFPCVT() ? PPC::FCTIWUZ : PPC::FCTIDZ; |
| 1046 | else |
| 1047 | Opc = IsSigned ? PPC::FCTIDZ : PPC::FCTIDUZ; |
| 1048 | |
| 1049 | // Generate the convert. |
| 1050 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(Opc), DestReg) |
| 1051 | .addReg(SrcReg); |
| 1052 | |
| 1053 | // Now move the integer value from a float register to an integer register. |
| 1054 | unsigned IntReg = PPCMoveToIntReg(I, DstVT, DestReg, IsSigned); |
| 1055 | if (IntReg == 0) |
| 1056 | return false; |
| 1057 | |
| 1058 | UpdateValueMap(I, IntReg); |
| 1059 | return true; |
| 1060 | } |
| 1061 | |
Bill Schmidt | 7248968 | 2013-08-30 02:29:45 +0000 | [diff] [blame] | 1062 | // Attempt to fast-select a binary integer operation that isn't already |
| 1063 | // handled automatically. |
| 1064 | bool PPCFastISel::SelectBinaryIntOp(const Instruction *I, unsigned ISDOpcode) { |
| 1065 | EVT DestVT = TLI.getValueType(I->getType(), true); |
| 1066 | |
| 1067 | // We can get here in the case when we have a binary operation on a non-legal |
| 1068 | // type and the target independent selector doesn't know how to handle it. |
| 1069 | if (DestVT != MVT::i16 && DestVT != MVT::i8) |
| 1070 | return false; |
| 1071 | |
| 1072 | // Look at the currently assigned register for this instruction |
| 1073 | // to determine the required register class. If there is no register, |
| 1074 | // make a conservative choice (don't assign R0). |
| 1075 | unsigned AssignedReg = FuncInfo.ValueMap[I]; |
| 1076 | const TargetRegisterClass *RC = |
| 1077 | (AssignedReg ? MRI.getRegClass(AssignedReg) : |
| 1078 | &PPC::GPRC_and_GPRC_NOR0RegClass); |
| 1079 | bool IsGPRC = RC->hasSuperClassEq(&PPC::GPRCRegClass); |
| 1080 | |
| 1081 | unsigned Opc; |
| 1082 | switch (ISDOpcode) { |
| 1083 | default: return false; |
| 1084 | case ISD::ADD: |
| 1085 | Opc = IsGPRC ? PPC::ADD4 : PPC::ADD8; |
| 1086 | break; |
| 1087 | case ISD::OR: |
| 1088 | Opc = IsGPRC ? PPC::OR : PPC::OR8; |
| 1089 | break; |
| 1090 | case ISD::SUB: |
| 1091 | Opc = IsGPRC ? PPC::SUBF : PPC::SUBF8; |
| 1092 | break; |
| 1093 | } |
| 1094 | |
| 1095 | unsigned ResultReg = createResultReg(RC ? RC : &PPC::G8RCRegClass); |
| 1096 | unsigned SrcReg1 = getRegForValue(I->getOperand(0)); |
| 1097 | if (SrcReg1 == 0) return false; |
| 1098 | |
| 1099 | // Handle case of small immediate operand. |
| 1100 | if (const ConstantInt *ConstInt = dyn_cast<ConstantInt>(I->getOperand(1))) { |
| 1101 | const APInt &CIVal = ConstInt->getValue(); |
| 1102 | int Imm = (int)CIVal.getSExtValue(); |
| 1103 | bool UseImm = true; |
| 1104 | if (isInt<16>(Imm)) { |
| 1105 | switch (Opc) { |
| 1106 | default: |
| 1107 | llvm_unreachable("Missing case!"); |
| 1108 | case PPC::ADD4: |
| 1109 | Opc = PPC::ADDI; |
| 1110 | MRI.setRegClass(SrcReg1, &PPC::GPRC_and_GPRC_NOR0RegClass); |
| 1111 | break; |
| 1112 | case PPC::ADD8: |
| 1113 | Opc = PPC::ADDI8; |
| 1114 | MRI.setRegClass(SrcReg1, &PPC::G8RC_and_G8RC_NOX0RegClass); |
| 1115 | break; |
| 1116 | case PPC::OR: |
| 1117 | Opc = PPC::ORI; |
| 1118 | break; |
| 1119 | case PPC::OR8: |
| 1120 | Opc = PPC::ORI8; |
| 1121 | break; |
| 1122 | case PPC::SUBF: |
| 1123 | if (Imm == -32768) |
| 1124 | UseImm = false; |
| 1125 | else { |
| 1126 | Opc = PPC::ADDI; |
| 1127 | MRI.setRegClass(SrcReg1, &PPC::GPRC_and_GPRC_NOR0RegClass); |
| 1128 | Imm = -Imm; |
| 1129 | } |
| 1130 | break; |
| 1131 | case PPC::SUBF8: |
| 1132 | if (Imm == -32768) |
| 1133 | UseImm = false; |
| 1134 | else { |
| 1135 | Opc = PPC::ADDI8; |
| 1136 | MRI.setRegClass(SrcReg1, &PPC::G8RC_and_G8RC_NOX0RegClass); |
| 1137 | Imm = -Imm; |
| 1138 | } |
| 1139 | break; |
| 1140 | } |
| 1141 | |
| 1142 | if (UseImm) { |
| 1143 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(Opc), ResultReg) |
| 1144 | .addReg(SrcReg1).addImm(Imm); |
| 1145 | UpdateValueMap(I, ResultReg); |
| 1146 | return true; |
| 1147 | } |
| 1148 | } |
| 1149 | } |
| 1150 | |
| 1151 | // Reg-reg case. |
| 1152 | unsigned SrcReg2 = getRegForValue(I->getOperand(1)); |
| 1153 | if (SrcReg2 == 0) return false; |
| 1154 | |
| 1155 | // Reverse operands for subtract-from. |
| 1156 | if (ISDOpcode == ISD::SUB) |
| 1157 | std::swap(SrcReg1, SrcReg2); |
| 1158 | |
| 1159 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(Opc), ResultReg) |
| 1160 | .addReg(SrcReg1).addReg(SrcReg2); |
| 1161 | UpdateValueMap(I, ResultReg); |
| 1162 | return true; |
| 1163 | } |
| 1164 | |
Bill Schmidt | 11addd2 | 2013-08-30 22:18:55 +0000 | [diff] [blame^] | 1165 | // Handle arguments to a call that we're attempting to fast-select. |
| 1166 | // Return false if the arguments are too complex for us at the moment. |
| 1167 | bool PPCFastISel::processCallArgs(SmallVectorImpl<Value*> &Args, |
| 1168 | SmallVectorImpl<unsigned> &ArgRegs, |
| 1169 | SmallVectorImpl<MVT> &ArgVTs, |
| 1170 | SmallVectorImpl<ISD::ArgFlagsTy> &ArgFlags, |
| 1171 | SmallVectorImpl<unsigned> &RegArgs, |
| 1172 | CallingConv::ID CC, |
| 1173 | unsigned &NumBytes, |
| 1174 | bool IsVarArg) { |
| 1175 | SmallVector<CCValAssign, 16> ArgLocs; |
| 1176 | CCState CCInfo(CC, IsVarArg, *FuncInfo.MF, TM, ArgLocs, *Context); |
| 1177 | CCInfo.AnalyzeCallOperands(ArgVTs, ArgFlags, CC_PPC64_ELF_FIS); |
| 1178 | |
| 1179 | // Bail out if we can't handle any of the arguments. |
| 1180 | for (unsigned I = 0, E = ArgLocs.size(); I != E; ++I) { |
| 1181 | CCValAssign &VA = ArgLocs[I]; |
| 1182 | MVT ArgVT = ArgVTs[VA.getValNo()]; |
| 1183 | |
| 1184 | // Skip vector arguments for now, as well as long double and |
| 1185 | // uint128_t, and anything that isn't passed in a register. |
| 1186 | if (ArgVT.isVector() || ArgVT.getSizeInBits() > 64 || |
| 1187 | !VA.isRegLoc() || VA.needsCustom()) |
| 1188 | return false; |
| 1189 | |
| 1190 | // Skip bit-converted arguments for now. |
| 1191 | if (VA.getLocInfo() == CCValAssign::BCvt) |
| 1192 | return false; |
| 1193 | } |
| 1194 | |
| 1195 | // Get a count of how many bytes are to be pushed onto the stack. |
| 1196 | NumBytes = CCInfo.getNextStackOffset(); |
| 1197 | |
| 1198 | // Issue CALLSEQ_START. |
| 1199 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, |
| 1200 | TII.get(TII.getCallFrameSetupOpcode())) |
| 1201 | .addImm(NumBytes); |
| 1202 | |
| 1203 | // Prepare to assign register arguments. Every argument uses up a |
| 1204 | // GPR protocol register even if it's passed in a floating-point |
| 1205 | // register. |
| 1206 | unsigned NextGPR = PPC::X3; |
| 1207 | unsigned NextFPR = PPC::F1; |
| 1208 | |
| 1209 | // Process arguments. |
| 1210 | for (unsigned I = 0, E = ArgLocs.size(); I != E; ++I) { |
| 1211 | CCValAssign &VA = ArgLocs[I]; |
| 1212 | unsigned Arg = ArgRegs[VA.getValNo()]; |
| 1213 | MVT ArgVT = ArgVTs[VA.getValNo()]; |
| 1214 | |
| 1215 | // Handle argument promotion and bitcasts. |
| 1216 | switch (VA.getLocInfo()) { |
| 1217 | default: |
| 1218 | llvm_unreachable("Unknown loc info!"); |
| 1219 | case CCValAssign::Full: |
| 1220 | break; |
| 1221 | case CCValAssign::SExt: { |
| 1222 | MVT DestVT = VA.getLocVT(); |
| 1223 | const TargetRegisterClass *RC = |
| 1224 | (DestVT == MVT::i64) ? &PPC::G8RCRegClass : &PPC::GPRCRegClass; |
| 1225 | unsigned TmpReg = createResultReg(RC); |
| 1226 | if (!PPCEmitIntExt(ArgVT, Arg, DestVT, TmpReg, /*IsZExt*/false)) |
| 1227 | llvm_unreachable("Failed to emit a sext!"); |
| 1228 | ArgVT = DestVT; |
| 1229 | Arg = TmpReg; |
| 1230 | break; |
| 1231 | } |
| 1232 | case CCValAssign::AExt: |
| 1233 | case CCValAssign::ZExt: { |
| 1234 | MVT DestVT = VA.getLocVT(); |
| 1235 | const TargetRegisterClass *RC = |
| 1236 | (DestVT == MVT::i64) ? &PPC::G8RCRegClass : &PPC::GPRCRegClass; |
| 1237 | unsigned TmpReg = createResultReg(RC); |
| 1238 | if (!PPCEmitIntExt(ArgVT, Arg, DestVT, TmpReg, /*IsZExt*/true)) |
| 1239 | llvm_unreachable("Failed to emit a zext!"); |
| 1240 | ArgVT = DestVT; |
| 1241 | Arg = TmpReg; |
| 1242 | break; |
| 1243 | } |
| 1244 | case CCValAssign::BCvt: { |
| 1245 | // FIXME: Not yet handled. |
| 1246 | llvm_unreachable("Should have bailed before getting here!"); |
| 1247 | break; |
| 1248 | } |
| 1249 | } |
| 1250 | |
| 1251 | // Copy this argument to the appropriate register. |
| 1252 | unsigned ArgReg; |
| 1253 | if (ArgVT == MVT::f32 || ArgVT == MVT::f64) { |
| 1254 | ArgReg = NextFPR++; |
| 1255 | ++NextGPR; |
| 1256 | } else |
| 1257 | ArgReg = NextGPR++; |
| 1258 | |
| 1259 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(TargetOpcode::COPY), |
| 1260 | ArgReg).addReg(Arg); |
| 1261 | RegArgs.push_back(ArgReg); |
| 1262 | } |
| 1263 | |
| 1264 | return true; |
| 1265 | } |
| 1266 | |
| 1267 | // For a call that we've determined we can fast-select, finish the |
| 1268 | // call sequence and generate a copy to obtain the return value (if any). |
| 1269 | void PPCFastISel::finishCall(MVT RetVT, SmallVectorImpl<unsigned> &UsedRegs, |
| 1270 | const Instruction *I, CallingConv::ID CC, |
| 1271 | unsigned &NumBytes, bool IsVarArg) { |
| 1272 | // Issue CallSEQ_END. |
| 1273 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, |
| 1274 | TII.get(TII.getCallFrameDestroyOpcode())) |
| 1275 | .addImm(NumBytes).addImm(0); |
| 1276 | |
| 1277 | // Next, generate a copy to obtain the return value. |
| 1278 | // FIXME: No multi-register return values yet, though I don't foresee |
| 1279 | // any real difficulties there. |
| 1280 | if (RetVT != MVT::isVoid) { |
| 1281 | SmallVector<CCValAssign, 16> RVLocs; |
| 1282 | CCState CCInfo(CC, IsVarArg, *FuncInfo.MF, TM, RVLocs, *Context); |
| 1283 | CCInfo.AnalyzeCallResult(RetVT, RetCC_PPC64_ELF_FIS); |
| 1284 | CCValAssign &VA = RVLocs[0]; |
| 1285 | assert(RVLocs.size() == 1 && "No support for multi-reg return values!"); |
| 1286 | assert(VA.isRegLoc() && "Can only return in registers!"); |
| 1287 | |
| 1288 | MVT DestVT = VA.getValVT(); |
| 1289 | MVT CopyVT = DestVT; |
| 1290 | |
| 1291 | // Ints smaller than a register still arrive in a full 64-bit |
| 1292 | // register, so make sure we recognize this. |
| 1293 | if (RetVT == MVT::i8 || RetVT == MVT::i16 || RetVT == MVT::i32) |
| 1294 | CopyVT = MVT::i64; |
| 1295 | |
| 1296 | unsigned SourcePhysReg = VA.getLocReg(); |
| 1297 | unsigned ResultReg; |
| 1298 | |
| 1299 | if (RetVT == CopyVT) { |
| 1300 | const TargetRegisterClass *CpyRC = TLI.getRegClassFor(CopyVT); |
| 1301 | ResultReg = createResultReg(CpyRC); |
| 1302 | |
| 1303 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, |
| 1304 | TII.get(TargetOpcode::COPY), ResultReg) |
| 1305 | .addReg(SourcePhysReg); |
| 1306 | |
| 1307 | // If necessary, round the floating result to single precision. |
| 1308 | } else if (CopyVT == MVT::f64) { |
| 1309 | ResultReg = createResultReg(TLI.getRegClassFor(RetVT)); |
| 1310 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(PPC::FRSP), |
| 1311 | ResultReg).addReg(SourcePhysReg); |
| 1312 | |
| 1313 | // If only the low half of a general register is needed, generate |
| 1314 | // a GPRC copy instead of a G8RC copy. (EXTRACT_SUBREG can't be |
| 1315 | // used along the fast-isel path (not lowered), and downstream logic |
| 1316 | // also doesn't like a direct subreg copy on a physical reg.) |
| 1317 | } else if (RetVT == MVT::i8 || RetVT == MVT::i16 || RetVT == MVT::i32) { |
| 1318 | ResultReg = createResultReg(&PPC::GPRCRegClass); |
| 1319 | // Convert physical register from G8RC to GPRC. |
| 1320 | SourcePhysReg -= PPC::X0 - PPC::R0; |
| 1321 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, |
| 1322 | TII.get(TargetOpcode::COPY), ResultReg) |
| 1323 | .addReg(SourcePhysReg); |
| 1324 | } |
| 1325 | |
| 1326 | UsedRegs.push_back(SourcePhysReg); |
| 1327 | UpdateValueMap(I, ResultReg); |
| 1328 | } |
| 1329 | } |
| 1330 | |
| 1331 | // Attempt to fast-select a call instruction. |
| 1332 | bool PPCFastISel::SelectCall(const Instruction *I) { |
| 1333 | const CallInst *CI = cast<CallInst>(I); |
| 1334 | const Value *Callee = CI->getCalledValue(); |
| 1335 | |
| 1336 | // Can't handle inline asm. |
| 1337 | if (isa<InlineAsm>(Callee)) |
| 1338 | return false; |
| 1339 | |
| 1340 | // Allow SelectionDAG isel to handle tail calls. |
| 1341 | if (CI->isTailCall()) |
| 1342 | return false; |
| 1343 | |
| 1344 | // Obtain calling convention. |
| 1345 | ImmutableCallSite CS(CI); |
| 1346 | CallingConv::ID CC = CS.getCallingConv(); |
| 1347 | |
| 1348 | PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType()); |
| 1349 | FunctionType *FTy = cast<FunctionType>(PT->getElementType()); |
| 1350 | bool IsVarArg = FTy->isVarArg(); |
| 1351 | |
| 1352 | // Not ready for varargs yet. |
| 1353 | if (IsVarArg) |
| 1354 | return false; |
| 1355 | |
| 1356 | // Handle simple calls for now, with legal return types and |
| 1357 | // those that can be extended. |
| 1358 | Type *RetTy = I->getType(); |
| 1359 | MVT RetVT; |
| 1360 | if (RetTy->isVoidTy()) |
| 1361 | RetVT = MVT::isVoid; |
| 1362 | else if (!isTypeLegal(RetTy, RetVT) && RetVT != MVT::i16 && |
| 1363 | RetVT != MVT::i8) |
| 1364 | return false; |
| 1365 | |
| 1366 | // FIXME: No multi-register return values yet. |
| 1367 | if (RetVT != MVT::isVoid && RetVT != MVT::i8 && RetVT != MVT::i16 && |
| 1368 | RetVT != MVT::i32 && RetVT != MVT::i64 && RetVT != MVT::f32 && |
| 1369 | RetVT != MVT::f64) { |
| 1370 | SmallVector<CCValAssign, 16> RVLocs; |
| 1371 | CCState CCInfo(CC, IsVarArg, *FuncInfo.MF, TM, RVLocs, *Context); |
| 1372 | CCInfo.AnalyzeCallResult(RetVT, RetCC_PPC64_ELF_FIS); |
| 1373 | if (RVLocs.size() > 1) |
| 1374 | return false; |
| 1375 | } |
| 1376 | |
| 1377 | // Bail early if more than 8 arguments, as we only currently |
| 1378 | // handle arguments passed in registers. |
| 1379 | unsigned NumArgs = CS.arg_size(); |
| 1380 | if (NumArgs > 8) |
| 1381 | return false; |
| 1382 | |
| 1383 | // Set up the argument vectors. |
| 1384 | SmallVector<Value*, 8> Args; |
| 1385 | SmallVector<unsigned, 8> ArgRegs; |
| 1386 | SmallVector<MVT, 8> ArgVTs; |
| 1387 | SmallVector<ISD::ArgFlagsTy, 8> ArgFlags; |
| 1388 | |
| 1389 | Args.reserve(NumArgs); |
| 1390 | ArgRegs.reserve(NumArgs); |
| 1391 | ArgVTs.reserve(NumArgs); |
| 1392 | ArgFlags.reserve(NumArgs); |
| 1393 | |
| 1394 | for (ImmutableCallSite::arg_iterator II = CS.arg_begin(), IE = CS.arg_end(); |
| 1395 | II != IE; ++II) { |
| 1396 | // FIXME: ARM does something for intrinsic calls here, check into that. |
| 1397 | |
| 1398 | unsigned AttrIdx = II - CS.arg_begin() + 1; |
| 1399 | |
| 1400 | // Only handle easy calls for now. It would be reasonably easy |
| 1401 | // to handle <= 8-byte structures passed ByVal in registers, but we |
| 1402 | // have to ensure they are right-justified in the register. |
| 1403 | if (CS.paramHasAttr(AttrIdx, Attribute::InReg) || |
| 1404 | CS.paramHasAttr(AttrIdx, Attribute::StructRet) || |
| 1405 | CS.paramHasAttr(AttrIdx, Attribute::Nest) || |
| 1406 | CS.paramHasAttr(AttrIdx, Attribute::ByVal)) |
| 1407 | return false; |
| 1408 | |
| 1409 | ISD::ArgFlagsTy Flags; |
| 1410 | if (CS.paramHasAttr(AttrIdx, Attribute::SExt)) |
| 1411 | Flags.setSExt(); |
| 1412 | if (CS.paramHasAttr(AttrIdx, Attribute::ZExt)) |
| 1413 | Flags.setZExt(); |
| 1414 | |
| 1415 | Type *ArgTy = (*II)->getType(); |
| 1416 | MVT ArgVT; |
| 1417 | if (!isTypeLegal(ArgTy, ArgVT) && ArgVT != MVT::i16 && ArgVT != MVT::i8) |
| 1418 | return false; |
| 1419 | |
| 1420 | if (ArgVT.isVector()) |
| 1421 | return false; |
| 1422 | |
| 1423 | unsigned Arg = getRegForValue(*II); |
| 1424 | if (Arg == 0) |
| 1425 | return false; |
| 1426 | |
| 1427 | unsigned OriginalAlignment = TD.getABITypeAlignment(ArgTy); |
| 1428 | Flags.setOrigAlign(OriginalAlignment); |
| 1429 | |
| 1430 | Args.push_back(*II); |
| 1431 | ArgRegs.push_back(Arg); |
| 1432 | ArgVTs.push_back(ArgVT); |
| 1433 | ArgFlags.push_back(Flags); |
| 1434 | } |
| 1435 | |
| 1436 | // Process the arguments. |
| 1437 | SmallVector<unsigned, 8> RegArgs; |
| 1438 | unsigned NumBytes; |
| 1439 | |
| 1440 | if (!processCallArgs(Args, ArgRegs, ArgVTs, ArgFlags, |
| 1441 | RegArgs, CC, NumBytes, IsVarArg)) |
| 1442 | return false; |
| 1443 | |
| 1444 | // FIXME: No handling for function pointers yet. This requires |
| 1445 | // implementing the function descriptor (OPD) setup. |
| 1446 | const GlobalValue *GV = dyn_cast<GlobalValue>(Callee); |
| 1447 | if (!GV) |
| 1448 | return false; |
| 1449 | |
| 1450 | // Build direct call with NOP for TOC restore. |
| 1451 | // FIXME: We can and should optimize away the NOP for local calls. |
| 1452 | MachineInstrBuilder MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, |
| 1453 | TII.get(PPC::BL8_NOP)); |
| 1454 | // Add callee. |
| 1455 | MIB.addGlobalAddress(GV); |
| 1456 | |
| 1457 | // Add implicit physical register uses to the call. |
| 1458 | for (unsigned II = 0, IE = RegArgs.size(); II != IE; ++II) |
| 1459 | MIB.addReg(RegArgs[II], RegState::Implicit); |
| 1460 | |
| 1461 | // Add a register mask with the call-preserved registers. Proper |
| 1462 | // defs for return values will be added by setPhysRegsDeadExcept(). |
| 1463 | MIB.addRegMask(TRI.getCallPreservedMask(CC)); |
| 1464 | |
| 1465 | // Finish off the call including any return values. |
| 1466 | SmallVector<unsigned, 4> UsedRegs; |
| 1467 | finishCall(RetVT, UsedRegs, I, CC, NumBytes, IsVarArg); |
| 1468 | |
| 1469 | // Set all unused physregs defs as dead. |
| 1470 | static_cast<MachineInstr *>(MIB)->setPhysRegsDeadExcept(UsedRegs, TRI); |
| 1471 | |
| 1472 | return true; |
| 1473 | } |
| 1474 | |
Bill Schmidt | 055d207 | 2013-08-26 19:42:51 +0000 | [diff] [blame] | 1475 | // Attempt to fast-select a return instruction. |
| 1476 | bool PPCFastISel::SelectRet(const Instruction *I) { |
| 1477 | |
| 1478 | if (!FuncInfo.CanLowerReturn) |
| 1479 | return false; |
| 1480 | |
| 1481 | const ReturnInst *Ret = cast<ReturnInst>(I); |
| 1482 | const Function &F = *I->getParent()->getParent(); |
| 1483 | |
| 1484 | // Build a list of return value registers. |
| 1485 | SmallVector<unsigned, 4> RetRegs; |
| 1486 | CallingConv::ID CC = F.getCallingConv(); |
| 1487 | |
| 1488 | if (Ret->getNumOperands() > 0) { |
| 1489 | SmallVector<ISD::OutputArg, 4> Outs; |
| 1490 | GetReturnInfo(F.getReturnType(), F.getAttributes(), Outs, TLI); |
| 1491 | |
| 1492 | // Analyze operands of the call, assigning locations to each operand. |
| 1493 | SmallVector<CCValAssign, 16> ValLocs; |
| 1494 | CCState CCInfo(CC, F.isVarArg(), *FuncInfo.MF, TM, ValLocs, *Context); |
| 1495 | CCInfo.AnalyzeReturn(Outs, RetCC_PPC64_ELF_FIS); |
| 1496 | const Value *RV = Ret->getOperand(0); |
| 1497 | |
| 1498 | // FIXME: Only one output register for now. |
| 1499 | if (ValLocs.size() > 1) |
| 1500 | return false; |
| 1501 | |
| 1502 | // Special case for returning a constant integer of any size. |
| 1503 | // Materialize the constant as an i64 and copy it to the return |
| 1504 | // register. This avoids an unnecessary extend or truncate. |
| 1505 | if (isa<ConstantInt>(*RV)) { |
| 1506 | const Constant *C = cast<Constant>(RV); |
| 1507 | unsigned SrcReg = PPCMaterializeInt(C, MVT::i64); |
| 1508 | unsigned RetReg = ValLocs[0].getLocReg(); |
| 1509 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(TargetOpcode::COPY), |
| 1510 | RetReg).addReg(SrcReg); |
| 1511 | RetRegs.push_back(RetReg); |
| 1512 | |
| 1513 | } else { |
| 1514 | unsigned Reg = getRegForValue(RV); |
| 1515 | |
| 1516 | if (Reg == 0) |
| 1517 | return false; |
| 1518 | |
| 1519 | // Copy the result values into the output registers. |
| 1520 | for (unsigned i = 0; i < ValLocs.size(); ++i) { |
| 1521 | |
| 1522 | CCValAssign &VA = ValLocs[i]; |
| 1523 | assert(VA.isRegLoc() && "Can only return in registers!"); |
| 1524 | RetRegs.push_back(VA.getLocReg()); |
| 1525 | unsigned SrcReg = Reg + VA.getValNo(); |
| 1526 | |
| 1527 | EVT RVEVT = TLI.getValueType(RV->getType()); |
| 1528 | if (!RVEVT.isSimple()) |
| 1529 | return false; |
| 1530 | MVT RVVT = RVEVT.getSimpleVT(); |
| 1531 | MVT DestVT = VA.getLocVT(); |
| 1532 | |
| 1533 | if (RVVT != DestVT && RVVT != MVT::i8 && |
| 1534 | RVVT != MVT::i16 && RVVT != MVT::i32) |
| 1535 | return false; |
| 1536 | |
| 1537 | if (RVVT != DestVT) { |
| 1538 | switch (VA.getLocInfo()) { |
| 1539 | default: |
| 1540 | llvm_unreachable("Unknown loc info!"); |
| 1541 | case CCValAssign::Full: |
| 1542 | llvm_unreachable("Full value assign but types don't match?"); |
| 1543 | case CCValAssign::AExt: |
| 1544 | case CCValAssign::ZExt: { |
| 1545 | const TargetRegisterClass *RC = |
| 1546 | (DestVT == MVT::i64) ? &PPC::G8RCRegClass : &PPC::GPRCRegClass; |
| 1547 | unsigned TmpReg = createResultReg(RC); |
| 1548 | if (!PPCEmitIntExt(RVVT, SrcReg, DestVT, TmpReg, true)) |
| 1549 | return false; |
| 1550 | SrcReg = TmpReg; |
| 1551 | break; |
| 1552 | } |
| 1553 | case CCValAssign::SExt: { |
| 1554 | const TargetRegisterClass *RC = |
| 1555 | (DestVT == MVT::i64) ? &PPC::G8RCRegClass : &PPC::GPRCRegClass; |
| 1556 | unsigned TmpReg = createResultReg(RC); |
| 1557 | if (!PPCEmitIntExt(RVVT, SrcReg, DestVT, TmpReg, false)) |
| 1558 | return false; |
| 1559 | SrcReg = TmpReg; |
| 1560 | break; |
| 1561 | } |
| 1562 | } |
| 1563 | } |
| 1564 | |
| 1565 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, |
| 1566 | TII.get(TargetOpcode::COPY), RetRegs[i]) |
| 1567 | .addReg(SrcReg); |
| 1568 | } |
| 1569 | } |
| 1570 | } |
| 1571 | |
| 1572 | MachineInstrBuilder MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, |
| 1573 | TII.get(PPC::BLR)); |
| 1574 | |
| 1575 | for (unsigned i = 0, e = RetRegs.size(); i != e; ++i) |
| 1576 | MIB.addReg(RetRegs[i], RegState::Implicit); |
| 1577 | |
| 1578 | return true; |
| 1579 | } |
| 1580 | |
Bill Schmidt | 3fad2bc | 2013-08-25 22:33:42 +0000 | [diff] [blame] | 1581 | // Attempt to emit an integer extend of SrcReg into DestReg. Both |
| 1582 | // signed and zero extensions are supported. Return false if we |
Bill Schmidt | 055d207 | 2013-08-26 19:42:51 +0000 | [diff] [blame] | 1583 | // can't handle it. |
Bill Schmidt | 3fad2bc | 2013-08-25 22:33:42 +0000 | [diff] [blame] | 1584 | bool PPCFastISel::PPCEmitIntExt(MVT SrcVT, unsigned SrcReg, MVT DestVT, |
| 1585 | unsigned DestReg, bool IsZExt) { |
Bill Schmidt | 055d207 | 2013-08-26 19:42:51 +0000 | [diff] [blame] | 1586 | if (DestVT != MVT::i32 && DestVT != MVT::i64) |
| 1587 | return false; |
| 1588 | if (SrcVT != MVT::i8 && SrcVT != MVT::i16 && SrcVT != MVT::i32) |
| 1589 | return false; |
| 1590 | |
| 1591 | // Signed extensions use EXTSB, EXTSH, EXTSW. |
| 1592 | if (!IsZExt) { |
| 1593 | unsigned Opc; |
| 1594 | if (SrcVT == MVT::i8) |
| 1595 | Opc = (DestVT == MVT::i32) ? PPC::EXTSB : PPC::EXTSB8_32_64; |
| 1596 | else if (SrcVT == MVT::i16) |
| 1597 | Opc = (DestVT == MVT::i32) ? PPC::EXTSH : PPC::EXTSH8_32_64; |
| 1598 | else { |
| 1599 | assert(DestVT == MVT::i64 && "Signed extend from i32 to i32??"); |
| 1600 | Opc = PPC::EXTSW_32_64; |
| 1601 | } |
| 1602 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(Opc), DestReg) |
| 1603 | .addReg(SrcReg); |
| 1604 | |
| 1605 | // Unsigned 32-bit extensions use RLWINM. |
| 1606 | } else if (DestVT == MVT::i32) { |
| 1607 | unsigned MB; |
| 1608 | if (SrcVT == MVT::i8) |
| 1609 | MB = 24; |
| 1610 | else { |
| 1611 | assert(SrcVT == MVT::i16 && "Unsigned extend from i32 to i32??"); |
| 1612 | MB = 16; |
| 1613 | } |
| 1614 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(PPC::RLWINM), |
| 1615 | DestReg) |
| 1616 | .addReg(SrcReg).addImm(/*SH=*/0).addImm(MB).addImm(/*ME=*/31); |
| 1617 | |
| 1618 | // Unsigned 64-bit extensions use RLDICL (with a 32-bit source). |
| 1619 | } else { |
| 1620 | unsigned MB; |
| 1621 | if (SrcVT == MVT::i8) |
| 1622 | MB = 56; |
| 1623 | else if (SrcVT == MVT::i16) |
| 1624 | MB = 48; |
| 1625 | else |
| 1626 | MB = 32; |
| 1627 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, |
| 1628 | TII.get(PPC::RLDICL_32_64), DestReg) |
| 1629 | .addReg(SrcReg).addImm(/*SH=*/0).addImm(MB); |
| 1630 | } |
| 1631 | |
| 1632 | return true; |
Bill Schmidt | 3fad2bc | 2013-08-25 22:33:42 +0000 | [diff] [blame] | 1633 | } |
| 1634 | |
| 1635 | // Attempt to fast-select an indirect branch instruction. |
| 1636 | bool PPCFastISel::SelectIndirectBr(const Instruction *I) { |
| 1637 | unsigned AddrReg = getRegForValue(I->getOperand(0)); |
| 1638 | if (AddrReg == 0) |
| 1639 | return false; |
| 1640 | |
| 1641 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(PPC::MTCTR8)) |
| 1642 | .addReg(AddrReg); |
| 1643 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(PPC::BCTR8)); |
| 1644 | |
| 1645 | const IndirectBrInst *IB = cast<IndirectBrInst>(I); |
| 1646 | for (unsigned i = 0, e = IB->getNumSuccessors(); i != e; ++i) |
| 1647 | FuncInfo.MBB->addSuccessor(FuncInfo.MBBMap[IB->getSuccessor(i)]); |
| 1648 | |
| 1649 | return true; |
| 1650 | } |
| 1651 | |
Bill Schmidt | e206efd3 | 2013-08-30 03:16:48 +0000 | [diff] [blame] | 1652 | // Attempt to fast-select a compare instruction. |
| 1653 | bool PPCFastISel::SelectCmp(const Instruction *I) { |
| 1654 | const CmpInst *CI = cast<CmpInst>(I); |
| 1655 | Optional<PPC::Predicate> OptPPCPred = getComparePred(CI->getPredicate()); |
| 1656 | if (!OptPPCPred) |
| 1657 | return false; |
| 1658 | |
| 1659 | unsigned CondReg = createResultReg(&PPC::CRRCRegClass); |
| 1660 | |
| 1661 | if (!PPCEmitCmp(CI->getOperand(0), CI->getOperand(1), CI->isUnsigned(), |
| 1662 | CondReg)) |
| 1663 | return false; |
| 1664 | |
| 1665 | UpdateValueMap(I, CondReg); |
| 1666 | return true; |
| 1667 | } |
| 1668 | |
Bill Schmidt | 055d207 | 2013-08-26 19:42:51 +0000 | [diff] [blame] | 1669 | // Attempt to fast-select an integer extend instruction. |
| 1670 | bool PPCFastISel::SelectIntExt(const Instruction *I) { |
| 1671 | Type *DestTy = I->getType(); |
| 1672 | Value *Src = I->getOperand(0); |
| 1673 | Type *SrcTy = Src->getType(); |
| 1674 | |
| 1675 | bool IsZExt = isa<ZExtInst>(I); |
| 1676 | unsigned SrcReg = getRegForValue(Src); |
| 1677 | if (!SrcReg) return false; |
| 1678 | |
| 1679 | EVT SrcEVT, DestEVT; |
| 1680 | SrcEVT = TLI.getValueType(SrcTy, true); |
| 1681 | DestEVT = TLI.getValueType(DestTy, true); |
| 1682 | if (!SrcEVT.isSimple()) |
| 1683 | return false; |
| 1684 | if (!DestEVT.isSimple()) |
| 1685 | return false; |
| 1686 | |
| 1687 | MVT SrcVT = SrcEVT.getSimpleVT(); |
| 1688 | MVT DestVT = DestEVT.getSimpleVT(); |
| 1689 | |
| 1690 | // If we know the register class needed for the result of this |
| 1691 | // instruction, use it. Otherwise pick the register class of the |
| 1692 | // correct size that does not contain X0/R0, since we don't know |
| 1693 | // whether downstream uses permit that assignment. |
| 1694 | unsigned AssignedReg = FuncInfo.ValueMap[I]; |
| 1695 | const TargetRegisterClass *RC = |
| 1696 | (AssignedReg ? MRI.getRegClass(AssignedReg) : |
| 1697 | (DestVT == MVT::i64 ? &PPC::G8RC_and_G8RC_NOX0RegClass : |
| 1698 | &PPC::GPRC_and_GPRC_NOR0RegClass)); |
| 1699 | unsigned ResultReg = createResultReg(RC); |
| 1700 | |
| 1701 | if (!PPCEmitIntExt(SrcVT, SrcReg, DestVT, ResultReg, IsZExt)) |
| 1702 | return false; |
| 1703 | |
| 1704 | UpdateValueMap(I, ResultReg); |
| 1705 | return true; |
| 1706 | } |
| 1707 | |
Bill Schmidt | 646cd79 | 2013-07-30 00:50:39 +0000 | [diff] [blame] | 1708 | // Attempt to fast-select an instruction that wasn't handled by |
Bill Schmidt | 3fad2bc | 2013-08-25 22:33:42 +0000 | [diff] [blame] | 1709 | // the table-generated machinery. |
Bill Schmidt | 646cd79 | 2013-07-30 00:50:39 +0000 | [diff] [blame] | 1710 | bool PPCFastISel::TargetSelectInstruction(const Instruction *I) { |
Bill Schmidt | 3fad2bc | 2013-08-25 22:33:42 +0000 | [diff] [blame] | 1711 | |
| 1712 | switch (I->getOpcode()) { |
Bill Schmidt | 7248968 | 2013-08-30 02:29:45 +0000 | [diff] [blame] | 1713 | case Instruction::Load: |
| 1714 | return SelectLoad(I); |
| 1715 | case Instruction::Store: |
| 1716 | return SelectStore(I); |
Bill Schmidt | 3fad2bc | 2013-08-25 22:33:42 +0000 | [diff] [blame] | 1717 | case Instruction::Br: |
| 1718 | return SelectBranch(I); |
| 1719 | case Instruction::IndirectBr: |
| 1720 | return SelectIndirectBr(I); |
Bill Schmidt | 9bc9427 | 2013-08-30 15:18:11 +0000 | [diff] [blame] | 1721 | case Instruction::FPExt: |
| 1722 | return SelectFPExt(I); |
| 1723 | case Instruction::FPTrunc: |
| 1724 | return SelectFPTrunc(I); |
| 1725 | case Instruction::SIToFP: |
| 1726 | return SelectIToFP(I, /*IsSigned*/ true); |
| 1727 | case Instruction::UIToFP: |
| 1728 | return SelectIToFP(I, /*IsSigned*/ false); |
| 1729 | case Instruction::FPToSI: |
| 1730 | return SelectFPToI(I, /*IsSigned*/ true); |
| 1731 | case Instruction::FPToUI: |
| 1732 | return SelectFPToI(I, /*IsSigned*/ false); |
Bill Schmidt | 7248968 | 2013-08-30 02:29:45 +0000 | [diff] [blame] | 1733 | case Instruction::Add: |
| 1734 | return SelectBinaryIntOp(I, ISD::ADD); |
| 1735 | case Instruction::Or: |
| 1736 | return SelectBinaryIntOp(I, ISD::OR); |
| 1737 | case Instruction::Sub: |
| 1738 | return SelectBinaryIntOp(I, ISD::SUB); |
Bill Schmidt | 11addd2 | 2013-08-30 22:18:55 +0000 | [diff] [blame^] | 1739 | case Instruction::Call: |
| 1740 | if (dyn_cast<IntrinsicInst>(I)) |
| 1741 | return false; |
| 1742 | return SelectCall(I); |
Bill Schmidt | 055d207 | 2013-08-26 19:42:51 +0000 | [diff] [blame] | 1743 | case Instruction::Ret: |
| 1744 | return SelectRet(I); |
| 1745 | case Instruction::ZExt: |
| 1746 | case Instruction::SExt: |
| 1747 | return SelectIntExt(I); |
Bill Schmidt | 3fad2bc | 2013-08-25 22:33:42 +0000 | [diff] [blame] | 1748 | // Here add other flavors of Instruction::XXX that automated |
| 1749 | // cases don't catch. For example, switches are terminators |
| 1750 | // that aren't yet handled. |
| 1751 | default: |
| 1752 | break; |
| 1753 | } |
| 1754 | return false; |
Bill Schmidt | 646cd79 | 2013-07-30 00:50:39 +0000 | [diff] [blame] | 1755 | } |
| 1756 | |
| 1757 | // Materialize a floating-point constant into a register, and return |
| 1758 | // the register number (or zero if we failed to handle it). |
| 1759 | unsigned PPCFastISel::PPCMaterializeFP(const ConstantFP *CFP, MVT VT) { |
| 1760 | // No plans to handle long double here. |
| 1761 | if (VT != MVT::f32 && VT != MVT::f64) |
| 1762 | return 0; |
| 1763 | |
| 1764 | // All FP constants are loaded from the constant pool. |
| 1765 | unsigned Align = TD.getPrefTypeAlignment(CFP->getType()); |
| 1766 | assert(Align > 0 && "Unexpectedly missing alignment information!"); |
| 1767 | unsigned Idx = MCP.getConstantPoolIndex(cast<Constant>(CFP), Align); |
| 1768 | unsigned DestReg = createResultReg(TLI.getRegClassFor(VT)); |
| 1769 | CodeModel::Model CModel = TM.getCodeModel(); |
| 1770 | |
| 1771 | MachineMemOperand *MMO = |
| 1772 | FuncInfo.MF->getMachineMemOperand( |
| 1773 | MachinePointerInfo::getConstantPool(), MachineMemOperand::MOLoad, |
| 1774 | (VT == MVT::f32) ? 4 : 8, Align); |
| 1775 | |
Bill Schmidt | 3fad2bc | 2013-08-25 22:33:42 +0000 | [diff] [blame] | 1776 | unsigned Opc = (VT == MVT::f32) ? PPC::LFS : PPC::LFD; |
| 1777 | unsigned TmpReg = createResultReg(&PPC::G8RC_and_G8RC_NOX0RegClass); |
| 1778 | |
| 1779 | // For small code model, generate a LF[SD](0, LDtocCPT(Idx, X2)). |
| 1780 | if (CModel == CodeModel::Small || CModel == CodeModel::JITDefault) { |
Bill Schmidt | 646cd79 | 2013-07-30 00:50:39 +0000 | [diff] [blame] | 1781 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(PPC::LDtocCPT), |
Bill Schmidt | 3fad2bc | 2013-08-25 22:33:42 +0000 | [diff] [blame] | 1782 | TmpReg) |
| 1783 | .addConstantPoolIndex(Idx).addReg(PPC::X2); |
| 1784 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(Opc), DestReg) |
| 1785 | .addImm(0).addReg(TmpReg).addMemOperand(MMO); |
| 1786 | } else { |
Bill Schmidt | 646cd79 | 2013-07-30 00:50:39 +0000 | [diff] [blame] | 1787 | // Otherwise we generate LF[SD](Idx[lo], ADDIStocHA(X2, Idx)). |
Bill Schmidt | 646cd79 | 2013-07-30 00:50:39 +0000 | [diff] [blame] | 1788 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(PPC::ADDIStocHA), |
| 1789 | TmpReg).addReg(PPC::X2).addConstantPoolIndex(Idx); |
| 1790 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(Opc), DestReg) |
| 1791 | .addConstantPoolIndex(Idx, 0, PPCII::MO_TOC_LO) |
| 1792 | .addReg(TmpReg) |
| 1793 | .addMemOperand(MMO); |
| 1794 | } |
| 1795 | |
| 1796 | return DestReg; |
| 1797 | } |
| 1798 | |
Bill Schmidt | 7248968 | 2013-08-30 02:29:45 +0000 | [diff] [blame] | 1799 | // Materialize the address of a global value into a register, and return |
| 1800 | // the register number (or zero if we failed to handle it). |
| 1801 | unsigned PPCFastISel::PPCMaterializeGV(const GlobalValue *GV, MVT VT) { |
| 1802 | assert(VT == MVT::i64 && "Non-address!"); |
| 1803 | const TargetRegisterClass *RC = &PPC::G8RC_and_G8RC_NOX0RegClass; |
| 1804 | unsigned DestReg = createResultReg(RC); |
| 1805 | |
| 1806 | // Global values may be plain old object addresses, TLS object |
| 1807 | // addresses, constant pool entries, or jump tables. How we generate |
| 1808 | // code for these may depend on small, medium, or large code model. |
| 1809 | CodeModel::Model CModel = TM.getCodeModel(); |
| 1810 | |
| 1811 | // FIXME: Jump tables are not yet required because fast-isel doesn't |
| 1812 | // handle switches; if that changes, we need them as well. For now, |
| 1813 | // what follows assumes everything's a generic (or TLS) global address. |
| 1814 | const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV); |
| 1815 | if (!GVar) { |
| 1816 | // If GV is an alias, use the aliasee for determining thread-locality. |
| 1817 | if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV)) |
| 1818 | GVar = dyn_cast_or_null<GlobalVariable>(GA->resolveAliasedGlobal(false)); |
Bill Schmidt | 7248968 | 2013-08-30 02:29:45 +0000 | [diff] [blame] | 1819 | } |
| 1820 | |
| 1821 | // FIXME: We don't yet handle the complexity of TLS. |
| 1822 | bool IsTLS = GVar && GVar->isThreadLocal(); |
| 1823 | if (IsTLS) |
| 1824 | return 0; |
| 1825 | |
| 1826 | // For small code model, generate a simple TOC load. |
| 1827 | if (CModel == CodeModel::Small || CModel == CodeModel::JITDefault) |
| 1828 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(PPC::LDtoc), DestReg) |
| 1829 | .addGlobalAddress(GV).addReg(PPC::X2); |
| 1830 | else { |
| 1831 | // If the address is an externally defined symbol, a symbol with |
| 1832 | // common or externally available linkage, a function address, or a |
| 1833 | // jump table address (not yet needed), or if we are generating code |
| 1834 | // for large code model, we generate: |
| 1835 | // LDtocL(GV, ADDIStocHA(%X2, GV)) |
| 1836 | // Otherwise we generate: |
| 1837 | // ADDItocL(ADDIStocHA(%X2, GV), GV) |
| 1838 | // Either way, start with the ADDIStocHA: |
| 1839 | unsigned HighPartReg = createResultReg(RC); |
| 1840 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(PPC::ADDIStocHA), |
| 1841 | HighPartReg).addReg(PPC::X2).addGlobalAddress(GV); |
| 1842 | |
| 1843 | // !GVar implies a function address. An external variable is one |
| 1844 | // without an initializer. |
| 1845 | // If/when switches are implemented, jump tables should be handled |
| 1846 | // on the "if" path here. |
| 1847 | if (CModel == CodeModel::Large || !GVar || !GVar->hasInitializer() || |
| 1848 | GVar->hasCommonLinkage() || GVar->hasAvailableExternallyLinkage()) |
| 1849 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(PPC::LDtocL), |
| 1850 | DestReg).addGlobalAddress(GV).addReg(HighPartReg); |
| 1851 | else |
| 1852 | // Otherwise generate the ADDItocL. |
| 1853 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(PPC::ADDItocL), |
| 1854 | DestReg).addReg(HighPartReg).addGlobalAddress(GV); |
| 1855 | } |
| 1856 | |
| 1857 | return DestReg; |
| 1858 | } |
| 1859 | |
Bill Schmidt | 646cd79 | 2013-07-30 00:50:39 +0000 | [diff] [blame] | 1860 | // Materialize a 32-bit integer constant into a register, and return |
| 1861 | // the register number (or zero if we failed to handle it). |
| 1862 | unsigned PPCFastISel::PPCMaterialize32BitInt(int64_t Imm, |
| 1863 | const TargetRegisterClass *RC) { |
| 1864 | unsigned Lo = Imm & 0xFFFF; |
| 1865 | unsigned Hi = (Imm >> 16) & 0xFFFF; |
| 1866 | |
| 1867 | unsigned ResultReg = createResultReg(RC); |
| 1868 | bool IsGPRC = RC->hasSuperClassEq(&PPC::GPRCRegClass); |
| 1869 | |
| 1870 | if (isInt<16>(Imm)) |
| 1871 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, |
| 1872 | TII.get(IsGPRC ? PPC::LI : PPC::LI8), ResultReg) |
| 1873 | .addImm(Imm); |
| 1874 | else if (Lo) { |
| 1875 | // Both Lo and Hi have nonzero bits. |
| 1876 | unsigned TmpReg = createResultReg(RC); |
| 1877 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, |
| 1878 | TII.get(IsGPRC ? PPC::LIS : PPC::LIS8), TmpReg) |
| 1879 | .addImm(Hi); |
| 1880 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, |
| 1881 | TII.get(IsGPRC ? PPC::ORI : PPC::ORI8), ResultReg) |
| 1882 | .addReg(TmpReg).addImm(Lo); |
| 1883 | } else |
| 1884 | // Just Hi bits. |
| 1885 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, |
| 1886 | TII.get(IsGPRC ? PPC::LIS : PPC::LIS8), ResultReg) |
| 1887 | .addImm(Hi); |
| 1888 | |
| 1889 | return ResultReg; |
| 1890 | } |
| 1891 | |
| 1892 | // Materialize a 64-bit integer constant into a register, and return |
| 1893 | // the register number (or zero if we failed to handle it). |
| 1894 | unsigned PPCFastISel::PPCMaterialize64BitInt(int64_t Imm, |
| 1895 | const TargetRegisterClass *RC) { |
| 1896 | unsigned Remainder = 0; |
| 1897 | unsigned Shift = 0; |
| 1898 | |
| 1899 | // If the value doesn't fit in 32 bits, see if we can shift it |
| 1900 | // so that it fits in 32 bits. |
| 1901 | if (!isInt<32>(Imm)) { |
| 1902 | Shift = countTrailingZeros<uint64_t>(Imm); |
| 1903 | int64_t ImmSh = static_cast<uint64_t>(Imm) >> Shift; |
| 1904 | |
| 1905 | if (isInt<32>(ImmSh)) |
| 1906 | Imm = ImmSh; |
| 1907 | else { |
| 1908 | Remainder = Imm; |
| 1909 | Shift = 32; |
| 1910 | Imm >>= 32; |
| 1911 | } |
| 1912 | } |
| 1913 | |
| 1914 | // Handle the high-order 32 bits (if shifted) or the whole 32 bits |
| 1915 | // (if not shifted). |
| 1916 | unsigned TmpReg1 = PPCMaterialize32BitInt(Imm, RC); |
| 1917 | if (!Shift) |
| 1918 | return TmpReg1; |
| 1919 | |
| 1920 | // If upper 32 bits were not zero, we've built them and need to shift |
| 1921 | // them into place. |
| 1922 | unsigned TmpReg2; |
| 1923 | if (Imm) { |
| 1924 | TmpReg2 = createResultReg(RC); |
| 1925 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(PPC::RLDICR), |
| 1926 | TmpReg2).addReg(TmpReg1).addImm(Shift).addImm(63 - Shift); |
| 1927 | } else |
| 1928 | TmpReg2 = TmpReg1; |
| 1929 | |
| 1930 | unsigned TmpReg3, Hi, Lo; |
| 1931 | if ((Hi = (Remainder >> 16) & 0xFFFF)) { |
| 1932 | TmpReg3 = createResultReg(RC); |
| 1933 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(PPC::ORIS8), |
| 1934 | TmpReg3).addReg(TmpReg2).addImm(Hi); |
| 1935 | } else |
| 1936 | TmpReg3 = TmpReg2; |
| 1937 | |
| 1938 | if ((Lo = Remainder & 0xFFFF)) { |
| 1939 | unsigned ResultReg = createResultReg(RC); |
| 1940 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(PPC::ORI8), |
| 1941 | ResultReg).addReg(TmpReg3).addImm(Lo); |
| 1942 | return ResultReg; |
| 1943 | } |
| 1944 | |
| 1945 | return TmpReg3; |
| 1946 | } |
| 1947 | |
| 1948 | |
| 1949 | // Materialize an integer constant into a register, and return |
| 1950 | // the register number (or zero if we failed to handle it). |
| 1951 | unsigned PPCFastISel::PPCMaterializeInt(const Constant *C, MVT VT) { |
| 1952 | |
| 1953 | if (VT != MVT::i64 && VT != MVT::i32 && VT != MVT::i16 && |
| 1954 | VT != MVT::i8 && VT != MVT::i1) |
| 1955 | return 0; |
| 1956 | |
| 1957 | const TargetRegisterClass *RC = ((VT == MVT::i64) ? &PPC::G8RCRegClass : |
| 1958 | &PPC::GPRCRegClass); |
| 1959 | |
| 1960 | // If the constant is in range, use a load-immediate. |
| 1961 | const ConstantInt *CI = cast<ConstantInt>(C); |
| 1962 | if (isInt<16>(CI->getSExtValue())) { |
| 1963 | unsigned Opc = (VT == MVT::i64) ? PPC::LI8 : PPC::LI; |
| 1964 | unsigned ImmReg = createResultReg(RC); |
| 1965 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(Opc), ImmReg) |
| 1966 | .addImm(CI->getSExtValue()); |
| 1967 | return ImmReg; |
| 1968 | } |
| 1969 | |
| 1970 | // Construct the constant piecewise. |
| 1971 | int64_t Imm = CI->getZExtValue(); |
| 1972 | |
| 1973 | if (VT == MVT::i64) |
| 1974 | return PPCMaterialize64BitInt(Imm, RC); |
| 1975 | else if (VT == MVT::i32) |
| 1976 | return PPCMaterialize32BitInt(Imm, RC); |
| 1977 | |
| 1978 | return 0; |
| 1979 | } |
| 1980 | |
| 1981 | // Materialize a constant into a register, and return the register |
| 1982 | // number (or zero if we failed to handle it). |
| 1983 | unsigned PPCFastISel::TargetMaterializeConstant(const Constant *C) { |
| 1984 | EVT CEVT = TLI.getValueType(C->getType(), true); |
| 1985 | |
| 1986 | // Only handle simple types. |
| 1987 | if (!CEVT.isSimple()) return 0; |
| 1988 | MVT VT = CEVT.getSimpleVT(); |
| 1989 | |
| 1990 | if (const ConstantFP *CFP = dyn_cast<ConstantFP>(C)) |
| 1991 | return PPCMaterializeFP(CFP, VT); |
Bill Schmidt | 7248968 | 2013-08-30 02:29:45 +0000 | [diff] [blame] | 1992 | else if (const GlobalValue *GV = dyn_cast<GlobalValue>(C)) |
| 1993 | return PPCMaterializeGV(GV, VT); |
Bill Schmidt | 646cd79 | 2013-07-30 00:50:39 +0000 | [diff] [blame] | 1994 | else if (isa<ConstantInt>(C)) |
| 1995 | return PPCMaterializeInt(C, VT); |
| 1996 | // TBD: Global values. |
| 1997 | |
| 1998 | return 0; |
| 1999 | } |
| 2000 | |
| 2001 | // Materialize the address created by an alloca into a register, and |
| 2002 | // return the register number (or zero if we failed to handle it). TBD. |
| 2003 | unsigned PPCFastISel::TargetMaterializeAlloca(const AllocaInst *AI) { |
| 2004 | return AI && 0; |
| 2005 | } |
| 2006 | |
Bill Schmidt | 7248968 | 2013-08-30 02:29:45 +0000 | [diff] [blame] | 2007 | // Fold loads into extends when possible. |
| 2008 | // FIXME: We can have multiple redundant extend/trunc instructions |
| 2009 | // following a load. The folding only picks up one. Extend this |
| 2010 | // to check subsequent instructions for the same pattern and remove |
| 2011 | // them. Thus ResultReg should be the def reg for the last redundant |
| 2012 | // instruction in a chain, and all intervening instructions can be |
| 2013 | // removed from parent. Change test/CodeGen/PowerPC/fast-isel-fold.ll |
| 2014 | // to add ELF64-NOT: rldicl to the appropriate tests when this works. |
Bill Schmidt | 646cd79 | 2013-07-30 00:50:39 +0000 | [diff] [blame] | 2015 | bool PPCFastISel::tryToFoldLoadIntoMI(MachineInstr *MI, unsigned OpNo, |
| 2016 | const LoadInst *LI) { |
Bill Schmidt | 7248968 | 2013-08-30 02:29:45 +0000 | [diff] [blame] | 2017 | // Verify we have a legal type before going any further. |
| 2018 | MVT VT; |
| 2019 | if (!isLoadTypeLegal(LI->getType(), VT)) |
| 2020 | return false; |
| 2021 | |
| 2022 | // Combine load followed by zero- or sign-extend. |
| 2023 | bool IsZExt = false; |
| 2024 | switch(MI->getOpcode()) { |
| 2025 | default: |
| 2026 | return false; |
| 2027 | |
| 2028 | case PPC::RLDICL: |
| 2029 | case PPC::RLDICL_32_64: { |
| 2030 | IsZExt = true; |
| 2031 | unsigned MB = MI->getOperand(3).getImm(); |
| 2032 | if ((VT == MVT::i8 && MB <= 56) || |
| 2033 | (VT == MVT::i16 && MB <= 48) || |
| 2034 | (VT == MVT::i32 && MB <= 32)) |
| 2035 | break; |
| 2036 | return false; |
| 2037 | } |
| 2038 | |
| 2039 | case PPC::RLWINM: |
| 2040 | case PPC::RLWINM8: { |
| 2041 | IsZExt = true; |
| 2042 | unsigned MB = MI->getOperand(3).getImm(); |
| 2043 | if ((VT == MVT::i8 && MB <= 24) || |
| 2044 | (VT == MVT::i16 && MB <= 16)) |
| 2045 | break; |
| 2046 | return false; |
| 2047 | } |
| 2048 | |
| 2049 | case PPC::EXTSB: |
| 2050 | case PPC::EXTSB8: |
| 2051 | case PPC::EXTSB8_32_64: |
| 2052 | /* There is no sign-extending load-byte instruction. */ |
| 2053 | return false; |
| 2054 | |
| 2055 | case PPC::EXTSH: |
| 2056 | case PPC::EXTSH8: |
| 2057 | case PPC::EXTSH8_32_64: { |
| 2058 | if (VT != MVT::i16 && VT != MVT::i8) |
| 2059 | return false; |
| 2060 | break; |
| 2061 | } |
| 2062 | |
| 2063 | case PPC::EXTSW: |
| 2064 | case PPC::EXTSW_32_64: { |
| 2065 | if (VT != MVT::i32 && VT != MVT::i16 && VT != MVT::i8) |
| 2066 | return false; |
| 2067 | break; |
| 2068 | } |
| 2069 | } |
| 2070 | |
| 2071 | // See if we can handle this address. |
| 2072 | Address Addr; |
| 2073 | if (!PPCComputeAddress(LI->getOperand(0), Addr)) |
| 2074 | return false; |
| 2075 | |
| 2076 | unsigned ResultReg = MI->getOperand(0).getReg(); |
| 2077 | |
| 2078 | if (!PPCEmitLoad(VT, ResultReg, Addr, 0, IsZExt)) |
| 2079 | return false; |
| 2080 | |
| 2081 | MI->eraseFromParent(); |
| 2082 | return true; |
Bill Schmidt | 646cd79 | 2013-07-30 00:50:39 +0000 | [diff] [blame] | 2083 | } |
| 2084 | |
| 2085 | // Attempt to lower call arguments in a faster way than done by |
| 2086 | // the selection DAG code. |
| 2087 | bool PPCFastISel::FastLowerArguments() { |
| 2088 | // Defer to normal argument lowering for now. It's reasonably |
| 2089 | // efficient. Consider doing something like ARM to handle the |
| 2090 | // case where all args fit in registers, no varargs, no float |
| 2091 | // or vector args. |
| 2092 | return false; |
| 2093 | } |
| 2094 | |
Bill Schmidt | 3fad2bc | 2013-08-25 22:33:42 +0000 | [diff] [blame] | 2095 | // Handle materializing integer constants into a register. This is not |
| 2096 | // automatically generated for PowerPC, so must be explicitly created here. |
| 2097 | unsigned PPCFastISel::FastEmit_i(MVT Ty, MVT VT, unsigned Opc, uint64_t Imm) { |
| 2098 | |
| 2099 | if (Opc != ISD::Constant) |
| 2100 | return 0; |
| 2101 | |
| 2102 | if (VT != MVT::i64 && VT != MVT::i32 && VT != MVT::i16 && |
| 2103 | VT != MVT::i8 && VT != MVT::i1) |
| 2104 | return 0; |
| 2105 | |
| 2106 | const TargetRegisterClass *RC = ((VT == MVT::i64) ? &PPC::G8RCRegClass : |
| 2107 | &PPC::GPRCRegClass); |
| 2108 | if (VT == MVT::i64) |
| 2109 | return PPCMaterialize64BitInt(Imm, RC); |
| 2110 | else |
| 2111 | return PPCMaterialize32BitInt(Imm, RC); |
| 2112 | } |
| 2113 | |
Bill Schmidt | 7248968 | 2013-08-30 02:29:45 +0000 | [diff] [blame] | 2114 | // Override for ADDI and ADDI8 to set the correct register class |
| 2115 | // on RHS operand 0. The automatic infrastructure naively assumes |
| 2116 | // GPRC for i32 and G8RC for i64; the concept of "no R0" is lost |
| 2117 | // for these cases. At the moment, none of the other automatically |
| 2118 | // generated RI instructions require special treatment. However, once |
| 2119 | // SelectSelect is implemented, "isel" requires similar handling. |
| 2120 | // |
| 2121 | // Also be conservative about the output register class. Avoid |
| 2122 | // assigning R0 or X0 to the output register for GPRC and G8RC |
| 2123 | // register classes, as any such result could be used in ADDI, etc., |
| 2124 | // where those regs have another meaning. |
| 2125 | unsigned PPCFastISel::FastEmitInst_ri(unsigned MachineInstOpcode, |
| 2126 | const TargetRegisterClass *RC, |
| 2127 | unsigned Op0, bool Op0IsKill, |
| 2128 | uint64_t Imm) { |
| 2129 | if (MachineInstOpcode == PPC::ADDI) |
| 2130 | MRI.setRegClass(Op0, &PPC::GPRC_and_GPRC_NOR0RegClass); |
| 2131 | else if (MachineInstOpcode == PPC::ADDI8) |
| 2132 | MRI.setRegClass(Op0, &PPC::G8RC_and_G8RC_NOX0RegClass); |
| 2133 | |
| 2134 | const TargetRegisterClass *UseRC = |
| 2135 | (RC == &PPC::GPRCRegClass ? &PPC::GPRC_and_GPRC_NOR0RegClass : |
| 2136 | (RC == &PPC::G8RCRegClass ? &PPC::G8RC_and_G8RC_NOX0RegClass : RC)); |
| 2137 | |
| 2138 | return FastISel::FastEmitInst_ri(MachineInstOpcode, UseRC, |
| 2139 | Op0, Op0IsKill, Imm); |
| 2140 | } |
| 2141 | |
| 2142 | // Override for instructions with one register operand to avoid use of |
| 2143 | // R0/X0. The automatic infrastructure isn't aware of the context so |
| 2144 | // we must be conservative. |
| 2145 | unsigned PPCFastISel::FastEmitInst_r(unsigned MachineInstOpcode, |
| 2146 | const TargetRegisterClass* RC, |
| 2147 | unsigned Op0, bool Op0IsKill) { |
| 2148 | const TargetRegisterClass *UseRC = |
| 2149 | (RC == &PPC::GPRCRegClass ? &PPC::GPRC_and_GPRC_NOR0RegClass : |
| 2150 | (RC == &PPC::G8RCRegClass ? &PPC::G8RC_and_G8RC_NOX0RegClass : RC)); |
| 2151 | |
| 2152 | return FastISel::FastEmitInst_r(MachineInstOpcode, UseRC, Op0, Op0IsKill); |
| 2153 | } |
| 2154 | |
| 2155 | // Override for instructions with two register operands to avoid use |
| 2156 | // of R0/X0. The automatic infrastructure isn't aware of the context |
| 2157 | // so we must be conservative. |
| 2158 | unsigned PPCFastISel::FastEmitInst_rr(unsigned MachineInstOpcode, |
| 2159 | const TargetRegisterClass* RC, |
| 2160 | unsigned Op0, bool Op0IsKill, |
| 2161 | unsigned Op1, bool Op1IsKill) { |
| 2162 | const TargetRegisterClass *UseRC = |
| 2163 | (RC == &PPC::GPRCRegClass ? &PPC::GPRC_and_GPRC_NOR0RegClass : |
| 2164 | (RC == &PPC::G8RCRegClass ? &PPC::G8RC_and_G8RC_NOX0RegClass : RC)); |
| 2165 | |
| 2166 | return FastISel::FastEmitInst_rr(MachineInstOpcode, UseRC, Op0, Op0IsKill, |
| 2167 | Op1, Op1IsKill); |
| 2168 | } |
| 2169 | |
Bill Schmidt | 646cd79 | 2013-07-30 00:50:39 +0000 | [diff] [blame] | 2170 | namespace llvm { |
| 2171 | // Create the fast instruction selector for PowerPC64 ELF. |
| 2172 | FastISel *PPC::createFastISel(FunctionLoweringInfo &FuncInfo, |
| 2173 | const TargetLibraryInfo *LibInfo) { |
| 2174 | const TargetMachine &TM = FuncInfo.MF->getTarget(); |
| 2175 | |
| 2176 | // Only available on 64-bit ELF for now. |
| 2177 | const PPCSubtarget *Subtarget = &TM.getSubtarget<PPCSubtarget>(); |
| 2178 | if (Subtarget->isPPC64() && Subtarget->isSVR4ABI()) |
| 2179 | return new PPCFastISel(FuncInfo, LibInfo); |
| 2180 | |
| 2181 | return 0; |
| 2182 | } |
| 2183 | } |