Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DPPCLinux.cpp28 llvm::StringRef LinkerName = in GlibcSupportsFloat128() local
33 if (LinkerName.starts_with("ld64.so")) in GlibcSupportsFloat128()
36 if (!LinkerName.starts_with("ld-2.")) in GlibcSupportsFloat128()
38 unsigned Minor = (LinkerName[5] - '0') * 10 + (LinkerName[6] - '0'); in GlibcSupportsFloat128()
/freebsd/contrib/llvm-project/clang/lib/Interpreter/
H A DIncrementalExecutor.h50 enum SymbolNameKind { IRName, LinkerName }; enumerator
H A DIncrementalExecutor.cpp114 ES.lookup(SO, (NameKind == LinkerName) ? ES.intern(Name) in getSymbolAddress()
H A DInterpreter.cpp750 return IncrExecutor->getSymbolAddress(Name, IncrementalExecutor::LinkerName); in getSymbolAddressFromLinkerName()
/freebsd/contrib/llvm-project/clang/include/clang/Interpreter/
H A DInterpreter.h176 getSymbolAddressFromLinkerName(llvm::StringRef LinkerName) const;
/freebsd/contrib/llvm-project/clang/lib/Driver/
H A DToolChain.cpp1134 llvm::SmallString<8> LinkerName; in GetLinkerPath()
1136 LinkerName.append("ld64."); in GetLinkerPath()
1138 LinkerName.append("ld."); in GetLinkerPath()
1139 LinkerName.append(UseLinker); in GetLinkerPath()
1141 std::string LinkerPath(GetProgramPath(LinkerName.c_str())); in GetLinkerPath()
1130 llvm::SmallString<8> LinkerName; GetLinkerPath() local