Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / compiler-rt / lib / xray / xray_fdr_flags.h
blobd6f00dc48006bf5bb6d23e3dd85e5a5ec970aeec
1 //===-- xray_fdr_flags.h ---------------------------------------*- 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 // This file is a part of XRay, a dynamic runtime instrumentation system.
11 // This file defines the flags for the flight-data-recorder mode implementation.
13 //===----------------------------------------------------------------------===//
14 #ifndef XRAY_FDR_FLAGS_H
15 #define XRAY_FDR_FLAGS_H
17 #include "sanitizer_common/sanitizer_flag_parser.h"
18 #include "sanitizer_common/sanitizer_internal_defs.h"
20 namespace __xray {
22 struct FDRFlags {
23 #define XRAY_FLAG(Type, Name, DefaultValue, Description) Type Name;
24 #include "xray_fdr_flags.inc"
25 #undef XRAY_FLAG
27 void setDefaults();
30 extern FDRFlags xray_fdr_flags_dont_use_directly;
31 extern void registerXRayFDRFlags(FlagParser *P, FDRFlags *F);
32 const char *useCompilerDefinedFDRFlags();
33 inline FDRFlags *fdrFlags() { return &xray_fdr_flags_dont_use_directly; }
35 } // namespace __xray
37 #endif // XRAY_FDR_FLAGS_H