Lines Matching refs:ToolChain

33   const toolchains::OpenBSD &ToolChain =  in ConstructJob()  local
35 const Driver &D = ToolChain.getDriver(); in ConstructJob()
36 const llvm::Triple &Triple = ToolChain.getTriple(); in ConstructJob()
41 switch (ToolChain.getArch()) { in ConstructJob()
66 AddAssemblerKPIC(ToolChain, Args, CmdArgs); in ConstructJob()
87 AddAssemblerKPIC(ToolChain, Args, CmdArgs); in ConstructJob()
103 const char *Exec = Args.MakeArgString(ToolChain.GetProgramPath("as")); in ConstructJob()
114 const toolchains::OpenBSD &ToolChain = in ConstructJob() local
116 const Driver &D = ToolChain.getDriver(); in ConstructJob()
117 const llvm::Triple::ArchType Arch = ToolChain.getArch(); in ConstructJob()
189 CmdArgs.push_back(Args.MakeArgString(ToolChain.GetFilePath(crt0))); in ConstructJob()
190 CmdArgs.push_back(Args.MakeArgString(ToolChain.GetFilePath(crtbegin))); in ConstructJob()
194 ToolChain.AddFilePathLibArgs(Args, CmdArgs); in ConstructJob()
199 bool NeedsSanitizerDeps = addSanitizerRuntimes(ToolChain, Args, CmdArgs); in ConstructJob()
200 bool NeedsXRayDeps = addXRayRuntime(ToolChain, Args, CmdArgs); in ConstructJob()
201 AddLinkerInputs(ToolChain, Inputs, Args, CmdArgs, JA); in ConstructJob()
208 addOpenMPRuntime(CmdArgs, ToolChain, Args, StaticOpenMP); in ConstructJob()
211 if (ToolChain.ShouldLinkCXXStdlib(Args)) in ConstructJob()
212 ToolChain.AddCXXStdlibLibArgs(Args, CmdArgs); in ConstructJob()
219 CmdArgs.push_back(ToolChain.getCompilerRTArgString(Args, "builtins")); in ConstructJob()
220 linkSanitizerRuntimeDeps(ToolChain, CmdArgs); in ConstructJob()
223 CmdArgs.push_back(ToolChain.getCompilerRTArgString(Args, "builtins")); in ConstructJob()
224 linkXRayRuntimeDeps(ToolChain, CmdArgs); in ConstructJob()
255 CmdArgs.push_back(Args.MakeArgString(ToolChain.GetFilePath(crtend))); in ConstructJob()
258 ToolChain.addProfileRTLibs(Args, CmdArgs); in ConstructJob()
260 const char *Exec = Args.MakeArgString(ToolChain.GetLinkerPath()); in ConstructJob()
271 SanitizerMask Res = ToolChain::getSupportedSanitizers(); in getSupportedSanitizers()
355 return ToolChain::getCompilerRT(Args, Component, Type); in getCompilerRT()