2015-08-28 15:33:40 +00:00
|
|
|
//===-- ubsan_flags.h -------------------------------------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// Runtime flags for UndefinedBehaviorSanitizer.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef UBSAN_FLAGS_H
|
|
|
|
#define UBSAN_FLAGS_H
|
|
|
|
|
|
|
|
#include "sanitizer_common/sanitizer_internal_defs.h"
|
|
|
|
|
2017-04-10 11:32:00 +00:00
|
|
|
namespace __sanitizer {
|
|
|
|
class FlagParser;
|
|
|
|
}
|
|
|
|
|
2015-08-28 15:33:40 +00:00
|
|
|
namespace __ubsan {
|
|
|
|
|
|
|
|
struct Flags {
|
2017-04-10 11:32:00 +00:00
|
|
|
#define UBSAN_FLAG(Type, Name, DefaultValue, Description) Type Name;
|
|
|
|
#include "ubsan_flags.inc"
|
|
|
|
#undef UBSAN_FLAG
|
|
|
|
|
|
|
|
void SetDefaults();
|
2015-08-28 15:33:40 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
extern Flags ubsan_flags;
|
|
|
|
inline Flags *flags() { return &ubsan_flags; }
|
|
|
|
|
|
|
|
void InitializeFlags();
|
2017-04-10 11:32:00 +00:00
|
|
|
void RegisterUbsanFlags(FlagParser *parser, Flags *f);
|
|
|
|
|
|
|
|
const char *MaybeCallUbsanDefaultOptions();
|
2015-08-28 15:33:40 +00:00
|
|
|
|
|
|
|
} // namespace __ubsan
|
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
// Users may provide their own implementation of __ubsan_default_options to
|
|
|
|
// override the default flag values.
|
|
|
|
SANITIZER_INTERFACE_ATTRIBUTE SANITIZER_WEAK_ATTRIBUTE
|
|
|
|
const char *__ubsan_default_options();
|
|
|
|
} // extern "C"
|
|
|
|
|
|
|
|
#endif // UBSAN_FLAGS_H
|