1 //===-- sancov_flags.cpp ----------------------------------------*- C++ -*-===//
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
7 //===----------------------------------------------------------------------===//
9 // Sanitizer Coverage runtime flags.
11 //===----------------------------------------------------------------------===//
13 #include "sancov_flags.h"
14 #include "sanitizer_flag_parser.h"
15 #include "sanitizer_platform.h"
17 SANITIZER_INTERFACE_WEAK_DEF(const char*, __sancov_default_options
, void) {
21 using namespace __sanitizer
;
25 SancovFlags sancov_flags_dont_use_directly
; // use via flags();
27 void SancovFlags::SetDefaults() {
28 #define SANCOV_FLAG(Type, Name, DefaultValue, Description) Name = DefaultValue;
29 #include "sancov_flags.inc"
33 static void RegisterSancovFlags(FlagParser
*parser
, SancovFlags
*f
) {
34 #define SANCOV_FLAG(Type, Name, DefaultValue, Description) \
35 RegisterFlag(parser, #Name, Description, &f->Name);
36 #include "sancov_flags.inc"
40 void InitializeSancovFlags() {
41 SancovFlags
*f
= sancov_flags();
45 RegisterSancovFlags(&parser
, f
);
47 parser
.ParseString(__sancov_default_options());
48 parser
.ParseStringFromEnv("SANCOV_OPTIONS");
50 ReportUnrecognizedFlags();
51 if (f
->help
) parser
.PrintFlagDescriptions();
54 } // namespace __sancov