Home
last modified time | relevance | path

Searched refs:Lib (Results 1 – 25 of 53) sorted by relevance

123

/freebsd-14.2/contrib/llvm-project/llvm/lib/TextAPI/
H A DInterfaceFile.cpp38 Lib->addTarget(Target); in addReexportedLibrary()
183 for (const auto &Lib : allowableClients()) in merge() local
184 for (const auto &Target : Lib.targets()) in merge()
188 for (const auto &Target : Lib.targets()) in merge()
192 for (const auto &Target : Lib.targets()) in merge()
196 for (const auto &Target : Lib.targets()) in merge()
252 for (const auto &Target : Lib.targets()) in remove()
258 for (const auto &Target : Lib.targets()) in remove()
323 for (const auto &Lib : allowableClients()) in extract() local
324 for (const auto &Target : Lib.targets()) in extract()
[all …]
H A DTextStubV5.cpp664 for (auto &[Lib, Targets] : Clients) in parseToInterfaceFile()
666 F->addAllowableClient(Lib, Target); in parseToInterfaceFile()
667 for (auto &[Lib, Targets] : ReexportLibs) in parseToInterfaceFile()
669 F->addReexportedLibrary(Lib, Target); in parseToInterfaceFile()
670 for (auto &[Lib, Targets] : Umbrellas) in parseToInterfaceFile()
672 F->addParentUmbrella(Target, Lib); in parseToInterfaceFile()
695 for (auto Lib : *Files) { in getInlinedLibs()
696 auto IFOrErr = parseToInterfaceFile(Lib.getAsObject()); in getInlinedLibs()
H A DTextStub.cpp607 for (const auto &Lib : Section.AllowableClients) in denormalize() local
609 File->addAllowableClient(Lib, Target); in denormalize()
611 for (const auto &Lib : Section.ReexportedLibraries) in denormalize() local
613 File->addReexportedLibrary(Lib, Target); in denormalize()
890 for (const auto &Lib : CurrentSection.Values) in denormalize() local
892 File->addReexportedLibrary(Lib, Target); in denormalize()
H A DRecordsSlice.cpp313 for (const auto &Lib : BA.RexportedLibraries) in createInterfaceFile() local
314 File->addReexportedLibrary(Lib, Targ); in createInterfaceFile()
/freebsd-14.2/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DCOFFVCRuntimeSupport.cpp89 for (auto &Lib : (*G)->getImportedDynamicLibraries()) in loadVCRuntime()
90 ImportedLibraries.push_back(Lib); in loadVCRuntime()
96 for (auto &Lib : UCRTLibs) in loadVCRuntime() local
97 if (auto Err = LoadLibrary(Path.UCRTSdkLib, Lib)) in loadVCRuntime()
100 for (auto &Lib : VCLibs) in loadVCRuntime() local
101 if (auto Err = LoadLibrary(Path.VCToolchainLib, Lib)) in loadVCRuntime()
H A DCOFFPlatform.cpp299 for (auto &Lib : *ImportedLibs) in setupJITDylib()
300 if (auto Err = LoadDynLibrary(JD, Lib)) in setupJITDylib()
412 for (auto &Lib : OrcRuntimeGenerator->getImportedDynamicLibraries()) in COFFPlatform() local
413 DylibsToPreload.insert(Lib); in COFFPlatform()
423 for (auto &Lib : *ImportedLibs) in COFFPlatform()
424 DylibsToPreload.insert(Lib); in COFFPlatform()
435 for (auto& Lib : DylibsToPreload) in COFFPlatform() local
436 if (auto E2 = this->LoadDynLibrary(PlatformJD, Lib)) { in COFFPlatform()
/freebsd-14.2/contrib/libpcap/cmake/Modules/
H A DFindAirPcap.cmake31 # For the WinPcap and Npcap SDKs, the Lib subdirectory of the top-level
33 # Lib/x64 directory.
35 # The only way to *FORCE* CMake to look in the Lib/x64 directory
36 # without searching in the Lib directory first appears to be to set
H A DFindPacket.cmake53 # For the WinPcap and Npcap SDKs, the Lib subdirectory of the top-level
55 # Lib/x64 directory.
57 # The only way to *FORCE* CMake to look in the Lib/x64 directory
58 # without searching in the Lib directory first appears to be to set
/freebsd-14.2/contrib/llvm-project/llvm/lib/Support/
H A DDynamicLibrary.cpp203 void DynamicLibrary::closeLibrary(DynamicLibrary &Lib) { in closeLibrary() argument
206 if (Lib.isValid()) { in closeLibrary()
207 G.OpenedTemporaryHandles.CloseLibrary(Lib.Data); in closeLibrary()
208 Lib.Data = &Invalid; in closeLibrary()
/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_libignore.cpp31 Lib *lib = &libs_[count_++]; in AddIgnoredLibrary()
45 Lib *lib = &libs_[i]; in OnLibraryLoaded()
56 Lib *lib = &libs_[i]; in OnLibraryLoaded()
H A Dsanitizer_libignore.h52 struct Lib { struct
82 Lib libs_[kMaxLibs];
/freebsd-14.2/contrib/llvm-project/clang/lib/Driver/
H A DMultilib.cpp264 for (const MultilibSerialization &Lib : M.Multilibs) { in validate() local
265 if (!Lib.Group.empty()) { in validate()
268 if (Group.Name == Lib.Group) { in validate()
273 return "multilib \"" + Lib.Dir + in validate()
274 "\" specifies undefined group name \"" + Lib.Group + "\""; in validate()
/freebsd-14.2/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DMSVC.cpp112 TC.getSubDirectoryPath(llvm::SubDirectoryType::Lib))); in ConstructJob()
115 TC.getSubDirectoryPath(llvm::SubDirectoryType::Lib, "atlmfc"))); in ConstructJob()
201 for (const auto &Lib : {"asan_dynamic", "asan_dynamic_runtime_thunk"}) in ConstructJob()
202 CmdArgs.push_back(TC.getCompilerRTArgString(Args, Lib)); in ConstructJob()
216 for (const auto &Lib : {"asan", "asan_cxx"}) { in ConstructJob()
217 CmdArgs.push_back(TC.getCompilerRTArgString(Args, Lib)); in ConstructJob()
222 TC.getCompilerRT(Args, Lib))); in ConstructJob()
303 StringRef Lib = A.getValue(); in ConstructJob() local
305 if (Lib.ends_with(".lib")) in ConstructJob()
306 LinkLibArg = Args.MakeArgString(Lib); in ConstructJob()
[all …]
H A DMinGW.cpp88 for (auto Lib : Args.getAllArgValues(options::OPT_l)) in AddLibGCC() local
89 if (StringRef(Lib).starts_with("msvcr") || in AddLibGCC()
90 StringRef(Lib).starts_with("ucrt") || in AddLibGCC()
91 StringRef(Lib).starts_with("crtdll")) in AddLibGCC()
268 for (auto Lib : Args.getAllArgValues(options::OPT_l)) { in ConstructJob() local
269 if (Lib == "windowsapp") { in ConstructJob()
H A DCommonArgs.cpp2387 Twine(Lib + "-" + Arch).str(), Twine(Lib).str()}) { in SDLSearch()
2401 for (auto Suffix : {Twine(Lib + "-" + Arch + "-" + Target).str(), in SDLSearch()
2402 Twine(Lib + "-" + Arch).str()}) { in SDLSearch()
2439 const SmallVectorImpl<std::string> &LibraryPaths, StringRef Lib, in GetSDLFromOffloadArchive() argument
2452 if (!Lib.starts_with(":") && !Lib.starts_with("-l")) { in GetSDLFromOffloadArchive()
2453 if (llvm::sys::fs::exists(Lib)) { in GetSDLFromOffloadArchive()
2454 ArchiveOfBundles = Lib; in GetSDLFromOffloadArchive()
2458 Lib.consume_front("-l"); in GetSDLFromOffloadArchive()
2461 auto LibFile = (Lib.starts_with(":") ? Lib.drop_front() in GetSDLFromOffloadArchive()
2462 : IsMSVC ? Lib + Ext in GetSDLFromOffloadArchive()
[all …]
H A DCrossWindows.cpp194 for (const auto &Lib : {"asan_dynamic", "asan_dynamic_runtime_thunk"}) in ConstructJob()
195 CmdArgs.push_back(TC.getCompilerRTArgString(Args, Lib)); in ConstructJob()
/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Frontend/
H A DCheckerRegistry.cpp75 DynamicLibrary Lib = in CheckerRegistry() local
77 if (!Lib.isValid()) { in CheckerRegistry()
84 Lib.getAddressOfSymbol("clang_analyzerAPIVersionString")); in CheckerRegistry()
98 Lib.getAddressOfSymbol("clang_registerCheckers")); in CheckerRegistry()
/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-ar/
H A Dllvm-ar.cpp770 object::Archive &Lib = readLibrary(*FileNameOrErr); in addChildMember() local
772 if (!Thin || Lib.isThin()) { in addChildMember()
775 for (auto &Child : Lib.children(Err)) in addChildMember()
822 object::Archive &Lib = readLibrary(FileName); in addMember() local
824 if (!Thin || Lib.isThin()) { in addMember()
827 for (auto &Child : Lib.children(Err)) in addMember()
1209 object::Archive &Lib = readLibrary(Rest); in runMRIScript() local
1211 if (Thin && !Lib.isThin()) in runMRIScript()
1214 for (auto &Member : Lib.children(Err)) in runMRIScript()
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DTargetInfo.cpp96 TargetCodeGenInfo::getDependentLibraryOption(llvm::StringRef Lib, in getDependentLibraryOption() argument
102 Opt += Lib; in getDependentLibraryOption()
H A DModuleBuilder.cpp168 for (auto &&Lib : CodeGenOpts.DependentLibraries) in Initialize()
169 Builder->AddDependentLib(Lib); in Initialize()
/freebsd-14.2/contrib/llvm-project/openmp/runtime/src/
H A Dompt-general.cpp107 #define OMPT_DLCLOSE(Lib) FreeLibrary(Lib) argument
110 #define OMPT_DLCLOSE(Lib) dlclose(Lib) argument
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/
H A DDynamicLibrary.h110 static void closeLibrary(DynamicLibrary &Lib);
/freebsd-14.2/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DCOFFMasmParser.cpp392 StringRef Lib; in ParseDirectiveIncludelib() local
393 if (getParser().parseIdentifier(Lib)) in ParseDirectiveIncludelib()
402 getStreamer().emitBytes(Lib); in ParseDirectiveIncludelib()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/WindowsDriver/
H A DMSVCPaths.h27 Lib, enumerator
/freebsd-14.2/contrib/llvm-project/llvm/lib/InterfaceStub/
H A DELFObjHandler.cpp195 for (const std::string &Lib : Stub.NeededLibs) in ELFStubBuilder() local
196 DynStr.Content.add(Lib); in ELFStubBuilder()
231 for (const std::string &Lib : Stub.NeededLibs) in ELFStubBuilder() local
232 DynTab.Content.addValue(DT_NEEDED, DynStr.Content.getOffset(Lib)); in ELFStubBuilder()

123