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