Home
last modified time | relevance | path

Searched refs:MSAN_FLAG (Results 1 – 3 of 3) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/msan/
Dmsan_flags.inc12 #ifndef MSAN_FLAG
13 # error "Define MSAN_FLAG prior to including this file!"
16 // MSAN_FLAG(Type, Name, DefaultValue, Description)
19 MSAN_FLAG(int, exit_code, -1,
21 MSAN_FLAG(int, origin_history_size, Origin::kMaxDepth, "")
22 MSAN_FLAG(int, origin_history_per_stack_limit, 20000, "")
23 MSAN_FLAG(bool, poison_heap_with_zeroes, false, "")
24 MSAN_FLAG(bool, poison_stack_with_zeroes, false, "")
25 MSAN_FLAG(bool, poison_in_malloc, true, "")
26 MSAN_FLAG(bool, poison_in_free, true, "")
[all …]
Dmsan_flags.h18 #define MSAN_FLAG(Type, Name, DefaultValue, Description) Type Name; macro
20 #undef MSAN_FLAG
Dmsan.cpp105 #define MSAN_FLAG(Type, Name, DefaultValue, Description) Name = DefaultValue; in SetDefaults() macro
107 #undef MSAN_FLAG in SetDefaults()
132 #define MSAN_FLAG(Type, Name, DefaultValue, Description) \ in RegisterMsanFlags() macro
135 #undef MSAN_FLAG in RegisterMsanFlags()