2005-04-17 00:20:36 +02:00
|
|
|
#ifndef __ASM_X8664_BUG_H
|
|
|
|
#define __ASM_X8664_BUG_H 1
|
|
|
|
|
2005-05-01 17:59:01 +02:00
|
|
|
#ifdef CONFIG_BUG
|
2005-04-17 00:20:36 +02:00
|
|
|
#define HAVE_ARCH_BUG
|
2006-12-08 11:36:22 +01:00
|
|
|
|
|
|
|
#ifdef CONFIG_DEBUG_BUGVERBOSE
|
|
|
|
#define BUG() \
|
|
|
|
do { \
|
|
|
|
asm volatile("1:\tud2\n" \
|
|
|
|
".pushsection __bug_table,\"a\"\n" \
|
|
|
|
"2:\t.quad 1b, %c0\n" \
|
|
|
|
"\t.word %c1, 0\n" \
|
|
|
|
"\t.org 2b+%c2\n" \
|
|
|
|
".popsection" \
|
|
|
|
: : "i" (__FILE__), "i" (__LINE__), \
|
|
|
|
"i" (sizeof(struct bug_entry))); \
|
|
|
|
for(;;) ; \
|
|
|
|
} while(0)
|
|
|
|
#else
|
|
|
|
#define BUG() \
|
|
|
|
do { \
|
|
|
|
asm volatile("ud2"); \
|
|
|
|
for(;;) ; \
|
|
|
|
} while(0)
|
|
|
|
#endif
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
void out_of_line_bug(void);
|
2005-05-25 21:31:28 +02:00
|
|
|
#else
|
|
|
|
static inline void out_of_line_bug(void) { }
|
2005-05-01 17:59:01 +02:00
|
|
|
#endif
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-05-01 17:59:01 +02:00
|
|
|
#include <asm-generic/bug.h>
|
2005-04-17 00:20:36 +02:00
|
|
|
#endif
|