Home
last modified time | relevance | path

Searched refs:MemorySanitizer (Results 1 – 25 of 89) sorted by relevance

1234

/external/clang/docs/
DMemorySanitizer.rst2 MemorySanitizer title
11 MemorySanitizer is a detector of uninitialized reads. It consists of a
14 Typical slowdown introduced by MemorySanitizer is **3x**.
25 The MemorySanitizer run-time library should be linked to the final
27 link step. When linking shared libraries, the MemorySanitizer run-time
29 with MemorySanitizer). To get a reasonable performance add ``-O1`` or
56 WARNING: MemorySanitizer: use-of-uninitialized-value
60 By default, MemorySanitizer exits on the first detected error. If you
68 whether MemorySanitizer is enabled. :ref:`\_\_has\_feature
75 // code that builds only under MemorySanitizer
[all …]
Dindex.rst26 MemorySanitizer
/external/llvm-project/clang/docs/
DMemorySanitizer.rst2 MemorySanitizer title
11 MemorySanitizer is a detector of uninitialized reads. It consists of a
14 Typical slowdown introduced by MemorySanitizer is **3x**.
25 The MemorySanitizer run-time library should be linked to the final
27 link step. When linking shared libraries, the MemorySanitizer run-time
29 with MemorySanitizer). To get a reasonable performance add ``-O1`` or
56 WARNING: MemorySanitizer: use-of-uninitialized-value
60 By default, MemorySanitizer exits on the first detected error. If you
68 whether MemorySanitizer is enabled. :ref:`\_\_has\_feature
75 // code that builds only under MemorySanitizer
[all …]
Dindex.rst30 MemorySanitizer
/external/compiler-rt/lib/msan/tests/
Dmsan_test.cc226 TEST(MemorySanitizer, NegativeTest1) { in TEST() argument
233 TEST(MemorySanitizer, PositiveTest1) { in TEST() argument
275 TEST(MemorySanitizer, Phi1) { in TEST() argument
286 TEST(MemorySanitizer, Phi2) { in TEST() argument
297 TEST(MemorySanitizer, ArgTest) { in TEST() argument
304 TEST(MemorySanitizer, CallAndRet) { in TEST() argument
318 TEST(MemorySanitizer, DISABLED_MallocNoIdent) { in TEST() argument
324 TEST(MemorySanitizer, Malloc) { in TEST() argument
330 TEST(MemorySanitizer, Realloc) { in TEST() argument
351 TEST(MemorySanitizer, Calloc) { in TEST() argument
[all …]
/external/llvm-project/compiler-rt/lib/msan/tests/
Dmsan_test.cpp241 TEST(MemorySanitizer, NegativeTest1) { in TEST() argument
248 TEST(MemorySanitizer, PositiveTest1) { in TEST() argument
290 TEST(MemorySanitizer, Phi1) { in TEST() argument
301 TEST(MemorySanitizer, Phi2) { in TEST() argument
312 TEST(MemorySanitizer, ArgTest) { in TEST() argument
319 TEST(MemorySanitizer, CallAndRet) { in TEST() argument
333 TEST(MemorySanitizer, DISABLED_MallocNoIdent) { in TEST() argument
339 TEST(MemorySanitizer, Malloc) { in TEST() argument
345 TEST(MemorySanitizer, Realloc) { in TEST() argument
366 TEST(MemorySanitizer, Calloc) { in TEST() argument
[all …]
/external/compiler-rt/test/msan/
Dlit.cfg6 config.name = 'MemorySanitizer' + getattr(config, 'name_suffix', 'default')
32 # MemorySanitizer tests are currently supported on Linux only.
/external/llvm-project/compiler-rt/test/fuzzer/
Dmsan.test14 NO-REPORT-NOT: MemorySanitizer
24 REPORT: MemorySanitizer: use-of-uninitialized-value
Dmsan-param-unpoison.test5 CHECK-NOT: MemorySanitizer: use-of-uninitialized-value
Dsigint.test15 CHECK-NOT: WARNING: MemorySanitizer
/external/llvm/lib/Transforms/Instrumentation/
DCMakeLists.txt6 MemorySanitizer.cpp
DMemorySanitizer.cpp313 class MemorySanitizer : public FunctionPass { class
315 MemorySanitizer(int TrackOrigins = 0) in MemorySanitizer() function in __anone9e6778c0111::MemorySanitizer
389 char MemorySanitizer::ID = 0;
391 MemorySanitizer, "msan",
395 MemorySanitizer, "msan", in INITIALIZE_PASS_DEPENDENCY()
399 return new MemorySanitizer(TrackOrigins); in INITIALIZE_PASS_DEPENDENCY()
415 void MemorySanitizer::initializeCallbacks(Module &M) { in initializeCallbacks()
499 bool MemorySanitizer::doInitialization(Module &M) { in doInitialization()
608 CreateVarArgHelper(Function &Func, MemorySanitizer &Msan,
624 MemorySanitizer &MS;
[all …]
/external/compiler-rt/lib/msan/
Dmsan_blacklist.txt1 # Blacklist for MemorySanitizer. Turns off instrumentation of particular
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/
DCMakeLists.txt8 MemorySanitizer.cpp
DMemorySanitizer.cpp465 class MemorySanitizer { class
467 MemorySanitizer(Module &M, MemorySanitizerOptions Options) in MemorySanitizer() function in __anon1b6b5cee0211::MemorySanitizer
474 MemorySanitizer(MemorySanitizer &&) = delete;
475 MemorySanitizer &operator=(MemorySanitizer &&) = delete;
476 MemorySanitizer(const MemorySanitizer &) = delete;
477 MemorySanitizer &operator=(const MemorySanitizer &) = delete;
633 Optional<MemorySanitizer> MSan;
650 MemorySanitizer Msan(*F.getParent(), Options); in run()
692 void MemorySanitizer::createKernelApi(Module &M) { in createKernelApi()
759 void MemorySanitizer::createUserspaceApi(Module &M) { in createUserspaceApi()
[all …]
/external/llvm-project/compiler-rt/lib/msan/
Dmsan_blacklist.txt1 # Blacklist for MemorySanitizer. Turns off instrumentation of particular
/external/llvm-project/llvm/lib/Transforms/Instrumentation/
DCMakeLists.txt9 MemorySanitizer.cpp
DMemorySanitizer.cpp486 class MemorySanitizer { class
488 MemorySanitizer(Module &M, MemorySanitizerOptions Options) in MemorySanitizer() function in __anon24d2787a0211::MemorySanitizer
495 MemorySanitizer(MemorySanitizer &&) = delete;
496 MemorySanitizer &operator=(MemorySanitizer &&) = delete;
497 MemorySanitizer(const MemorySanitizer &) = delete;
498 MemorySanitizer &operator=(const MemorySanitizer &) = delete;
653 Optional<MemorySanitizer> MSan;
670 MemorySanitizer Msan(*F.getParent(), Options); in run()
712 void MemorySanitizer::createKernelApi(Module &M) { in createKernelApi()
776 void MemorySanitizer::createUserspaceApi(Module &M) { in createUserspaceApi()
[all …]
/external/oss-fuzz/infra/cifuzz/test_data/
Dmsan_crash_fuzzer_output.txt8 ==13==WARNING: MemorySanitizer: use-of-uninitialized-value
29 SUMMARY: MemorySanitizer: use-of-uninitialized-value /src/cifuzz-example/do_stuff_fuzzer.cpp:13:7 i…
/external/llvm-project/llvm/utils/gn/secondary/llvm/lib/Transforms/Instrumentation/
DBUILD.gn24 "MemorySanitizer.cpp",
/external/llvm-project/compiler-rt/test/msan/Unit/
Dlit.site.cfg.py.in7 config.name = 'MemorySanitizer-Unit'
/external/compiler-rt/test/msan/Unit/
Dlit.site.cfg.in7 config.name = 'MemorySanitizer-Unit'
/external/webrtc/rtc_tools/
Dsanitizers_unittest.cc36 TEST(SanitizersDeathTest, MemorySanitizer) { in TEST() argument
/external/llvm/test/Instrumentation/MemorySanitizer/
Dunreachable.ll6 ; Test that MemorySanitizer correctly handles unreachable blocks.
/external/llvm-project/llvm/test/Instrumentation/MemorySanitizer/
Dunreachable.ll7 ; Test that MemorySanitizer correctly handles unreachable blocks.

1234