Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Abhishek Sagar | 395a59d | 2008-06-21 23:47:27 +0530 | [diff] [blame] | 2 | #ifndef _ASM_ARM_FTRACE |
| 3 | #define _ASM_ARM_FTRACE |
| 4 | |
Abel Vesa | 620176f | 2017-05-26 21:49:47 +0100 | [diff] [blame] | 5 | #ifdef CONFIG_DYNAMIC_FTRACE_WITH_REGS |
| 6 | #define ARCH_SUPPORTS_FTRACE_OPS 1 |
| 7 | #endif |
| 8 | |
Steven Rostedt | 606576c | 2008-10-06 19:06:12 -0400 | [diff] [blame] | 9 | #ifdef CONFIG_FUNCTION_TRACER |
Rabin Vincent | 3b6c223 | 2010-08-10 19:43:28 +0100 | [diff] [blame] | 10 | #define MCOUNT_ADDR ((unsigned long)(__gnu_mcount_nc)) |
Abhishek Sagar | 395a59d | 2008-06-21 23:47:27 +0530 | [diff] [blame] | 11 | #define MCOUNT_INSN_SIZE 4 /* sizeof mcount call */ |
| 12 | |
| 13 | #ifndef __ASSEMBLY__ |
Uwe Kleine-König | 181f817 | 2009-08-13 20:38:16 +0200 | [diff] [blame] | 14 | extern void __gnu_mcount_nc(void); |
Rabin Vincent | 3b6c223 | 2010-08-10 19:43:28 +0100 | [diff] [blame] | 15 | |
| 16 | #ifdef CONFIG_DYNAMIC_FTRACE |
| 17 | struct dyn_arch_ftrace { |
Alex Sverdlin | 79f32b2 | 2021-05-05 07:59:04 +0100 | [diff] [blame] | 18 | #ifdef CONFIG_ARM_MODULE_PLTS |
| 19 | struct module *mod; |
| 20 | #endif |
Rabin Vincent | 3b6c223 | 2010-08-10 19:43:28 +0100 | [diff] [blame] | 21 | }; |
| 22 | |
| 23 | static inline unsigned long ftrace_call_adjust(unsigned long addr) |
| 24 | { |
Rabin Vincent | 72dc43a | 2010-08-10 19:52:35 +0100 | [diff] [blame] | 25 | /* With Thumb-2, the recorded addresses have the lsb set */ |
| 26 | return addr & ~1; |
Rabin Vincent | 3b6c223 | 2010-08-10 19:43:28 +0100 | [diff] [blame] | 27 | } |
Rabin Vincent | 3b6c223 | 2010-08-10 19:43:28 +0100 | [diff] [blame] | 28 | #endif |
| 29 | |
Abhishek Sagar | 395a59d | 2008-06-21 23:47:27 +0530 | [diff] [blame] | 30 | #endif |
| 31 | |
| 32 | #endif |
| 33 | |
Uwe Kleine-König | 4bf1fa5 | 2009-07-21 09:56:27 +0100 | [diff] [blame] | 34 | #ifndef __ASSEMBLY__ |
| 35 | |
| 36 | #if defined(CONFIG_FRAME_POINTER) && !defined(CONFIG_ARM_UNWIND) |
| 37 | /* |
| 38 | * return_address uses walk_stackframe to do it's work. If both |
| 39 | * CONFIG_FRAME_POINTER=y and CONFIG_ARM_UNWIND=y walk_stackframe uses unwind |
| 40 | * information. For this to work in the function tracer many functions would |
| 41 | * have to be marked with __notrace. So for now just depend on |
| 42 | * !CONFIG_ARM_UNWIND. |
| 43 | */ |
| 44 | |
| 45 | void *return_address(unsigned int); |
| 46 | |
| 47 | #else |
| 48 | |
Behan Webster | aeea359 | 2014-09-24 01:06:46 +0100 | [diff] [blame] | 49 | static inline void *return_address(unsigned int level) |
Uwe Kleine-König | 4bf1fa5 | 2009-07-21 09:56:27 +0100 | [diff] [blame] | 50 | { |
| 51 | return NULL; |
| 52 | } |
| 53 | |
| 54 | #endif |
| 55 | |
Steven Rostedt | 1712ef4 | 2014-06-16 15:25:29 +0100 | [diff] [blame] | 56 | #define ftrace_return_address(n) return_address(n) |
Uwe Kleine-König | 4bf1fa5 | 2009-07-21 09:56:27 +0100 | [diff] [blame] | 57 | |
Rabin Vincent | 270c8cf | 2016-11-23 13:02:32 +0100 | [diff] [blame] | 58 | #define ARCH_HAS_SYSCALL_MATCH_SYM_NAME |
| 59 | |
| 60 | static inline bool arch_syscall_match_sym_name(const char *sym, |
| 61 | const char *name) |
| 62 | { |
| 63 | if (!strcmp(sym, "sys_mmap2")) |
| 64 | sym = "sys_mmap_pgoff"; |
| 65 | else if (!strcmp(sym, "sys_statfs64_wrapper")) |
| 66 | sym = "sys_statfs64"; |
| 67 | else if (!strcmp(sym, "sys_fstatfs64_wrapper")) |
| 68 | sym = "sys_fstatfs64"; |
| 69 | else if (!strcmp(sym, "sys_arm_fadvise64_64")) |
| 70 | sym = "sys_fadvise64_64"; |
| 71 | |
| 72 | /* Ignore case since sym may start with "SyS" instead of "sys" */ |
| 73 | return !strcasecmp(sym, name); |
| 74 | } |
| 75 | |
Uwe Kleine-König | 4bf1fa5 | 2009-07-21 09:56:27 +0100 | [diff] [blame] | 76 | #endif /* ifndef __ASSEMBLY__ */ |
| 77 | |
Abhishek Sagar | 395a59d | 2008-06-21 23:47:27 +0530 | [diff] [blame] | 78 | #endif /* _ASM_ARM_FTRACE */ |