Lines Matching defs:FatbinWrapper
886 llvm::GlobalVariable *FatbinWrapper = Values.finishAndCreateGlobal(
889 FatbinWrapper->setSection(FatbinSectionName);
931 // GpuBinaryHandle = __hipRegisterFatBinary(&FatbinWrapper);
933 CtorBuilder.CreateCall(RegisterFatbinFunc, FatbinWrapper);
948 // GpuBinaryHandle = __cudaRegisterFatBinary(&FatbinWrapper);
950 CtorBuilder.CreateCall(RegisterFatbinFunc, FatbinWrapper);
975 OS << ModuleIDPrefix << llvm::format("%" PRIx64, FatbinWrapper->getGUID());
979 // Create an alias for the FatbinWrapper that nvcc will look for.
981 Twine("__fatbinwrap") + ModuleID, FatbinWrapper);
991 llvm::Value *Args[] = {RegisterGlobalsFunc, FatbinWrapper, ModuleIDConstant,