1 //===-- llvm/lib/Target/AMDGPU/AMDGPUCallLowering.cpp - Call lowering -----===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 /// 9 /// \file 10 /// This file implements the lowering of LLVM calls to machine code calls for 11 /// GlobalISel. 12 /// 13 //===----------------------------------------------------------------------===// 14 15 #include "AMDGPUCallLowering.h" 16 #include "AMDGPU.h" 17 #include "AMDGPULegalizerInfo.h" 18 #include "AMDGPUTargetMachine.h" 19 #include "SIMachineFunctionInfo.h" 20 #include "SIRegisterInfo.h" 21 #include "llvm/CodeGen/Analysis.h" 22 #include "llvm/CodeGen/FunctionLoweringInfo.h" 23 #include "llvm/CodeGen/GlobalISel/MachineIRBuilder.h" 24 #include "llvm/CodeGen/MachineFrameInfo.h" 25 #include "llvm/IR/IntrinsicsAMDGPU.h" 26 27 #define DEBUG_TYPE "amdgpu-call-lowering" 28 29 using namespace llvm; 30 31 namespace { 32 33 /// Wrapper around extendRegister to ensure we extend to a full 32-bit register. 34 static Register extendRegisterMin32(CallLowering::ValueHandler &Handler, 35 Register ValVReg, CCValAssign &VA) { 36 if (VA.getLocVT().getSizeInBits() < 32) { 37 // 16-bit types are reported as legal for 32-bit registers. We need to 38 // extend and do a 32-bit copy to avoid the verifier complaining about it. 39 return Handler.MIRBuilder.buildAnyExt(LLT::scalar(32), ValVReg).getReg(0); 40 } 41 42 return Handler.extendRegister(ValVReg, VA); 43 } 44 45 struct AMDGPUOutgoingValueHandler : public CallLowering::OutgoingValueHandler { 46 AMDGPUOutgoingValueHandler(MachineIRBuilder &B, MachineRegisterInfo &MRI, 47 MachineInstrBuilder MIB) 48 : OutgoingValueHandler(B, MRI), MIB(MIB) {} 49 50 MachineInstrBuilder MIB; 51 52 Register getStackAddress(uint64_t Size, int64_t Offset, 53 MachinePointerInfo &MPO, 54 ISD::ArgFlagsTy Flags) override { 55 llvm_unreachable("not implemented"); 56 } 57 58 void assignValueToAddress(Register ValVReg, Register Addr, LLT MemTy, 59 MachinePointerInfo &MPO, CCValAssign &VA) override { 60 llvm_unreachable("not implemented"); 61 } 62 63 void assignValueToReg(Register ValVReg, Register PhysReg, 64 CCValAssign VA) override { 65 Register ExtReg = extendRegisterMin32(*this, ValVReg, VA); 66 67 // If this is a scalar return, insert a readfirstlane just in case the value 68 // ends up in a VGPR. 69 // FIXME: Assert this is a shader return. 70 const SIRegisterInfo *TRI 71 = static_cast<const SIRegisterInfo *>(MRI.getTargetRegisterInfo()); 72 if (TRI->isSGPRReg(MRI, PhysReg)) { 73 LLT Ty = MRI.getType(ExtReg); 74 LLT S32 = LLT::scalar(32); 75 if (Ty != S32) { 76 // FIXME: We should probably support readfirstlane intrinsics with all 77 // legal 32-bit types. 78 assert(Ty.getSizeInBits() == 32); 79 if (Ty.isPointer()) 80 ExtReg = MIRBuilder.buildPtrToInt(S32, ExtReg).getReg(0); 81 else 82 ExtReg = MIRBuilder.buildBitcast(S32, ExtReg).getReg(0); 83 } 84 85 auto ToSGPR = MIRBuilder.buildIntrinsic(Intrinsic::amdgcn_readfirstlane, 86 {MRI.getType(ExtReg)}, false) 87 .addReg(ExtReg); 88 ExtReg = ToSGPR.getReg(0); 89 } 90 91 MIRBuilder.buildCopy(PhysReg, ExtReg); 92 MIB.addUse(PhysReg, RegState::Implicit); 93 } 94 }; 95 96 struct AMDGPUIncomingArgHandler : public CallLowering::IncomingValueHandler { 97 uint64_t StackUsed = 0; 98 99 AMDGPUIncomingArgHandler(MachineIRBuilder &B, MachineRegisterInfo &MRI) 100 : IncomingValueHandler(B, MRI) {} 101 102 Register getStackAddress(uint64_t Size, int64_t Offset, 103 MachinePointerInfo &MPO, 104 ISD::ArgFlagsTy Flags) override { 105 auto &MFI = MIRBuilder.getMF().getFrameInfo(); 106 107 // Byval is assumed to be writable memory, but other stack passed arguments 108 // are not. 109 const bool IsImmutable = !Flags.isByVal(); 110 int FI = MFI.CreateFixedObject(Size, Offset, IsImmutable); 111 MPO = MachinePointerInfo::getFixedStack(MIRBuilder.getMF(), FI); 112 auto AddrReg = MIRBuilder.buildFrameIndex( 113 LLT::pointer(AMDGPUAS::PRIVATE_ADDRESS, 32), FI); 114 StackUsed = std::max(StackUsed, Size + Offset); 115 return AddrReg.getReg(0); 116 } 117 118 void assignValueToReg(Register ValVReg, Register PhysReg, 119 CCValAssign VA) override { 120 markPhysRegUsed(PhysReg); 121 122 if (VA.getLocVT().getSizeInBits() < 32) { 123 // 16-bit types are reported as legal for 32-bit registers. We need to do 124 // a 32-bit copy, and truncate to avoid the verifier complaining about it. 125 auto Copy = MIRBuilder.buildCopy(LLT::scalar(32), PhysReg); 126 127 // If we have signext/zeroext, it applies to the whole 32-bit register 128 // before truncation. 129 auto Extended = 130 buildExtensionHint(VA, Copy.getReg(0), LLT(VA.getLocVT())); 131 MIRBuilder.buildTrunc(ValVReg, Extended); 132 return; 133 } 134 135 IncomingValueHandler::assignValueToReg(ValVReg, PhysReg, VA); 136 } 137 138 void assignValueToAddress(Register ValVReg, Register Addr, LLT MemTy, 139 MachinePointerInfo &MPO, CCValAssign &VA) override { 140 MachineFunction &MF = MIRBuilder.getMF(); 141 142 auto MMO = MF.getMachineMemOperand( 143 MPO, MachineMemOperand::MOLoad | MachineMemOperand::MOInvariant, MemTy, 144 inferAlignFromPtrInfo(MF, MPO)); 145 MIRBuilder.buildLoad(ValVReg, Addr, *MMO); 146 } 147 148 /// How the physical register gets marked varies between formal 149 /// parameters (it's a basic-block live-in), and a call instruction 150 /// (it's an implicit-def of the BL). 151 virtual void markPhysRegUsed(unsigned PhysReg) = 0; 152 }; 153 154 struct FormalArgHandler : public AMDGPUIncomingArgHandler { 155 FormalArgHandler(MachineIRBuilder &B, MachineRegisterInfo &MRI) 156 : AMDGPUIncomingArgHandler(B, MRI) {} 157 158 void markPhysRegUsed(unsigned PhysReg) override { 159 MIRBuilder.getMBB().addLiveIn(PhysReg); 160 } 161 }; 162 163 struct CallReturnHandler : public AMDGPUIncomingArgHandler { 164 CallReturnHandler(MachineIRBuilder &MIRBuilder, MachineRegisterInfo &MRI, 165 MachineInstrBuilder MIB) 166 : AMDGPUIncomingArgHandler(MIRBuilder, MRI), MIB(MIB) {} 167 168 void markPhysRegUsed(unsigned PhysReg) override { 169 MIB.addDef(PhysReg, RegState::Implicit); 170 } 171 172 MachineInstrBuilder MIB; 173 }; 174 175 struct AMDGPUOutgoingArgHandler : public AMDGPUOutgoingValueHandler { 176 /// For tail calls, the byte offset of the call's argument area from the 177 /// callee's. Unused elsewhere. 178 int FPDiff; 179 180 // Cache the SP register vreg if we need it more than once in this call site. 181 Register SPReg; 182 183 bool IsTailCall; 184 185 AMDGPUOutgoingArgHandler(MachineIRBuilder &MIRBuilder, 186 MachineRegisterInfo &MRI, MachineInstrBuilder MIB, 187 bool IsTailCall = false, int FPDiff = 0) 188 : AMDGPUOutgoingValueHandler(MIRBuilder, MRI, MIB), FPDiff(FPDiff), 189 IsTailCall(IsTailCall) {} 190 191 Register getStackAddress(uint64_t Size, int64_t Offset, 192 MachinePointerInfo &MPO, 193 ISD::ArgFlagsTy Flags) override { 194 MachineFunction &MF = MIRBuilder.getMF(); 195 const LLT PtrTy = LLT::pointer(AMDGPUAS::PRIVATE_ADDRESS, 32); 196 const LLT S32 = LLT::scalar(32); 197 198 if (IsTailCall) { 199 Offset += FPDiff; 200 int FI = MF.getFrameInfo().CreateFixedObject(Size, Offset, true); 201 auto FIReg = MIRBuilder.buildFrameIndex(PtrTy, FI); 202 MPO = MachinePointerInfo::getFixedStack(MF, FI); 203 return FIReg.getReg(0); 204 } 205 206 const SIMachineFunctionInfo *MFI = MF.getInfo<SIMachineFunctionInfo>(); 207 208 if (!SPReg) { 209 const GCNSubtarget &ST = MIRBuilder.getMF().getSubtarget<GCNSubtarget>(); 210 if (ST.enableFlatScratch()) { 211 // The stack is accessed unswizzled, so we can use a regular copy. 212 SPReg = MIRBuilder.buildCopy(PtrTy, 213 MFI->getStackPtrOffsetReg()).getReg(0); 214 } else { 215 // The address we produce here, without knowing the use context, is going 216 // to be interpreted as a vector address, so we need to convert to a 217 // swizzled address. 218 SPReg = MIRBuilder.buildInstr(AMDGPU::G_AMDGPU_WAVE_ADDRESS, {PtrTy}, 219 {MFI->getStackPtrOffsetReg()}).getReg(0); 220 } 221 } 222 223 auto OffsetReg = MIRBuilder.buildConstant(S32, Offset); 224 225 auto AddrReg = MIRBuilder.buildPtrAdd(PtrTy, SPReg, OffsetReg); 226 MPO = MachinePointerInfo::getStack(MF, Offset); 227 return AddrReg.getReg(0); 228 } 229 230 void assignValueToReg(Register ValVReg, Register PhysReg, 231 CCValAssign VA) override { 232 MIB.addUse(PhysReg, RegState::Implicit); 233 Register ExtReg = extendRegisterMin32(*this, ValVReg, VA); 234 MIRBuilder.buildCopy(PhysReg, ExtReg); 235 } 236 237 void assignValueToAddress(Register ValVReg, Register Addr, LLT MemTy, 238 MachinePointerInfo &MPO, CCValAssign &VA) override { 239 MachineFunction &MF = MIRBuilder.getMF(); 240 uint64_t LocMemOffset = VA.getLocMemOffset(); 241 const auto &ST = MF.getSubtarget<GCNSubtarget>(); 242 243 auto MMO = MF.getMachineMemOperand( 244 MPO, MachineMemOperand::MOStore, MemTy, 245 commonAlignment(ST.getStackAlignment(), LocMemOffset)); 246 MIRBuilder.buildStore(ValVReg, Addr, *MMO); 247 } 248 249 void assignValueToAddress(const CallLowering::ArgInfo &Arg, 250 unsigned ValRegIndex, Register Addr, LLT MemTy, 251 MachinePointerInfo &MPO, CCValAssign &VA) override { 252 Register ValVReg = VA.getLocInfo() != CCValAssign::LocInfo::FPExt 253 ? extendRegister(Arg.Regs[ValRegIndex], VA) 254 : Arg.Regs[ValRegIndex]; 255 assignValueToAddress(ValVReg, Addr, MemTy, MPO, VA); 256 } 257 }; 258 } 259 260 AMDGPUCallLowering::AMDGPUCallLowering(const AMDGPUTargetLowering &TLI) 261 : CallLowering(&TLI) { 262 } 263 264 // FIXME: Compatibility shim 265 static ISD::NodeType extOpcodeToISDExtOpcode(unsigned MIOpc) { 266 switch (MIOpc) { 267 case TargetOpcode::G_SEXT: 268 return ISD::SIGN_EXTEND; 269 case TargetOpcode::G_ZEXT: 270 return ISD::ZERO_EXTEND; 271 case TargetOpcode::G_ANYEXT: 272 return ISD::ANY_EXTEND; 273 default: 274 llvm_unreachable("not an extend opcode"); 275 } 276 } 277 278 bool AMDGPUCallLowering::canLowerReturn(MachineFunction &MF, 279 CallingConv::ID CallConv, 280 SmallVectorImpl<BaseArgInfo> &Outs, 281 bool IsVarArg) const { 282 // For shaders. Vector types should be explicitly handled by CC. 283 if (AMDGPU::isEntryFunctionCC(CallConv)) 284 return true; 285 286 SmallVector<CCValAssign, 16> ArgLocs; 287 const SITargetLowering &TLI = *getTLI<SITargetLowering>(); 288 CCState CCInfo(CallConv, IsVarArg, MF, ArgLocs, 289 MF.getFunction().getContext()); 290 291 return checkReturn(CCInfo, Outs, TLI.CCAssignFnForReturn(CallConv, IsVarArg)); 292 } 293 294 /// Lower the return value for the already existing \p Ret. This assumes that 295 /// \p B's insertion point is correct. 296 bool AMDGPUCallLowering::lowerReturnVal(MachineIRBuilder &B, 297 const Value *Val, ArrayRef<Register> VRegs, 298 MachineInstrBuilder &Ret) const { 299 if (!Val) 300 return true; 301 302 auto &MF = B.getMF(); 303 const auto &F = MF.getFunction(); 304 const DataLayout &DL = MF.getDataLayout(); 305 MachineRegisterInfo *MRI = B.getMRI(); 306 LLVMContext &Ctx = F.getContext(); 307 308 CallingConv::ID CC = F.getCallingConv(); 309 const SITargetLowering &TLI = *getTLI<SITargetLowering>(); 310 311 SmallVector<EVT, 8> SplitEVTs; 312 ComputeValueVTs(TLI, DL, Val->getType(), SplitEVTs); 313 assert(VRegs.size() == SplitEVTs.size() && 314 "For each split Type there should be exactly one VReg."); 315 316 SmallVector<ArgInfo, 8> SplitRetInfos; 317 318 for (unsigned i = 0; i < SplitEVTs.size(); ++i) { 319 EVT VT = SplitEVTs[i]; 320 Register Reg = VRegs[i]; 321 ArgInfo RetInfo(Reg, VT.getTypeForEVT(Ctx), 0); 322 setArgFlags(RetInfo, AttributeList::ReturnIndex, DL, F); 323 324 if (VT.isScalarInteger()) { 325 unsigned ExtendOp = TargetOpcode::G_ANYEXT; 326 if (RetInfo.Flags[0].isSExt()) { 327 assert(RetInfo.Regs.size() == 1 && "expect only simple return values"); 328 ExtendOp = TargetOpcode::G_SEXT; 329 } else if (RetInfo.Flags[0].isZExt()) { 330 assert(RetInfo.Regs.size() == 1 && "expect only simple return values"); 331 ExtendOp = TargetOpcode::G_ZEXT; 332 } 333 334 EVT ExtVT = TLI.getTypeForExtReturn(Ctx, VT, 335 extOpcodeToISDExtOpcode(ExtendOp)); 336 if (ExtVT != VT) { 337 RetInfo.Ty = ExtVT.getTypeForEVT(Ctx); 338 LLT ExtTy = getLLTForType(*RetInfo.Ty, DL); 339 Reg = B.buildInstr(ExtendOp, {ExtTy}, {Reg}).getReg(0); 340 } 341 } 342 343 if (Reg != RetInfo.Regs[0]) { 344 RetInfo.Regs[0] = Reg; 345 // Reset the arg flags after modifying Reg. 346 setArgFlags(RetInfo, AttributeList::ReturnIndex, DL, F); 347 } 348 349 splitToValueTypes(RetInfo, SplitRetInfos, DL, CC); 350 } 351 352 CCAssignFn *AssignFn = TLI.CCAssignFnForReturn(CC, F.isVarArg()); 353 354 OutgoingValueAssigner Assigner(AssignFn); 355 AMDGPUOutgoingValueHandler RetHandler(B, *MRI, Ret); 356 return determineAndHandleAssignments(RetHandler, Assigner, SplitRetInfos, B, 357 CC, F.isVarArg()); 358 } 359 360 bool AMDGPUCallLowering::lowerReturn(MachineIRBuilder &B, const Value *Val, 361 ArrayRef<Register> VRegs, 362 FunctionLoweringInfo &FLI) const { 363 364 MachineFunction &MF = B.getMF(); 365 SIMachineFunctionInfo *MFI = MF.getInfo<SIMachineFunctionInfo>(); 366 MFI->setIfReturnsVoid(!Val); 367 368 assert(!Val == VRegs.empty() && "Return value without a vreg"); 369 370 CallingConv::ID CC = B.getMF().getFunction().getCallingConv(); 371 const bool IsShader = AMDGPU::isShader(CC); 372 const bool IsWaveEnd = 373 (IsShader && MFI->returnsVoid()) || AMDGPU::isKernel(CC); 374 if (IsWaveEnd) { 375 B.buildInstr(AMDGPU::S_ENDPGM) 376 .addImm(0); 377 return true; 378 } 379 380 unsigned ReturnOpc = 381 IsShader ? AMDGPU::SI_RETURN_TO_EPILOG : AMDGPU::SI_RETURN; 382 auto Ret = B.buildInstrNoInsert(ReturnOpc); 383 384 if (!FLI.CanLowerReturn) 385 insertSRetStores(B, Val->getType(), VRegs, FLI.DemoteRegister); 386 else if (!lowerReturnVal(B, Val, VRegs, Ret)) 387 return false; 388 389 // TODO: Handle CalleeSavedRegsViaCopy. 390 391 B.insertInstr(Ret); 392 return true; 393 } 394 395 void AMDGPUCallLowering::lowerParameterPtr(Register DstReg, MachineIRBuilder &B, 396 uint64_t Offset) const { 397 MachineFunction &MF = B.getMF(); 398 const SIMachineFunctionInfo *MFI = MF.getInfo<SIMachineFunctionInfo>(); 399 MachineRegisterInfo &MRI = MF.getRegInfo(); 400 Register KernArgSegmentPtr = 401 MFI->getPreloadedReg(AMDGPUFunctionArgInfo::KERNARG_SEGMENT_PTR); 402 Register KernArgSegmentVReg = MRI.getLiveInVirtReg(KernArgSegmentPtr); 403 404 auto OffsetReg = B.buildConstant(LLT::scalar(64), Offset); 405 406 B.buildPtrAdd(DstReg, KernArgSegmentVReg, OffsetReg); 407 } 408 409 void AMDGPUCallLowering::lowerParameter(MachineIRBuilder &B, ArgInfo &OrigArg, 410 uint64_t Offset, 411 Align Alignment) const { 412 MachineFunction &MF = B.getMF(); 413 const Function &F = MF.getFunction(); 414 const DataLayout &DL = F.getParent()->getDataLayout(); 415 MachinePointerInfo PtrInfo(AMDGPUAS::CONSTANT_ADDRESS); 416 417 LLT PtrTy = LLT::pointer(AMDGPUAS::CONSTANT_ADDRESS, 64); 418 419 SmallVector<ArgInfo, 32> SplitArgs; 420 SmallVector<uint64_t> FieldOffsets; 421 splitToValueTypes(OrigArg, SplitArgs, DL, F.getCallingConv(), &FieldOffsets); 422 423 unsigned Idx = 0; 424 for (ArgInfo &SplitArg : SplitArgs) { 425 Register PtrReg = B.getMRI()->createGenericVirtualRegister(PtrTy); 426 lowerParameterPtr(PtrReg, B, Offset + FieldOffsets[Idx]); 427 428 LLT ArgTy = getLLTForType(*SplitArg.Ty, DL); 429 if (SplitArg.Flags[0].isPointer()) { 430 // Compensate for losing pointeriness in splitValueTypes. 431 LLT PtrTy = LLT::pointer(SplitArg.Flags[0].getPointerAddrSpace(), 432 ArgTy.getScalarSizeInBits()); 433 ArgTy = ArgTy.isVector() ? LLT::vector(ArgTy.getElementCount(), PtrTy) 434 : PtrTy; 435 } 436 437 MachineMemOperand *MMO = MF.getMachineMemOperand( 438 PtrInfo, 439 MachineMemOperand::MOLoad | MachineMemOperand::MODereferenceable | 440 MachineMemOperand::MOInvariant, 441 ArgTy, commonAlignment(Alignment, FieldOffsets[Idx])); 442 443 assert(SplitArg.Regs.size() == 1); 444 445 B.buildLoad(SplitArg.Regs[0], PtrReg, *MMO); 446 ++Idx; 447 } 448 } 449 450 // Allocate special inputs passed in user SGPRs. 451 static void allocateHSAUserSGPRs(CCState &CCInfo, 452 MachineIRBuilder &B, 453 MachineFunction &MF, 454 const SIRegisterInfo &TRI, 455 SIMachineFunctionInfo &Info) { 456 // FIXME: How should these inputs interact with inreg / custom SGPR inputs? 457 if (Info.hasPrivateSegmentBuffer()) { 458 Register PrivateSegmentBufferReg = Info.addPrivateSegmentBuffer(TRI); 459 MF.addLiveIn(PrivateSegmentBufferReg, &AMDGPU::SGPR_128RegClass); 460 CCInfo.AllocateReg(PrivateSegmentBufferReg); 461 } 462 463 if (Info.hasDispatchPtr()) { 464 Register DispatchPtrReg = Info.addDispatchPtr(TRI); 465 MF.addLiveIn(DispatchPtrReg, &AMDGPU::SGPR_64RegClass); 466 CCInfo.AllocateReg(DispatchPtrReg); 467 } 468 469 const Module *M = MF.getFunction().getParent(); 470 if (Info.hasQueuePtr() && 471 AMDGPU::getCodeObjectVersion(*M) < AMDGPU::AMDHSA_COV5) { 472 Register QueuePtrReg = Info.addQueuePtr(TRI); 473 MF.addLiveIn(QueuePtrReg, &AMDGPU::SGPR_64RegClass); 474 CCInfo.AllocateReg(QueuePtrReg); 475 } 476 477 if (Info.hasKernargSegmentPtr()) { 478 MachineRegisterInfo &MRI = MF.getRegInfo(); 479 Register InputPtrReg = Info.addKernargSegmentPtr(TRI); 480 const LLT P4 = LLT::pointer(AMDGPUAS::CONSTANT_ADDRESS, 64); 481 Register VReg = MRI.createGenericVirtualRegister(P4); 482 MRI.addLiveIn(InputPtrReg, VReg); 483 B.getMBB().addLiveIn(InputPtrReg); 484 B.buildCopy(VReg, InputPtrReg); 485 CCInfo.AllocateReg(InputPtrReg); 486 } 487 488 if (Info.hasDispatchID()) { 489 Register DispatchIDReg = Info.addDispatchID(TRI); 490 MF.addLiveIn(DispatchIDReg, &AMDGPU::SGPR_64RegClass); 491 CCInfo.AllocateReg(DispatchIDReg); 492 } 493 494 if (Info.hasFlatScratchInit()) { 495 Register FlatScratchInitReg = Info.addFlatScratchInit(TRI); 496 MF.addLiveIn(FlatScratchInitReg, &AMDGPU::SGPR_64RegClass); 497 CCInfo.AllocateReg(FlatScratchInitReg); 498 } 499 500 // TODO: Add GridWorkGroupCount user SGPRs when used. For now with HSA we read 501 // these from the dispatch pointer. 502 } 503 504 bool AMDGPUCallLowering::lowerFormalArgumentsKernel( 505 MachineIRBuilder &B, const Function &F, 506 ArrayRef<ArrayRef<Register>> VRegs) const { 507 MachineFunction &MF = B.getMF(); 508 const GCNSubtarget *Subtarget = &MF.getSubtarget<GCNSubtarget>(); 509 MachineRegisterInfo &MRI = MF.getRegInfo(); 510 SIMachineFunctionInfo *Info = MF.getInfo<SIMachineFunctionInfo>(); 511 const SIRegisterInfo *TRI = Subtarget->getRegisterInfo(); 512 const SITargetLowering &TLI = *getTLI<SITargetLowering>(); 513 const DataLayout &DL = F.getParent()->getDataLayout(); 514 515 SmallVector<CCValAssign, 16> ArgLocs; 516 CCState CCInfo(F.getCallingConv(), F.isVarArg(), MF, ArgLocs, F.getContext()); 517 518 allocateHSAUserSGPRs(CCInfo, B, MF, *TRI, *Info); 519 520 unsigned i = 0; 521 const Align KernArgBaseAlign(16); 522 const unsigned BaseOffset = Subtarget->getExplicitKernelArgOffset(); 523 uint64_t ExplicitArgOffset = 0; 524 525 // TODO: Align down to dword alignment and extract bits for extending loads. 526 for (auto &Arg : F.args()) { 527 const bool IsByRef = Arg.hasByRefAttr(); 528 Type *ArgTy = IsByRef ? Arg.getParamByRefType() : Arg.getType(); 529 unsigned AllocSize = DL.getTypeAllocSize(ArgTy); 530 if (AllocSize == 0) 531 continue; 532 533 MaybeAlign ParamAlign = IsByRef ? Arg.getParamAlign() : std::nullopt; 534 Align ABIAlign = DL.getValueOrABITypeAlignment(ParamAlign, ArgTy); 535 536 uint64_t ArgOffset = alignTo(ExplicitArgOffset, ABIAlign) + BaseOffset; 537 ExplicitArgOffset = alignTo(ExplicitArgOffset, ABIAlign) + AllocSize; 538 539 if (Arg.use_empty()) { 540 ++i; 541 continue; 542 } 543 544 Align Alignment = commonAlignment(KernArgBaseAlign, ArgOffset); 545 546 if (IsByRef) { 547 unsigned ByRefAS = cast<PointerType>(Arg.getType())->getAddressSpace(); 548 549 assert(VRegs[i].size() == 1 && 550 "expected only one register for byval pointers"); 551 if (ByRefAS == AMDGPUAS::CONSTANT_ADDRESS) { 552 lowerParameterPtr(VRegs[i][0], B, ArgOffset); 553 } else { 554 const LLT ConstPtrTy = LLT::pointer(AMDGPUAS::CONSTANT_ADDRESS, 64); 555 Register PtrReg = MRI.createGenericVirtualRegister(ConstPtrTy); 556 lowerParameterPtr(PtrReg, B, ArgOffset); 557 558 B.buildAddrSpaceCast(VRegs[i][0], PtrReg); 559 } 560 } else { 561 ArgInfo OrigArg(VRegs[i], Arg, i); 562 const unsigned OrigArgIdx = i + AttributeList::FirstArgIndex; 563 setArgFlags(OrigArg, OrigArgIdx, DL, F); 564 lowerParameter(B, OrigArg, ArgOffset, Alignment); 565 } 566 567 ++i; 568 } 569 570 TLI.allocateSpecialEntryInputVGPRs(CCInfo, MF, *TRI, *Info); 571 TLI.allocateSystemSGPRs(CCInfo, MF, *Info, F.getCallingConv(), false); 572 return true; 573 } 574 575 bool AMDGPUCallLowering::lowerFormalArguments( 576 MachineIRBuilder &B, const Function &F, ArrayRef<ArrayRef<Register>> VRegs, 577 FunctionLoweringInfo &FLI) const { 578 CallingConv::ID CC = F.getCallingConv(); 579 580 // The infrastructure for normal calling convention lowering is essentially 581 // useless for kernels. We want to avoid any kind of legalization or argument 582 // splitting. 583 if (CC == CallingConv::AMDGPU_KERNEL) 584 return lowerFormalArgumentsKernel(B, F, VRegs); 585 586 const bool IsGraphics = AMDGPU::isGraphics(CC); 587 const bool IsEntryFunc = AMDGPU::isEntryFunctionCC(CC); 588 589 MachineFunction &MF = B.getMF(); 590 MachineBasicBlock &MBB = B.getMBB(); 591 MachineRegisterInfo &MRI = MF.getRegInfo(); 592 SIMachineFunctionInfo *Info = MF.getInfo<SIMachineFunctionInfo>(); 593 const GCNSubtarget &Subtarget = MF.getSubtarget<GCNSubtarget>(); 594 const SIRegisterInfo *TRI = Subtarget.getRegisterInfo(); 595 const DataLayout &DL = F.getParent()->getDataLayout(); 596 597 SmallVector<CCValAssign, 16> ArgLocs; 598 CCState CCInfo(CC, F.isVarArg(), MF, ArgLocs, F.getContext()); 599 600 if (Info->hasImplicitBufferPtr()) { 601 Register ImplicitBufferPtrReg = Info->addImplicitBufferPtr(*TRI); 602 MF.addLiveIn(ImplicitBufferPtrReg, &AMDGPU::SGPR_64RegClass); 603 CCInfo.AllocateReg(ImplicitBufferPtrReg); 604 } 605 606 // FIXME: This probably isn't defined for mesa 607 if (Info->hasFlatScratchInit() && !Subtarget.isAmdPalOS()) { 608 Register FlatScratchInitReg = Info->addFlatScratchInit(*TRI); 609 MF.addLiveIn(FlatScratchInitReg, &AMDGPU::SGPR_64RegClass); 610 CCInfo.AllocateReg(FlatScratchInitReg); 611 } 612 613 SmallVector<ArgInfo, 32> SplitArgs; 614 unsigned Idx = 0; 615 unsigned PSInputNum = 0; 616 617 // Insert the hidden sret parameter if the return value won't fit in the 618 // return registers. 619 if (!FLI.CanLowerReturn) 620 insertSRetIncomingArgument(F, SplitArgs, FLI.DemoteRegister, MRI, DL); 621 622 for (auto &Arg : F.args()) { 623 if (DL.getTypeStoreSize(Arg.getType()) == 0) 624 continue; 625 626 const bool InReg = Arg.hasAttribute(Attribute::InReg); 627 628 // SGPR arguments to functions not implemented. 629 if (!IsGraphics && InReg) 630 return false; 631 632 if (Arg.hasAttribute(Attribute::SwiftSelf) || 633 Arg.hasAttribute(Attribute::SwiftError) || 634 Arg.hasAttribute(Attribute::Nest)) 635 return false; 636 637 if (CC == CallingConv::AMDGPU_PS && !InReg && PSInputNum <= 15) { 638 const bool ArgUsed = !Arg.use_empty(); 639 bool SkipArg = !ArgUsed && !Info->isPSInputAllocated(PSInputNum); 640 641 if (!SkipArg) { 642 Info->markPSInputAllocated(PSInputNum); 643 if (ArgUsed) 644 Info->markPSInputEnabled(PSInputNum); 645 } 646 647 ++PSInputNum; 648 649 if (SkipArg) { 650 for (Register R : VRegs[Idx]) 651 B.buildUndef(R); 652 653 ++Idx; 654 continue; 655 } 656 } 657 658 ArgInfo OrigArg(VRegs[Idx], Arg, Idx); 659 const unsigned OrigArgIdx = Idx + AttributeList::FirstArgIndex; 660 setArgFlags(OrigArg, OrigArgIdx, DL, F); 661 662 splitToValueTypes(OrigArg, SplitArgs, DL, CC); 663 ++Idx; 664 } 665 666 // At least one interpolation mode must be enabled or else the GPU will 667 // hang. 668 // 669 // Check PSInputAddr instead of PSInputEnable. The idea is that if the user 670 // set PSInputAddr, the user wants to enable some bits after the compilation 671 // based on run-time states. Since we can't know what the final PSInputEna 672 // will look like, so we shouldn't do anything here and the user should take 673 // responsibility for the correct programming. 674 // 675 // Otherwise, the following restrictions apply: 676 // - At least one of PERSP_* (0xF) or LINEAR_* (0x70) must be enabled. 677 // - If POS_W_FLOAT (11) is enabled, at least one of PERSP_* must be 678 // enabled too. 679 if (CC == CallingConv::AMDGPU_PS) { 680 if ((Info->getPSInputAddr() & 0x7F) == 0 || 681 ((Info->getPSInputAddr() & 0xF) == 0 && 682 Info->isPSInputAllocated(11))) { 683 CCInfo.AllocateReg(AMDGPU::VGPR0); 684 CCInfo.AllocateReg(AMDGPU::VGPR1); 685 Info->markPSInputAllocated(0); 686 Info->markPSInputEnabled(0); 687 } 688 689 if (Subtarget.isAmdPalOS()) { 690 // For isAmdPalOS, the user does not enable some bits after compilation 691 // based on run-time states; the register values being generated here are 692 // the final ones set in hardware. Therefore we need to apply the 693 // workaround to PSInputAddr and PSInputEnable together. (The case where 694 // a bit is set in PSInputAddr but not PSInputEnable is where the frontend 695 // set up an input arg for a particular interpolation mode, but nothing 696 // uses that input arg. Really we should have an earlier pass that removes 697 // such an arg.) 698 unsigned PsInputBits = Info->getPSInputAddr() & Info->getPSInputEnable(); 699 if ((PsInputBits & 0x7F) == 0 || 700 ((PsInputBits & 0xF) == 0 && 701 (PsInputBits >> 11 & 1))) 702 Info->markPSInputEnabled(llvm::countr_zero(Info->getPSInputAddr())); 703 } 704 } 705 706 const SITargetLowering &TLI = *getTLI<SITargetLowering>(); 707 CCAssignFn *AssignFn = TLI.CCAssignFnForCall(CC, F.isVarArg()); 708 709 if (!MBB.empty()) 710 B.setInstr(*MBB.begin()); 711 712 if (!IsEntryFunc && !IsGraphics) { 713 // For the fixed ABI, pass workitem IDs in the last argument register. 714 TLI.allocateSpecialInputVGPRsFixed(CCInfo, MF, *TRI, *Info); 715 } 716 717 IncomingValueAssigner Assigner(AssignFn); 718 if (!determineAssignments(Assigner, SplitArgs, CCInfo)) 719 return false; 720 721 FormalArgHandler Handler(B, MRI); 722 if (!handleAssignments(Handler, SplitArgs, CCInfo, ArgLocs, B)) 723 return false; 724 725 uint64_t StackSize = Assigner.StackSize; 726 727 // Start adding system SGPRs. 728 if (IsEntryFunc) { 729 TLI.allocateSystemSGPRs(CCInfo, MF, *Info, CC, IsGraphics); 730 } else { 731 if (!Subtarget.enableFlatScratch()) 732 CCInfo.AllocateReg(Info->getScratchRSrcReg()); 733 TLI.allocateSpecialInputSGPRs(CCInfo, MF, *TRI, *Info); 734 } 735 736 // When we tail call, we need to check if the callee's arguments will fit on 737 // the caller's stack. So, whenever we lower formal arguments, we should keep 738 // track of this information, since we might lower a tail call in this 739 // function later. 740 Info->setBytesInStackArgArea(StackSize); 741 742 // Move back to the end of the basic block. 743 B.setMBB(MBB); 744 745 return true; 746 } 747 748 bool AMDGPUCallLowering::passSpecialInputs(MachineIRBuilder &MIRBuilder, 749 CCState &CCInfo, 750 SmallVectorImpl<std::pair<MCRegister, Register>> &ArgRegs, 751 CallLoweringInfo &Info) const { 752 MachineFunction &MF = MIRBuilder.getMF(); 753 754 // If there's no call site, this doesn't correspond to a call from the IR and 755 // doesn't need implicit inputs. 756 if (!Info.CB) 757 return true; 758 759 const AMDGPUFunctionArgInfo *CalleeArgInfo 760 = &AMDGPUArgumentUsageInfo::FixedABIFunctionInfo; 761 762 const SIMachineFunctionInfo *MFI = MF.getInfo<SIMachineFunctionInfo>(); 763 const AMDGPUFunctionArgInfo &CallerArgInfo = MFI->getArgInfo(); 764 765 766 // TODO: Unify with private memory register handling. This is complicated by 767 // the fact that at least in kernels, the input argument is not necessarily 768 // in the same location as the input. 769 AMDGPUFunctionArgInfo::PreloadedValue InputRegs[] = { 770 AMDGPUFunctionArgInfo::DISPATCH_PTR, 771 AMDGPUFunctionArgInfo::QUEUE_PTR, 772 AMDGPUFunctionArgInfo::IMPLICIT_ARG_PTR, 773 AMDGPUFunctionArgInfo::DISPATCH_ID, 774 AMDGPUFunctionArgInfo::WORKGROUP_ID_X, 775 AMDGPUFunctionArgInfo::WORKGROUP_ID_Y, 776 AMDGPUFunctionArgInfo::WORKGROUP_ID_Z, 777 AMDGPUFunctionArgInfo::LDS_KERNEL_ID, 778 }; 779 780 static constexpr StringLiteral ImplicitAttrNames[] = { 781 "amdgpu-no-dispatch-ptr", 782 "amdgpu-no-queue-ptr", 783 "amdgpu-no-implicitarg-ptr", 784 "amdgpu-no-dispatch-id", 785 "amdgpu-no-workgroup-id-x", 786 "amdgpu-no-workgroup-id-y", 787 "amdgpu-no-workgroup-id-z", 788 "amdgpu-no-lds-kernel-id", 789 }; 790 791 MachineRegisterInfo &MRI = MF.getRegInfo(); 792 793 const GCNSubtarget &ST = MF.getSubtarget<GCNSubtarget>(); 794 const AMDGPULegalizerInfo *LI 795 = static_cast<const AMDGPULegalizerInfo*>(ST.getLegalizerInfo()); 796 797 unsigned I = 0; 798 for (auto InputID : InputRegs) { 799 const ArgDescriptor *OutgoingArg; 800 const TargetRegisterClass *ArgRC; 801 LLT ArgTy; 802 803 // If the callee does not use the attribute value, skip copying the value. 804 if (Info.CB->hasFnAttr(ImplicitAttrNames[I++])) 805 continue; 806 807 std::tie(OutgoingArg, ArgRC, ArgTy) = 808 CalleeArgInfo->getPreloadedValue(InputID); 809 if (!OutgoingArg) 810 continue; 811 812 const ArgDescriptor *IncomingArg; 813 const TargetRegisterClass *IncomingArgRC; 814 std::tie(IncomingArg, IncomingArgRC, ArgTy) = 815 CallerArgInfo.getPreloadedValue(InputID); 816 assert(IncomingArgRC == ArgRC); 817 818 Register InputReg = MRI.createGenericVirtualRegister(ArgTy); 819 820 if (IncomingArg) { 821 LI->loadInputValue(InputReg, MIRBuilder, IncomingArg, ArgRC, ArgTy); 822 } else if (InputID == AMDGPUFunctionArgInfo::IMPLICIT_ARG_PTR) { 823 LI->getImplicitArgPtr(InputReg, MRI, MIRBuilder); 824 } else if (InputID == AMDGPUFunctionArgInfo::LDS_KERNEL_ID) { 825 std::optional<uint32_t> Id = 826 AMDGPUMachineFunction::getLDSKernelIdMetadata(MF.getFunction()); 827 if (Id) { 828 MIRBuilder.buildConstant(InputReg, *Id); 829 } else { 830 MIRBuilder.buildUndef(InputReg); 831 } 832 } else { 833 // We may have proven the input wasn't needed, although the ABI is 834 // requiring it. We just need to allocate the register appropriately. 835 MIRBuilder.buildUndef(InputReg); 836 } 837 838 if (OutgoingArg->isRegister()) { 839 ArgRegs.emplace_back(OutgoingArg->getRegister(), InputReg); 840 if (!CCInfo.AllocateReg(OutgoingArg->getRegister())) 841 report_fatal_error("failed to allocate implicit input argument"); 842 } else { 843 LLVM_DEBUG(dbgs() << "Unhandled stack passed implicit input argument\n"); 844 return false; 845 } 846 } 847 848 // Pack workitem IDs into a single register or pass it as is if already 849 // packed. 850 const ArgDescriptor *OutgoingArg; 851 const TargetRegisterClass *ArgRC; 852 LLT ArgTy; 853 854 std::tie(OutgoingArg, ArgRC, ArgTy) = 855 CalleeArgInfo->getPreloadedValue(AMDGPUFunctionArgInfo::WORKITEM_ID_X); 856 if (!OutgoingArg) 857 std::tie(OutgoingArg, ArgRC, ArgTy) = 858 CalleeArgInfo->getPreloadedValue(AMDGPUFunctionArgInfo::WORKITEM_ID_Y); 859 if (!OutgoingArg) 860 std::tie(OutgoingArg, ArgRC, ArgTy) = 861 CalleeArgInfo->getPreloadedValue(AMDGPUFunctionArgInfo::WORKITEM_ID_Z); 862 if (!OutgoingArg) 863 return false; 864 865 auto WorkitemIDX = 866 CallerArgInfo.getPreloadedValue(AMDGPUFunctionArgInfo::WORKITEM_ID_X); 867 auto WorkitemIDY = 868 CallerArgInfo.getPreloadedValue(AMDGPUFunctionArgInfo::WORKITEM_ID_Y); 869 auto WorkitemIDZ = 870 CallerArgInfo.getPreloadedValue(AMDGPUFunctionArgInfo::WORKITEM_ID_Z); 871 872 const ArgDescriptor *IncomingArgX = std::get<0>(WorkitemIDX); 873 const ArgDescriptor *IncomingArgY = std::get<0>(WorkitemIDY); 874 const ArgDescriptor *IncomingArgZ = std::get<0>(WorkitemIDZ); 875 const LLT S32 = LLT::scalar(32); 876 877 const bool NeedWorkItemIDX = !Info.CB->hasFnAttr("amdgpu-no-workitem-id-x"); 878 const bool NeedWorkItemIDY = !Info.CB->hasFnAttr("amdgpu-no-workitem-id-y"); 879 const bool NeedWorkItemIDZ = !Info.CB->hasFnAttr("amdgpu-no-workitem-id-z"); 880 881 // If incoming ids are not packed we need to pack them. 882 // FIXME: Should consider known workgroup size to eliminate known 0 cases. 883 Register InputReg; 884 if (IncomingArgX && !IncomingArgX->isMasked() && CalleeArgInfo->WorkItemIDX && 885 NeedWorkItemIDX) { 886 if (ST.getMaxWorkitemID(MF.getFunction(), 0) != 0) { 887 InputReg = MRI.createGenericVirtualRegister(S32); 888 LI->loadInputValue(InputReg, MIRBuilder, IncomingArgX, 889 std::get<1>(WorkitemIDX), std::get<2>(WorkitemIDX)); 890 } else { 891 InputReg = MIRBuilder.buildConstant(S32, 0).getReg(0); 892 } 893 } 894 895 if (IncomingArgY && !IncomingArgY->isMasked() && CalleeArgInfo->WorkItemIDY && 896 NeedWorkItemIDY && ST.getMaxWorkitemID(MF.getFunction(), 1) != 0) { 897 Register Y = MRI.createGenericVirtualRegister(S32); 898 LI->loadInputValue(Y, MIRBuilder, IncomingArgY, std::get<1>(WorkitemIDY), 899 std::get<2>(WorkitemIDY)); 900 901 Y = MIRBuilder.buildShl(S32, Y, MIRBuilder.buildConstant(S32, 10)).getReg(0); 902 InputReg = InputReg ? MIRBuilder.buildOr(S32, InputReg, Y).getReg(0) : Y; 903 } 904 905 if (IncomingArgZ && !IncomingArgZ->isMasked() && CalleeArgInfo->WorkItemIDZ && 906 NeedWorkItemIDZ && ST.getMaxWorkitemID(MF.getFunction(), 2) != 0) { 907 Register Z = MRI.createGenericVirtualRegister(S32); 908 LI->loadInputValue(Z, MIRBuilder, IncomingArgZ, std::get<1>(WorkitemIDZ), 909 std::get<2>(WorkitemIDZ)); 910 911 Z = MIRBuilder.buildShl(S32, Z, MIRBuilder.buildConstant(S32, 20)).getReg(0); 912 InputReg = InputReg ? MIRBuilder.buildOr(S32, InputReg, Z).getReg(0) : Z; 913 } 914 915 if (!InputReg && 916 (NeedWorkItemIDX || NeedWorkItemIDY || NeedWorkItemIDZ)) { 917 InputReg = MRI.createGenericVirtualRegister(S32); 918 if (!IncomingArgX && !IncomingArgY && !IncomingArgZ) { 919 // We're in a situation where the outgoing function requires the workitem 920 // ID, but the calling function does not have it (e.g a graphics function 921 // calling a C calling convention function). This is illegal, but we need 922 // to produce something. 923 MIRBuilder.buildUndef(InputReg); 924 } else { 925 // Workitem ids are already packed, any of present incoming arguments will 926 // carry all required fields. 927 ArgDescriptor IncomingArg = ArgDescriptor::createArg( 928 IncomingArgX ? *IncomingArgX : 929 IncomingArgY ? *IncomingArgY : *IncomingArgZ, ~0u); 930 LI->loadInputValue(InputReg, MIRBuilder, &IncomingArg, 931 &AMDGPU::VGPR_32RegClass, S32); 932 } 933 } 934 935 if (OutgoingArg->isRegister()) { 936 if (InputReg) 937 ArgRegs.emplace_back(OutgoingArg->getRegister(), InputReg); 938 939 if (!CCInfo.AllocateReg(OutgoingArg->getRegister())) 940 report_fatal_error("failed to allocate implicit input argument"); 941 } else { 942 LLVM_DEBUG(dbgs() << "Unhandled stack passed implicit input argument\n"); 943 return false; 944 } 945 946 return true; 947 } 948 949 /// Returns a pair containing the fixed CCAssignFn and the vararg CCAssignFn for 950 /// CC. 951 static std::pair<CCAssignFn *, CCAssignFn *> 952 getAssignFnsForCC(CallingConv::ID CC, const SITargetLowering &TLI) { 953 return {TLI.CCAssignFnForCall(CC, false), TLI.CCAssignFnForCall(CC, true)}; 954 } 955 956 static unsigned getCallOpcode(const MachineFunction &CallerF, bool IsIndirect, 957 bool IsTailCall, CallingConv::ID CC) { 958 assert(!(IsIndirect && IsTailCall) && "Indirect calls can't be tail calls, " 959 "because the address can be divergent"); 960 if (!IsTailCall) 961 return AMDGPU::G_SI_CALL; 962 963 return CC == CallingConv::AMDGPU_Gfx ? AMDGPU::SI_TCRETURN_GFX : 964 AMDGPU::SI_TCRETURN; 965 } 966 967 // Add operands to call instruction to track the callee. 968 static bool addCallTargetOperands(MachineInstrBuilder &CallInst, 969 MachineIRBuilder &MIRBuilder, 970 AMDGPUCallLowering::CallLoweringInfo &Info) { 971 if (Info.Callee.isReg()) { 972 CallInst.addReg(Info.Callee.getReg()); 973 CallInst.addImm(0); 974 } else if (Info.Callee.isGlobal() && Info.Callee.getOffset() == 0) { 975 // The call lowering lightly assumed we can directly encode a call target in 976 // the instruction, which is not the case. Materialize the address here. 977 const GlobalValue *GV = Info.Callee.getGlobal(); 978 auto Ptr = MIRBuilder.buildGlobalValue( 979 LLT::pointer(GV->getAddressSpace(), 64), GV); 980 CallInst.addReg(Ptr.getReg(0)); 981 CallInst.add(Info.Callee); 982 } else 983 return false; 984 985 return true; 986 } 987 988 bool AMDGPUCallLowering::doCallerAndCalleePassArgsTheSameWay( 989 CallLoweringInfo &Info, MachineFunction &MF, 990 SmallVectorImpl<ArgInfo> &InArgs) const { 991 const Function &CallerF = MF.getFunction(); 992 CallingConv::ID CalleeCC = Info.CallConv; 993 CallingConv::ID CallerCC = CallerF.getCallingConv(); 994 995 // If the calling conventions match, then everything must be the same. 996 if (CalleeCC == CallerCC) 997 return true; 998 999 const GCNSubtarget &ST = MF.getSubtarget<GCNSubtarget>(); 1000 1001 // Make sure that the caller and callee preserve all of the same registers. 1002 auto TRI = ST.getRegisterInfo(); 1003 1004 const uint32_t *CallerPreserved = TRI->getCallPreservedMask(MF, CallerCC); 1005 const uint32_t *CalleePreserved = TRI->getCallPreservedMask(MF, CalleeCC); 1006 if (!TRI->regmaskSubsetEqual(CallerPreserved, CalleePreserved)) 1007 return false; 1008 1009 // Check if the caller and callee will handle arguments in the same way. 1010 const SITargetLowering &TLI = *getTLI<SITargetLowering>(); 1011 CCAssignFn *CalleeAssignFnFixed; 1012 CCAssignFn *CalleeAssignFnVarArg; 1013 std::tie(CalleeAssignFnFixed, CalleeAssignFnVarArg) = 1014 getAssignFnsForCC(CalleeCC, TLI); 1015 1016 CCAssignFn *CallerAssignFnFixed; 1017 CCAssignFn *CallerAssignFnVarArg; 1018 std::tie(CallerAssignFnFixed, CallerAssignFnVarArg) = 1019 getAssignFnsForCC(CallerCC, TLI); 1020 1021 // FIXME: We are not accounting for potential differences in implicitly passed 1022 // inputs, but only the fixed ABI is supported now anyway. 1023 IncomingValueAssigner CalleeAssigner(CalleeAssignFnFixed, 1024 CalleeAssignFnVarArg); 1025 IncomingValueAssigner CallerAssigner(CallerAssignFnFixed, 1026 CallerAssignFnVarArg); 1027 return resultsCompatible(Info, MF, InArgs, CalleeAssigner, CallerAssigner); 1028 } 1029 1030 bool AMDGPUCallLowering::areCalleeOutgoingArgsTailCallable( 1031 CallLoweringInfo &Info, MachineFunction &MF, 1032 SmallVectorImpl<ArgInfo> &OutArgs) const { 1033 // If there are no outgoing arguments, then we are done. 1034 if (OutArgs.empty()) 1035 return true; 1036 1037 const Function &CallerF = MF.getFunction(); 1038 CallingConv::ID CalleeCC = Info.CallConv; 1039 CallingConv::ID CallerCC = CallerF.getCallingConv(); 1040 const SITargetLowering &TLI = *getTLI<SITargetLowering>(); 1041 1042 CCAssignFn *AssignFnFixed; 1043 CCAssignFn *AssignFnVarArg; 1044 std::tie(AssignFnFixed, AssignFnVarArg) = getAssignFnsForCC(CalleeCC, TLI); 1045 1046 // We have outgoing arguments. Make sure that we can tail call with them. 1047 SmallVector<CCValAssign, 16> OutLocs; 1048 CCState OutInfo(CalleeCC, false, MF, OutLocs, CallerF.getContext()); 1049 OutgoingValueAssigner Assigner(AssignFnFixed, AssignFnVarArg); 1050 1051 if (!determineAssignments(Assigner, OutArgs, OutInfo)) { 1052 LLVM_DEBUG(dbgs() << "... Could not analyze call operands.\n"); 1053 return false; 1054 } 1055 1056 // Make sure that they can fit on the caller's stack. 1057 const SIMachineFunctionInfo *FuncInfo = MF.getInfo<SIMachineFunctionInfo>(); 1058 if (OutInfo.getStackSize() > FuncInfo->getBytesInStackArgArea()) { 1059 LLVM_DEBUG(dbgs() << "... Cannot fit call operands on caller's stack.\n"); 1060 return false; 1061 } 1062 1063 // Verify that the parameters in callee-saved registers match. 1064 const GCNSubtarget &ST = MF.getSubtarget<GCNSubtarget>(); 1065 const SIRegisterInfo *TRI = ST.getRegisterInfo(); 1066 const uint32_t *CallerPreservedMask = TRI->getCallPreservedMask(MF, CallerCC); 1067 MachineRegisterInfo &MRI = MF.getRegInfo(); 1068 return parametersInCSRMatch(MRI, CallerPreservedMask, OutLocs, OutArgs); 1069 } 1070 1071 /// Return true if the calling convention is one that we can guarantee TCO for. 1072 static bool canGuaranteeTCO(CallingConv::ID CC) { 1073 return CC == CallingConv::Fast; 1074 } 1075 1076 /// Return true if we might ever do TCO for calls with this calling convention. 1077 static bool mayTailCallThisCC(CallingConv::ID CC) { 1078 switch (CC) { 1079 case CallingConv::C: 1080 case CallingConv::AMDGPU_Gfx: 1081 return true; 1082 default: 1083 return canGuaranteeTCO(CC); 1084 } 1085 } 1086 1087 bool AMDGPUCallLowering::isEligibleForTailCallOptimization( 1088 MachineIRBuilder &B, CallLoweringInfo &Info, 1089 SmallVectorImpl<ArgInfo> &InArgs, SmallVectorImpl<ArgInfo> &OutArgs) const { 1090 // Must pass all target-independent checks in order to tail call optimize. 1091 if (!Info.IsTailCall) 1092 return false; 1093 1094 // Indirect calls can't be tail calls, because the address can be divergent. 1095 // TODO Check divergence info if the call really is divergent. 1096 if (Info.Callee.isReg()) 1097 return false; 1098 1099 MachineFunction &MF = B.getMF(); 1100 const Function &CallerF = MF.getFunction(); 1101 CallingConv::ID CalleeCC = Info.CallConv; 1102 CallingConv::ID CallerCC = CallerF.getCallingConv(); 1103 1104 const SIRegisterInfo *TRI = MF.getSubtarget<GCNSubtarget>().getRegisterInfo(); 1105 const uint32_t *CallerPreserved = TRI->getCallPreservedMask(MF, CallerCC); 1106 // Kernels aren't callable, and don't have a live in return address so it 1107 // doesn't make sense to do a tail call with entry functions. 1108 if (!CallerPreserved) 1109 return false; 1110 1111 if (!mayTailCallThisCC(CalleeCC)) { 1112 LLVM_DEBUG(dbgs() << "... Calling convention cannot be tail called.\n"); 1113 return false; 1114 } 1115 1116 if (any_of(CallerF.args(), [](const Argument &A) { 1117 return A.hasByValAttr() || A.hasSwiftErrorAttr(); 1118 })) { 1119 LLVM_DEBUG(dbgs() << "... Cannot tail call from callers with byval " 1120 "or swifterror arguments\n"); 1121 return false; 1122 } 1123 1124 // If we have -tailcallopt, then we're done. 1125 if (MF.getTarget().Options.GuaranteedTailCallOpt) 1126 return canGuaranteeTCO(CalleeCC) && CalleeCC == CallerF.getCallingConv(); 1127 1128 // Verify that the incoming and outgoing arguments from the callee are 1129 // safe to tail call. 1130 if (!doCallerAndCalleePassArgsTheSameWay(Info, MF, InArgs)) { 1131 LLVM_DEBUG( 1132 dbgs() 1133 << "... Caller and callee have incompatible calling conventions.\n"); 1134 return false; 1135 } 1136 1137 if (!areCalleeOutgoingArgsTailCallable(Info, MF, OutArgs)) 1138 return false; 1139 1140 LLVM_DEBUG(dbgs() << "... Call is eligible for tail call optimization.\n"); 1141 return true; 1142 } 1143 1144 // Insert outgoing implicit arguments for a call, by inserting copies to the 1145 // implicit argument registers and adding the necessary implicit uses to the 1146 // call instruction. 1147 void AMDGPUCallLowering::handleImplicitCallArguments( 1148 MachineIRBuilder &MIRBuilder, MachineInstrBuilder &CallInst, 1149 const GCNSubtarget &ST, const SIMachineFunctionInfo &FuncInfo, 1150 ArrayRef<std::pair<MCRegister, Register>> ImplicitArgRegs) const { 1151 if (!ST.enableFlatScratch()) { 1152 // Insert copies for the SRD. In the HSA case, this should be an identity 1153 // copy. 1154 auto ScratchRSrcReg = MIRBuilder.buildCopy(LLT::fixed_vector(4, 32), 1155 FuncInfo.getScratchRSrcReg()); 1156 MIRBuilder.buildCopy(AMDGPU::SGPR0_SGPR1_SGPR2_SGPR3, ScratchRSrcReg); 1157 CallInst.addReg(AMDGPU::SGPR0_SGPR1_SGPR2_SGPR3, RegState::Implicit); 1158 } 1159 1160 for (std::pair<MCRegister, Register> ArgReg : ImplicitArgRegs) { 1161 MIRBuilder.buildCopy((Register)ArgReg.first, ArgReg.second); 1162 CallInst.addReg(ArgReg.first, RegState::Implicit); 1163 } 1164 } 1165 1166 bool AMDGPUCallLowering::lowerTailCall( 1167 MachineIRBuilder &MIRBuilder, CallLoweringInfo &Info, 1168 SmallVectorImpl<ArgInfo> &OutArgs) const { 1169 MachineFunction &MF = MIRBuilder.getMF(); 1170 const GCNSubtarget &ST = MF.getSubtarget<GCNSubtarget>(); 1171 SIMachineFunctionInfo *FuncInfo = MF.getInfo<SIMachineFunctionInfo>(); 1172 const Function &F = MF.getFunction(); 1173 MachineRegisterInfo &MRI = MF.getRegInfo(); 1174 const SITargetLowering &TLI = *getTLI<SITargetLowering>(); 1175 1176 // True when we're tail calling, but without -tailcallopt. 1177 bool IsSibCall = !MF.getTarget().Options.GuaranteedTailCallOpt; 1178 1179 // Find out which ABI gets to decide where things go. 1180 CallingConv::ID CalleeCC = Info.CallConv; 1181 CCAssignFn *AssignFnFixed; 1182 CCAssignFn *AssignFnVarArg; 1183 std::tie(AssignFnFixed, AssignFnVarArg) = getAssignFnsForCC(CalleeCC, TLI); 1184 1185 MachineInstrBuilder CallSeqStart; 1186 if (!IsSibCall) 1187 CallSeqStart = MIRBuilder.buildInstr(AMDGPU::ADJCALLSTACKUP); 1188 1189 unsigned Opc = getCallOpcode(MF, Info.Callee.isReg(), true, CalleeCC); 1190 auto MIB = MIRBuilder.buildInstrNoInsert(Opc); 1191 if (!addCallTargetOperands(MIB, MIRBuilder, Info)) 1192 return false; 1193 1194 // Byte offset for the tail call. When we are sibcalling, this will always 1195 // be 0. 1196 MIB.addImm(0); 1197 1198 // Tell the call which registers are clobbered. 1199 const SIRegisterInfo *TRI = ST.getRegisterInfo(); 1200 const uint32_t *Mask = TRI->getCallPreservedMask(MF, CalleeCC); 1201 MIB.addRegMask(Mask); 1202 1203 // FPDiff is the byte offset of the call's argument area from the callee's. 1204 // Stores to callee stack arguments will be placed in FixedStackSlots offset 1205 // by this amount for a tail call. In a sibling call it must be 0 because the 1206 // caller will deallocate the entire stack and the callee still expects its 1207 // arguments to begin at SP+0. 1208 int FPDiff = 0; 1209 1210 // This will be 0 for sibcalls, potentially nonzero for tail calls produced 1211 // by -tailcallopt. For sibcalls, the memory operands for the call are 1212 // already available in the caller's incoming argument space. 1213 unsigned NumBytes = 0; 1214 if (!IsSibCall) { 1215 // We aren't sibcalling, so we need to compute FPDiff. We need to do this 1216 // before handling assignments, because FPDiff must be known for memory 1217 // arguments. 1218 unsigned NumReusableBytes = FuncInfo->getBytesInStackArgArea(); 1219 SmallVector<CCValAssign, 16> OutLocs; 1220 CCState OutInfo(CalleeCC, false, MF, OutLocs, F.getContext()); 1221 1222 // FIXME: Not accounting for callee implicit inputs 1223 OutgoingValueAssigner CalleeAssigner(AssignFnFixed, AssignFnVarArg); 1224 if (!determineAssignments(CalleeAssigner, OutArgs, OutInfo)) 1225 return false; 1226 1227 // The callee will pop the argument stack as a tail call. Thus, we must 1228 // keep it 16-byte aligned. 1229 NumBytes = alignTo(OutInfo.getStackSize(), ST.getStackAlignment()); 1230 1231 // FPDiff will be negative if this tail call requires more space than we 1232 // would automatically have in our incoming argument space. Positive if we 1233 // actually shrink the stack. 1234 FPDiff = NumReusableBytes - NumBytes; 1235 1236 // The stack pointer must be 16-byte aligned at all times it's used for a 1237 // memory operation, which in practice means at *all* times and in 1238 // particular across call boundaries. Therefore our own arguments started at 1239 // a 16-byte aligned SP and the delta applied for the tail call should 1240 // satisfy the same constraint. 1241 assert(isAligned(ST.getStackAlignment(), FPDiff) && 1242 "unaligned stack on tail call"); 1243 } 1244 1245 SmallVector<CCValAssign, 16> ArgLocs; 1246 CCState CCInfo(Info.CallConv, Info.IsVarArg, MF, ArgLocs, F.getContext()); 1247 1248 // We could pass MIB and directly add the implicit uses to the call 1249 // now. However, as an aesthetic choice, place implicit argument operands 1250 // after the ordinary user argument registers. 1251 SmallVector<std::pair<MCRegister, Register>, 12> ImplicitArgRegs; 1252 1253 if (Info.CallConv != CallingConv::AMDGPU_Gfx) { 1254 // With a fixed ABI, allocate fixed registers before user arguments. 1255 if (!passSpecialInputs(MIRBuilder, CCInfo, ImplicitArgRegs, Info)) 1256 return false; 1257 } 1258 1259 OutgoingValueAssigner Assigner(AssignFnFixed, AssignFnVarArg); 1260 1261 if (!determineAssignments(Assigner, OutArgs, CCInfo)) 1262 return false; 1263 1264 // Do the actual argument marshalling. 1265 AMDGPUOutgoingArgHandler Handler(MIRBuilder, MRI, MIB, true, FPDiff); 1266 if (!handleAssignments(Handler, OutArgs, CCInfo, ArgLocs, MIRBuilder)) 1267 return false; 1268 1269 handleImplicitCallArguments(MIRBuilder, MIB, ST, *FuncInfo, ImplicitArgRegs); 1270 1271 // If we have -tailcallopt, we need to adjust the stack. We'll do the call 1272 // sequence start and end here. 1273 if (!IsSibCall) { 1274 MIB->getOperand(1).setImm(FPDiff); 1275 CallSeqStart.addImm(NumBytes).addImm(0); 1276 // End the call sequence *before* emitting the call. Normally, we would 1277 // tidy the frame up after the call. However, here, we've laid out the 1278 // parameters so that when SP is reset, they will be in the correct 1279 // location. 1280 MIRBuilder.buildInstr(AMDGPU::ADJCALLSTACKDOWN).addImm(NumBytes).addImm(0); 1281 } 1282 1283 // Now we can add the actual call instruction to the correct basic block. 1284 MIRBuilder.insertInstr(MIB); 1285 1286 // If Callee is a reg, since it is used by a target specific 1287 // instruction, it must have a register class matching the 1288 // constraint of that instruction. 1289 1290 // FIXME: We should define regbankselectable call instructions to handle 1291 // divergent call targets. 1292 if (MIB->getOperand(0).isReg()) { 1293 MIB->getOperand(0).setReg(constrainOperandRegClass( 1294 MF, *TRI, MRI, *ST.getInstrInfo(), *ST.getRegBankInfo(), *MIB, 1295 MIB->getDesc(), MIB->getOperand(0), 0)); 1296 } 1297 1298 MF.getFrameInfo().setHasTailCall(); 1299 Info.LoweredTailCall = true; 1300 return true; 1301 } 1302 1303 bool AMDGPUCallLowering::lowerCall(MachineIRBuilder &MIRBuilder, 1304 CallLoweringInfo &Info) const { 1305 if (Info.IsVarArg) { 1306 LLVM_DEBUG(dbgs() << "Variadic functions not implemented\n"); 1307 return false; 1308 } 1309 1310 MachineFunction &MF = MIRBuilder.getMF(); 1311 const GCNSubtarget &ST = MF.getSubtarget<GCNSubtarget>(); 1312 const SIRegisterInfo *TRI = ST.getRegisterInfo(); 1313 1314 const Function &F = MF.getFunction(); 1315 MachineRegisterInfo &MRI = MF.getRegInfo(); 1316 const SITargetLowering &TLI = *getTLI<SITargetLowering>(); 1317 const DataLayout &DL = F.getParent()->getDataLayout(); 1318 1319 SmallVector<ArgInfo, 8> OutArgs; 1320 for (auto &OrigArg : Info.OrigArgs) 1321 splitToValueTypes(OrigArg, OutArgs, DL, Info.CallConv); 1322 1323 SmallVector<ArgInfo, 8> InArgs; 1324 if (Info.CanLowerReturn && !Info.OrigRet.Ty->isVoidTy()) 1325 splitToValueTypes(Info.OrigRet, InArgs, DL, Info.CallConv); 1326 1327 // If we can lower as a tail call, do that instead. 1328 bool CanTailCallOpt = 1329 isEligibleForTailCallOptimization(MIRBuilder, Info, InArgs, OutArgs); 1330 1331 // We must emit a tail call if we have musttail. 1332 if (Info.IsMustTailCall && !CanTailCallOpt) { 1333 LLVM_DEBUG(dbgs() << "Failed to lower musttail call as tail call\n"); 1334 return false; 1335 } 1336 1337 Info.IsTailCall = CanTailCallOpt; 1338 if (CanTailCallOpt) 1339 return lowerTailCall(MIRBuilder, Info, OutArgs); 1340 1341 // Find out which ABI gets to decide where things go. 1342 CCAssignFn *AssignFnFixed; 1343 CCAssignFn *AssignFnVarArg; 1344 std::tie(AssignFnFixed, AssignFnVarArg) = 1345 getAssignFnsForCC(Info.CallConv, TLI); 1346 1347 MIRBuilder.buildInstr(AMDGPU::ADJCALLSTACKUP) 1348 .addImm(0) 1349 .addImm(0); 1350 1351 // Create a temporarily-floating call instruction so we can add the implicit 1352 // uses of arg registers. 1353 unsigned Opc = getCallOpcode(MF, Info.Callee.isReg(), false, Info.CallConv); 1354 1355 auto MIB = MIRBuilder.buildInstrNoInsert(Opc); 1356 MIB.addDef(TRI->getReturnAddressReg(MF)); 1357 1358 if (!addCallTargetOperands(MIB, MIRBuilder, Info)) 1359 return false; 1360 1361 // Tell the call which registers are clobbered. 1362 const uint32_t *Mask = TRI->getCallPreservedMask(MF, Info.CallConv); 1363 MIB.addRegMask(Mask); 1364 1365 SmallVector<CCValAssign, 16> ArgLocs; 1366 CCState CCInfo(Info.CallConv, Info.IsVarArg, MF, ArgLocs, F.getContext()); 1367 1368 // We could pass MIB and directly add the implicit uses to the call 1369 // now. However, as an aesthetic choice, place implicit argument operands 1370 // after the ordinary user argument registers. 1371 SmallVector<std::pair<MCRegister, Register>, 12> ImplicitArgRegs; 1372 1373 if (Info.CallConv != CallingConv::AMDGPU_Gfx) { 1374 // With a fixed ABI, allocate fixed registers before user arguments. 1375 if (!passSpecialInputs(MIRBuilder, CCInfo, ImplicitArgRegs, Info)) 1376 return false; 1377 } 1378 1379 // Do the actual argument marshalling. 1380 SmallVector<Register, 8> PhysRegs; 1381 1382 OutgoingValueAssigner Assigner(AssignFnFixed, AssignFnVarArg); 1383 if (!determineAssignments(Assigner, OutArgs, CCInfo)) 1384 return false; 1385 1386 AMDGPUOutgoingArgHandler Handler(MIRBuilder, MRI, MIB, false); 1387 if (!handleAssignments(Handler, OutArgs, CCInfo, ArgLocs, MIRBuilder)) 1388 return false; 1389 1390 const SIMachineFunctionInfo *MFI = MF.getInfo<SIMachineFunctionInfo>(); 1391 1392 handleImplicitCallArguments(MIRBuilder, MIB, ST, *MFI, ImplicitArgRegs); 1393 1394 // Get a count of how many bytes are to be pushed on the stack. 1395 unsigned NumBytes = CCInfo.getStackSize(); 1396 1397 // If Callee is a reg, since it is used by a target specific 1398 // instruction, it must have a register class matching the 1399 // constraint of that instruction. 1400 1401 // FIXME: We should define regbankselectable call instructions to handle 1402 // divergent call targets. 1403 if (MIB->getOperand(1).isReg()) { 1404 MIB->getOperand(1).setReg(constrainOperandRegClass( 1405 MF, *TRI, MRI, *ST.getInstrInfo(), 1406 *ST.getRegBankInfo(), *MIB, MIB->getDesc(), MIB->getOperand(1), 1407 1)); 1408 } 1409 1410 // Now we can add the actual call instruction to the correct position. 1411 MIRBuilder.insertInstr(MIB); 1412 1413 // Finally we can copy the returned value back into its virtual-register. In 1414 // symmetry with the arguments, the physical register must be an 1415 // implicit-define of the call instruction. 1416 if (Info.CanLowerReturn && !Info.OrigRet.Ty->isVoidTy()) { 1417 CCAssignFn *RetAssignFn = TLI.CCAssignFnForReturn(Info.CallConv, 1418 Info.IsVarArg); 1419 IncomingValueAssigner Assigner(RetAssignFn); 1420 CallReturnHandler Handler(MIRBuilder, MRI, MIB); 1421 if (!determineAndHandleAssignments(Handler, Assigner, InArgs, MIRBuilder, 1422 Info.CallConv, Info.IsVarArg)) 1423 return false; 1424 } 1425 1426 uint64_t CalleePopBytes = NumBytes; 1427 1428 MIRBuilder.buildInstr(AMDGPU::ADJCALLSTACKDOWN) 1429 .addImm(0) 1430 .addImm(CalleePopBytes); 1431 1432 if (!Info.CanLowerReturn) { 1433 insertSRetLoads(MIRBuilder, Info.OrigRet.Ty, Info.OrigRet.Regs, 1434 Info.DemoteRegister, Info.DemoteStackIndex); 1435 } 1436 1437 return true; 1438 } 1439