Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef __ASM_SH_BUG_H |
| 2 | #define __ASM_SH_BUG_H |
| 3 | |
David Howells | e839ca5 | 2012-03-28 18:30:03 +0100 | [diff] [blame] | 4 | #include <linux/linkage.h> |
| 5 | |
Paul Mundt | 44530c6 | 2007-05-08 12:14:54 +0900 | [diff] [blame] | 6 | #define TRAPA_BUG_OPCODE 0xc33e /* trapa #0x3e */ |
Paul Mundt | e115f2c | 2009-08-22 05:28:25 +0900 | [diff] [blame] | 7 | #define BUGFLAG_UNWINDER (1 << 1) |
Paul Mundt | 44530c6 | 2007-05-08 12:14:54 +0900 | [diff] [blame] | 8 | |
Paul Mundt | e1cd93e | 2007-11-08 18:58:00 +0900 | [diff] [blame] | 9 | #ifdef CONFIG_GENERIC_BUG |
Paul Mundt | fa69151 | 2007-03-08 19:41:21 +0900 | [diff] [blame] | 10 | #define HAVE_ARCH_BUG |
| 11 | #define HAVE_ARCH_WARN_ON |
Paul Mundt | dc34d31 | 2006-12-08 17:41:43 +0900 | [diff] [blame] | 12 | |
Paul Mundt | fa69151 | 2007-03-08 19:41:21 +0900 | [diff] [blame] | 13 | /** |
| 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 Mundt | dc34d31 | 2006-12-08 17:41:43 +0900 | [diff] [blame] | 25 | #ifdef CONFIG_DEBUG_BUGVERBOSE |
Paul Mundt | fa69151 | 2007-03-08 19:41:21 +0900 | [diff] [blame] | 26 | #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 Mundt | dc34d31 | 2006-12-08 17:41:43 +0900 | [diff] [blame] | 40 | |
| 41 | #define BUG() \ |
| 42 | do { \ |
| 43 | __asm__ __volatile__ ( \ |
Paul Mundt | fa69151 | 2007-03-08 19:41:21 +0900 | [diff] [blame] | 44 | "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))); \ |
Kees Cook | 579e145 | 2017-07-12 14:36:13 -0700 | [diff] [blame] | 51 | unreachable(); \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | } while (0) |
| 53 | |
Peter Zijlstra | 19d4362 | 2017-02-25 08:56:53 +0100 | [diff] [blame] | 54 | #define __WARN_FLAGS(flags) \ |
Paul Mundt | fa69151 | 2007-03-08 19:41:21 +0900 | [diff] [blame] | 55 | do { \ |
| 56 | __asm__ __volatile__ ( \ |
| 57 | "1:\t.short %O0\n" \ |
| 58 | _EMIT_BUG_ENTRY \ |
| 59 | : \ |
| 60 | : "n" (TRAPA_BUG_OPCODE), \ |
| 61 | "i" (__FILE__), \ |
| 62 | "i" (__LINE__), \ |
Peter Zijlstra | 19d4362 | 2017-02-25 08:56:53 +0100 | [diff] [blame] | 63 | "i" (BUGFLAG_WARNING|(flags)), \ |
Paul Mundt | fa69151 | 2007-03-08 19:41:21 +0900 | [diff] [blame] | 64 | "i" (sizeof(struct bug_entry))); \ |
Paul Mundt | dc34d31 | 2006-12-08 17:41:43 +0900 | [diff] [blame] | 65 | } while (0) |
| 66 | |
Paul Mundt | fa69151 | 2007-03-08 19:41:21 +0900 | [diff] [blame] | 67 | #define WARN_ON(x) ({ \ |
Heiko Carstens | fd0cbdd | 2007-08-02 00:18:38 +0200 | [diff] [blame] | 68 | int __ret_warn_on = !!(x); \ |
Paul Mundt | fa69151 | 2007-03-08 19:41:21 +0900 | [diff] [blame] | 69 | if (__builtin_constant_p(__ret_warn_on)) { \ |
| 70 | if (__ret_warn_on) \ |
| 71 | __WARN(); \ |
| 72 | } else { \ |
| 73 | if (unlikely(__ret_warn_on)) \ |
| 74 | __WARN(); \ |
| 75 | } \ |
| 76 | unlikely(__ret_warn_on); \ |
| 77 | }) |
Paul Mundt | dc34d31 | 2006-12-08 17:41:43 +0900 | [diff] [blame] | 78 | |
Paul Mundt | e115f2c | 2009-08-22 05:28:25 +0900 | [diff] [blame] | 79 | #define UNWINDER_BUG() \ |
Matt Fleming | b344e24a | 2009-08-16 21:54:48 +0100 | [diff] [blame] | 80 | do { \ |
| 81 | __asm__ __volatile__ ( \ |
| 82 | "1:\t.short %O0\n" \ |
Paul Mundt | e115f2c | 2009-08-22 05:28:25 +0900 | [diff] [blame] | 83 | _EMIT_BUG_ENTRY \ |
Matt Fleming | b344e24a | 2009-08-16 21:54:48 +0100 | [diff] [blame] | 84 | : \ |
Paul Mundt | e115f2c | 2009-08-22 05:28:25 +0900 | [diff] [blame] | 85 | : "n" (TRAPA_BUG_OPCODE), \ |
Matt Fleming | b344e24a | 2009-08-16 21:54:48 +0100 | [diff] [blame] | 86 | "i" (__FILE__), \ |
Paul Mundt | e115f2c | 2009-08-22 05:28:25 +0900 | [diff] [blame] | 87 | "i" (__LINE__), \ |
| 88 | "i" (BUGFLAG_UNWINDER), \ |
Matt Fleming | b344e24a | 2009-08-16 21:54:48 +0100 | [diff] [blame] | 89 | "i" (sizeof(struct bug_entry))); \ |
| 90 | } while (0) |
| 91 | |
| 92 | #define UNWINDER_BUG_ON(x) ({ \ |
| 93 | int __ret_unwinder_on = !!(x); \ |
| 94 | if (__builtin_constant_p(__ret_unwinder_on)) { \ |
| 95 | if (__ret_unwinder_on) \ |
| 96 | UNWINDER_BUG(); \ |
| 97 | } else { \ |
| 98 | if (unlikely(__ret_unwinder_on)) \ |
| 99 | UNWINDER_BUG(); \ |
| 100 | } \ |
| 101 | unlikely(__ret_unwinder_on); \ |
| 102 | }) |
| 103 | |
Paul Mundt | 74db247 | 2009-08-22 05:31:45 +0900 | [diff] [blame] | 104 | #else |
| 105 | |
| 106 | #define UNWINDER_BUG BUG |
| 107 | #define UNWINDER_BUG_ON BUG_ON |
| 108 | |
Paul Mundt | e1cd93e | 2007-11-08 18:58:00 +0900 | [diff] [blame] | 109 | #endif /* CONFIG_GENERIC_BUG */ |
Matt Mackall | c8538a7 | 2005-05-01 08:59:01 -0700 | [diff] [blame] | 110 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | #include <asm-generic/bug.h> |
| 112 | |
David Howells | e839ca5 | 2012-03-28 18:30:03 +0100 | [diff] [blame] | 113 | struct pt_regs; |
Paul Mundt | 5f857bc | 2012-06-14 14:18:51 +0900 | [diff] [blame] | 114 | |
| 115 | /* arch/sh/kernel/traps.c */ |
David Howells | e839ca5 | 2012-03-28 18:30:03 +0100 | [diff] [blame] | 116 | extern void die(const char *str, struct pt_regs *regs, long err) __attribute__ ((noreturn)); |
Paul Mundt | 5f857bc | 2012-06-14 14:18:51 +0900 | [diff] [blame] | 117 | extern void die_if_kernel(const char *str, struct pt_regs *regs, long err); |
| 118 | extern void die_if_no_fixup(const char *str, struct pt_regs *regs, long err); |
David Howells | e839ca5 | 2012-03-28 18:30:03 +0100 | [diff] [blame] | 119 | |
Paul Mundt | dc34d31 | 2006-12-08 17:41:43 +0900 | [diff] [blame] | 120 | #endif /* __ASM_SH_BUG_H */ |