NetBSD/sys/arch/mac68k/dev/bounds.h

35 lines
937 B
C
Raw Normal View History

1996-10-13 07:21:13 +04:00
/* $NetBSD: bounds.h,v 1.5 1996/10/13 03:21:15 christos Exp $ */
1994-10-26 11:45:48 +03:00
#if defined(CHECKBOUNDS)
#undef CHECKBOUNDS
1995-04-21 06:47:35 +04:00
/* This requires ANSI C stringification. */
#define CHECKBOUNDS(a, i) { \
if ( (((a) + (i)) < (a)) || \
(((a) + (i)) >= ((a) + (sizeof(a) / sizeof(*(a))))) ) { \
1996-10-13 07:21:13 +04:00
printf("index " #i " (%d) exceeded bounds of " #a \
1995-04-21 06:47:35 +04:00
", '%s' line %d.\n", (i), __FILE__, __LINE__); \
1996-10-13 07:21:13 +04:00
printf("halting...\n"); \
1995-04-21 06:47:35 +04:00
/*asm(" stop #0x2700");*/ \
} \
}
1995-04-21 06:47:35 +04:00
#define CHECKPOINTER(a, p) { \
if ( ((p) < (a)) || \
((p) >= ((a) + (sizeof(a) / sizeof(*(a))))) ) { \
1996-10-13 07:21:13 +04:00
printf("pointer " #p " (0x%X) exceeded bounds of " #a \
1995-04-21 06:47:35 +04:00
" (0x%X), '%s' line %d.\n", \
(p), (a), __FILE__, __LINE__); \
1996-10-13 07:21:13 +04:00
printf("halting...\n"); \
1995-04-21 06:47:35 +04:00
/*asm(" stop #0x2700");*/ \
} \
}
1995-04-21 06:47:35 +04:00
#else /* !defined(CHECKBOUNDS) */
#define CHECKBOUNDS(a, i)
#define CHECKPOINTER(a, p)
1995-04-21 06:47:35 +04:00
#endif /* defined(CHECKBOUNDS) */