/external/llvm-project/clang/lib/Driver/ToolChains/ |
D | RISCVToolchain.cpp | 1 //===--- RISCVToolchain.cpp - RISCV ToolChain Implementations ---*- C++ -*-===// 28 ToolChain::path_list &Paths) { in addMultilibsFilePaths() 35 // through gcc-toolchain argument or in the same prefix where clang 36 // is installed. This helps decide whether to instantiate this toolchain 37 // or Baremetal toolchain. 49 /// RISCV Toolchain 58 // Add toolchain/multilib specific file paths. in RISCVToolChain() 62 ToolChain::path_list &PPaths = getProgramPaths(); in RISCVToolChain() 79 ToolChain::RuntimeLibType RISCVToolChain::GetDefaultRuntimeLibType() const { in GetDefaultRuntimeLibType() 81 ToolChain::RLT_Libgcc : ToolChain::RLT_CompilerRT; in GetDefaultRuntimeLibType() [all …]
|
D | CommonArgs.h | 16 #include "clang/Driver/ToolChain.h" 24 ToolChain::path_list &Paths); 26 void AddLinkerInputs(const ToolChain &TC, const InputInfoList &Inputs, 30 void addLinkerCompressDebugSectionsOption(const ToolChain &TC, 36 bool addSanitizerRuntimes(const ToolChain &TC, const llvm::opt::ArgList &Args, 39 void linkSanitizerRuntimeDeps(const ToolChain &TC, 42 bool addXRayRuntime(const ToolChain &TC, const llvm::opt::ArgList &Args, 45 void linkXRayRuntimeDeps(const ToolChain &TC, 48 void AddRunTimeLibs(const ToolChain &TC, const Driver &D, 55 void SplitDebugInfo(const ToolChain &TC, Compilation &C, const Tool &T, [all …]
|
D | Ananas.cpp | 1 //===--- Ananas.cpp - Ananas ToolChain Implementations ------*- C++ -*-===// 52 const ToolChain &ToolChain = getToolChain(); in ConstructJob() local 53 const Driver &D = ToolChain.getDriver(); in ConstructJob() 90 CmdArgs.push_back(Args.MakeArgString(ToolChain.GetFilePath("crt0.o"))); in ConstructJob() 92 CmdArgs.push_back(Args.MakeArgString(ToolChain.GetFilePath("crti.o"))); in ConstructJob() 94 CmdArgs.push_back(Args.MakeArgString(ToolChain.GetFilePath("crtbeginS.o"))); in ConstructJob() 96 CmdArgs.push_back(Args.MakeArgString(ToolChain.GetFilePath("crtbegin.o"))); in ConstructJob() 101 ToolChain.AddFilePathLibArgs(Args, CmdArgs); in ConstructJob() 108 addLTOOptions(ToolChain, Args, CmdArgs, Output, Inputs[0], in ConstructJob() 112 AddLinkerInputs(ToolChain, Inputs, Args, CmdArgs, JA); in ConstructJob() [all …]
|
D | Fuchsia.cpp | 1 //===--- Fuchsia.cpp - Fuchsia ToolChain Implementations --------*- C++ -*-===// 36 const toolchains::Fuchsia &ToolChain = in ConstructJob() local 38 const Driver &D = ToolChain.getDriver(); in ConstructJob() 56 const char *Exec = Args.MakeArgString(ToolChain.GetLinkerPath()); in ConstructJob() 92 const SanitizerArgs &SanArgs = ToolChain.getSanitizerArgs(); in ConstructJob() 110 CmdArgs.push_back(Args.MakeArgString(ToolChain.GetFilePath("Scrt1.o"))); in ConstructJob() 117 ToolChain.AddFilePathLibArgs(Args, CmdArgs); in ConstructJob() 121 addLTOOptions(ToolChain, Args, CmdArgs, Output, Inputs[0], in ConstructJob() 125 bool NeedsSanitizerDeps = addSanitizerRuntimes(ToolChain, Args, CmdArgs); in ConstructJob() 126 bool NeedsXRayDeps = addXRayRuntime(ToolChain, Args, CmdArgs); in ConstructJob() [all …]
|
D | CloudABI.cpp | 1 //===--- CloudABI.cpp - CloudABI ToolChain Implementations ------*- C++ -*-===// 30 const ToolChain &ToolChain = getToolChain(); in ConstructJob() local 31 const Driver &D = ToolChain.getDriver(); in ConstructJob() 50 if (ToolChain.isPIEDefault()) { in ConstructJob() 66 CmdArgs.push_back(Args.MakeArgString(ToolChain.GetFilePath("crt0.o"))); in ConstructJob() 67 CmdArgs.push_back(Args.MakeArgString(ToolChain.GetFilePath("crtbegin.o"))); in ConstructJob() 71 ToolChain.AddFilePathLibArgs(Args, CmdArgs); in ConstructJob() 78 addLTOOptions(ToolChain, Args, CmdArgs, Output, Inputs[0], in ConstructJob() 82 AddLinkerInputs(ToolChain, Inputs, Args, CmdArgs, JA); in ConstructJob() 84 if (ToolChain.ShouldLinkCXXStdlib(Args)) in ConstructJob() [all …]
|
/external/clang/lib/Driver/ |
D | ToolChain.cpp | 1 //===--- ToolChain.cpp - Collections of tools for one platform ------------===// 18 #include "clang/Driver/ToolChain.h" 40 static ToolChain::RTTIMode CalculateRTTIMode(const ArgList &Args, in CalculateRTTIMode() 46 return ToolChain::RM_EnabledExplicitly; in CalculateRTTIMode() 48 return ToolChain::RM_DisabledExplicitly; in CalculateRTTIMode() 53 return ToolChain::RM_EnabledImplicitly; in CalculateRTTIMode() 63 return ToolChain::RM_EnabledImplicitly; in CalculateRTTIMode() 65 return ToolChain::RM_DisabledImplicitly; in CalculateRTTIMode() 68 ToolChain::ToolChain(const Driver &D, const llvm::Triple &T, in ToolChain() function in ToolChain 78 ToolChain::~ToolChain() { in ~ToolChain() [all …]
|
D | Tools.h | 41 SmallString<128> getCompilerRT(const ToolChain &TC, 61 const ToolChain *AuxToolChain) const; 109 Clang(const ToolChain &TC) : Tool("clang", "clang frontend", TC, RF_Full) {} in Clang() 125 ClangAs(const ToolChain &TC) in ClangAs() 145 GnuTool(const char *Name, const char *ShortName, const ToolChain &TC) in GnuTool() 153 Common(const char *Name, const char *ShortName, const ToolChain &TC) in Common() 173 Preprocessor(const ToolChain &TC) in Preprocessor() 185 Compiler(const ToolChain &TC) : Common("gcc::Compiler", "gcc frontend", TC) {} in Compiler() 196 Linker(const ToolChain &TC) : Common("gcc::Linker", "linker (via gcc)", TC) {} in Linker() 212 Assembler(const ToolChain &TC) in Assembler() [all …]
|
/external/rust/crates/grpcio-sys/grpc/third_party/re2/ |
D | .travis.yml | 10 - ubuntu-toolchain-r-test 20 - ubuntu-toolchain-r-test 30 - ubuntu-toolchain-r-test 40 - ubuntu-toolchain-r-test 50 - ubuntu-toolchain-r-test 60 - ubuntu-toolchain-r-test 70 - ubuntu-toolchain-r-test 81 - ubuntu-toolchain-r-test 82 - sourceline: 'deb https://apt.llvm.org/xenial/ llvm-toolchain-xenial-3.8 main' 93 - ubuntu-toolchain-r-test [all …]
|
/external/llvm-project/clang/lib/Driver/ |
D | ToolChain.cpp | 1 //===- ToolChain.cpp - Collections of tools for one platform --------------===// 9 #include "clang/Driver/ToolChain.h" 59 static ToolChain::RTTIMode CalculateRTTIMode(const ArgList &Args, in CalculateRTTIMode() 65 return ToolChain::RM_Enabled; in CalculateRTTIMode() 67 return ToolChain::RM_Disabled; in CalculateRTTIMode() 71 return (Triple.isPS4CPU()) ? ToolChain::RM_Disabled : ToolChain::RM_Enabled; in CalculateRTTIMode() 74 ToolChain::ToolChain(const Driver &D, const llvm::Triple &T, in ToolChain() function in ToolChain 91 void ToolChain::setTripleEnvironment(llvm::Triple::EnvironmentType Env) { in setTripleEnvironment() 97 ToolChain::~ToolChain() = default; 99 llvm::vfs::FileSystem &ToolChain::getVFS() const { in getVFS() [all …]
|
/external/google-fruit/extras/dockerfiles/ |
D | ubuntu-18.04_custom.list | 1 deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic main 2 deb-src http://apt.llvm.org/bionic/ llvm-toolchain-bionic main 3 deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-5.0 main 4 deb-src http://apt.llvm.org/bionic/ llvm-toolchain-bionic-5.0 main 5 deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-6.0 main 6 deb-src http://apt.llvm.org/bionic/ llvm-toolchain-bionic-6.0 main 7 deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-7 main 8 deb-src http://apt.llvm.org/bionic/ llvm-toolchain-bionic-7 main 9 deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-8 main 10 deb-src http://apt.llvm.org/bionic/ llvm-toolchain-bionic-8 main [all …]
|
D | ubuntu_arm-16.04_custom.list | 1 deb http://ppa.launchpad.net/ubuntu-toolchain-r/test/ubuntu xenial main 2 deb-src http://ppa.launchpad.net/ubuntu-toolchain-r/test/ubuntu xenial main 3 deb http://apt.llvm.org/xenial/ llvm-toolchain-xenial main 4 deb-src http://apt.llvm.org/xenial/ llvm-toolchain-xenial main 5 deb http://apt.llvm.org/xenial/ llvm-toolchain-xenial-3.8 main 6 deb-src http://apt.llvm.org/xenial/ llvm-toolchain-xenial-3.8 main 7 deb http://apt.llvm.org/xenial/ llvm-toolchain-xenial-3.9 main 8 deb-src http://apt.llvm.org/xenial/ llvm-toolchain-xenial-3.9 main 9 deb http://apt.llvm.org/xenial/ llvm-toolchain-xenial-4.0 main 10 deb-src http://apt.llvm.org/xenial/ llvm-toolchain-xenial-4.0 main
|
/external/swiftshader/tests/regres/llvm/ |
D | llvm.go | 37 // Version holds the build version information of an LLVM toolchain. 63 // Download downloads and verifies the LLVM toolchain for the current OS. 68 // DownloadForOS downloads and verifies the LLVM toolchain for the given OS. 136 // Toolchain holds the paths and version information about an LLVM toolchain. 137 type Toolchain struct { struct 142 // Toolchains is a list of Toolchain 143 type Toolchains []Toolchain 145 // Find looks for a toolchain with the specific version. 146 func (l Toolchains) Find(v Version) *Toolchain { 155 // FindAtLeast looks for a toolchain with the given version, returning the highest found version. [all …]
|
/external/brotli/ |
D | .travis.yml | 16 - ubuntu-toolchain-r-test 25 - ubuntu-toolchain-r-test 38 - ubuntu-toolchain-r-test 51 - ubuntu-toolchain-r-test 52 - llvm-toolchain-xenial-7 64 - llvm-toolchain-xenial-7 65 - ubuntu-toolchain-r-test 73 - llvm-toolchain-trusty-3.5 74 - ubuntu-toolchain-r-test 86 - ubuntu-toolchain-r-test [all …]
|
/external/cpu_features/scripts/ |
D | test_integration.sh | 7 TOOLCHAIN=LINARO 14 TOOLCHAIN=LINARO 21 TOOLCHAIN=LINARO 28 TOOLCHAIN=LINARO 35 TOOLCHAIN=LINARO 42 TOOLCHAIN=LINARO 49 TOOLCHAIN=LINARO 55 TOOLCHAIN=CODESCAPE 61 TOOLCHAIN=CODESCAPE 67 TOOLCHAIN=CODESCAPE [all …]
|
/external/rust/crates/ahash/.github/workflows/ |
D | rust.yml | 11 uses: actions-rs/toolchain@v1 13 toolchain: stable 44 uses: actions-rs/toolchain@v1 46 toolchain: nightly 72 - uses: actions-rs/toolchain@v1 74 toolchain: stable 87 - uses: actions-rs/toolchain@v1 89 toolchain: stable 104 - uses: actions-rs/toolchain@v1 106 toolchain: nightly [all …]
|
/external/llvm-project/llvm/tools/xcode-toolchain/ |
D | CMakeLists.txt | 6 # toolchain. Xcode toolchains are a mostly-undocumented feature that allows 10 # Setting an environment variable TOOLCHAINS to the toolchain's identifier will 11 # result in /usr/bin/<tool> or xcrun <tool> to find the tool in the toolchain. 13 # To make this work with Xcode 7.1 and later you can install the toolchain this 17 # This file generates a custom install-xcode-toolchain target which constructs 18 # and installs a toolchain with the identifier in the pattern: 19 # org.llvm.${PACKAGE_VERSION}. This toolchain can then be used to override the 26 # ninja install-xcode-toolchain 37 option(LLVM_CREATE_XCODE_TOOLCHAIN "Create a target to install LLVM into an Xcode toolchain" Off) 80 message(FATAL_ERROR "Could not identify toolchain dir") [all …]
|
/external/cpu_features/ |
D | .travis.yml | 16 TOOLCHAIN=NATIVE 59 TOOLCHAIN=LINARO 65 TOOLCHAIN=LINARO 71 TOOLCHAIN=LINARO 77 TOOLCHAIN=LINARO 83 TOOLCHAIN=LINARO 89 TOOLCHAIN=LINARO 95 TOOLCHAIN=LINARO 100 TOOLCHAIN=CODESCAPE 105 TOOLCHAIN=CODESCAPE [all …]
|
/external/llvm/tools/xcode-toolchain/ |
D | CMakeLists.txt | 6 # toolchain. Xcode toolchains are a mostly-undocumented feature that allows 10 # Setting an environment variable TOOLCHAINS to the toolchain's identifier will 11 # result in /usr/bin/<tool> or xcrun <tool> to find the tool in the toolchain. 13 # To make this work with Xcode 7.1 and later you can install the toolchain this 17 # This file generates a custom install-xcode-toolchain target which constructs 18 # and installs a toolchain with the identifier in the pattern: 19 # org.llvm.${PACKAGE_VERSION}. This toolchain can then be used to override the 26 # ninja install-xcode-toolchain 37 option(LLVM_CREATE_XCODE_TOOLCHAIN "Create a target to install LLVM into an Xcode toolchain" Off) 51 message(FATAL_ERROR "Could not identify toolchain dir") [all …]
|
/external/clang/ |
D | Android.mk | 4 .PHONY: clang-toolchain-minimal clang-toolchain-full llvm-tools 5 clang-toolchain-minimal: \ 8 clang-toolchain-full: \ 9 clang-toolchain-minimal \ 66 clang-toolchain-minimal: \ 79 clang-toolchain-full: \ 85 clang-toolchain-full: libomp 87 clang-toolchain-full: libomp-$(TARGET_ARCH) 93 clang-toolchain-minimal: \
|
/external/rust/crates/grpcio-sys/grpc/third_party/toolchains/bazel_0.26.0_rbe_windows/ |
D | BUILD | 30 # Hardcoded toolchain, legacy behaviour. 32 name = "toolchain", 65 toolchain( 66 name = "cc-toolchain-x64_windows_msys", 76 toolchain = ":cc-compiler-x64_windows_msys", 101 toolchain( 102 name = "cc-toolchain-x64_windows_mingw", 112 toolchain = ":cc-compiler-x64_windows_mingw", 137 toolchain( 138 name = "cc-toolchain-x64_windows", [all …]
|
/external/ms-tpm-20-ref/Samples/Nucleo-TPM/L4A6RG/ |
D | .cproject | 17 …<toolChain id="com.atollic.truestudio.exe.debug.toolchain.683225115" name="Atollic ARM Tools" supe… 21 …io.exe.debug.toolchain.platform.2054752829" isAbstract="false" name="Debug platform" superClass="c… 27 …tollic.truestudio.exe.debug.toolchain.as.1545899283" name="Assembler" superClass="com.atollic.true… 39 …ollic.truestudio.exe.debug.toolchain.gcc.1836874447" name="C Compiler" superClass="com.atollic.tru… 69 …dio.exe.debug.toolchain.gcc.optimization.level.1763412676" name="Optimization Level" superClass="c… 75 …atollic.truestudio.exe.debug.toolchain.ld.1444973427" name="C Linker" superClass="com.atollic.true… 94 …ollic.truestudio.exe.debug.toolchain.gpp.981298185" name="C++ Compiler" superClass="com.atollic.tr… 108 …atollic.truestudio.exe.debug.toolchain.ldcc.428260" name="C++ Linker" superClass="com.atollic.true… 117 …ollic.truestudio.exe.debug.toolchain.secoutput.839033486" name="Other" superClass="com.atollic.tru… 121 </toolChain> [all …]
|
/external/llvm-project/llvm/utils/gn/secondary/compiler-rt/lib/scudo/ |
D | BUILD.gn | 1 import("//llvm/utils/gn/build/toolchain/compiler.gni") 5 supported_toolchains += [ "//llvm/utils/gn/build/toolchain:stage2_unix" ] 9 "//llvm/utils/gn/build/toolchain:stage2_android_aarch64", 10 "//llvm/utils/gn/build/toolchain:stage2_android_arm", 16 foreach(toolchain, supported_toolchains) { 18 "standalone/benchmarks:ScudoBenchmarks($toolchain)", 19 "standalone/tests:ScudoCUnitTest($toolchain)", 20 "standalone/tests:ScudoCxxUnitTest($toolchain)", 21 "standalone/tests:ScudoUnitTest($toolchain)",
|
/external/angle/infra/config/generated/ |
D | cr-buildbucket.cfg | 26 …latform\":\"android\",\"recipe\":\"angle\",\"test_mode\":\"compile_only\",\"toolchain\":\"clang\"}" 43 …latform\":\"android\",\"recipe\":\"angle\",\"test_mode\":\"compile_only\",\"toolchain\":\"clang\"}" 60 …latform\":\"android\",\"recipe\":\"angle\",\"test_mode\":\"compile_only\",\"toolchain\":\"clang\"}" 77 …orm\":\"android\",\"recipe\":\"angle\",\"test_mode\":\"compile_and_test\",\"toolchain\":\"clang\"}" 94 …orm\":\"android\",\"recipe\":\"angle\",\"test_mode\":\"compile_and_test\",\"toolchain\":\"clang\"}" 112 …"platform\":\"linux\",\"recipe\":\"angle\",\"test_mode\":\"compile_only\",\"toolchain\":\"clang\"}" 130 …tform\":\"linux\",\"recipe\":\"angle\",\"test_mode\":\"compile_and_test\",\"toolchain\":\"clang\"}" 148 …\"platform\":\"linux\",\"recipe\":\"angle\",\"test_mode\":\"checkout_only\",\"toolchain\":\"gcc\"}" 166 …\"platform\":\"linux\",\"recipe\":\"angle\",\"test_mode\":\"checkout_only\",\"toolchain\":\"gcc\"}" 184 …tform\":\"linux\",\"recipe\":\"angle\",\"test_mode\":\"compile_and_test\",\"toolchain\":\"clang\"}" [all …]
|
/external/pigweed/pw_toolchain/ |
D | generate_toolchain.gni | 20 # Scope defining the current toolchain. Contains all of the arguments required 31 # Creates a toolchain target. 45 # generate_from: (optional) The full target name of the toolchain that can 46 # trigger this toolchain to be generated. GN only allows one toolchain to 48 # same generate_toolchain target only one should declare a toolchain. This 52 # targets in this toolchain. These take precedence over args.gni settings. 55 # current_cpu: The CPU of the toolchain. 57 # current_os: The OS of the toolchain. Defaults to "". 62 assert(defined(invoker.defaults), "toolchain is missing 'defaults'") 64 # On the default toolchain invocation, you typically need to generate all [all …]
|
/external/fmtlib/ |
D | .travis.yml | 29 - ubuntu-toolchain-r-test 38 - ubuntu-toolchain-r-test 48 - ubuntu-toolchain-r-test 57 - ubuntu-toolchain-r-test 77 - ubuntu-toolchain-r-test 78 - llvm-toolchain-trusty 79 - llvm-toolchain-trusty-6.0 89 - ubuntu-toolchain-r-test 90 - llvm-toolchain-trusty 91 - llvm-toolchain-trusty-4.0
|