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/regdef.h>
14 #include <asm/stackframe.h>
15 #include <asm/ftrace.h>
21 .macro MCOUNT_SAVE_REGS
37 .macro MCOUNT_RESTORE_REGS
59 * The -mmcount-ra-address option of gcc 4.5 uses register $12 to pass
60 * the location of the parent's return address.
62 #define MCOUNT_RA_ADDRESS_REG $12
64 #ifdef CONFIG_DYNAMIC_FTRACE
66 NESTED(ftrace_caller, PT_SIZE, ra)
76 /* When tracing is activated, it calls ftrace_caller+8 (aka here) */
77 lw t1, function_trace_stop
82 #ifdef KBUILD_MCOUNT_RA_ADDRESS
83 PTR_S MCOUNT_RA_ADDRESS_REG, PT_R12(sp)
86 move a0, ra /* arg1: self return address */
89 nop /* a placeholder for the call to a real tracing function */
90 move a1, AT /* arg2: parent's return address */
92 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
93 .globl ftrace_graph_call
105 #else /* ! CONFIG_DYNAMIC_FTRACE */
107 NESTED(_mcount, PT_SIZE, ra)
108 lw t1, function_trace_stop
111 PTR_LA t1, ftrace_stub
112 PTR_L t2, ftrace_trace_function /* Prepare t2 for (1) */
113 bne t1, t2, static_trace
116 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
117 PTR_L t3, ftrace_graph_return
118 bne t1, t3, ftrace_graph_caller
120 PTR_LA t1, ftrace_graph_entry_stub
121 PTR_L t3, ftrace_graph_entry
122 bne t1, t3, ftrace_graph_caller
131 move a0, ra /* arg1: self return address */
132 jalr t2 /* (1) call *ftrace_trace_function */
133 move a1, AT /* arg2: parent's return address */
141 #endif /* ! CONFIG_DYNAMIC_FTRACE */
143 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
145 NESTED(ftrace_graph_caller, PT_SIZE, ra)
146 #ifndef CONFIG_DYNAMIC_FTRACE
150 /* arg1: Get the location of the parent's return address */
151 #ifdef KBUILD_MCOUNT_RA_ADDRESS
152 #ifdef CONFIG_DYNAMIC_FTRACE
155 move a0, MCOUNT_RA_ADDRESS_REG
157 bnez a0, 1f /* non-leaf func: stored in MCOUNT_RA_ADDRESS_REG */
160 PTR_LA a0, PT_R1(sp) /* leaf func: the location in current stack */
163 /* arg2: Get self return address */
164 #ifdef CONFIG_DYNAMIC_FTRACE
170 /* arg3: Get frame pointer of current stack */
171 #ifdef CONFIG_FRAME_POINTER
173 #else /* ! CONFIG_FRAME_POINTER */
175 PTR_LA a2, PT_SIZE(sp)
177 PTR_LA a2, (PT_SIZE+8)(sp)
181 jal prepare_ftrace_return
185 END(ftrace_graph_caller)
188 .globl return_to_handler
193 jal ftrace_return_to_handler
196 /* restore the real parent address: v0 -> ra */
202 PTR_ADDIU sp, PT_SIZE
203 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */