1 // SPDX-License-Identifier: GPL-2.0 2 /* 3 * Code for tracing calls in Linux kernel. 4 * Copyright (C) 2009-2016 Helge Deller <deller@gmx.de> 5 * 6 * based on code for x86 which is: 7 * Copyright (C) 2007-2008 Steven Rostedt <srostedt@redhat.com> 8 * 9 * future possible enhancements: 10 * - add CONFIG_DYNAMIC_FTRACE 11 * - add CONFIG_STACK_TRACER 12 */ 13 14 #include <linux/init.h> 15 #include <linux/ftrace.h> 16 17 #include <asm/assembly.h> 18 #include <asm/sections.h> 19 #include <asm/ftrace.h> 20 21 22 #define __hot __attribute__ ((__section__ (".text.hot"))) 23 24 #ifdef CONFIG_FUNCTION_GRAPH_TRACER 25 /* 26 * Hook the return address and push it in the stack of return addrs 27 * in current thread info. 28 */ 29 static void __hot prepare_ftrace_return(unsigned long *parent, 30 unsigned long self_addr) 31 { 32 unsigned long old; 33 extern int parisc_return_to_handler; 34 35 if (unlikely(ftrace_graph_is_dead())) 36 return; 37 38 if (unlikely(atomic_read(¤t->tracing_graph_pause))) 39 return; 40 41 old = *parent; 42 43 if (!function_graph_enter(old, self_addr, 0, NULL)) 44 /* activate parisc_return_to_handler() as return point */ 45 *parent = (unsigned long) &parisc_return_to_handler; 46 } 47 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */ 48 49 void notrace __hot ftrace_function_trampoline(unsigned long parent, 50 unsigned long self_addr, 51 unsigned long org_sp_gr3) 52 { 53 extern ftrace_func_t ftrace_trace_function; /* depends on CONFIG_DYNAMIC_FTRACE */ 54 55 if (ftrace_trace_function != ftrace_stub) { 56 /* struct ftrace_ops *op, struct pt_regs *regs); */ 57 ftrace_trace_function(parent, self_addr, NULL, NULL); 58 return; 59 } 60 61 #ifdef CONFIG_FUNCTION_GRAPH_TRACER 62 if (ftrace_graph_return != (trace_func_graph_ret_t) ftrace_stub || 63 ftrace_graph_entry != ftrace_graph_entry_stub) { 64 unsigned long *parent_rp; 65 66 /* calculate pointer to %rp in stack */ 67 parent_rp = (unsigned long *) (org_sp_gr3 - RP_OFFSET); 68 /* sanity check: parent_rp should hold parent */ 69 if (*parent_rp != parent) 70 return; 71 72 prepare_ftrace_return(parent_rp, self_addr); 73 return; 74 } 75 #endif 76 } 77 78