1 #ifndef _ASM_POWERPC_BUG_H
2 #define _ASM_POWERPC_BUG_H
5 #include <asm/asm-compat.h>
7 * Define an illegal instr to trap on the bug.
8 * We don't use 0 because that marks the end of a function
9 * in the ELF ABI. That's "Boo Boo" in case you wonder...
11 #define BUG_OPCODE .long 0x00b00b00 /* For asm */
12 #define BUG_ILLEGAL_INSTR "0x00b00b00" /* For BUG macro */
17 unsigned long bug_addr
;
23 struct bug_entry
*find_bug(unsigned long bugaddr
);
26 * If this bit is set in the line number it means that the trap
27 * is for WARN_ON rather than BUG or BUG_ON.
29 #define BUG_WARNING_TRAP 0x1000000
34 * BUG_ON() and WARN_ON() do their best to cooperate with compile-time
35 * optimisations. However depending on the complexity of the condition
36 * some compiler versions may not produce optimal results.
40 __asm__ __volatile__( \
42 ".section __bug_table,\"a\"\n" \
43 "\t"PPC_LONG" 1b,%0,%1,%2\n" \
45 : : "i" (__LINE__), "i" (__FILE__), "i" (__FUNCTION__)); \
48 #define BUG_ON(x) do { \
49 if (__builtin_constant_p(x)) { \
53 __asm__ __volatile__( \
54 "1: "PPC_TLNEI" %0,0\n" \
55 ".section __bug_table,\"a\"\n" \
56 "\t"PPC_LONG" 1b,%1,%2,%3\n" \
58 : : "r" ((long)(x)), "i" (__LINE__), \
59 "i" (__FILE__), "i" (__FUNCTION__)); \
63 #define __WARN() do { \
64 __asm__ __volatile__( \
66 ".section __bug_table,\"a\"\n" \
67 "\t"PPC_LONG" 1b,%0,%1,%2\n" \
69 : : "i" (__LINE__ + BUG_WARNING_TRAP), \
70 "i" (__FILE__), "i" (__FUNCTION__)); \
73 #define WARN_ON(x) ({ \
74 typeof(x) __ret_warn_on = (x); \
75 if (__builtin_constant_p(__ret_warn_on)) { \
79 __asm__ __volatile__( \
80 "1: "PPC_TLNEI" %0,0\n" \
81 ".section __bug_table,\"a\"\n" \
82 "\t"PPC_LONG" 1b,%1,%2,%3\n" \
84 : : "r" (__ret_warn_on), \
85 "i" (__LINE__ + BUG_WARNING_TRAP), \
86 "i" (__FILE__), "i" (__FUNCTION__)); \
88 unlikely(__ret_warn_on); \
92 #define HAVE_ARCH_BUG_ON
93 #define HAVE_ARCH_WARN_ON
94 #endif /* CONFIG_BUG */
95 #endif /* __ASSEMBLY __ */
97 #include <asm-generic/bug.h>
99 #endif /* __KERNEL__ */
100 #endif /* _ASM_POWERPC_BUG_H */