2 * arch/arm64/kernel/entry-ftrace.S
4 * Copyright (C) 2013 Linaro Limited
5 * Author: AKASHI Takahiro <takahiro.akashi@linaro.org>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
12 #include <linux/linkage.h>
13 #include <asm/ftrace.h>
17 * Gcc with -pg will put the following code in the beginning of each function:
20 * [function's body ...]
21 * "bl _mcount" may be replaced to "bl ftrace_caller" or NOP if dynamic
24 * Please note that x0 as an argument will not be used here because we can
25 * get lr(x30) of instrumented function at any time by winding up call stack
26 * as long as the kernel is compiled without -fomit-frame-pointer.
27 * (or CONFIG_FRAME_POINTER, this is forced on arm64)
29 * stack layout after mcount_enter in _mcount():
31 * current sp/fp => 0:+-----+
32 * in _mcount() | x29 | -> instrumented function's fp
34 * | x30 | -> _mcount()'s lr (= instrumented function's pc)
35 * old sp => +16:+-----+
36 * when instrumented | |
37 * function calls | ... |
40 * instrumented => +xx:+-----+
41 * function's fp | x29 | -> parent's fp
43 * | x30 | -> instrumented function's lr (= parent's pc)
49 stp x29, x30, [sp, #-16]!
54 ldp x29, x30, [sp], #16
58 .macro mcount_adjust_addr rd, rn
59 sub \rd, \rn, #AARCH64_INSN_SIZE
62 /* for instrumented function's parent */
63 .macro mcount_get_parent_fp reg
68 /* for instrumented function */
69 .macro mcount_get_pc0 reg
70 mcount_adjust_addr \reg, x30
73 .macro mcount_get_pc reg
75 mcount_adjust_addr \reg, \reg
78 .macro mcount_get_lr reg
81 mcount_adjust_addr \reg, \reg
84 .macro mcount_get_lr_addr reg
89 #ifndef CONFIG_DYNAMIC_FTRACE
91 * void _mcount(unsigned long return_address)
92 * @return_address: return address to instrumented function
94 * This function makes calls, if enabled, to:
95 * - tracer function to probe instrumented function's entry,
96 * - ftrace_graph_caller to set up an exit hook
101 adrp x0, ftrace_trace_function
102 ldr x2, [x0, #:lo12:ftrace_trace_function]
104 cmp x0, x2 // if (ftrace_trace_function
105 b.eq skip_ftrace_call // != ftrace_stub) {
107 mcount_get_pc x0 // function's pc
108 mcount_get_lr x1 // function's lr (= parent's pc)
109 blr x2 // (*ftrace_trace_function)(pc, lr);
111 #ifndef CONFIG_FUNCTION_GRAPH_TRACER
112 skip_ftrace_call: // return;
115 mcount_exit // return;
118 adrp x1, ftrace_graph_return
119 ldr x2, [x1, #:lo12:ftrace_graph_return]
120 cmp x0, x2 // if ((ftrace_graph_return
121 b.ne ftrace_graph_caller // != ftrace_stub)
123 adrp x1, ftrace_graph_entry // || (ftrace_graph_entry
124 adrp x0, ftrace_graph_entry_stub // != ftrace_graph_entry_stub))
125 ldr x2, [x1, #:lo12:ftrace_graph_entry]
126 add x0, x0, #:lo12:ftrace_graph_entry_stub
128 b.ne ftrace_graph_caller // ftrace_graph_caller();
131 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */
134 #else /* CONFIG_DYNAMIC_FTRACE */
136 * _mcount() is used to build the kernel with -pg option, but all the branch
137 * instructions to _mcount() are replaced to NOP initially at kernel start up,
138 * and later on, NOP to branch to ftrace_caller() when enabled or branch to
139 * NOP when disabled per-function base.
146 * void ftrace_caller(unsigned long return_address)
147 * @return_address: return address to instrumented function
149 * This function is a counterpart of _mcount() in 'static' ftrace, and
151 * - tracer function to probe instrumented function's entry,
152 * - ftrace_graph_caller to set up an exit hook
157 mcount_get_pc0 x0 // function's pc
158 mcount_get_lr x1 // function's lr
161 ftrace_call: // tracer(pc, lr);
162 nop // This will be replaced with "bl xxx"
163 // where xxx can be any kind of tracer.
165 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
166 .global ftrace_graph_call
167 ftrace_graph_call: // ftrace_graph_caller();
168 nop // If enabled, this will be replaced
169 // "b ftrace_graph_caller"
173 ENDPROC(ftrace_caller)
174 #endif /* CONFIG_DYNAMIC_FTRACE */
180 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
181 /* save return value regs*/
182 .macro save_return_regs
185 stp x2, x3, [sp, #16]
186 stp x4, x5, [sp, #32]
187 stp x6, x7, [sp, #48]
190 /* restore return value regs*/
191 .macro restore_return_regs
193 ldp x2, x3, [sp, #16]
194 ldp x4, x5, [sp, #32]
195 ldp x6, x7, [sp, #48]
200 * void ftrace_graph_caller(void)
202 * Called from _mcount() or ftrace_caller() when function_graph tracer is
204 * This function w/ prepare_ftrace_return() fakes link register's value on
205 * the call stack in order to intercept instrumented function's return path
206 * and run return_to_handler() later on its exit.
208 ENTRY(ftrace_graph_caller)
209 mcount_get_lr_addr x0 // pointer to function's saved lr
210 mcount_get_pc x1 // function's pc
211 mcount_get_parent_fp x2 // parent's fp
212 bl prepare_ftrace_return // prepare_ftrace_return(&lr, pc, fp)
215 ENDPROC(ftrace_graph_caller)
218 * void return_to_handler(void)
220 * Run ftrace_return_to_handler() before going back to parent.
221 * @fp is checked against the value passed by ftrace_graph_caller()
222 * only when CONFIG_HAVE_FUNCTION_GRAPH_FP_TEST is enabled.
224 ENTRY(return_to_handler)
226 mov x0, x29 // parent's fp
227 bl ftrace_return_to_handler// addr = ftrace_return_to_hander(fp);
228 mov x30, x0 // restore the original return address
231 END(return_to_handler)
232 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */