Home
last modified time | relevance | path

Searched refs:LibName (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DHIPUtility.cpp105 auto ProcessLib = [&](llvm::StringRef LibName, bool IsExact) { in processStaticLibraries() argument
107 IsExact ? Twine(LibName).str() in processStaticLibraries()
108 : IsMSVC ? (Twine(LibName) + Ext).str() in processStaticLibraries()
109 : (Twine("lib") + LibName + Ext).str()); in processStaticLibraries()
135 for (const auto LibName : ExactLibNames) in processStaticLibraries() local
136 ProcessLib(LibName, true); in processStaticLibraries()
138 for (const auto LibName : LibNames) in processStaticLibraries() local
139 ProcessLib(LibName, false); in processStaticLibraries()
/freebsd/contrib/llvm-project/clang/lib/Driver/
H A DToolChain.cpp765 std::string LibName = IsFortran ? "flang_rt." : "clang_rt."; in buildCompilerRTBasename() local
766 return (Prefix + Twine(LibName) + Component + ArchAndEnv + Suffix).str(); in buildCompilerRTBasename()
1309 StringRef LibName = A ? A->getValue() : CLANG_DEFAULT_RTLIB; in GetRuntimeLibType() local
1312 if (LibName == "compiler-rt") in GetRuntimeLibType()
1314 else if (LibName == "libgcc") in GetRuntimeLibType()
1316 else if (LibName == "platform") in GetRuntimeLibType()
1335 StringRef LibName = A ? A->getValue() : CLANG_DEFAULT_UNWINDLIB; in GetUnwindLibType() local
1337 if (LibName == "none") in GetUnwindLibType()
1339 else if (LibName == "platform" || LibName == "") { in GetUnwindLibType()
1348 } else if (LibName == "libunwind") { in GetUnwindLibType()
[all …]
H A DOffloadBundler.cpp172 StringRef LibName = sys::path::stem(BundleFileName); in getDeviceLibraryFileName() local
176 Result += LibName; in getDeviceLibraryFileName()
/freebsd/contrib/llvm-project/llvm/tools/llvm-tli-checker/
H A Dllvm-tli-checker.cpp161 void populateFromFile(StringRef LibDir, StringRef LibName);
222 void SDKNameMap::populateFromFile(StringRef LibDir, StringRef LibName) { in populateFromFile() argument
225 sys::path::append(Filepath, LibName); in populateFromFile()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DCOFFVCRuntimeSupport.cpp82 auto LoadLibrary = [&](SmallString<256> LibPath, StringRef LibName) -> Error { in loadVCRuntime() argument
83 sys::path::append(LibPath, LibName); in loadVCRuntime()
/freebsd/contrib/llvm-project/clang/lib/InstallAPI/
H A DDylibVerifier.cpp845 for (const StringRef LibName : BinInfo.RexportedLibraries) in verifyBinaryAttrs() local
846 DylibReexports.getArchSet(LibName).set(DylibTargets.back().Arch); in verifyBinaryAttrs()
847 for (const StringRef LibName : BinInfo.AllowableClients) in verifyBinaryAttrs() local
848 DylibClients.getArchSet(LibName).set(DylibTargets.back().Arch); in verifyBinaryAttrs()