| //===-- xray_flags.h -------------------------------------------*- C++ -*-===// |
| // The LLVM Compiler Infrastructure |
| // This file is distributed under the University of Illinois Open Source |
| // License. See LICENSE.TXT for details. |
| //===----------------------------------------------------------------------===// |
| // This file is a part of XRay, a dynamic runtime instruementation system. |
| //===----------------------------------------------------------------------===// |
| #include "sanitizer_common/sanitizer_flag_parser.h" |
| #include "sanitizer_common/sanitizer_internal_defs.h" |
| #define XRAY_FLAG(Type, Name, DefaultValue, Description) Type Name; |
| #include "xray_flags.inc" |
| extern Flags xray_flags_dont_use_directly; |
| extern void registerXRayFlags(FlagParser *P, Flags *F); |
| const char *useCompilerDefinedFlags(); |
| inline Flags *flags() { return &xray_flags_dont_use_directly; } |