1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _ASM_S390_FTRACE_H
3 #define _ASM_S390_FTRACE_H
5 #define ARCH_SUPPORTS_FTRACE_OPS 1
6 #define MCOUNT_INSN_SIZE 6
9 #include <asm/stacktrace.h>
11 static __always_inline unsigned long return_address(unsigned int n)
13 struct stack_frame *sf;
16 return (unsigned long)__builtin_return_address(0);
18 sf = (struct stack_frame *)current_frame_address();
20 sf = (struct stack_frame *)sf->back_chain;
26 #define ftrace_return_address(n) return_address(n)
28 void ftrace_caller(void);
30 extern void *ftrace_func;
32 struct dyn_arch_ftrace { };
35 #define FTRACE_ADDR ((unsigned long)ftrace_caller)
37 #define KPROBE_ON_FTRACE_NOP 0
38 #define KPROBE_ON_FTRACE_CALL 1
44 bool ftrace_need_init_nop(void);
45 #define ftrace_need_init_nop ftrace_need_init_nop
47 int ftrace_init_nop(struct module *mod, struct dyn_ftrace *rec);
48 #define ftrace_init_nop ftrace_init_nop
50 static inline unsigned long ftrace_call_adjust(unsigned long addr)
54 #define ftrace_get_symaddr(fentry_ip) ((unsigned long)(fentry_ip))
56 #include <linux/ftrace_regs.h>
58 static __always_inline struct pt_regs *arch_ftrace_get_regs(struct ftrace_regs *fregs)
60 struct pt_regs *regs = &arch_ftrace_regs(fregs)->regs;
62 if (test_pt_regs_flag(regs, PIF_FTRACE_FULL_REGS))
67 static __always_inline void
68 ftrace_regs_set_instruction_pointer(struct ftrace_regs *fregs,
71 arch_ftrace_regs(fregs)->regs.psw.addr = ip;
74 #undef ftrace_regs_get_frame_pointer
75 static __always_inline unsigned long
76 ftrace_regs_get_frame_pointer(struct ftrace_regs *fregs)
78 return ftrace_regs_get_stack_pointer(fregs);
81 static __always_inline unsigned long
82 ftrace_regs_get_return_address(const struct ftrace_regs *fregs)
84 return arch_ftrace_regs(fregs)->regs.gprs[14];
87 #define arch_ftrace_fill_perf_regs(fregs, _regs) do { \
88 (_regs)->psw.mask = 0; \
89 (_regs)->psw.addr = arch_ftrace_regs(fregs)->regs.psw.addr; \
90 (_regs)->gprs[15] = arch_ftrace_regs(fregs)->regs.gprs[15]; \
93 #ifdef CONFIG_DYNAMIC_FTRACE_WITH_DIRECT_CALLS
95 * When an ftrace registered caller is tracing a function that is
96 * also set by a register_ftrace_direct() call, it needs to be
97 * differentiated in the ftrace_caller trampoline. To do this,
98 * place the direct caller in the ORIG_GPR2 part of pt_regs. This
99 * tells the ftrace_caller that there's a direct caller.
101 static inline void arch_ftrace_set_direct_caller(struct ftrace_regs *fregs, unsigned long addr)
103 struct pt_regs *regs = &arch_ftrace_regs(fregs)->regs;
104 regs->orig_gpr2 = addr;
106 #endif /* CONFIG_DYNAMIC_FTRACE_WITH_DIRECT_CALLS */
109 * Even though the system call numbers are identical for s390/s390x a
110 * different system call table is used for compat tasks. This may lead
111 * to e.g. incorrect or missing trace event sysfs files.
112 * Therefore simply do not trace compat system calls at all.
113 * See kernel/trace/trace_syscalls.c.
115 #define ARCH_TRACE_IGNORE_COMPAT_SYSCALLS
116 static inline bool arch_trace_is_compat_syscall(struct pt_regs *regs)
118 return is_compat_task();
121 #define ARCH_HAS_SYSCALL_MATCH_SYM_NAME
122 static inline bool arch_syscall_match_sym_name(const char *sym,
126 * Skip __s390_ and __s390x_ prefix - due to compat wrappers
127 * and aliasing some symbols of 64 bit system call functions
128 * may get the __s390_ prefix instead of the __s390x_ prefix.
130 return !strcmp(sym + 7, name) || !strcmp(sym + 8, name);
133 void ftrace_graph_func(unsigned long ip, unsigned long parent_ip,
134 struct ftrace_ops *op, struct ftrace_regs *fregs);
135 #define ftrace_graph_func ftrace_graph_func
137 #endif /* __ASSEMBLY__ */
139 #ifdef CONFIG_FUNCTION_TRACER
141 #define FTRACE_NOP_INSN .word 0xc004, 0x0000, 0x0000 /* brcl 0,0 */
143 #ifndef CC_USING_HOTPATCH
145 #define FTRACE_GEN_MCOUNT_RECORD(name) \
146 .section __mcount_loc, "a", @progbits; \
150 #else /* !CC_USING_HOTPATCH */
152 #define FTRACE_GEN_MCOUNT_RECORD(name)
154 #endif /* !CC_USING_HOTPATCH */
156 #define FTRACE_GEN_NOP_ASM(name) \
157 FTRACE_GEN_MCOUNT_RECORD(name) \
160 #else /* CONFIG_FUNCTION_TRACER */
162 #define FTRACE_GEN_NOP_ASM(name)
164 #endif /* CONFIG_FUNCTION_TRACER */
166 #endif /* _ASM_S390_FTRACE_H */