blob: 2b87d86bfc4169384ce529af620c5db9e5238acf [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef __ASM_SH_BUG_H
2#define __ASM_SH_BUG_H
3
David Howellse839ca52012-03-28 18:30:03 +01004#include <linux/linkage.h>
5
Paul Mundt44530c62007-05-08 12:14:54 +09006#define TRAPA_BUG_OPCODE 0xc33e /* trapa #0x3e */
Paul Mundte115f2c2009-08-22 05:28:25 +09007#define BUGFLAG_UNWINDER (1 << 1)
Paul Mundt44530c62007-05-08 12:14:54 +09008
Paul Mundte1cd93e2007-11-08 18:58:00 +09009#ifdef CONFIG_GENERIC_BUG
Paul Mundtfa691512007-03-08 19:41:21 +090010#define HAVE_ARCH_BUG
11#define HAVE_ARCH_WARN_ON
Paul Mundtdc34d312006-12-08 17:41:43 +090012
Paul Mundtfa691512007-03-08 19:41:21 +090013/**
14 * _EMIT_BUG_ENTRY
15 * %1 - __FILE__
16 * %2 - __LINE__
17 * %3 - trap type
18 * %4 - sizeof(struct bug_entry)
19 *
20 * The trapa opcode itself sits in %0.
21 * The %O notation is used to avoid # generation.
22 *
23 * The offending file and line are encoded in the __bug_table section.
24 */
Paul Mundtdc34d312006-12-08 17:41:43 +090025#ifdef CONFIG_DEBUG_BUGVERBOSE
Paul Mundtfa691512007-03-08 19:41:21 +090026#define _EMIT_BUG_ENTRY \
27 "\t.pushsection __bug_table,\"a\"\n" \
28 "2:\t.long 1b, %O1\n" \
29 "\t.short %O2, %O3\n" \
30 "\t.org 2b+%O4\n" \
31 "\t.popsection\n"
32#else
33#define _EMIT_BUG_ENTRY \
34 "\t.pushsection __bug_table,\"a\"\n" \
35 "2:\t.long 1b\n" \
36 "\t.short %O3\n" \
37 "\t.org 2b+%O4\n" \
38 "\t.popsection\n"
39#endif
Paul Mundtdc34d312006-12-08 17:41:43 +090040
41#define BUG() \
42do { \
43 __asm__ __volatile__ ( \
Paul Mundtfa691512007-03-08 19:41:21 +090044 "1:\t.short %O0\n" \
45 _EMIT_BUG_ENTRY \
46 : \
47 : "n" (TRAPA_BUG_OPCODE), \
48 "i" (__FILE__), \
49 "i" (__LINE__), "i" (0), \
50 "i" (sizeof(struct bug_entry))); \
Linus Torvalds1da177e2005-04-16 15:20:36 -070051} while (0)
52
Ben Hutchingsb2be0522010-04-03 19:34:56 +010053#define __WARN_TAINT(taint) \
Paul Mundtfa691512007-03-08 19:41:21 +090054do { \
55 __asm__ __volatile__ ( \
56 "1:\t.short %O0\n" \
57 _EMIT_BUG_ENTRY \
58 : \
59 : "n" (TRAPA_BUG_OPCODE), \
60 "i" (__FILE__), \
61 "i" (__LINE__), \
Ben Hutchingsb2be0522010-04-03 19:34:56 +010062 "i" (BUGFLAG_TAINT(taint)), \
Paul Mundtfa691512007-03-08 19:41:21 +090063 "i" (sizeof(struct bug_entry))); \
Paul Mundtdc34d312006-12-08 17:41:43 +090064} while (0)
65
Paul Mundtfa691512007-03-08 19:41:21 +090066#define WARN_ON(x) ({ \
Heiko Carstensfd0cbdd2007-08-02 00:18:38 +020067 int __ret_warn_on = !!(x); \
Paul Mundtfa691512007-03-08 19:41:21 +090068 if (__builtin_constant_p(__ret_warn_on)) { \
69 if (__ret_warn_on) \
70 __WARN(); \
71 } else { \
72 if (unlikely(__ret_warn_on)) \
73 __WARN(); \
74 } \
75 unlikely(__ret_warn_on); \
76})
Paul Mundtdc34d312006-12-08 17:41:43 +090077
Paul Mundte115f2c2009-08-22 05:28:25 +090078#define UNWINDER_BUG() \
Matt Flemingb344e24a2009-08-16 21:54:48 +010079do { \
80 __asm__ __volatile__ ( \
81 "1:\t.short %O0\n" \
Paul Mundte115f2c2009-08-22 05:28:25 +090082 _EMIT_BUG_ENTRY \
Matt Flemingb344e24a2009-08-16 21:54:48 +010083 : \
Paul Mundte115f2c2009-08-22 05:28:25 +090084 : "n" (TRAPA_BUG_OPCODE), \
Matt Flemingb344e24a2009-08-16 21:54:48 +010085 "i" (__FILE__), \
Paul Mundte115f2c2009-08-22 05:28:25 +090086 "i" (__LINE__), \
87 "i" (BUGFLAG_UNWINDER), \
Matt Flemingb344e24a2009-08-16 21:54:48 +010088 "i" (sizeof(struct bug_entry))); \
89} while (0)
90
91#define UNWINDER_BUG_ON(x) ({ \
92 int __ret_unwinder_on = !!(x); \
93 if (__builtin_constant_p(__ret_unwinder_on)) { \
94 if (__ret_unwinder_on) \
95 UNWINDER_BUG(); \
96 } else { \
97 if (unlikely(__ret_unwinder_on)) \
98 UNWINDER_BUG(); \
99 } \
100 unlikely(__ret_unwinder_on); \
101})
102
Paul Mundt74db2472009-08-22 05:31:45 +0900103#else
104
105#define UNWINDER_BUG BUG
106#define UNWINDER_BUG_ON BUG_ON
107
Paul Mundte1cd93e2007-11-08 18:58:00 +0900108#endif /* CONFIG_GENERIC_BUG */
Matt Mackallc8538a72005-05-01 08:59:01 -0700109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110#include <asm-generic/bug.h>
111
David Howellse839ca52012-03-28 18:30:03 +0100112struct pt_regs;
113extern void die(const char *str, struct pt_regs *regs, long err) __attribute__ ((noreturn));
114
Paul Mundtdc34d312006-12-08 17:41:43 +0900115#endif /* __ASM_SH_BUG_H */