summaryrefslogtreecommitdiff
path: root/lib/sanitizer_common/sancov_flags.h
diff options
context:
space:
mode:
authorMike Aizatsky <aizatsky@chromium.org>2017-01-06 19:22:50 +0000
committerMike Aizatsky <aizatsky@chromium.org>2017-01-06 19:22:50 +0000
commitd615dc8ac1e6e04b593eb7409b6ff609bc529761 (patch)
treebae5749e2e009e854b275e533f855e513b24aab8 /lib/sanitizer_common/sancov_flags.h
parent9fcfdd059136f30b3b6bcf88c6b67f94ce05696c (diff)
[sancov] introducing SANCOV_OPTIONS
Reintroducing https://reviews.llvm.org/rL291068 Define options function everywhere but linux. git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@291267 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/sanitizer_common/sancov_flags.h')
-rw-r--r--lib/sanitizer_common/sancov_flags.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/lib/sanitizer_common/sancov_flags.h b/lib/sanitizer_common/sancov_flags.h
new file mode 100644
index 000000000..5fbd7ad06
--- /dev/null
+++ b/lib/sanitizer_common/sancov_flags.h
@@ -0,0 +1,40 @@
+//===-- sancov_flags.h ------------------------------------------*- C++ -*-===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+//
+// Sanitizer Coverage runtime flags.
+//
+//===----------------------------------------------------------------------===//
+#ifndef SANCOV_FLAGS_H
+#define SANCOV_FLAGS_H
+
+#include "sanitizer_flag_parser.h"
+#include "sanitizer_internal_defs.h"
+
+namespace __sancov {
+
+struct SancovFlags {
+#define SANCOV_FLAG(Type, Name, DefaultValue, Description) Type Name;
+#include "sancov_flags.inc"
+#undef SANCOV_FLAG
+
+ void SetDefaults();
+};
+
+extern SancovFlags sancov_flags_dont_use_directly;
+
+inline SancovFlags* sancov_flags() { return &sancov_flags_dont_use_directly; }
+
+void InitializeSancovFlags();
+
+extern "C" SANITIZER_INTERFACE_ATTRIBUTE SANITIZER_WEAK_ATTRIBUTE const char*
+__sancov_default_options();
+
+} // namespace __sancov
+
+#endif