Home
last modified time | relevance | path

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

/external/llvm-project/compiler-rt/lib/memprof/
Dmemprof_flags.inc12 #ifndef MEMPROF_FLAG
13 #error "Define MEMPROF_FLAG prior to including this file!"
16 // MEMPROF_FLAG(Type, Name, DefaultValue, Description)
19 MEMPROF_FLAG(bool, unmap_shadow_on_exit, false,
21 MEMPROF_FLAG(bool, protect_shadow_gap, true, "If set, mprotect the shadow gap")
22 MEMPROF_FLAG(bool, print_legend, true, "Print the legend for the shadow bytes.")
23 MEMPROF_FLAG(bool, atexit, false,
26 MEMPROF_FLAG(
31 MEMPROF_FLAG(bool, halt_on_error, true,
34 MEMPROF_FLAG(bool, allocator_frees_and_returns_null_on_realloc_zero, true,
[all …]
Dmemprof_flags.cpp34 #define MEMPROF_FLAG(Type, Name, DefaultValue, Description) Name = DefaultValue; in SetDefaults() macro
36 #undef MEMPROF_FLAG in SetDefaults()
40 #define MEMPROF_FLAG(Type, Name, DefaultValue, Description) \ in RegisterMemprofFlags() macro
43 #undef MEMPROF_FLAG in RegisterMemprofFlags()
Dmemprof_flags.h31 #define MEMPROF_FLAG(Type, Name, DefaultValue, Description) Type Name; macro
33 #undef MEMPROF_FLAG