Lines Matching refs:flags
41 #define __BUG_ENTRY(file, line, flags) \ argument
45 "\t.word " flags "\t# bug_entry::flags\n"
47 #define __BUG_ENTRY(file, line, flags) \ argument
49 "\t.word " flags "\t# bug_entry::flags\n"
52 #define _BUG_FLAGS_ASM(ins, file, line, flags, size, extra) \ argument
55 __BUG_ENTRY(file, line, flags) \
60 #define _BUG_FLAGS(ins, flags, extra) \ argument
65 "i" (flags), \
69 #define ARCH_WARN_ASM(file, line, flags, size) \ argument
70 _BUG_FLAGS_ASM(ASM_UD2, file, line, flags, size, "")
74 #define _BUG_FLAGS(ins, flags, extra) asm volatile(ins) argument
95 #define __WARN_FLAGS(flags) \ argument
97 __auto_type __flags = BUGFLAG_WARNING|(flags); \