diff options
author | Matt Fleming <mjf@gentoo.org> | 2008-11-12 06:11:47 -0500 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2008-12-22 04:42:52 -0500 |
commit | fad57feba77d2e5b183e068cb6b90693e4567b40 (patch) | |
tree | 478788d5a05a30f638540d345e9d09c5733687da /arch/sh/lib | |
parent | ef6aff6884408db95ceb0f678f583536e0bd48f8 (diff) |
sh: dynamic ftrace support.
First cut at dynamic ftrace support.
Signed-off-by: Matt Fleming <mjf@gentoo.org>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/lib')
-rw-r--r-- | arch/sh/lib/Makefile | 1 | ||||
-rw-r--r-- | arch/sh/lib/mcount.S | 90 |
2 files changed, 91 insertions, 0 deletions
diff --git a/arch/sh/lib/Makefile b/arch/sh/lib/Makefile index 8596cc78e18d..596421821d08 100644 --- a/arch/sh/lib/Makefile +++ b/arch/sh/lib/Makefile | |||
@@ -11,6 +11,7 @@ memcpy-y := memcpy.o | |||
11 | memcpy-$(CONFIG_CPU_SH4) := memcpy-sh4.o | 11 | memcpy-$(CONFIG_CPU_SH4) := memcpy-sh4.o |
12 | 12 | ||
13 | lib-$(CONFIG_MMU) += copy_page.o clear_page.o | 13 | lib-$(CONFIG_MMU) += copy_page.o clear_page.o |
14 | lib-$(CONFIG_FUNCTION_TRACER) += mcount.o | ||
14 | lib-y += $(memcpy-y) | 15 | lib-y += $(memcpy-y) |
15 | 16 | ||
16 | EXTRA_CFLAGS += -Werror | 17 | EXTRA_CFLAGS += -Werror |
diff --git a/arch/sh/lib/mcount.S b/arch/sh/lib/mcount.S new file mode 100644 index 000000000000..110fbfe1831f --- /dev/null +++ b/arch/sh/lib/mcount.S | |||
@@ -0,0 +1,90 @@ | |||
1 | /* | ||
2 | * arch/sh/lib/mcount.S | ||
3 | * | ||
4 | * Copyright (C) 2008 Paul Mundt | ||
5 | * Copyright (C) 2008 Matt Fleming | ||
6 | * | ||
7 | * This file is subject to the terms and conditions of the GNU General Public | ||
8 | * License. See the file "COPYING" in the main directory of this archive | ||
9 | * for more details. | ||
10 | */ | ||
11 | #include <asm/ftrace.h> | ||
12 | |||
13 | #define MCOUNT_ENTER() \ | ||
14 | mov.l r4, @-r15; \ | ||
15 | mov.l r5, @-r15; \ | ||
16 | mov.l r6, @-r15; \ | ||
17 | mov.l r7, @-r15; \ | ||
18 | sts.l pr, @-r15; \ | ||
19 | \ | ||
20 | mov.l @(20,r15),r4; \ | ||
21 | sts pr, r5 | ||
22 | |||
23 | #define MCOUNT_LEAVE() \ | ||
24 | lds.l @r15+, pr; \ | ||
25 | mov.l @r15+, r7; \ | ||
26 | mov.l @r15+, r6; \ | ||
27 | mov.l @r15+, r5; \ | ||
28 | rts; \ | ||
29 | mov.l @r15+, r4 | ||
30 | |||
31 | .align 2 | ||
32 | .globl _mcount | ||
33 | .type _mcount,@function | ||
34 | .globl mcount | ||
35 | .type mcount,@function | ||
36 | _mcount: | ||
37 | mcount: | ||
38 | MCOUNT_ENTER() | ||
39 | |||
40 | #ifdef CONFIG_DYNAMIC_FTRACE | ||
41 | .globl mcount_call | ||
42 | mcount_call: | ||
43 | mov.l .Lftrace_stub, r6 | ||
44 | #else | ||
45 | mov.l .Lftrace_trace_function, r6 | ||
46 | mov.l ftrace_stub, r7 | ||
47 | cmp/eq r6, r7 | ||
48 | bt skip_trace | ||
49 | mov.l @r6, r6 | ||
50 | #endif | ||
51 | |||
52 | jsr @r6 | ||
53 | nop | ||
54 | |||
55 | skip_trace: | ||
56 | MCOUNT_LEAVE() | ||
57 | |||
58 | .align 2 | ||
59 | .Lftrace_trace_function: | ||
60 | .long ftrace_trace_function | ||
61 | |||
62 | #ifdef CONFIG_DYNAMIC_FTRACE | ||
63 | .globl ftrace_caller | ||
64 | ftrace_caller: | ||
65 | MCOUNT_ENTER() | ||
66 | |||
67 | .globl ftrace_call | ||
68 | ftrace_call: | ||
69 | mov.l .Lftrace_stub, r6 | ||
70 | jsr @r6 | ||
71 | nop | ||
72 | |||
73 | MCOUNT_LEAVE() | ||
74 | #endif /* CONFIG_DYNAMIC_FTRACE */ | ||
75 | |||
76 | /* | ||
77 | * NOTE: From here on the locations of the .Lftrace_stub label and | ||
78 | * ftrace_stub itself are fixed. Adding additional data here will skew | ||
79 | * the displacement for the memory table and break the block replacement. | ||
80 | * Place new labels either after the ftrace_stub body, or before | ||
81 | * ftrace_caller. You have been warned. | ||
82 | */ | ||
83 | .align 2 | ||
84 | .Lftrace_stub: | ||
85 | .long ftrace_stub | ||
86 | |||
87 | .globl ftrace_stub | ||
88 | ftrace_stub: | ||
89 | rts | ||
90 | nop | ||