]> git.proxmox.com Git - mirror_ubuntu-kernels.git/blame - arch/sh/include/asm/bug.h
License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[mirror_ubuntu-kernels.git] / arch / sh / include / asm / bug.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
1da177e4
LT
2#ifndef __ASM_SH_BUG_H
3#define __ASM_SH_BUG_H
4
e839ca52
DH
5#include <linux/linkage.h>
6
44530c69 7#define TRAPA_BUG_OPCODE 0xc33e /* trapa #0x3e */
e115f2c1 8#define BUGFLAG_UNWINDER (1 << 1)
44530c69 9
e1cd93ea 10#ifdef CONFIG_GENERIC_BUG
fa691511
PM
11#define HAVE_ARCH_BUG
12#define HAVE_ARCH_WARN_ON
dc34d312 13
fa691511
PM
14/**
15 * _EMIT_BUG_ENTRY
16 * %1 - __FILE__
17 * %2 - __LINE__
18 * %3 - trap type
19 * %4 - sizeof(struct bug_entry)
20 *
21 * The trapa opcode itself sits in %0.
22 * The %O notation is used to avoid # generation.
23 *
24 * The offending file and line are encoded in the __bug_table section.
25 */
dc34d312 26#ifdef CONFIG_DEBUG_BUGVERBOSE
fa691511 27#define _EMIT_BUG_ENTRY \
325cdacd 28 "\t.pushsection __bug_table,\"aw\"\n" \
fa691511
PM
29 "2:\t.long 1b, %O1\n" \
30 "\t.short %O2, %O3\n" \
31 "\t.org 2b+%O4\n" \
32 "\t.popsection\n"
33#else
34#define _EMIT_BUG_ENTRY \
325cdacd 35 "\t.pushsection __bug_table,\"aw\"\n" \
fa691511
PM
36 "2:\t.long 1b\n" \
37 "\t.short %O3\n" \
38 "\t.org 2b+%O4\n" \
39 "\t.popsection\n"
40#endif
dc34d312
PM
41
42#define BUG() \
43do { \
44 __asm__ __volatile__ ( \
fa691511
PM
45 "1:\t.short %O0\n" \
46 _EMIT_BUG_ENTRY \
47 : \
48 : "n" (TRAPA_BUG_OPCODE), \
49 "i" (__FILE__), \
50 "i" (__LINE__), "i" (0), \
51 "i" (sizeof(struct bug_entry))); \
579e1452 52 unreachable(); \
dc34d312
PM
53} while (0)
54
19d43626 55#define __WARN_FLAGS(flags) \
fa691511
PM
56do { \
57 __asm__ __volatile__ ( \
58 "1:\t.short %O0\n" \
59 _EMIT_BUG_ENTRY \
60 : \
61 : "n" (TRAPA_BUG_OPCODE), \
62 "i" (__FILE__), \
63 "i" (__LINE__), \
19d43626 64 "i" (BUGFLAG_WARNING|(flags)), \
fa691511 65 "i" (sizeof(struct bug_entry))); \
1da177e4
LT
66} while (0)
67
fa691511 68#define WARN_ON(x) ({ \
fd0cbdd3 69 int __ret_warn_on = !!(x); \
fa691511
PM
70 if (__builtin_constant_p(__ret_warn_on)) { \
71 if (__ret_warn_on) \
72 __WARN(); \
73 } else { \
74 if (unlikely(__ret_warn_on)) \
75 __WARN(); \
76 } \
77 unlikely(__ret_warn_on); \
78})
dc34d312 79
e115f2c1 80#define UNWINDER_BUG() \
b344e24a
MF
81do { \
82 __asm__ __volatile__ ( \
83 "1:\t.short %O0\n" \
e115f2c1 84 _EMIT_BUG_ENTRY \
b344e24a 85 : \
e115f2c1 86 : "n" (TRAPA_BUG_OPCODE), \
b344e24a 87 "i" (__FILE__), \
e115f2c1
PM
88 "i" (__LINE__), \
89 "i" (BUGFLAG_UNWINDER), \
b344e24a
MF
90 "i" (sizeof(struct bug_entry))); \
91} while (0)
92
93#define UNWINDER_BUG_ON(x) ({ \
94 int __ret_unwinder_on = !!(x); \
95 if (__builtin_constant_p(__ret_unwinder_on)) { \
96 if (__ret_unwinder_on) \
97 UNWINDER_BUG(); \
98 } else { \
99 if (unlikely(__ret_unwinder_on)) \
100 UNWINDER_BUG(); \
101 } \
102 unlikely(__ret_unwinder_on); \
103})
104
74db2479
PM
105#else
106
107#define UNWINDER_BUG BUG
108#define UNWINDER_BUG_ON BUG_ON
109
e1cd93ea 110#endif /* CONFIG_GENERIC_BUG */
c8538a7a 111
1da177e4
LT
112#include <asm-generic/bug.h>
113
e839ca52 114struct pt_regs;
5f857bce
PM
115
116/* arch/sh/kernel/traps.c */
e839ca52 117extern void die(const char *str, struct pt_regs *regs, long err) __attribute__ ((noreturn));
5f857bce
PM
118extern void die_if_kernel(const char *str, struct pt_regs *regs, long err);
119extern void die_if_no_fixup(const char *str, struct pt_regs *regs, long err);
e839ca52 120
dc34d312 121#endif /* __ASM_SH_BUG_H */