• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
20LSAN_FLAG(bool, report_objects, false,
21          "Print addresses of leaked objects after main leak report.")
22LSAN_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.")
26LSAN_FLAG(int, max_leaks, 0, "The number of leaks reported.")
27LSAN_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.
31LSAN_FLAG(bool, use_globals, true,
32          "Root set: include global variables (.data and .bss)")
33LSAN_FLAG(bool, use_stacks, true, "Root set: include thread stacks")
34LSAN_FLAG(bool, use_registers, true, "Root set: include thread registers")
35LSAN_FLAG(bool, use_tls, true,
36          "Root set: include TLS and thread-specific storage")
37LSAN_FLAG(bool, use_root_regions, true,
38          "Root set: include regions added via __lsan_register_root_region().")
39
40LSAN_FLAG(bool, use_unaligned, false, "Consider unaligned pointers valid.")
41LSAN_FLAG(bool, use_poisoned, false,
42          "Consider pointers found in poisoned memory to be valid.")
43LSAN_FLAG(bool, log_pointers, false, "Debug logging")
44LSAN_FLAG(bool, log_threads, false, "Debug logging")
45LSAN_FLAG(const char *, suppressions, "", "Suppressions file name.")
46