2015-03-27 01:26:04 +08:00
|
|
|
//===-- ubsan_platform.h ----------------------------------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// Defines the platforms which UBSan is supported at.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef UBSAN_PLATFORM_H
|
|
|
|
#define UBSAN_PLATFORM_H
|
|
|
|
|
|
|
|
// Other platforms should be easy to add, and probably work as-is.
|
2017-08-09 04:49:20 +08:00
|
|
|
#if (defined(__linux__) || defined(__FreeBSD__) || defined(__APPLE__) || \
|
|
|
|
defined(__NetBSD__)) && \
|
|
|
|
(defined(__x86_64__) || defined(__i386__) || defined(__arm__) || \
|
|
|
|
defined(__aarch64__) || defined(__mips__) || defined(__powerpc64__) || \
|
2016-04-16 06:25:04 +08:00
|
|
|
defined(__s390__))
|
2015-03-27 01:26:04 +08:00
|
|
|
# define CAN_SANITIZE_UB 1
|
2017-08-02 04:48:36 +08:00
|
|
|
#elif defined(_WIN32) || defined(__Fuchsia__)
|
2015-07-02 09:44:34 +08:00
|
|
|
# define CAN_SANITIZE_UB 1
|
2015-03-27 01:26:04 +08:00
|
|
|
#else
|
|
|
|
# define CAN_SANITIZE_UB 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|