blob: 18b0197f23848906e8495c563638ef3179abb06f [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Abhishek Sagar395a59d2008-06-21 23:47:27 +05302#ifndef _ASM_ARM_FTRACE
3#define _ASM_ARM_FTRACE
4
Abel Vesa620176f2017-05-26 21:49:47 +01005#ifdef CONFIG_DYNAMIC_FTRACE_WITH_REGS
6#define ARCH_SUPPORTS_FTRACE_OPS 1
7#endif
8
Steven Rostedt606576c2008-10-06 19:06:12 -04009#ifdef CONFIG_FUNCTION_TRACER
Rabin Vincent3b6c2232010-08-10 19:43:28 +010010#define MCOUNT_ADDR ((unsigned long)(__gnu_mcount_nc))
Abhishek Sagar395a59d2008-06-21 23:47:27 +053011#define MCOUNT_INSN_SIZE 4 /* sizeof mcount call */
12
13#ifndef __ASSEMBLY__
14extern void mcount(void);
Uwe Kleine-König181f8172009-08-13 20:38:16 +020015extern void __gnu_mcount_nc(void);
Rabin Vincent3b6c2232010-08-10 19:43:28 +010016
17#ifdef CONFIG_DYNAMIC_FTRACE
18struct dyn_arch_ftrace {
Rabin Vincent3b6c2232010-08-10 19:43:28 +010019};
20
21static inline unsigned long ftrace_call_adjust(unsigned long addr)
22{
Rabin Vincent72dc43a2010-08-10 19:52:35 +010023 /* With Thumb-2, the recorded addresses have the lsb set */
24 return addr & ~1;
Rabin Vincent3b6c2232010-08-10 19:43:28 +010025}
26
27extern void ftrace_caller_old(void);
28extern void ftrace_call_old(void);
29#endif
30
Abhishek Sagar395a59d2008-06-21 23:47:27 +053031#endif
32
33#endif
34
Uwe Kleine-König4bf1fa52009-07-21 09:56:27 +010035#ifndef __ASSEMBLY__
36
37#if defined(CONFIG_FRAME_POINTER) && !defined(CONFIG_ARM_UNWIND)
38/*
39 * return_address uses walk_stackframe to do it's work. If both
40 * CONFIG_FRAME_POINTER=y and CONFIG_ARM_UNWIND=y walk_stackframe uses unwind
41 * information. For this to work in the function tracer many functions would
42 * have to be marked with __notrace. So for now just depend on
43 * !CONFIG_ARM_UNWIND.
44 */
45
46void *return_address(unsigned int);
47
48#else
49
Behan Websteraeea3592014-09-24 01:06:46 +010050static inline void *return_address(unsigned int level)
Uwe Kleine-König4bf1fa52009-07-21 09:56:27 +010051{
52 return NULL;
53}
54
55#endif
56
Steven Rostedt1712ef42014-06-16 15:25:29 +010057#define ftrace_return_address(n) return_address(n)
Uwe Kleine-König4bf1fa52009-07-21 09:56:27 +010058
Rabin Vincent270c8cf2016-11-23 13:02:32 +010059#define ARCH_HAS_SYSCALL_MATCH_SYM_NAME
60
61static inline bool arch_syscall_match_sym_name(const char *sym,
62 const char *name)
63{
64 if (!strcmp(sym, "sys_mmap2"))
65 sym = "sys_mmap_pgoff";
66 else if (!strcmp(sym, "sys_statfs64_wrapper"))
67 sym = "sys_statfs64";
68 else if (!strcmp(sym, "sys_fstatfs64_wrapper"))
69 sym = "sys_fstatfs64";
70 else if (!strcmp(sym, "sys_arm_fadvise64_64"))
71 sym = "sys_fadvise64_64";
72
73 /* Ignore case since sym may start with "SyS" instead of "sys" */
74 return !strcasecmp(sym, name);
75}
76
Uwe Kleine-König4bf1fa52009-07-21 09:56:27 +010077#endif /* ifndef __ASSEMBLY__ */
78
Abhishek Sagar395a59d2008-06-21 23:47:27 +053079#endif /* _ASM_ARM_FTRACE */