Home
last modified time | relevance | path

Searched +full:clang +full:- +full:12 (Results 1 – 25 of 1052) sorted by relevance

12345678910>>...43

/external/AFLplusplus/instrumentation/
DREADME.lto.md1 # afl-clang-lto - collision free instrumentation at link time
5 This version requires a LLVM 12 or newer.
7 1. Use afl-clang-lto/afl-clang-lto++ because the resulting binaries run
13 3. It only works with LLVM 12 or newer.
17 5. If any problems arise, be sure to set `AR=llvm-ar RANLIB=llvm-ranlib AS=llvm-as`.
18 Some targets might need `LD=afl-clang-lto` and others `LD=afl-ld-lto`.
23 set during compilation are random - and hence naturally the larger the number
31 the real collisions are between 750-18.000!
37 * We instrument at link time when we have all files pre-compiled.
39 * Our compiler (afl-clang-lto/afl-clang-lto++) takes care of setting the correct
[all …]
/external/tensorflow/tensorflow/tools/ci_build/
DDockerfile.micro4 FROM python:3.9.0-buster
8 RUN echo deb http://apt.llvm.org/buster/ llvm-toolchain-buster-12 main > /etc/apt/sources.list.d/ll…
9 RUN wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add -
11 RUN apt-get update
13 RUN apt-get install -y zip xxd sudo
15 RUN apt-get install -y clang-12 clang-format-12
16 # Set clang-12 and clang-format-12 as the default to ensure that the pigweed
18 RUN ln -s /usr/bin/clang-12 /usr/bin/clang
19 RUN ln -s /usr/bin/clang++-12 /usr/bin/clang++
20 RUN ln -s /usr/bin/clang-format-12 /usr/bin/clang-format
/external/google-fruit/extras/scripts/
Dci_install_osx.sh1 #!/bin/bash -x
3 set -e
30 gcc-4.9) install_brew_package gcc@4.9 ;;
31 gcc-5) install_brew_package gcc@5 ;;
32 gcc-6) install_brew_package gcc@6 ;;
33 gcc-7) install_brew_package gcc@7 ;;
34 gcc-8) install_brew_package gcc@8 ;;
35 gcc-9) install_brew_package gcc@9 ;;
36 gcc-10) install_brew_package gcc@10 ;;
37 gcc-11) install_brew_package gcc@11 ;;
[all …]
Dpostsubmit-helper.sh1 #!/bin/bash -x
3 set -e
10 gcc-4.9)
11 export CC=gcc-4.9
12 export CXX=g++-4.9
15 gcc-5)
16 export CC=gcc-5
17 export CXX=g++-5
20 gcc-6)
21 export CC=gcc-6
[all …]
/external/sandboxed-api/.github/workflows/
Dubuntu-cmake.yml1 name: ubuntu-cmake
11 fail-fast: false
14 # Ubuntu 22.04: Use preinstalled Clang 12.0.1, 13.0.1 and 14.0.0
15 - os: ubuntu-22.04
16 compiler: clang
17 compiler-version: 14
18 libclang-version: 14
19 pip-clang-version: "14.0"
20 ignore-errors: false
21 - os: ubuntu-22.04
[all …]
/external/rust/crates/clang-sys/
DCHANGELOG.md1 ## [1.7.0] - 2023-12-31
4 - Added support for `clang` 17.0.x
6 ## [1.6.1] - 2023-03-29
9 - Improved error message when calling a `libclang` function that is not supported by the loaded `li…
11 ## [1.6.0] - 2023-02-18
14 - MinGW directories are not searched for `libclang` instances on Windows when
16 - Bumped minimum supported Rust version (MSRV) to 1.51.0
17 - Changed Windows search directory preferences (`libclang` instances from
21 ## ~~[1.5.1] - 2023-02-05~~ (YANKED)
24 - MinGW directories are not searched for `libclang` instances on Windows when
[all …]
/external/google-fruit/.github/workflows/
Dtest-on-linux.yml5 - master
10 …e tests with tmate debugging enabled (https://github.com/marketplace/actions/debugging-with-tmate)'
15 - cron: '13 8 1 * *'
17 Ubuntu-22-10:
18 runs-on: ubuntu-latest
19 container: polettimarco/fruit-basesystem:ubuntu-22.10
27 - uses: actions/checkout@v3
28 - name: test
29 run: extras/scripts/postsubmit-helper.sh ${{ matrix.config.test }}
30 - name: Setup tmate session
[all …]
Dtest-on-osx.yml5 - master
10 …e tests with tmate debugging enabled (https://github.com/marketplace/actions/debugging-with-tmate)'
15 - cron: '13 8 1 * *'
17 macOS-12:
18 runs-on: macos-12
24 - uses: actions/checkout@v3
25 - name: install
27 - name: test
29 - name: Setup tmate session
30 uses: mxschmitt/action-tmate@v3
[all …]
/external/webrtc/third_party/crc32c/src/
D.travis.yml2 # http://about.travis-ci.org/docs/user/build-configuration/
3 # This file can be validated on: http://lint.travis-ci.org/
10 - gcc
11 - clang
13 - linux
14 - osx
17 - GLOG=1 SHARED_LIB=0 BUILD_TYPE=Debug
18 - GLOG=1 SHARED_LIB=0 BUILD_TYPE=RelWithDebInfo
19 - GLOG=0 SHARED_LIB=0 BUILD_TYPE=Debug
20 - GLOG=0 SHARED_LIB=0 BUILD_TYPE=RelWithDebInfo
[all …]
/external/swiftshader/third_party/SPIRV-Tools/test/opt/loop_optimizations/
Dunroll_assumptions.cpp7 // http://www.apache.org/licenses/LICENSE-2.0
43 for (Function& f : *context()->module()) { in Process()
48 LoopDescriptor& loop_descriptor = *context()->GetLoopDescriptor(&f); in Process()
73 // clang-format off in TEST_F()
94 %12 = OpTypeFloat 32 in TEST_F()
97 %15 = OpTypeArray %12 %14 in TEST_F()
99 %17 = OpConstant %12 1 in TEST_F()
100 %18 = OpTypePointer Function %12 in TEST_F()
125 // clang-format on in TEST_F()
129 Module* module = context->module(); in TEST_F()
[all …]
/external/angle/third_party/spirv-tools/src/test/opt/loop_optimizations/
Dunroll_assumptions.cpp7 // http://www.apache.org/licenses/LICENSE-2.0
43 for (Function& f : *context()->module()) { in Process()
48 LoopDescriptor& loop_descriptor = *context()->GetLoopDescriptor(&f); in Process()
73 // clang-format off in TEST_F()
94 %12 = OpTypeFloat 32 in TEST_F()
97 %15 = OpTypeArray %12 %14 in TEST_F()
99 %17 = OpConstant %12 1 in TEST_F()
100 %18 = OpTypePointer Function %12 in TEST_F()
125 // clang-format on in TEST_F()
129 Module* module = context->module(); in TEST_F()
[all …]
/external/deqp-deps/SPIRV-Tools/test/opt/loop_optimizations/
Dunroll_assumptions.cpp7 // http://www.apache.org/licenses/LICENSE-2.0
43 for (Function& f : *context()->module()) { in Process()
48 LoopDescriptor& loop_descriptor = *context()->GetLoopDescriptor(&f); in Process()
73 // clang-format off in TEST_F()
94 %12 = OpTypeFloat 32 in TEST_F()
97 %15 = OpTypeArray %12 %14 in TEST_F()
99 %17 = OpConstant %12 1 in TEST_F()
100 %18 = OpTypePointer Function %12 in TEST_F()
125 // clang-format on in TEST_F()
129 Module* module = context->module(); in TEST_F()
[all …]
/external/libcxx/test/std/language.support/support.dynamic/new.delete/new.delete.single/
Dnew_align_val_t.pass.cpp1 //===----------------------------------------------------------------------===//
8 //===----------------------------------------------------------------------===//
12 // Aligned allocation was not provided before macosx10.12 and as a result we
15 // XFAIL: !(apple-clang-9 || apple-clang-10) && availability=macosx10.12
16 // XFAIL: !(apple-clang-9 || apple-clang-10) && availability=macosx10.11
17 // XFAIL: !(apple-clang-9 || apple-clang-10) && availability=macosx10.10
18 // XFAIL: !(apple-clang-9 || apple-clang-10) && availability=macosx10.9
19 // XFAIL: !(apple-clang-9 || apple-clang-10) && availability=macosx10.8
20 // XFAIL: !(apple-clang-9 || apple-clang-10) && availability=macosx10.7
25 // XFAIL: (apple-clang-9 || apple-clang-10) && with_system_cxx_lib=macosx10.12
[all …]
Ddelete_align_val_t_replace.pass.cpp1 //===----------------------------------------------------------------------===//
8 //===----------------------------------------------------------------------===//
12 // UNSUPPORTED: sanitizer-new-delete, c++98, c++03, c++11, c++14
13 // Older Clang versions do not support this
14 // UNSUPPORTED: clang-3, apple-clang-7, apple-clang-8
17 // UNSUPPORTED: gcc-5, gcc-6
19 // Aligned allocation was not provided before macosx10.12 and as a result we
22 // XFAIL: !(apple-clang-9 || apple-clang-10) && availability=macosx10.12
23 // XFAIL: !(apple-clang-9 || apple-clang-10) && availability=macosx10.11
24 // XFAIL: !(apple-clang-9 || apple-clang-10) && availability=macosx10.10
[all …]
Dnew_align_val_t_nothrow.pass.cpp1 //===----------------------------------------------------------------------===//
8 //===----------------------------------------------------------------------===//
12 // Aligned allocation was not provided before macosx10.12 and as a result we
15 // XFAIL: !(apple-clang-9 || apple-clang-10) && availability=macosx10.12
16 // XFAIL: !(apple-clang-9 || apple-clang-10) && availability=macosx10.11
17 // XFAIL: !(apple-clang-9 || apple-clang-10) && availability=macosx10.10
18 // XFAIL: !(apple-clang-9 || apple-clang-10) && availability=macosx10.9
19 // XFAIL: !(apple-clang-9 || apple-clang-10) && availability=macosx10.8
20 // XFAIL: !(apple-clang-9 || apple-clang-10) && availability=macosx10.7
25 // XFAIL: (apple-clang-9 || apple-clang-10) && with_system_cxx_lib=macosx10.12
[all …]
Dnew_align_val_t_nothrow_replace.pass.cpp1 //===----------------------------------------------------------------------===//
8 //===----------------------------------------------------------------------===//
11 // UNSUPPORTED: sanitizer-new-delete
13 // Aligned allocation was not provided before macosx10.12 and as a result we
16 // XFAIL: !(apple-clang-9 || apple-clang-10) && availability=macosx10.12
17 // XFAIL: !(apple-clang-9 || apple-clang-10) && availability=macosx10.11
18 // XFAIL: !(apple-clang-9 || apple-clang-10) && availability=macosx10.10
19 // XFAIL: !(apple-clang-9 || apple-clang-10) && availability=macosx10.9
20 // XFAIL: !(apple-clang-9 || apple-clang-10) && availability=macosx10.8
21 // XFAIL: !(apple-clang-9 || apple-clang-10) && availability=macosx10.7
[all …]
/external/libcxx/test/std/language.support/support.dynamic/new.delete/new.delete.array/
Ddelete_align_val_t_replace.pass.cpp1 //===----------------------------------------------------------------------===//
8 //===----------------------------------------------------------------------===//
12 // UNSUPPORTED: sanitizer-new-delete, c++98, c++03, c++11, c++14
14 // Older Clang versions do not support this
15 // UNSUPPORTED: clang-3, apple-clang-7, apple-clang-8
18 // UNSUPPORTED: gcc-5, gcc-6
20 // Aligned allocation was not provided before macosx10.12 and as a result we
23 // XFAIL: !(apple-clang-9 || apple-clang-10) && availability=macosx10.12
24 // XFAIL: !(apple-clang-9 || apple-clang-10) && availability=macosx10.11
25 // XFAIL: !(apple-clang-9 || apple-clang-10) && availability=macosx10.10
[all …]
Dnew_align_val_t.pass.cpp1 //===----------------------------------------------------------------------===//
8 //===----------------------------------------------------------------------===//
13 // UNSUPPORTED: sanitizer-new-delete
16 // UNSUPPORTED: no-aligned-allocation && !gcc
18 // Aligned allocation was not provided before macosx10.12 and as a result we
21 // XFAIL: !(apple-clang-9 || apple-clang-10) && availability=macosx10.12
22 // XFAIL: !(apple-clang-9 || apple-clang-10) && availability=macosx10.11
23 // XFAIL: !(apple-clang-9 || apple-clang-10) && availability=macosx10.10
24 // XFAIL: !(apple-clang-9 || apple-clang-10) && availability=macosx10.9
25 // XFAIL: !(apple-clang-9 || apple-clang-10) && availability=macosx10.8
[all …]
Dnew_align_val_t_nothrow.pass.cpp1 //===----------------------------------------------------------------------===//
8 //===----------------------------------------------------------------------===//
13 // UNSUPPORTED: sanitizer-new-delete
16 // UNSUPPORTED: no-aligned-allocation && !gcc
18 // Aligned allocation was not provided before macosx10.12 and as a result we
21 // XFAIL: !(apple-clang-9 || apple-clang-10) && availability=macosx10.12
22 // XFAIL: !(apple-clang-9 || apple-clang-10) && availability=macosx10.11
23 // XFAIL: !(apple-clang-9 || apple-clang-10) && availability=macosx10.10
24 // XFAIL: !(apple-clang-9 || apple-clang-10) && availability=macosx10.9
25 // XFAIL: !(apple-clang-9 || apple-clang-10) && availability=macosx10.8
[all …]
Dnew_align_val_t_nothrow_replace.pass.cpp1 //===----------------------------------------------------------------------===//
8 //===----------------------------------------------------------------------===//
11 // UNSUPPORTED: sanitizer-new-delete
13 // Aligned allocation was not provided before macosx10.12 and as a result we
16 // XFAIL: !(apple-clang-9 || apple-clang-10) && availability=macosx10.12
17 // XFAIL: !(apple-clang-9 || apple-clang-10) && availability=macosx10.11
18 // XFAIL: !(apple-clang-9 || apple-clang-10) && availability=macosx10.10
19 // XFAIL: !(apple-clang-9 || apple-clang-10) && availability=macosx10.9
20 // XFAIL: !(apple-clang-9 || apple-clang-10) && availability=macosx10.8
21 // XFAIL: !(apple-clang-9 || apple-clang-10) && availability=macosx10.7
[all …]
/external/deqp-deps/SPIRV-Tools/test/opt/
Dstrength_reduction_test.cpp7 // http://www.apache.org/licenses/LICENSE-2.0
34 // clang-format off in TEST_F()
50 // clang-format on in TEST_F()
76 ; CHECK-DAG: [[five:%[a-zA-Z_\d]+]] = OpConstant %uint 5 in TEST_F()
78 ; We have RE2 regular expressions, so \w matches [_a-zA-Z0-9]. in TEST_F()
79 ; This shows the preferred pattern for matching SPIR-V identifiers. in TEST_F()
82 ; CHECK-DAG: [[four:%\w+]] = OpConstant %uint 4 in TEST_F()
89 ; CHECK-NEXT: OpShiftLeftLogical %uint [[five]] [[four]] in TEST_F()
91 ; CHECK-NOT: OpIMul in TEST_F()
104 // clang-format off in TEST_F()
[all …]
/external/swiftshader/third_party/SPIRV-Tools/test/opt/
Dstrength_reduction_test.cpp7 // http://www.apache.org/licenses/LICENSE-2.0
34 // clang-format off in TEST_F()
50 // clang-format on in TEST_F()
76 ; CHECK-DAG: [[five:%[a-zA-Z_\d]+]] = OpConstant %uint 5 in TEST_F()
78 ; We have RE2 regular expressions, so \w matches [_a-zA-Z0-9]. in TEST_F()
79 ; This shows the preferred pattern for matching SPIR-V identifiers. in TEST_F()
82 ; CHECK-DAG: [[four:%\w+]] = OpConstant %uint 4 in TEST_F()
89 ; CHECK-NEXT: OpShiftLeftLogical %uint [[five]] [[four]] in TEST_F()
91 ; CHECK-NOT: OpIMul in TEST_F()
104 // clang-format off in TEST_F()
[all …]
/external/angle/third_party/spirv-tools/src/test/opt/
Dstrength_reduction_test.cpp7 // http://www.apache.org/licenses/LICENSE-2.0
34 // clang-format off in TEST_F()
50 // clang-format on in TEST_F()
76 ; CHECK-DAG: [[five:%[a-zA-Z_\d]+]] = OpConstant %uint 5 in TEST_F()
78 ; We have RE2 regular expressions, so \w matches [_a-zA-Z0-9]. in TEST_F()
79 ; This shows the preferred pattern for matching SPIR-V identifiers. in TEST_F()
82 ; CHECK-DAG: [[four:%\w+]] = OpConstant %uint 4 in TEST_F()
89 ; CHECK-NEXT: OpShiftLeftLogical %uint [[five]] [[four]] in TEST_F()
91 ; CHECK-NOT: OpIMul in TEST_F()
104 // clang-format off in TEST_F()
[all …]
/external/AFLplusplus/.github/workflows/
Dci.yml6 - stable
7 - dev
10 - dev # No need for stable-pull-request, as that equals dev-push
14 runs-on: "${{ matrix.os }}"
17 os: [ubuntu-22.04, ubuntu-20.04]
22 - uses: actions/checkout@v3
23 - name: update
24 run: sudo apt-get update && sudo apt-get upgrade -y
25 - name: debug
26 …run: apt-cache search plugin-dev | grep gcc-; echo; apt-cache search clang-format- | grep clang-fo…
[all …]
/external/llvm/test/CodeGen/X86/
Dfold-call-3.ll1 ; RUN: llc < %s -mtriple=x86_64-apple-darwin | grep call | grep 560
4 %"struct.clang::Action" = type { %"struct.clang::ActionBase" }
5 %"struct.clang::ActionBase" = type { i32 (...)** }
6 %"struct.clang::ActionBase::ActionResult<0u>" = type { i8*, i8 }
8 @llvm.used = appending global [1 x i8*] [ i8* bitcast (void (i8*, %"struct.clang::Action"*)* @_Z25R…
10 define void @_Z25RawPointerPerformanceTestPvRN5clang6ActionE(i8* %Val, %"struct.clang::Action"* %Ac…
12 …%0 = alloca %"struct.clang::ActionBase::ActionResult<0u>", align 8 ; <%"struct.clang::ActionBase:…
18 …%3 = getelementptr %"struct.clang::Action", %"struct.clang::Action"* %Actions, i64 0, i32 0, i32 0…
19 %mrv_gep = bitcast %"struct.clang::ActionBase::ActionResult<0u>"* %0 to i64* ; <i64*> [#uses=1]
20 …%mrv_gep1 = getelementptr %"struct.clang::ActionBase::ActionResult<0u>", %"struct.clang::ActionBas…
[all …]

12345678910>>...43