Home
last modified time | relevance | path

Searched full:msan (Results 1 – 25 of 141) sorted by relevance

123456

/third_party/skia/site/docs/dev/testing/
Dxsan.md3 title: "MSAN, ASAN, & TSAN"
4 linkTitle: "MSAN, ASAN, & TSAN"
16 - MSAN works on Linux[1].
23 [1]To compile and run with MSAN, an MSAN-instrumented version of libc++ is needed.
25 of Clang and the instrumented libc++, located in /msan.
46 Configure and Compile Skia with MSAN
52 mkdir -p out/msan
53 cat > out/msan/args.gn <<- EOF
60 "-L${CLANGDIR}/msan",
61 "-Wl,-rpath,${CLANGDIR}/msan" ]
[all …]
/third_party/flutter/skia/site/dev/testing/
Dxsan.md1 MSAN, ASAN, & TSAN
11 - MSAN works on Linux[1].
18 [1]To compile and run with MSAN, an MSAN-instrumented version of libc++ is needed.
20 of Clang and the instrumented libc++, located in /msan.
41 Configure and Compile Skia with MSAN
47 mkdir -p out/msan
48 cat > out/msan/args.gn <<- EOF
55 "-L${CLANGDIR}/msan",
56 "-Wl,-rpath,${CLANGDIR}/msan" ]
57 sanitize = "MSAN"
[all …]
/third_party/grpc/tools/
Dbazel.rc48 build:msan --strip=never
49 build:msan --copt=-fsanitize=memory
50 build:msan --copt=-O0
51 build:msan --copt=-fsanitize-memory-track-origins
52 build:msan --copt=-fsanitize-memory-use-after-dtor
53 build:msan --copt=-fno-omit-frame-pointer
54 build:msan --copt=-DGPR_NO_DIRECT_SYSCALLS
55 build:msan --copt=-DMEMORY_SANITIZER # used by absl
56 build:msan --linkopt=-fsanitize=memory
57 build:msan --action_env=MSAN_OPTIONS=poison_in_dtor=1
/third_party/grpc/tools/remote_build/
Drbe_common.bazelrc62 build:msan --copt=-gmlt
64 build:msan --test_timeout=60,900,1800,3600
66 build:msan --test_tag_filters=-no_linux,-nomsan,-json_run_localhost
67 build:msan --cxxopt=--stdlib=libc++
70 build:msan --action_env=LD_LIBRARY_PATH=/usr/local/lib
71 build:msan --host_crosstool_top=@rbe_default//cc:toolchain
73 build:msan --crosstool_top=@rbe_msan//cc:toolchain
/third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/
DBuild-Debian10-Clang-x86_64-Debug-MSAN.json54 "[START_DIR]/cache/work/skia/out/Build-Debian10-Clang-x86_64-Debug-MSAN/Debug",
55 …clang_linux/bin\", \"-fuse-ld=lld\", \"-L[START_DIR]/clang_linux/msan\"] sanitize=\"MSAN\" skia_us…
72 "[START_DIR]/cache/work/skia/out/Build-Debian10-Clang-x86_64-Debug-MSAN/Debug"
106 "[START_DIR]/cache/work/skia/out/Build-Debian10-Clang-x86_64-Debug-MSAN/Debug",
DBuild-Debian10-Clang-x86_64-Debug-SwiftShader_MSAN.json42 …libc++ -L[START_DIR]/clang_linux/msan/lib -lc++abi -I[START_DIR]/clang_linux/msan/include -I[START…
43 …libc++ -L[START_DIR]/clang_linux/msan/lib -lc++abi -I[START_DIR]/clang_linux/msan/include -I[START…
142 …ng_linux/msan\", \"-L[START_DIR]/cache/work/skia/out/Build-Debian10-Clang-x86_64-Debug-SwiftShader…
/third_party/benchmark/.github/workflows/
Dsanitizer.yml20 # TODO: add 'msan' above. currently failing and needs investigation.
24 - name: configure msan env
25 if: matrix.sanitizer == 'msan'
/third_party/skia/infra/bots/recipe_modules/build/
Ddefault.py40 # We arrange our MSAN/TSAN prebuilts a little differently than
47 # Extra flags for MSAN/TSAN, if necessary.
49 if 'MSAN' in extra_tokens:
50 san = ('msan','memory')
221 if 'MSAN' in extra_tokens:
222 extra_ldflags.append('-L' + clang_linux + '/msan')
262 if 'MSAN' in extra_tokens:
/third_party/skia/third_party/externals/zlib/patches/
D0007-zero-init-deflate-window.patch6 Otherwise MSan complains about use-of-uninitialized values in the
12 potential issues with MSan in these functions.
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/
DMemorySanitizer.cpp26 /// as well: msan needs to see all program events, including system
28 /// compile *everything* with msan or use a binary translation
48 /// values. This behavior is controlled with a flag (msan-track-origins) and is
111 /// The major differences between KMSAN and MSan instrumentation are:
112 /// - KMSAN always tracks the origins and implies msan-keep-going=true;
204 #define DEBUG_TYPE "msan"
210 // These constants must be kept in sync with the ones in msan.h.
221 static cl::opt<int> ClTrackOrigins("msan-track-origins",
225 static cl::opt<bool> ClKeepGoing("msan-keep-going",
229 static cl::opt<bool> ClPoisonStack("msan-poison-stack",
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/Instrumentation/
DMemorySanitizer.h1 //===- Transforms/Instrumentation/MemorySanitizer.h - MSan Pass -----------===//
33 /// A function pass for msan instrumentation.
/third_party/glib/fuzzing/
DREADME.md39 ###### What about Memory Sanitizer (MSAN)?
41 Correct MSAN instrumentation is [difficult to achieve](https://clang.llvm.org/docs/MemorySanitizer.…
/third_party/skia/infra/bots/assets/clang_linux/
Dcreate.py49 # Finally, build libc++ for TSAN and MSAN bots using the Clang we just built.
50 for (short,full) in [('tsan','Thread'), ('msan','MemoryWithOrigins')]:
/third_party/flutter/skia/infra/bots/assets/clang_linux/
Dcreate.py62 # Finally, build libc++ for MSAN bots using the Clang we just built.
71 subprocess.check_call(["cp", "-r", "lib", target_dir + "/msan"])
/third_party/flutter/skia/infra/bots/recipes/test.expected/
DTest-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-MSAN.json159 "Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-MSAN",
182 "MSAN",
536 "LD_LIBRARY_PATH": "[START_DIR]/clang_linux/msan:[START_DIR]/clang_linux/lib",
/third_party/skia/third_party/externals/harfbuzz/.circleci/
Dconfig.yml113 msan:
121 …# msan, needs --force-fallback-for=glib,freetype2 also which doesn't work yet but runs fuzzer case…
204 - msan
/third_party/skia/infra/bots/recipe_modules/flavor/
Ddefault.py159 # Find the MSAN/TSAN-built libc++.
160 if 'MSAN' in extra_tokens:
161 ld_library_path.append(clang_linux + '/msan')
/third_party/grpc/tools/internal_ci/linux/pull_request/
Dgrpc_msan_on_foundry.sh18 github/grpc/tools/internal_ci/linux/grpc_bazel_on_foundry_base.sh --config=msan
/third_party/grpc/tools/internal_ci/linux/
Dgrpc_msan_on_foundry.sh19 github/grpc/tools/internal_ci/linux/grpc_bazel_on_foundry_base.sh --config=msan --cache_test_result…
/third_party/grpc/tools/internal_ci/linux/sanitizer/
Dgrpc_c_msan.cfg29 value: "-f c msan --inner_jobs 16 -j 1 --internal_ci --bq_result_table aggregate_results"
/third_party/flutter/skia/infra/bots/recipe_modules/flavor/
Ddefault.py215 if 'MSAN' in extra_tokens:
216 # Find the MSAN-built libc++.
217 ld_library_path.append(clang_linux + '/msan')
/third_party/skia/infra/bots/
Dcfg.json14 "MSAN",
/third_party/grpc/tools/internal_ci/linux/sanitizer/pull_request/
Dgrpc_c_msan.cfg30 value: "-f c msan --inner_jobs 16 -j 1 --internal_ci --max_time=3600"
/third_party/flutter/skia/infra/bots/
Dcfg.json13 "MSAN",
/third_party/skia/third_party/externals/swiftshader/src/Reactor/
Dreactor.gni26 # except for MSan builds which only get Reactor code instrumented with LLVM.

123456