1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
|
#ifndef MACROS_H
#define MACROS_H
#include "simtypes.h"
// XXX Workaround: Old GCCs choke on type check.
#if defined __cplusplus && (!defined __GNUC__ || GCC_ATLEAST(3, 0))
// Ensures that the argument has array type.
template <typename T, unsigned N> static inline void lengthof_check(T (&)[N]) {}
# define lengthof(x) (1 ? sizeof(x) / sizeof(*(x)) : (lengthof_check((x)), 0))
#else
# define lengthof(x) (sizeof(x) / sizeof(*(x)))
#endif
#define endof(x) ((x) + lengthof(x))
#define QUOTEME_(x) #x
#define QUOTEME(x) QUOTEME_(x)
#define MEMZERON(ptr, n) memset((ptr), 0, sizeof(*(ptr)) * (n))
#define MEMZERO(obj) MEMZERON(&(obj), 1)
// make sure, a value in within the borders
static inline int clamp(int x, int min, int max)
{
if (x <= min) {
return min;
}
if (x >= max) {
return max;
}
return x;
}
#ifdef __cplusplus
namespace sim {
template<class T> inline void swap(T& a, T& b)
{
T t = a;
a = b;
b = t;
}
// XXX Workaround for GCC 2.95
template<typename T> static inline T up_cast(T x) { return x; }
}
#endif
#endif
|