msan_flags.inc 1.4 KB

12345678910111213141516171819202122232425262728293031323334
  1. //===-- msan_flags.inc ------------------------------------------*- C++ -*-===//
  2. //
  3. // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
  4. // See https://llvm.org/LICENSE.txt for license information.
  5. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  6. //
  7. //===----------------------------------------------------------------------===//
  8. //
  9. // MSan runtime flags.
  10. //
  11. //===----------------------------------------------------------------------===//
  12. #ifndef MSAN_FLAG
  13. # error "Define MSAN_FLAG prior to including this file!"
  14. #endif
  15. // MSAN_FLAG(Type, Name, DefaultValue, Description)
  16. // See COMMON_FLAG in sanitizer_flags.inc for more details.
  17. MSAN_FLAG(int, exit_code, -1,
  18. "DEPRECATED. Use exitcode from common flags instead.")
  19. MSAN_FLAG(int, origin_history_size, Origin::kMaxDepth, "")
  20. MSAN_FLAG(int, origin_history_per_stack_limit, 20000, "")
  21. MSAN_FLAG(bool, poison_heap_with_zeroes, false, "")
  22. MSAN_FLAG(bool, poison_stack_with_zeroes, false, "")
  23. MSAN_FLAG(bool, poison_in_malloc, true, "")
  24. MSAN_FLAG(bool, poison_in_free, true, "")
  25. MSAN_FLAG(bool, poison_in_dtor, false, "")
  26. MSAN_FLAG(bool, report_umrs, true, "")
  27. MSAN_FLAG(bool, wrap_signals, true, "")
  28. MSAN_FLAG(bool, print_stats, false, "")
  29. MSAN_FLAG(bool, halt_on_error, !&__msan_keep_going, "")
  30. MSAN_FLAG(bool, atexit, false, "")
  31. MSAN_FLAG(int, store_context_size, 20,
  32. "Like malloc_context_size, but for uninit stores.")