]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/compiler-rt/lib/lsan/lsan_flags.inc
Update compiler-rt to trunk r228651. This enables using Address
[FreeBSD/FreeBSD.git] / contrib / compiler-rt / lib / lsan / lsan_flags.inc
1 //===-- lsan_flags.inc ------------------------------------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // LSan runtime flags.
11 //
12 //===----------------------------------------------------------------------===//
13 #ifndef LSAN_FLAG
14 # error "Define LSAN_FLAG prior to including this file!"
15 #endif
16
17 // LSAN_FLAG(Type, Name, DefaultValue, Description)
18 // See COMMON_FLAG in sanitizer_flags.inc for more details.
19
20 LSAN_FLAG(bool, report_objects, false,
21           "Print addresses of leaked objects after main leak report.")
22 LSAN_FLAG(
23     int, resolution, 0,
24     "Aggregate two objects into one leak if this many stack frames match. If "
25     "zero, the entire stack trace must match.")
26 LSAN_FLAG(int, max_leaks, 0, "The number of leaks reported.")
27 LSAN_FLAG(int, exitcode, 23,
28           "If nonzero kill the process with this exit code upon finding leaks.")
29
30 // Flags controlling the root set of reachable memory.
31 LSAN_FLAG(bool, use_globals, true,
32           "Root set: include global variables (.data and .bss)")
33 LSAN_FLAG(bool, use_stacks, true, "Root set: include thread stacks")
34 LSAN_FLAG(bool, use_registers, true, "Root set: include thread registers")
35 LSAN_FLAG(bool, use_tls, true,
36           "Root set: include TLS and thread-specific storage")
37 LSAN_FLAG(bool, use_root_regions, true,
38           "Root set: include regions added via __lsan_register_root_region().")
39
40 LSAN_FLAG(bool, use_unaligned, false, "Consider unaligned pointers valid.")
41 LSAN_FLAG(bool, use_poisoned, false,
42           "Consider pointers found in poisoned memory to be valid.")
43 LSAN_FLAG(bool, log_pointers, false, "Debug logging")
44 LSAN_FLAG(bool, log_threads, false, "Debug logging")