Searched refs:MSAN_FLAG (Results 1 – 3 of 3) sorted by relevance
/freebsd/contrib/llvm-project/compiler-rt/lib/msan/ |
H A D | msan_flags.inc | 12 #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 …]
|
H A D | msan_flags.h | 18 #define MSAN_FLAG(Type, Name, DefaultValue, Description) Type Name; macro 20 #undef MSAN_FLAG
|
H A D | msan.cpp | 118 #define MSAN_FLAG(Type, Name, DefaultValue, Description) Name = DefaultValue; in SetDefaults() macro 120 #undef MSAN_FLAG in SetDefaults() 145 #define MSAN_FLAG(Type, Name, DefaultValue, Description) \ in RegisterMsanFlags() macro 148 #undef MSAN_FLAG in RegisterMsanFlags()
|