| /third_party/ejdb/docker/testbed/ |
| D | llvm-update-alternatives.sh | 11 …--install /usr/bin/llvm-config llvm-config /usr/bin/llvm-config-${version} ${priority} \ 12 --slave /usr/bin/llvm-addr2line llvm-addr2line /usr/bin/llvm-addr2line-${version} \ 13 --slave /usr/bin/llvm-ar llvm-ar /usr/bin/llvm-ar-${version} \ 14 --slave /usr/bin/llvm-as llvm-as /usr/bin/llvm-as-${version} \ 15 --slave /usr/bin/llvm-bcanalyzer llvm-bcanalyzer /usr/bin/llvm-bcanalyzer-${version} \ 16 --slave /usr/bin/llvm-cov llvm-cov /usr/bin/llvm-cov-${version} \ 17 --slave /usr/bin/llvm-diff llvm-diff /usr/bin/llvm-diff-${version} \ 18 --slave /usr/bin/llvm-dis llvm-dis /usr/bin/llvm-dis-${version} \ 19 --slave /usr/bin/llvm-dwarfdump llvm-dwarfdump /usr/bin/llvm-dwarfdump-${version} \ 20 --slave /usr/bin/llvm-exegesis llvm-exegesis /usr/bin/llvm-exegesis-${version} \ [all …]
|
| D | llvm.sh | 3 # Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 # See https://llvm.org/LICENSE.txt for license information. 5 # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 8 # This script will install the llvm toolchain on the different 34 echo "This script does not support LLVM version $LLVM_VERSION" 42 …Debian_9* ) REPO_NAME="deb http://apt.llvm.org/stretch/ llvm-toolchain-stretch$LLVM_VERSION… 43 …Debian_10* ) REPO_NAME="deb http://apt.llvm.org/buster/ llvm-toolchain-buster$LLVM_VERSION_… 44 …Debian_unstable ) REPO_NAME="deb http://apt.llvm.org/unstable/ llvm-toolchain$LLVM_VERSION_STRING … 45 …Debian_testing ) REPO_NAME="deb http://apt.llvm.org/unstable/ llvm-toolchain$LLVM_VERSION_STRING … 46 …Ubuntu_16.04 ) REPO_NAME="deb http://apt.llvm.org/xenial/ llvm-toolchain-xenial$LLVM_VERSION_… [all …]
|
| /third_party/grpc/templates/tools/dockerfile/ |
| D | clang_update.include | 4 RUN git clone -n -b release_38 http://llvm.org/git/llvm.git && ${'\\'} 5 cd llvm && git checkout ad57503 && cd .. 6 RUN git clone -n -b release_38 http://llvm.org/git/clang.git && ${'\\'} 8 RUN git clone -n -b release_38 http://llvm.org/git/compiler-rt.git && ${'\\'} 11 http://llvm.org/git/clang-tools-extra.git && cd clang-tools-extra && ${'\\'} 13 RUN git clone -n -b release_38 http://llvm.org/git/libcxx.git && ${'\\'} 15 RUN git clone -n -b release_38 http://llvm.org/git/libcxxabi.git && ${'\\'} 18 RUN mv clang llvm/tools 19 RUN mv compiler-rt llvm/projects 20 RUN mv clang-tools-extra llvm/tools/clang/tools [all …]
|
| /third_party/grpc/tools/dockerfile/grpc_clang/ |
| D | Dockerfile | 26 RUN git clone -b release_36 http://llvm.org/git/llvm.git 27 RUN git clone -b release_36 http://llvm.org/git/clang.git 28 RUN git clone -b release_36 http://llvm.org/git/compiler-rt.git 29 RUN git clone -b release_36 http://llvm.org/git/clang-tools-extra.git 30 RUN git clone -b release_36 http://llvm.org/git/libcxx.git 31 RUN git clone -b release_36 http://llvm.org/git/libcxxabi.git 33 RUN mv clang llvm/tools 34 RUN mv compiler-rt llvm/projects 35 RUN mv clang-tools-extra llvm/tools/clang/tools 36 RUN mv libcxx llvm/projects [all …]
|
| /third_party/grpc/tools/dockerfile/test/fuzzer/ |
| D | Dockerfile | 88 RUN git clone -n -b release_38 http://llvm.org/git/llvm.git && \ 89 cd llvm && git checkout ad57503 && cd .. 90 RUN git clone -n -b release_38 http://llvm.org/git/clang.git && \ 92 RUN git clone -n -b release_38 http://llvm.org/git/compiler-rt.git && \ 95 http://llvm.org/git/clang-tools-extra.git && cd clang-tools-extra && \ 97 RUN git clone -n -b release_38 http://llvm.org/git/libcxx.git && \ 99 RUN git clone -n -b release_38 http://llvm.org/git/libcxxabi.git && \ 102 RUN mv clang llvm/tools 103 RUN mv compiler-rt llvm/projects 104 RUN mv clang-tools-extra llvm/tools/clang/tools [all …]
|
| /third_party/boost/libs/beast/tools/ |
| D | install-dependencies.sh | 19 if [[ ! -x llvm-${LLVM_VERSION}/bin/llvm-config ]] && [[ -d llvm-${LLVM_VERSION} ]]; then 20 rm -fr llvm-${LLVM_VERSION} 22 if [[ ! -d llvm-${LLVM_VERSION} ]]; then 23 mkdir llvm-${LLVM_VERSION} 24 …LLVM_URL="http://llvm.org/releases/${LLVM_VERSION}/clang+llvm-${LLVM_VERSION}-x86_64-linux-gnu-ubu… 25 wget -O - ${LLVM_URL} | tar -Jxvf - --strip 1 -C llvm-${LLVM_VERSION} 27 llvm-${LLVM_VERSION}/bin/llvm-config --version; 28 export LLVM_CONFIG="llvm-${LLVM_VERSION}/bin/llvm-config";
|
| /third_party/boost/libs/spirit/example/qi/compiler_tutorial/conjure3/ |
| D | compiler.hpp | 22 #include <llvm/DerivedTypes.h> 23 #include <llvm/Constants.h> 24 #include <llvm/LLVMContext.h> 25 #include <llvm/Module.h> 26 #include <llvm/PassManager.h> 27 #include <llvm/Analysis/Verifier.h> 28 #include <llvm/Analysis/Passes.h> 29 #include <llvm/Transforms/Scalar.h> 30 #include <llvm/Support/IRBuilder.h> 39 // The Value (light abstraction of an LLVM::Value) [all …]
|
| D | compiler.cpp | 27 llvm::Value* v, in value() 29 llvm::IRBuilder<>* builder) in value() 66 value::operator llvm::Value*() const in operator llvm::Value*() 261 value operator()(llvm::Value& v) const in operator ()() 277 function::operator llvm::Function*() const in operator llvm::Function*() 327 llvm::verifyFunction(*f); in verify() 333 llvm::ConstantInt::get(context(), llvm::APInt(int_size, x)), in val() 340 llvm::ConstantInt::get(context(), llvm::APInt(int_size, x)), in val() 347 llvm::ConstantInt::get(context(), llvm::APInt(1, x)), in val() 351 value llvm_compiler::val(llvm::Value* v) in val() [all …]
|
| D | vm.hpp | 10 #include <llvm/ExecutionEngine/ExecutionEngine.h> 11 #include <llvm/ExecutionEngine/JIT.h> 12 #include <llvm/LLVMContext.h> 13 #include <llvm/Module.h> 14 #include <llvm/Target/TargetData.h> 15 #include <llvm/Target/TargetSelect.h> 79 // The Virtual Machine (light wrapper over LLVM JIT) 87 llvm::Module* module() const in module() 92 llvm::ExecutionEngine* execution_engine() const in execution_engine() 104 llvm::Function* callee = module_->getFunction(name); in get_function() [all …]
|
| D | vm.cpp | 20 llvm::InitializeNativeTarget(); in vmachine() 21 llvm::LLVMContext& context = llvm::getGlobalContext(); in vmachine() 24 module_ = new llvm::Module("Conjure JIT", context); in vmachine() 29 llvm::EngineBuilder(module_).setErrorStr(&error).create(); in vmachine()
|
| /third_party/flutter/skia/third_party/externals/harfbuzz/.circleci/ |
| D | config.yml | 119 - run: wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add - 120 …- run: echo "deb http://apt.llvm.org/cosmic/ llvm-toolchain-cosmic main" > /etc/apt/sources.list.d… 121 …- run: echo "deb-src http://apt.llvm.org/cosmic/ llvm-toolchain-cosmic main" > /etc/apt/sources.li… 135 - run: wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add - 136 …- run: echo "deb http://apt.llvm.org/cosmic/ llvm-toolchain-cosmic main" > /etc/apt/sources.list.d… 137 …- run: echo "deb-src http://apt.llvm.org/cosmic/ llvm-toolchain-cosmic main" > /etc/apt/sources.li… 151 - run: wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add - 152 …- run: echo "deb http://apt.llvm.org/cosmic/ llvm-toolchain-cosmic main" > /etc/apt/sources.list.d… 153 …- run: echo "deb-src http://apt.llvm.org/cosmic/ llvm-toolchain-cosmic main" > /etc/apt/sources.li… 169 - run: wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add - [all …]
|
| /third_party/json/benchmarks/thirdparty/benchmark/cmake/Modules/ |
| D | FindLLVMNm.cmake | 4 NAMES llvm-nm 5 DOC "The llvm-nm executable" 14 URL https://llvm.org/docs/CommandGuide/llvm-nm.html 15 DESCRIPTION "list LLVM bitcode and object file’s symbol table"
|
| D | FindLLVMAr.cmake | 4 NAMES llvm-ar 5 DOC "The llvm-ar executable" 14 URL https://llvm.org/docs/CommandGuide/llvm-ar.html
|
| D | FindLLVMRanLib.cmake | 4 NAMES llvm-ranlib 5 DOC "The llvm-ranlib executable" 14 DESCRIPTION "generate index for LLVM archive"
|
| /third_party/abseil-cpp/ci/ |
| D | linux_clang-latest_libcxx_asan_bazel.sh | 62 -e CC="/opt/llvm/clang/bin/clang" \ 63 -e BAZEL_COMPILER="llvm" \ 65 … -e BAZEL_LINKOPTS="-L/opt/llvm/libcxx/lib:-lc++:-lc++abi:-lm:-Wl,-rpath=/opt/llvm/libcxx/lib" \ 66 -e CPLUS_INCLUDE_PATH="/opt/llvm/libcxx/include/c++/v1" \ 85 --test_env="ASAN_SYMBOLIZER_PATH=/opt/llvm/clang/bin/llvm-symbolizer" \ 88 --test_env="UBSAN_SYMBOLIZER_PATH=/opt/llvm/clang/bin/llvm-symbolizer" \
|
| D | linux_clang-latest_libcxx_tsan_bazel.sh | 62 -e CC="/opt/llvm/clang/bin/clang" \ 63 -e BAZEL_COMPILER="llvm" \ 65 …-e BAZEL_LINKOPTS="-L/opt/llvm/libcxx-tsan/lib:-lc++:-lc++abi:-lm:-Wl,-rpath=/opt/llvm/libcxx-tsan… 66 -e CPLUS_INCLUDE_PATH="/opt/llvm/libcxx-tsan/include/c++/v1" \ 82 --test_env="TSAN_SYMBOLIZER_PATH=/opt/llvm/clang/bin/llvm-symbolizer" \
|
| /third_party/json/benchmarks/thirdparty/benchmark/docs/ |
| D | AssemblyTests.md | 38 #### LLVM Filecheck 40 [LLVM's Filecheck](https://llvm.org/docs/CommandGuide/FileCheck.html) 50 bits of assembly. ([`CHECK-NEXT`](https://llvm.org/docs/CommandGuide/FileCheck.html#the-check-next-… 63 * Filecheck supports using [`CHECK` prefixes](https://llvm.org/docs/CommandGuide/FileCheck.html#cmd… 82 LLVM Filecheck provides a number of mechanisms to help write 83 "more portable" tests; including [matching using regular expressions](https://llvm.org/docs/Command… 84 allowing the creation of [named variables](https://llvm.org/docs/CommandGuide/FileCheck.html#filech… 85 for later matching, and [checking non-sequential matches](https://llvm.org/docs/CommandGuide/FileCh…
|
| /third_party/glib/fuzzing/ |
| D | README.md | 21 …t](https://llvm.org/docs/LibFuzzer.html#fuzz-target), [Dictionaries](https://llvm.org/docs/LibFuzz… 25 … a sanitizer as needed. A somewhat recent version of [clang](http://clang.llvm.org/) is recommende… 41 Correct MSAN instrumentation is [difficult to achieve](https://clang.llvm.org/docs/MemorySanitizer.… 47 `llvm-symbolizer` must be in `PATH`.
|
| /third_party/boost/libs/predef/tools/ci/ |
| D | common.py | 22 'ppa' : ["ppa:h-rayflood/llvm"], 29 'ppa' : ["ppa:h-rayflood/llvm"], 36 'ppa' : ["ppa:h-rayflood/llvm"], 43 'deb' : ["http://apt.llvm.org/trusty/","llvm-toolchain-trusty-3.7","main"], 44 'apt-key' : ['http://apt.llvm.org/llvm-snapshot.gpg.key'], 51 'deb' : ["http://apt.llvm.org/trusty/","llvm-toolchain-trusty-3.8","main"], 52 'apt-key' : ['http://apt.llvm.org/llvm-snapshot.gpg.key'], 59 'deb' : ["http://apt.llvm.org/trusty/","llvm-toolchain-trusty-3.9","main"], 60 'apt-key' : ['http://apt.llvm.org/llvm-snapshot.gpg.key'], 67 'deb' : ["http://apt.llvm.org/trusty/","llvm-toolchain-trusty-4.0","main"], [all …]
|
| /third_party/flutter/skia/infra/bots/assets/clang_linux/ |
| D | create.py | 17 REPO = "https://llvm.googlesource.com/" 27 BRANCH, REPO + "llvm"]) 28 os.chdir("llvm/tools") 55 subprocess.check_call(["cp", "bin/llvm-symbolizer", target_dir + "/bin"]) 56 subprocess.check_call(["cp", "bin/llvm-profdata", target_dir + "/bin"]) 57 subprocess.check_call(["cp", "bin/llvm-cov", target_dir + "/bin"])
|
| /third_party/flutter/skia/infra/skqp/docker/android-skqp/ |
| D | Dockerfile | 31 RUN update-alternatives --install /usr/bin/cc cc /usr/lib/llvm-6.0/bin/clang 20 && \ 32 update-alternatives --install /usr/bin/c++ c++ /usr/lib/llvm-6.0/bin/clang++ 20 34 ENV CC="/usr/lib/llvm-6.0/bin/clang" \ 35 CXX="/usr/lib/llvm-6.0/bin/clang++" \ 36 PATH=/usr/lib/llvm-6.0/bin:$PATH
|
| /third_party/json/ |
| D | .travis.yml | 51 sources: ['ubuntu-toolchain-r-test', 'llvm-toolchain-trusty-7'] 54 - export PATH=$PATH:/usr/lib/llvm-7/bin 118 sources: ['ubuntu-toolchain-r-test', 'llvm-toolchain-precise-3.6'] 236 sources: ['ubuntu-toolchain-r-test', 'llvm-toolchain-precise-3.5'] 244 sources: ['ubuntu-toolchain-r-test', 'llvm-toolchain-precise-3.6'] 252 sources: ['ubuntu-toolchain-r-test', 'llvm-toolchain-precise-3.7'] 276 sources: ['ubuntu-toolchain-r-test', 'llvm-toolchain-trusty-4.0'] 284 sources: ['ubuntu-toolchain-r-test', 'llvm-toolchain-trusty-5.0'] 292 sources: ['ubuntu-toolchain-r-test', 'llvm-toolchain-trusty-6.0'] 300 sources: ['ubuntu-toolchain-r-test', 'llvm-toolchain-trusty-7'] [all …]
|
| /third_party/boost/tools/build/ |
| D | azure-pipelines.yml | 79 LLVM_REPO: llvm-toolchain-xenial-9 85 LLVM_REPO: llvm-toolchain-xenial-8 91 LLVM_REPO: llvm-toolchain-xenial-7 97 LLVM_REPO: llvm-toolchain-xenial-6.0 103 LLVM_REPO: llvm-toolchain-xenial-5.0 109 LLVM_REPO: llvm-toolchain-xenial-4.0 141 wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add - 142 sudo -E apt-add-repository "deb http://apt.llvm.org/xenial/ ${LLVM_REPO} main" 381 wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add - 382 sudo -E apt-add-repository "deb http://apt.llvm.org/xenial/ ${LLVM_REPO} main" [all …]
|
| /third_party/flutter/flutter/packages/flutter_tools/test/general.shard/commands/ |
| D | build_aot_test.dart | 85 … FakeProcessResult(stdout: 'Apple LLVM version 10.0.0 (clang-4567.1.1.1)\nBlahBlah\n', stderr: ''), 90 …when(mockPlistUtils.getValueFromFile(infoPlist.path, 'ClangVersion')).thenReturn('Apple LLVM versi… 94 …equals('The Flutter.framework at ios_profile/Flutter.framework was built with "Apple LLVM version … 95 …'(clang-1234.1.12.1)", but the current version of clang is "Apple LLVM version 10.0.0 (clang-4567.… 119 …FakeProcessResult(stdout: 'Apple LLVM version 10.0.1 (clang-1234.1.12.1)\nBlahBlah\n', stderr: ''), 124 …when(mockPlistUtils.getValueFromFile(infoPlist.path, 'ClangVersion')).thenReturn('Apple LLVM versi… 149 …FakeProcessResult(stdout: 'Apple LLVM version 11.0.1 (clang-1234.1.12.1)\nBlahBlah\n', stderr: ''), 154 …when(mockPlistUtils.getValueFromFile(infoPlist.path, 'ClangVersion')).thenReturn('Apple LLVM versi…
|
| /third_party/FreeBSD/ |
| D | MAINTAINERS | 41 contrib/llvm-project/compiler-rt dim Pre-commit review preferred. 42 contrib/llvm-project/libcxx dim Pre-commit review preferred. 43 contrib/llvm-project/libunwind dim,emaste,jhb Pre-commit review preferred. 44 contrib/llvm-project/lldb dim,emaste Pre-commit review preferred. 45 contrib/llvm-project/llvm dim Pre-commit review preferred. 46 contrib/llvm-project/openmp dim,emaste Pre-commit review preferred.
|