2005-09-20 00:01:54 +02:00
|
|
|
#ifndef _ASM_POWERPC_BUG_H
|
|
|
|
#define _ASM_POWERPC_BUG_H
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Define an illegal instr to trap on the bug.
|
|
|
|
* We don't use 0 because that marks the end of a function
|
|
|
|
* in the ELF ABI. That's "Boo Boo" in case you wonder...
|
|
|
|
*/
|
|
|
|
#define BUG_OPCODE .long 0x00b00b00 /* For asm */
|
|
|
|
#define BUG_ILLEGAL_INSTR "0x00b00b00" /* For BUG macro */
|
|
|
|
|
|
|
|
#ifndef __ASSEMBLY__
|
|
|
|
|
2005-09-20 00:01:54 +02:00
|
|
|
#ifdef __powerpc64__
|
|
|
|
#define BUG_TABLE_ENTRY(label, line, file, func) \
|
2005-11-01 11:54:38 +01:00
|
|
|
".llong " #label ", " #line ", " #file ", " #func "\n"
|
2005-09-20 00:01:54 +02:00
|
|
|
#define TRAP_OP(ra, rb) "1: tdnei " #ra ", " #rb "\n"
|
|
|
|
#else
|
|
|
|
#define BUG_TABLE_ENTRY(label, line, file, func) \
|
|
|
|
".long " #label ", " #line ", " #file ", " #func "\n"
|
|
|
|
#define TRAP_OP(ra, rb) "1: twnei " #ra ", " #rb "\n"
|
|
|
|
#endif /* __powerpc64__ */
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
struct bug_entry {
|
|
|
|
unsigned long bug_addr;
|
2005-11-01 11:54:38 +01:00
|
|
|
long line;
|
2005-04-17 00:20:36 +02:00
|
|
|
const char *file;
|
|
|
|
const char *function;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct bug_entry *find_bug(unsigned long bugaddr);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If this bit is set in the line number it means that the trap
|
|
|
|
* is for WARN_ON rather than BUG or BUG_ON.
|
|
|
|
*/
|
|
|
|
#define BUG_WARNING_TRAP 0x1000000
|
|
|
|
|
2005-05-01 17:59:01 +02:00
|
|
|
#ifdef CONFIG_BUG
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
#define BUG() do { \
|
|
|
|
__asm__ __volatile__( \
|
|
|
|
"1: twi 31,0,0\n" \
|
|
|
|
".section __bug_table,\"a\"\n\t" \
|
2005-09-20 00:01:54 +02:00
|
|
|
BUG_TABLE_ENTRY(1b,%0,%1,%2) \
|
2005-04-17 00:20:36 +02:00
|
|
|
".previous" \
|
|
|
|
: : "i" (__LINE__), "i" (__FILE__), "i" (__FUNCTION__)); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define BUG_ON(x) do { \
|
|
|
|
__asm__ __volatile__( \
|
2005-09-20 00:01:54 +02:00
|
|
|
TRAP_OP(%0,0) \
|
2005-04-17 00:20:36 +02:00
|
|
|
".section __bug_table,\"a\"\n\t" \
|
2005-09-20 00:01:54 +02:00
|
|
|
BUG_TABLE_ENTRY(1b,%1,%2,%3) \
|
2005-04-17 00:20:36 +02:00
|
|
|
".previous" \
|
2005-11-02 04:10:43 +01:00
|
|
|
: : "r" ((long)(x)), "i" (__LINE__), \
|
2005-08-27 03:34:07 +02:00
|
|
|
"i" (__FILE__), "i" (__FUNCTION__)); \
|
2005-04-17 00:20:36 +02:00
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define WARN_ON(x) do { \
|
|
|
|
__asm__ __volatile__( \
|
2005-09-20 00:01:54 +02:00
|
|
|
TRAP_OP(%0,0) \
|
2005-04-17 00:20:36 +02:00
|
|
|
".section __bug_table,\"a\"\n\t" \
|
2005-09-20 00:01:54 +02:00
|
|
|
BUG_TABLE_ENTRY(1b,%1,%2,%3) \
|
2005-04-17 00:20:36 +02:00
|
|
|
".previous" \
|
2005-11-02 04:10:43 +01:00
|
|
|
: : "r" ((long)(x)), \
|
2005-08-27 03:34:07 +02:00
|
|
|
"i" (__LINE__ + BUG_WARNING_TRAP), \
|
2005-04-17 00:20:36 +02:00
|
|
|
"i" (__FILE__), "i" (__FUNCTION__)); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define HAVE_ARCH_BUG
|
|
|
|
#define HAVE_ARCH_BUG_ON
|
|
|
|
#define HAVE_ARCH_WARN_ON
|
2005-09-20 00:01:54 +02:00
|
|
|
#endif /* CONFIG_BUG */
|
|
|
|
#endif /* __ASSEMBLY __ */
|
2005-05-01 17:59:01 +02:00
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
#include <asm-generic/bug.h>
|
|
|
|
|
2005-09-20 00:01:54 +02:00
|
|
|
#endif /* _ASM_POWERPC_BUG_H */
|