Home
last modified time | relevance | path

Searched refs:getOrInsertGlobal (Results 1 – 25 of 30) sorted by relevance

12

/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUCtorDtorLowering.cpp81 auto *Begin = M.getOrInsertGlobal( in createInitOrFiniCalls()
92 auto *End = M.getOrInsertGlobal( in createInitOrFiniCalls()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DLowerEmuTLS.cpp144 M.getOrInsertGlobal(EmuTlsVarName, EmuTlsVarType)); in addEmuTlsVar()
159 M.getOrInsertGlobal(EmuTlsTmplName, GVType)); in addEmuTlsVar()
H A DJMCInstrumenter.cpp176 Flag = M.getOrInsertGlobal(FlagName, FlagTy, [&] { in runImpl()
H A DWasmEHPrepare.cpp253 M.getOrInsertGlobal("__wasm_lpad_context", LPadContextTy)); in prepareEHPads()
H A DTargetLoweringBase.cpp1934 Constant *C = M.getOrInsertGlobal("__guard_local", PtrTy); in getIRStackGuard()
/freebsd/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXCtorDtorLowering.cpp137 auto *Begin = M.getOrInsertGlobal( in createInitOrFiniCalls()
150 auto *End = M.getOrInsertGlobal( in createInitOrFiniCalls()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64Arm64ECCallLowering.cpp425 M->getOrInsertGlobal("__os_arm64x_dispatch_call_no_redirect", PtrTy); in buildExitThunk()
800 M->getOrInsertGlobal("__os_arm64x_check_icall_cfg", GuardFnPtrType); in runOnModule()
802 M->getOrInsertGlobal("__os_arm64x_check_icall", GuardFnPtrType); in runOnModule()
804 M->getOrInsertGlobal("__os_arm64x_dispatch_call", DispatchFnPtrType); in runOnModule()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DModule.cpp223 Constant *Module::getOrInsertGlobal( in getOrInsertGlobal() function in Module
237 Constant *Module::getOrInsertGlobal(StringRef Name, Type *Ty) { in getOrInsertGlobal() function in Module
238 return getOrInsertGlobal(Name, Ty, [&] { in getOrInsertGlobal()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/CFGuard/
H A DCFGuard.cpp252 GuardFnGlobal = M.getOrInsertGlobal(GuardFnName, GuardFnPtrType, [&] { in doInitialization()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLowerGlobalDtors.cpp157 Constant *DsoHandle = M.getOrInsertGlobal("__dso_handle", DsoHandleTy, [&] { in runImpl()
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DModule.h474 getOrInsertGlobal(StringRef Name, Type *Ty,
479 Constant *getOrInsertGlobal(StringRef Name, Type *Ty);
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DPGOCtxProfLowering.cpp135 auto *G = M.getOrInsertGlobal(Fname + "_ctx_root", ContextRootTy); in CtxInstrumentationLowerer()
H A DMemorySanitizer.cpp834 static Constant *getOrInsertGlobal(Module &M, StringRef Name, Type *Ty) { in getOrInsertGlobal() function
835 return M.getOrInsertGlobal(Name, Ty, [&] { in getOrInsertGlobal()
863 getOrInsertGlobal(M, "__msan_retval_tls", in createUserspaceApi()
866 RetvalOriginTLS = getOrInsertGlobal(M, "__msan_retval_origin_tls", OriginTy); in createUserspaceApi()
869 getOrInsertGlobal(M, "__msan_param_tls", in createUserspaceApi()
873 getOrInsertGlobal(M, "__msan_param_origin_tls", in createUserspaceApi()
877 getOrInsertGlobal(M, "__msan_va_arg_tls", in createUserspaceApi()
881 getOrInsertGlobal(M, "__msan_va_arg_origin_tls", in createUserspaceApi()
885 getOrInsertGlobal(M, "__msan_va_arg_overflow_size_tls", IRB.getInt64Ty()); in createUserspaceApi()
1055 M.getOrInsertGlobal("__msan_track_origins", IRB.getInt32Ty(), [&] { in initializeModule()
[all …]
H A DHWAddressSanitizer.cpp658 Constant *C = M.getOrInsertGlobal("__hwasan_tls", IntptrTy, [&] { in initializeModule()
735 M.getOrInsertGlobal("__hwasan_shadow", ArrayType::get(Int8Ty, 0)); in initializeCallbacks()
767 IRB.GetInsertBlock()->getParent()->getParent()->getOrInsertGlobal( in getShadowNonTls()
H A DMemProfiler.cpp603 Value *GlobalDynamicAddress = F.getParent()->getOrInsertGlobal( in insertDynamicShadowAtFunctionEntry()
H A DAddressSanitizer.cpp2852 AsanShadowGlobal = M.getOrInsertGlobal("__asan_shadow", in initializeCallbacks()
2900 Value *GlobalDynamicAddress = F.getParent()->getOrInsertGlobal( in maybeInsertDynamicShadowAtFunctionEntry()
3501 Constant *OptionDetectUseAfterReturn = F.getParent()->getOrInsertGlobal( in processStaticAllocas()
H A DSanitizerCoverage.cpp469 M.getOrInsertGlobal(SanCovLowestStackName, IntptrTy); in instrumentModule()
H A DDataFlowSanitizer.cpp1512 Constant *C = Mod->getOrInsertGlobal(Name, Ty); in runImpl()
1531 (void)Mod->getOrInsertGlobal("__dfsan_track_origins", OriginTy, [&] { in runImpl()
H A DNumericalStabilitySanitizer.cpp593 return dyn_cast<GlobalValue>(M.getOrInsertGlobal(Name, Ty, [&M, Ty, Name] { in createThreadLocalGV()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86WinEHState.cpp327 Cookie = TheModule->getOrInsertGlobal("__security_cookie", Int32Ty); in emitExceptionRegistrationRecord()
H A DX86ISelLoweringCall.cpp595 M.getOrInsertGlobal("__security_cookie", in insertSSPDeclarations()
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyLowerEmscriptenEHSjLj.cpp410 auto *GV = dyn_cast<GlobalVariable>(M.getOrInsertGlobal(Name, Ty)); in getGlobalVariable()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DWholeProgramDevirt.cpp1650 M.getOrInsertGlobal(getGlobalName(Slot, Args, Name), Int8Arr0Ty); in importGlobal()
H A DLowerTypeTests.cpp971 Constant *C = M.getOrInsertGlobal(("__typeid_" + TypeId + "_" + Name).str(), in importTypeId()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DItaniumCXXABI.cpp3945 VTable = CGM.getModule().getOrInsertGlobal(VTableName, Ty); in BuildVTablePointer()

12