Home
last modified time | relevance | path

Searched refs:SrcModule (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/compiler-rt/lib/ubsan/
H A Dubsan_handlers_cxx.cpp151 const char *SrcModule = Symbolizer::GetOrInit()->GetModuleNameForPc(Opts.pc); in __ubsan_handle_cfi_bad_type() local
152 if (!SrcModule) in __ubsan_handle_cfi_bad_type()
153 SrcModule = "(unknown)"; in __ubsan_handle_cfi_bad_type()
155 if (internal_strcmp(SrcModule, DstModule)) in __ubsan_handle_cfi_bad_type()
157 << SrcModule << DstModule; in __ubsan_handle_cfi_bad_type()
H A Dubsan_handlers.cpp865 const char *SrcModule = Symbolizer::GetOrInit()->GetModuleNameForPc(Opts.pc); in handleCFIBadIcall() local
866 if (!SrcModule) in handleCFIBadIcall()
867 SrcModule = "(unknown)"; in handleCFIBadIcall()
869 if (internal_strcmp(SrcModule, DstModule)) in handleCFIBadIcall()
872 << SrcModule << DstModule; in handleCFIBadIcall()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DFunctionImport.cpp1674 static Function *replaceAliasWithAliasee(Module *SrcModule, GlobalAlias *GA) { in replaceAliasWithAliasee() argument
1731 std::unique_ptr<Module> SrcModule = std::move(*SrcModuleOrErr); in importFunctions() local
1732 assert(&DestModule.getContext() == &SrcModule->getContext() && in importFunctions()
1737 if (Error Err = SrcModule->materializeMetadata()) in importFunctions()
1744 for (Function &F : *SrcModule) { in importFunctions()
1760 << SrcModule->getSourceFileName() << "\n"); in importFunctions()
1773 SrcModule->getModuleIdentifier())})); in importFunctions()
1778 SrcModule->getSourceFileName())})); in importFunctions()
1783 for (GlobalVariable &GV : SrcModule->globals()) { in importFunctions()
1799 << SrcModule->getSourceFileName() << "\n"); in importFunctions()
[all …]
H A DMemProfContextDisambiguation.cpp3595 StringRef SrcModule = in applyImport() local
3598 if (GVS->modulePath() == SrcModule) { in applyImport()
3603 assert(GVSummary && GVSummary->modulePath() == SrcModule); in applyImport()
/freebsd/contrib/llvm-project/llvm/tools/llvm-link/
H A Dllvm-link.cpp354 auto &SrcModule = ModuleLoaderCache(argv0, FileName); in importFunctions() local
356 if (!NoVerify && verifyModule(SrcModule, &errs())) { in importFunctions()
362 Function *F = SrcModule.getFunction(FunctionName); in importFunctions()