2 * MIPS specific _mcount support
4 * This file is subject to the terms and conditions of the GNU General Public
5 * License. See the file "COPYING" in the main directory of this archive for
8 * Copyright (C) 2009 Lemote Inc. & DSLab, Lanzhou University, China
9 * Copyright (C) 2010 DSLab, Lanzhou University, China
10 * Author: Wu Zhangjin <wuzhangjin@gmail.com>
13 #include <asm/export.h>
14 #include <asm/regdef.h>
15 #include <asm/stackframe.h>
16 #include <asm/ftrace.h>
22 .macro MCOUNT_SAVE_REGS
38 .macro MCOUNT_RESTORE_REGS
60 * The -mmcount-ra-address option of gcc 4.5 uses register $12 to pass
61 * the location of the parent's return address.
63 #define MCOUNT_RA_ADDRESS_REG $12
65 #ifdef CONFIG_DYNAMIC_FTRACE
67 NESTED(ftrace_caller, PT_SIZE, ra)
70 EXPORT_SYMBOL(_mcount)
78 /* When tracing is activated, it calls ftrace_caller+8 (aka here) */
80 #ifdef KBUILD_MCOUNT_RA_ADDRESS
81 PTR_S MCOUNT_RA_ADDRESS_REG, PT_R12(sp)
84 PTR_SUBU a0, ra, 8 /* arg1: self address */
86 sltu t2, a0, t1 /* t2 = (a0 < _stext) */
88 sltu t3, t1, a0 /* t3 = (a0 > _etext) */
92 #if defined(KBUILD_MCOUNT_RA_ADDRESS) && defined(CONFIG_32BIT)
93 PTR_SUBU a0, a0, 16 /* arg1: adjust to module's recorded callsite */
100 nop /* a placeholder for the call to a real tracing function */
101 move a1, AT /* arg2: parent's return address */
103 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
104 .globl ftrace_graph_call
116 #else /* ! CONFIG_DYNAMIC_FTRACE */
118 NESTED(_mcount, PT_SIZE, ra)
119 EXPORT_SYMBOL(_mcount)
120 PTR_LA t1, ftrace_stub
121 PTR_L t2, ftrace_trace_function /* Prepare t2 for (1) */
122 bne t1, t2, static_trace
125 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
126 PTR_L t3, ftrace_graph_return
127 bne t1, t3, ftrace_graph_caller
129 PTR_LA t1, ftrace_graph_entry_stub
130 PTR_L t3, ftrace_graph_entry
131 bne t1, t3, ftrace_graph_caller
144 move a0, ra /* arg1: self return address */
145 jalr t2 /* (1) call *ftrace_trace_function */
146 move a1, AT /* arg2: parent's return address */
157 #endif /* ! CONFIG_DYNAMIC_FTRACE */
159 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
161 NESTED(ftrace_graph_caller, PT_SIZE, ra)
162 #ifndef CONFIG_DYNAMIC_FTRACE
166 /* arg1: Get the location of the parent's return address */
167 #ifdef KBUILD_MCOUNT_RA_ADDRESS
168 #ifdef CONFIG_DYNAMIC_FTRACE
171 move a0, MCOUNT_RA_ADDRESS_REG
173 bnez a0, 1f /* non-leaf func: stored in MCOUNT_RA_ADDRESS_REG */
176 PTR_LA a0, PT_R1(sp) /* leaf func: the location in current stack */
179 /* arg2: Get self return address */
180 #ifdef CONFIG_DYNAMIC_FTRACE
186 /* arg3: Get frame pointer of current stack */
188 PTR_LA a2, PT_SIZE(sp)
190 PTR_LA a2, (PT_SIZE+8)(sp)
193 jal prepare_ftrace_return
196 #ifndef CONFIG_DYNAMIC_FTRACE
202 END(ftrace_graph_caller)
205 .globl return_to_handler
210 jal ftrace_return_to_handler
213 /* restore the real parent address: v0 -> ra */
219 PTR_ADDIU sp, PT_SIZE
220 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */