Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/compiler-rt/lib/nsan/
H A Dnsan_flags.inc12 #ifndef NSAN_FLAG
13 #error "Define NSAN_FLAG prior to including this file!"
16 // NSAN_FLAG(Type, Name, DefaultValue, Description)
19 NSAN_FLAG(bool, halt_on_error, true, "If true, halt after the first error.")
20 NSAN_FLAG(bool, resume_after_warning, true,
24 NSAN_FLAG(const char *, suppressions, "", "Suppressions file name.")
25 NSAN_FLAG(bool, resume_after_suppression, true,
30 NSAN_FLAG(int, log2_max_relative_error, 19,
33 NSAN_FLAG(int, log2_absolute_error_threshold, 32,
36 NSAN_FLAG(bool, disable_warnings, false,
[all …]
H A Dnsan_flags.cpp28 #define NSAN_FLAG(Type, Name, DefaultValue, Description) Name = DefaultValue; in SetDefaults() macro
30 #undef NSAN_FLAG in SetDefaults()
39 #define NSAN_FLAG(Type, Name, DefaultValue, Description) \ in RegisterNSanFlags() macro
42 #undef NSAN_FLAG in RegisterNSanFlags()
H A Dnsan_flags.h18 #define NSAN_FLAG(Type, Name, DefaultValue, Description) Type Name; macro
20 #undef NSAN_FLAG