| /freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/ |
| H A D | SPIRV.cpp | 39 std::string ExeCand = T.getToolChain().GetProgramPath(VersionedTool.c_str()); in constructTranslateCommand() 41 ExeCand = T.getToolChain().GetProgramPath("llvm-spirv"); in constructTranslateCommand() 64 std::string ExeCand = T.getToolChain().GetProgramPath(VersionedTool.c_str()); in constructAssembleCommand() 66 ExeCand = T.getToolChain().GetProgramPath("spirv-as"); in constructAssembleCommand() 125 std::string Linker = ToolChain.GetProgramPath(getShortName()); in ConstructJob() 135 Linker = ToolChain.GetProgramPath("clang-sycl-linker"); in ConstructJob()
|
| H A D | XCore.cpp | 54 const char *Exec = Args.MakeArgString(getToolChain().GetProgramPath("xcc")); in ConstructJob() 82 const char *Exec = Args.MakeArgString(getToolChain().GetProgramPath("xcc")); in ConstructJob()
|
| H A D | WebAssembly.cpp | 50 return ToolChain.GetProgramPath("wasm-ld"); in getLinkerPath() 60 return ToolChain.GetProgramPath(ToolChain.getDefaultLinker()); in getLinkerPath() 108 CmdArgs.push_back(Args.MakeArgString(ToolChain.GetProgramPath("wasm-ld"))); in ConstructJob() 193 WasmOptPath = ToolChain.GetProgramPath("wasm-opt"); in ConstructJob()
|
| H A D | InterfaceStubs.cpp | 22 std::string Merger = getToolChain().GetProgramPath(getShortName()); in ConstructJob()
|
| H A D | HLSL.cpp | 218 std::string DxvPath = getToolChain().GetProgramPath("dxv"); in ConstructJob() 237 std::string MSCPath = getToolChain().GetProgramPath("metal-shaderconverter"); in ConstructJob() 395 std::string DxvPath = GetProgramPath("dxv"); in requiresValidation()
|
| H A D | UEFI.cpp | 91 auto LinkerPath = TC.GetProgramPath(Linker.str().c_str()); in ConstructJob()
|
| H A D | HIPSPV.cpp | 76 Args.MakeArgString(getToolChain().GetProgramPath("llvm-link")); in constructLinkAndEmitSpirvCommand() 91 const char *Opt = Args.MakeArgString(getToolChain().GetProgramPath("opt")); in constructLinkAndEmitSpirvCommand()
|
| H A D | PS4CPU.cpp | 77 const char *Exec = Args.MakeArgString(TC.GetProgramPath(AsName.c_str())); in ConstructJob() 216 const char *Exec = Args.MakeArgString(TC.GetProgramPath(LdName.c_str())); in ConstructJob() 441 const char *Exec = Args.MakeArgString(TC.GetProgramPath(LdName.c_str())); in ConstructJob()
|
| H A D | HIPAMD.cpp | 58 Args.MakeArgString(getToolChain().GetProgramPath("llvm-link")); in constructLlvmLinkCommand() 155 const char *Lld = Args.MakeArgString(getToolChain().GetProgramPath("lld")); in constructLldCommand()
|
| H A D | Cuda.cpp | 499 Exec = Args.MakeArgString(TC.GetProgramPath("ptxas")); in ConstructJob() 571 const char *Exec = Args.MakeArgString(TC.GetProgramPath("fatbinary")); in ConstructJob() 662 Args.MakeArgString(getToolChain().GetProgramPath("clang-nvlink-wrapper")), in ConstructJob() 816 Program = GetProgramPath("nvptx-arch"); in getSystemGPUArchs()
|
| H A D | DragonFly.cpp | 46 const char *Exec = Args.MakeArgString(ToolChain.GetProgramPath("as")); in ConstructJob()
|
| H A D | CrossWindows.cpp | 57 const std::string Assembler = TC.GetProgramPath("as"); in ConstructJob()
|
| H A D | AVR.cpp | 528 : getToolChain().GetProgramPath(getShortName()); in ConstructJob()
|
| H A D | MSP430.cpp | 269 std::string Linker = ToolChain.GetProgramPath(getShortName()); in ConstructJob()
|
| H A D | ZOS.cpp | 76 const char *Exec = Args.MakeArgString(getToolChain().GetProgramPath("as")); in ConstructJob()
|
| H A D | OpenBSD.cpp | 101 const char *Exec = Args.MakeArgString(ToolChain.GetProgramPath("as")); in ConstructJob()
|
| H A D | HIPUtility.cpp | 331 T.getToolChain().GetProgramPath("clang-offload-bundler")); in constructHIPFatbinCommand()
|
| H A D | MSVC.cpp | 345 ClPath = TC.GetProgramPath("cl.exe"); in ConstructJob() 421 linkPath = TC.GetProgramPath(Linker.str().c_str()); in ConstructJob()
|
| H A D | FreeBSD.cpp | 122 const char *Exec = Args.MakeArgString(ToolChain.GetProgramPath("as")); in ConstructJob()
|
| H A D | AIX.cpp | 81 const char *Exec = Args.MakeArgString(getToolChain().GetProgramPath("as")); in ConstructJob()
|
| H A D | NetBSD.cpp | 108 const char *Exec = Args.MakeArgString((ToolChain.GetProgramPath("as"))); in ConstructJob()
|
| H A D | Darwin.cpp | 163 const char *Exec = Args.MakeArgString(getToolChain().GetProgramPath("as")); in ConstructJob() 899 Args.MakeArgString(getToolChain().GetProgramPath(LipoName.data())); in ConstructJob() 920 Args.MakeArgString(getToolChain().GetProgramPath("dsymutil")); in ConstructJob() 944 Args.MakeArgString(getToolChain().GetProgramPath("dwarfdump")); in ConstructJob()
|
| /freebsd/contrib/llvm-project/clang/lib/Driver/ |
| H A D | ToolChain.cpp | 1075 std::string ToolChain::GetProgramPath(const char *Name) const { in GetProgramPath() function in ToolChain 1076 return D.GetProgramPath(Name, *this); in GetProgramPath() 1097 Path = GetProgramPath(A->getValue()); in GetLinkerPath() 1105 return GetProgramPath(getDefaultLinker()); in GetLinkerPath() 1114 return GetProgramPath(DefaultLinker); in GetLinkerPath() 1137 std::string LinkerPath(GetProgramPath(LinkerName.c_str())); in GetLinkerPath() 1148 return GetProgramPath(getDefaultLinker()); in GetLinkerPath() 1154 return GetProgramPath("libtool"); in GetStaticLibToolPath() 1155 return GetProgramPath("llvm-ar"); in GetStaticLibToolPath()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Driver/ |
| H A D | Driver.h | 638 std::string GetProgramPath(StringRef Name, const ToolChain &TC) const;
|
| H A D | ToolChain.h | 400 std::string GetProgramPath(const char *Name) const;
|