xref: /netbsd-src/sys/external/bsd/compiler_rt/dist/lib/xray/xray_fdr_flags.h (revision a7c257b03e4462df2b1020128fb82716512d7856)
1 //===-- xray_fdr_flags.h ---------------------------------------*- 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 // This file is a part of XRay, a dynamic runtime instrumentation system.
11 //
12 // This file defines the flags for the flight-data-recorder mode implementation.
13 //
14 //===----------------------------------------------------------------------===//
15 #ifndef XRAY_FDR_FLAGS_H
16 #define XRAY_FDR_FLAGS_H
17 
18 #include "sanitizer_common/sanitizer_flag_parser.h"
19 #include "sanitizer_common/sanitizer_internal_defs.h"
20 
21 namespace __xray {
22 
23 struct FDRFlags {
24 #define XRAY_FLAG(Type, Name, DefaultValue, Description) Type Name;
25 #include "xray_fdr_flags.inc"
26 #undef XRAY_FLAG
27 
28   void setDefaults();
29 };
30 
31 extern FDRFlags xray_fdr_flags_dont_use_directly;
32 extern void registerXRayFDRFlags(FlagParser *P, FDRFlags *F);
33 const char *useCompilerDefinedFDRFlags();
fdrFlags()34 inline FDRFlags *fdrFlags() { return &xray_fdr_flags_dont_use_directly; }
35 
36 } // namespace __xray
37 
38 #endif // XRAY_FDR_FLAGS_H
39