s390: avoid __builtin_return_address(n) on clang
[linux-2.6-microblaze.git] / arch / s390 / include / asm / ftrace.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _ASM_S390_FTRACE_H
3 #define _ASM_S390_FTRACE_H
4
5 #define ARCH_SUPPORTS_FTRACE_OPS 1
6
7 #if defined(CC_USING_HOTPATCH) || defined(CC_USING_NOP_MCOUNT)
8 #define MCOUNT_INSN_SIZE        6
9 #else
10 #define MCOUNT_INSN_SIZE        24
11 #define MCOUNT_RETURN_FIXUP     18
12 #endif
13
14 #ifndef __ASSEMBLY__
15
16 #ifdef CONFIG_CC_IS_CLANG
17 /* https://bugs.llvm.org/show_bug.cgi?id=41424 */
18 #define ftrace_return_address(n) 0UL
19 #else
20 #define ftrace_return_address(n) __builtin_return_address(n)
21 #endif
22
23 void _mcount(void);
24 void ftrace_caller(void);
25
26 extern char ftrace_graph_caller_end;
27 extern unsigned long ftrace_plt;
28
29 struct dyn_arch_ftrace { };
30
31 #define MCOUNT_ADDR ((unsigned long)_mcount)
32 #define FTRACE_ADDR ((unsigned long)ftrace_caller)
33
34 #define KPROBE_ON_FTRACE_NOP    0
35 #define KPROBE_ON_FTRACE_CALL   1
36
37 static inline unsigned long ftrace_call_adjust(unsigned long addr)
38 {
39         return addr;
40 }
41
42 struct ftrace_insn {
43         u16 opc;
44         s32 disp;
45 } __packed;
46
47 static inline void ftrace_generate_nop_insn(struct ftrace_insn *insn)
48 {
49 #ifdef CONFIG_FUNCTION_TRACER
50 #if defined(CC_USING_HOTPATCH) || defined(CC_USING_NOP_MCOUNT)
51         /* brcl 0,0 */
52         insn->opc = 0xc004;
53         insn->disp = 0;
54 #else
55         /* jg .+24 */
56         insn->opc = 0xc0f4;
57         insn->disp = MCOUNT_INSN_SIZE / 2;
58 #endif
59 #endif
60 }
61
62 static inline int is_ftrace_nop(struct ftrace_insn *insn)
63 {
64 #ifdef CONFIG_FUNCTION_TRACER
65 #if defined(CC_USING_HOTPATCH) || defined(CC_USING_NOP_MCOUNT)
66         if (insn->disp == 0)
67                 return 1;
68 #else
69         if (insn->disp == MCOUNT_INSN_SIZE / 2)
70                 return 1;
71 #endif
72 #endif
73         return 0;
74 }
75
76 static inline void ftrace_generate_call_insn(struct ftrace_insn *insn,
77                                              unsigned long ip)
78 {
79 #ifdef CONFIG_FUNCTION_TRACER
80         unsigned long target;
81
82         /* brasl r0,ftrace_caller */
83         target = is_module_addr((void *) ip) ? ftrace_plt : FTRACE_ADDR;
84         insn->opc = 0xc005;
85         insn->disp = (target - ip) / 2;
86 #endif
87 }
88
89 /*
90  * Even though the system call numbers are identical for s390/s390x a
91  * different system call table is used for compat tasks. This may lead
92  * to e.g. incorrect or missing trace event sysfs files.
93  * Therefore simply do not trace compat system calls at all.
94  * See kernel/trace/trace_syscalls.c.
95  */
96 #define ARCH_TRACE_IGNORE_COMPAT_SYSCALLS
97 static inline bool arch_trace_is_compat_syscall(struct pt_regs *regs)
98 {
99         return is_compat_task();
100 }
101
102 #define ARCH_HAS_SYSCALL_MATCH_SYM_NAME
103 static inline bool arch_syscall_match_sym_name(const char *sym,
104                                                const char *name)
105 {
106         /*
107          * Skip __s390_ and __s390x_ prefix - due to compat wrappers
108          * and aliasing some symbols of 64 bit system call functions
109          * may get the __s390_ prefix instead of the __s390x_ prefix.
110          */
111         return !strcmp(sym + 7, name) || !strcmp(sym + 8, name);
112 }
113
114 #endif /* __ASSEMBLY__ */
115 #endif /* _ASM_S390_FTRACE_H */