2012-06-05 22:25:27 +08:00
|
|
|
//===-- sanitizer_internal_defs.h -------------------------------*- C++ -*-===//
|
2012-05-31 22:11:07 +08:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file is shared between AddressSanitizer and ThreadSanitizer.
|
2012-06-05 21:50:57 +08:00
|
|
|
// It contains macro used in run-time libraries code.
|
2012-05-31 22:11:07 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef SANITIZER_DEFS_H
|
|
|
|
#define SANITIZER_DEFS_H
|
|
|
|
|
2012-06-05 21:50:57 +08:00
|
|
|
#include "sanitizer_interface_defs.h"
|
|
|
|
using namespace __sanitizer; // NOLINT
|
2012-05-31 22:11:07 +08:00
|
|
|
// ----------- ATTENTION -------------
|
|
|
|
// This header should NOT include any other headers to avoid portability issues.
|
|
|
|
|
2012-06-05 21:50:57 +08:00
|
|
|
// Common defs.
|
|
|
|
#define INLINE static inline
|
|
|
|
#define INTERFACE_ATTRIBUTE SANITIZER_INTERFACE_ATTRIBUTE
|
|
|
|
#define WEAK SANITIZER_WEAK_ATTRIBUTE
|
|
|
|
|
|
|
|
// Platform-specific defs.
|
2012-05-31 22:11:07 +08:00
|
|
|
#if defined(_WIN32)
|
2012-06-05 21:50:57 +08:00
|
|
|
typedef unsigned long DWORD; // NOLINT
|
|
|
|
// FIXME(timurrrr): do we need this on Windows?
|
|
|
|
# define ALIAS(x)
|
|
|
|
# define ALIGNED(x) __declspec(align(x))
|
2012-06-06 21:37:02 +08:00
|
|
|
# define FORMAT(f, a)
|
2012-06-05 21:50:57 +08:00
|
|
|
# define NOINLINE __declspec(noinline)
|
|
|
|
# define NORETURN __declspec(noreturn)
|
|
|
|
# define THREADLOCAL __declspec(thread)
|
|
|
|
#else // _WIN32
|
|
|
|
# define ALIAS(x) __attribute__((alias(x)))
|
|
|
|
# define ALIGNED(x) __attribute__((aligned(x)))
|
2012-06-06 21:37:02 +08:00
|
|
|
# define FORMAT(f, a) __attribute__((format(printf, f, a)))
|
2012-06-05 21:50:57 +08:00
|
|
|
# define NOINLINE __attribute__((noinline))
|
|
|
|
# define NORETURN __attribute__((noreturn))
|
|
|
|
# define THREADLOCAL __thread
|
|
|
|
#endif // _WIN32
|
|
|
|
|
|
|
|
// We have no equivalent of these on Windows.
|
|
|
|
#ifndef _WIN32
|
|
|
|
# define ALWAYS_INLINE __attribute__((always_inline))
|
|
|
|
# define LIKELY(x) __builtin_expect(!!(x), 1)
|
|
|
|
# define UNLIKELY(x) __builtin_expect(!!(x), 0)
|
2012-06-14 22:02:32 +08:00
|
|
|
# define UNUSED __attribute__((unused))
|
2012-06-05 21:50:57 +08:00
|
|
|
# define USED __attribute__((used))
|
2012-05-31 22:11:07 +08:00
|
|
|
#endif
|
|
|
|
|
2012-06-15 15:29:14 +08:00
|
|
|
#if defined(_WIN32)
|
|
|
|
typedef DWORD thread_return_t;
|
|
|
|
# define THREAD_CALLING_CONV __stdcall
|
|
|
|
#else // _WIN32
|
|
|
|
typedef void* thread_return_t;
|
|
|
|
# define THREAD_CALLING_CONV
|
|
|
|
#endif // _WIN32
|
|
|
|
typedef thread_return_t (THREAD_CALLING_CONV *thread_callback_t)(void* arg);
|
|
|
|
|
2012-06-05 21:50:57 +08:00
|
|
|
// If __WORDSIZE was undefined by the platform, define it in terms of the
|
|
|
|
// compiler built-ins __LP64__ and _WIN64.
|
|
|
|
#ifndef __WORDSIZE
|
|
|
|
# if __LP64__ || defined(_WIN64)
|
|
|
|
# define __WORDSIZE 64
|
|
|
|
# else
|
|
|
|
# define __WORDSIZE 32
|
|
|
|
# endif
|
|
|
|
#endif // __WORDSIZE
|
2012-05-31 22:11:07 +08:00
|
|
|
|
2012-06-06 23:22:20 +08:00
|
|
|
// NOTE: Functions below must be defined in each run-time.
|
|
|
|
namespace __sanitizer {
|
|
|
|
void NORETURN Die();
|
|
|
|
void NORETURN CheckFailed(const char *file, int line, const char *cond,
|
|
|
|
u64 v1, u64 v2);
|
|
|
|
} // namespace __sanitizer
|
|
|
|
|
|
|
|
// Check macro
|
2012-06-06 17:26:25 +08:00
|
|
|
#define RAW_CHECK_MSG(expr, msg) do { \
|
|
|
|
if (!(expr)) { \
|
|
|
|
RawWrite(msg); \
|
|
|
|
Die(); \
|
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define RAW_CHECK(expr) RAW_CHECK_MSG(expr, #expr)
|
|
|
|
|
2012-06-06 23:22:20 +08:00
|
|
|
#define CHECK_IMPL(c1, op, c2) \
|
|
|
|
do { \
|
|
|
|
__sanitizer::u64 v1 = (u64)(c1); \
|
|
|
|
__sanitizer::u64 v2 = (u64)(c2); \
|
|
|
|
if (!(v1 op v2)) \
|
|
|
|
__sanitizer::CheckFailed(__FILE__, __LINE__, \
|
|
|
|
"(" #c1 ") " #op " (" #c2 ")", v1, v2); \
|
|
|
|
} while (false) \
|
|
|
|
/**/
|
|
|
|
|
|
|
|
#define CHECK(a) CHECK_IMPL((a), !=, 0)
|
|
|
|
#define CHECK_EQ(a, b) CHECK_IMPL((a), ==, (b))
|
|
|
|
#define CHECK_NE(a, b) CHECK_IMPL((a), !=, (b))
|
|
|
|
#define CHECK_LT(a, b) CHECK_IMPL((a), <, (b))
|
|
|
|
#define CHECK_LE(a, b) CHECK_IMPL((a), <=, (b))
|
|
|
|
#define CHECK_GT(a, b) CHECK_IMPL((a), >, (b))
|
|
|
|
#define CHECK_GE(a, b) CHECK_IMPL((a), >=, (b))
|
|
|
|
|
2012-06-06 23:47:40 +08:00
|
|
|
#define UNIMPLEMENTED() CHECK("unimplemented" && 0)
|
|
|
|
|
2012-05-31 22:11:07 +08:00
|
|
|
#endif // SANITIZER_DEFS_H
|