qse/ase/macros.h

80 lines
2.3 KiB
C
Raw Normal View History

2004-12-18 09:16:31 +00:00
/*
2005-05-02 11:14:59 +00:00
* $Id: macros.h,v 1.23 2005-05-02 11:14:59 bacon Exp $
2004-12-18 09:16:31 +00:00
*/
2004-12-18 09:58:49 +00:00
#ifndef _XP_MACROS_H_
#define _XP_MACROS_H_
2004-12-18 09:16:31 +00:00
2004-12-18 09:58:49 +00:00
#include <xp/types.h>
2004-12-18 09:16:31 +00:00
2005-03-29 07:29:13 +00:00
#ifdef __cplusplus
#define XP_NULL ((xp_uint_t)0)
#else
#define XP_NULL ((void*)0)
#endif
2004-12-18 09:58:49 +00:00
#define XP_EOF ((xp_cint_t)-1)
2004-12-18 09:16:31 +00:00
2004-12-18 09:58:49 +00:00
#define xp_sizeof(n) (sizeof(n))
#define xp_countof(n) (sizeof(n) / sizeof(n[0]))
2005-04-18 11:28:07 +00:00
#define xp_offsetof(type,member) ((xp_size_t)&((type*)0)->member)
2004-12-18 09:16:31 +00:00
2005-03-29 11:37:50 +00:00
#if defined(_WIN32) && defined(XP_CHAR_IS_WCHAR)
#define xp_main wmain
2005-01-21 06:02:02 +00:00
#elif defined(XP_CHAR_IS_MCHAR)
2004-12-18 09:58:49 +00:00
#define xp_main main
2004-12-18 09:16:31 +00:00
#endif
2005-03-30 10:48:17 +00:00
#define XP_TYPE_IS_SIGNED(type) (((type)0) > ((type)-1))
#define XP_TYPE_IS_UNSIGNED(type) (((type)0) < ((type)-1))
2005-03-30 07:26:38 +00:00
#define XP_TYPE_MAX(type) \
2005-03-30 10:21:33 +00:00
((XP_TYPE_IS_SIGNED(type)? (type)~((type)1 << (xp_sizeof(type) * 8 - 1)): (type)(~(type)0)))
2005-03-30 07:26:38 +00:00
#define XP_TYPE_MIN(type) \
2005-03-30 10:21:33 +00:00
((XP_TYPE_IS_SIGNED(type)? (type)((type)1 << (xp_sizeof(type) * 8 - 1)): (type)0))
2005-03-30 07:26:38 +00:00
2005-03-30 10:49:01 +00:00
#define XP_NUM_IS_POWOF2(x) (((x) & ((x) - 1)) == 0)
2005-03-30 10:48:17 +00:00
2004-12-18 09:58:49 +00:00
#define XP_LOOP_CONTINUE(id) goto __loop_ ## id ## _begin__;
#define XP_LOOP_BREAK(id) goto __loop_ ## id ## _end__;
#define XP_LOOP_BEGIN(id) __loop_ ## id ## _begin__: {
#define XP_LOOP_END(id) XP_LOOP_CONTINUE(id) } __loop_ ## id ## _end__:;
2004-12-18 09:16:31 +00:00
2005-04-02 13:14:33 +00:00
#define XP_REPEAT(n,blk) \
do { \
2005-04-02 15:36:02 +00:00
xp_size_t __xp_repeat_x1 = (xp_size_t)(n); \
2005-04-02 15:10:48 +00:00
xp_size_t __xp_repeat_x2 = __xp_repeat_x1 >> 4; \
__xp_repeat_x1 &= 15; \
2005-04-02 14:28:18 +00:00
while (__xp_repeat_x1-- > 0) { blk; } \
while (__xp_repeat_x2-- > 0) { \
blk; blk; blk; blk; blk; blk; blk; blk; \
blk; blk; blk; blk; blk; blk; blk; blk; \
} \
2005-04-02 13:14:33 +00:00
} while (0);
2004-12-18 09:16:31 +00:00
2005-05-02 11:14:59 +00:00
#define XP_MQUOTE(val) #val
2005-02-06 03:27:54 +00:00
#define XP_MCHAR(ch) ((xp_mchar_t)ch)
#define XP_MTEXT(txt) ((const xp_mchar_t*)txt)
2005-01-06 15:31:59 +00:00
2005-01-17 03:12:56 +00:00
/* TODO: if the compiler doesn't have the built-in wchar_t support
* XP_WCHAR & XP_WTEXT must be defined differently.
2005-01-21 04:22:24 +00:00
#define XP_WCHAR(ch) ((xp_wchar_t)ch)
#define XP_WTEXT(txt) don't know yet... may have to call a function?
2005-01-17 03:12:56 +00:00
*/
2005-05-02 11:14:59 +00:00
#define XP_WQUOTE(val) ((const xp_char_t*)L###val)
2005-02-06 03:27:54 +00:00
#define XP_WCHAR(ch) ((xp_wchar_t)L##ch)
#define XP_WTEXT(txt) ((const xp_wchar_t*)L##txt)
2004-12-18 09:16:31 +00:00
2005-02-05 06:05:19 +00:00
#if defined(XP_CHAR_IS_MCHAR)
#define XP_CHAR(ch) XP_MCHAR(ch)
#define XP_TEXT(txt) XP_MTEXT(txt)
2005-05-02 11:14:59 +00:00
#define XP_QUOTE(val) XP_MQUOTE(val)
2005-01-06 15:31:59 +00:00
#else
2005-02-05 06:05:19 +00:00
#define XP_CHAR(ch) XP_WCHAR(ch)
#define XP_TEXT(txt) XP_WTEXT(txt)
2005-05-02 11:14:59 +00:00
#define XP_QUOTE(val) XP_WQUOTE(val)
2005-01-06 15:31:59 +00:00
#endif
2004-12-18 09:16:31 +00:00
#endif