Lines Matching defs:FatbinWrapper
819 llvm::GlobalVariable *FatbinWrapper = Values.finishAndCreateGlobal(
822 FatbinWrapper->setSection(FatbinSectionName);
863 // GpuBinaryHandle = __hipRegisterFatBinary(&FatbinWrapper);
865 CtorBuilder.CreateCall(RegisterFatbinFunc, FatbinWrapper);
880 // GpuBinaryHandle = __cudaRegisterFatBinary(&FatbinWrapper);
882 CtorBuilder.CreateCall(RegisterFatbinFunc, FatbinWrapper);
907 OS << ModuleIDPrefix << llvm::format("%" PRIx64, FatbinWrapper->getGUID());
911 // Create an alias for the FatbinWrapper that nvcc will look for.
913 Twine("__fatbinwrap") + ModuleID, FatbinWrapper);
923 llvm::Value *Args[] = {RegisterGlobalsFunc, FatbinWrapper, ModuleIDConstant,