6c9469050f4c0c8cbaa8b2a59775949969ac5036
[linux-2.6-microblaze.git] / arch / riscv / kernel / mcount.S
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /* Copyright (C) 2017 Andes Technology Corporation */
3
4 #include <linux/init.h>
5 #include <linux/linkage.h>
6 #include <linux/cfi_types.h>
7 #include <asm/asm.h>
8 #include <asm/csr.h>
9 #include <asm/unistd.h>
10 #include <asm/thread_info.h>
11 #include <asm/asm-offsets.h>
12 #include <asm-generic/export.h>
13 #include <asm/ftrace.h>
14
15         .text
16
17         .macro SAVE_ABI_STATE
18         addi    sp, sp, -16
19         REG_S   s0, 0*SZREG(sp)
20         REG_S   ra, 1*SZREG(sp)
21         addi    s0, sp, 16
22         .endm
23
24         /*
25          * The call to ftrace_return_to_handler would overwrite the return
26          * register if a0 was not saved.
27          */
28         .macro SAVE_RET_ABI_STATE
29         addi    sp, sp, -4*SZREG
30         REG_S   s0, 2*SZREG(sp)
31         REG_S   ra, 3*SZREG(sp)
32         REG_S   a0, 1*SZREG(sp)
33         REG_S   a1, 0*SZREG(sp)
34         addi    s0, sp, 4*SZREG
35         .endm
36
37         .macro RESTORE_ABI_STATE
38         REG_L   ra, 1*SZREG(sp)
39         REG_L   s0, 0*SZREG(sp)
40         addi    sp, sp, 16
41         .endm
42
43         .macro RESTORE_RET_ABI_STATE
44         REG_L   ra, 3*SZREG(sp)
45         REG_L   s0, 2*SZREG(sp)
46         REG_L   a0, 1*SZREG(sp)
47         REG_L   a1, 0*SZREG(sp)
48         addi    sp, sp, 4*SZREG
49         .endm
50
51 SYM_TYPED_FUNC_START(ftrace_stub)
52 #ifdef CONFIG_DYNAMIC_FTRACE
53        .global MCOUNT_NAME
54        .set    MCOUNT_NAME, ftrace_stub
55 #endif
56         ret
57 SYM_FUNC_END(ftrace_stub)
58
59 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
60 ENTRY(return_to_handler)
61 /*
62  * On implementing the frame point test, the ideal way is to compare the
63  * s0 (frame pointer, if enabled) on entry and the sp (stack pointer) on return.
64  * However, the psABI of variable-length-argument functions does not allow this.
65  *
66  * So alternatively we check the *old* frame pointer position, that is, the
67  * value stored in -16(s0) on entry, and the s0 on return.
68  */
69         SAVE_RET_ABI_STATE
70         mv      a0, sp
71         call    ftrace_return_to_handler
72         mv      a2, a0
73         RESTORE_RET_ABI_STATE
74         jalr    a2
75 ENDPROC(return_to_handler)
76 #endif
77
78 #ifndef CONFIG_DYNAMIC_FTRACE
79 ENTRY(MCOUNT_NAME)
80         la      t4, ftrace_stub
81 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
82         la      t0, ftrace_graph_return
83         REG_L   t1, 0(t0)
84         bne     t1, t4, do_ftrace_graph_caller
85
86         la      t3, ftrace_graph_entry
87         REG_L   t2, 0(t3)
88         la      t6, ftrace_graph_entry_stub
89         bne     t2, t6, do_ftrace_graph_caller
90 #endif
91         la      t3, ftrace_trace_function
92         REG_L   t5, 0(t3)
93         bne     t5, t4, do_trace
94         ret
95
96 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
97 /*
98  * A pseudo representation for the function graph tracer:
99  * prepare_to_return(&ra_to_caller_of_caller, ra_to_caller)
100  */
101 do_ftrace_graph_caller:
102         addi    a0, s0, -SZREG
103         mv      a1, ra
104 #ifdef HAVE_FUNCTION_GRAPH_FP_TEST
105         REG_L   a2, -2*SZREG(s0)
106 #endif
107         SAVE_ABI_STATE
108         call    prepare_ftrace_return
109         RESTORE_ABI_STATE
110         ret
111 #endif
112
113 /*
114  * A pseudo representation for the function tracer:
115  * (*ftrace_trace_function)(ra_to_caller, ra_to_caller_of_caller)
116  */
117 do_trace:
118         REG_L   a1, -SZREG(s0)
119         mv      a0, ra
120
121         SAVE_ABI_STATE
122         jalr    t5
123         RESTORE_ABI_STATE
124         ret
125 ENDPROC(MCOUNT_NAME)
126 #endif
127 EXPORT_SYMBOL(MCOUNT_NAME)