blob: 153c80e62cf192bd327b618d2d74908fea0c5444 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (C) 2000 Anton Blanchard (anton@linuxcare.com)
3 *
4 * This file implements mcount(), which is used to collect profiling data.
5 * This can also be tweaked for kernel stack overflow detection.
6 */
7
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <linux/linkage.h>
9
Linus Torvalds1da177e2005-04-16 15:20:36 -070010/*
11 * This is the main variant and is called by C code. GCC's -pg option
12 * automatically instruments every C function with a call to this.
13 */
14
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 .text
David Millerd05f5f92008-05-13 22:06:59 -070016 .align 32
17 .globl _mcount
18 .type _mcount,#function
19 .globl mcount
20 .type mcount,#function
Linus Torvalds1da177e2005-04-16 15:20:36 -070021_mcount:
David Millerd05f5f92008-05-13 22:06:59 -070022mcount:
Steven Rostedt606576c2008-10-06 19:06:12 -040023#ifdef CONFIG_FUNCTION_TRACER
David Millerd05f5f92008-05-13 22:06:59 -070024#ifdef CONFIG_DYNAMIC_FTRACE
David S. Miller63b75492010-04-12 22:35:24 -070025 /* Do nothing, the retl/nop below is all we need. */
David Millerd05f5f92008-05-13 22:06:59 -070026#else
David S. Miller63b75492010-04-12 22:35:24 -070027 sethi %hi(function_trace_stop), %g1
28 lduw [%g1 + %lo(function_trace_stop)], %g2
29 brnz,pn %g2, 1f
30 sethi %hi(ftrace_trace_function), %g1
David Millerd05f5f92008-05-13 22:06:59 -070031 sethi %hi(ftrace_stub), %g2
32 ldx [%g1 + %lo(ftrace_trace_function)], %g1
33 or %g2, %lo(ftrace_stub), %g2
34 cmp %g1, %g2
35 be,pn %icc, 1f
David S. Millera71d1d62010-04-06 19:59:46 -070036 mov %i7, %g2
37 save %sp, -128, %sp
38 mov %g2, %o1
39 jmpl %g1, %o7
40 mov %i7, %o0
41 ret
42 restore
David Millerd05f5f92008-05-13 22:06:59 -070043 /* not reached */
441:
45#endif
46#endif
47 retl
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 nop
David Millerd05f5f92008-05-13 22:06:59 -070049 .size _mcount,.-_mcount
50 .size mcount,.-mcount
51
Steven Rostedt606576c2008-10-06 19:06:12 -040052#ifdef CONFIG_FUNCTION_TRACER
David Millerd05f5f92008-05-13 22:06:59 -070053 .globl ftrace_stub
54 .type ftrace_stub,#function
55ftrace_stub:
56 retl
57 nop
58 .size ftrace_stub,.-ftrace_stub
59#ifdef CONFIG_DYNAMIC_FTRACE
60 .globl ftrace_caller
61 .type ftrace_caller,#function
62ftrace_caller:
David S. Miller63b75492010-04-12 22:35:24 -070063 sethi %hi(function_trace_stop), %g1
David S. Millera71d1d62010-04-06 19:59:46 -070064 mov %i7, %g2
65 lduw [%g1 + %lo(function_trace_stop)], %g3
66 brnz,pn %g3, ftrace_stub
67 nop
68 save %sp, -128, %sp
69 mov %g2, %o1
David Millerd05f5f92008-05-13 22:06:59 -070070 .globl ftrace_call
71ftrace_call:
72 call ftrace_stub
David S. Millera71d1d62010-04-06 19:59:46 -070073 mov %i7, %o0
74 ret
75 restore
David S. Miller63b75492010-04-12 22:35:24 -070076 .size ftrace_call,.-ftrace_call
David Millerd05f5f92008-05-13 22:06:59 -070077 .size ftrace_caller,.-ftrace_caller
78#endif
79#endif