Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | #include <linux/linkage.h> |
| 9 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | /* |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | .text |
David Miller | d05f5f9 | 2008-05-13 22:06:59 -0700 | [diff] [blame] | 16 | .align 32 |
| 17 | .globl _mcount |
| 18 | .type _mcount,#function |
| 19 | .globl mcount |
| 20 | .type mcount,#function |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | _mcount: |
David Miller | d05f5f9 | 2008-05-13 22:06:59 -0700 | [diff] [blame] | 22 | mcount: |
Steven Rostedt | 606576c | 2008-10-06 19:06:12 -0400 | [diff] [blame] | 23 | #ifdef CONFIG_FUNCTION_TRACER |
David Miller | d05f5f9 | 2008-05-13 22:06:59 -0700 | [diff] [blame] | 24 | #ifdef CONFIG_DYNAMIC_FTRACE |
David S. Miller | 63b7549 | 2010-04-12 22:35:24 -0700 | [diff] [blame] | 25 | /* Do nothing, the retl/nop below is all we need. */ |
David Miller | d05f5f9 | 2008-05-13 22:06:59 -0700 | [diff] [blame] | 26 | #else |
David S. Miller | 63b7549 | 2010-04-12 22:35:24 -0700 | [diff] [blame] | 27 | 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 Miller | d05f5f9 | 2008-05-13 22:06:59 -0700 | [diff] [blame] | 31 | 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 |
| 36 | mov %i7, %o1 |
| 37 | jmpl %g1, %g0 |
| 38 | mov %o7, %o0 |
| 39 | /* not reached */ |
| 40 | 1: |
| 41 | #endif |
| 42 | #endif |
| 43 | retl |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | nop |
David Miller | d05f5f9 | 2008-05-13 22:06:59 -0700 | [diff] [blame] | 45 | .size _mcount,.-_mcount |
| 46 | .size mcount,.-mcount |
| 47 | |
Steven Rostedt | 606576c | 2008-10-06 19:06:12 -0400 | [diff] [blame] | 48 | #ifdef CONFIG_FUNCTION_TRACER |
David Miller | d05f5f9 | 2008-05-13 22:06:59 -0700 | [diff] [blame] | 49 | .globl ftrace_stub |
| 50 | .type ftrace_stub,#function |
| 51 | ftrace_stub: |
| 52 | retl |
| 53 | nop |
| 54 | .size ftrace_stub,.-ftrace_stub |
| 55 | #ifdef CONFIG_DYNAMIC_FTRACE |
| 56 | .globl ftrace_caller |
| 57 | .type ftrace_caller,#function |
| 58 | ftrace_caller: |
David S. Miller | 63b7549 | 2010-04-12 22:35:24 -0700 | [diff] [blame] | 59 | sethi %hi(function_trace_stop), %g1 |
David Miller | d05f5f9 | 2008-05-13 22:06:59 -0700 | [diff] [blame] | 60 | mov %i7, %o1 |
David S. Miller | 63b7549 | 2010-04-12 22:35:24 -0700 | [diff] [blame] | 61 | lduw [%g1 + %lo(function_trace_stop)], %g2 |
| 62 | brnz,pn %g2, ftrace_stub |
| 63 | mov %o7, %o0 |
David Miller | d05f5f9 | 2008-05-13 22:06:59 -0700 | [diff] [blame] | 64 | .globl ftrace_call |
| 65 | ftrace_call: |
David S. Miller | 63b7549 | 2010-04-12 22:35:24 -0700 | [diff] [blame] | 66 | /* If the final kernel link ever turns on relaxation, we'll need |
| 67 | * to do something about this tail call. Otherwise the linker |
| 68 | * will rewrite the call into a branch and nop out the move |
| 69 | * instruction. |
| 70 | */ |
David Miller | d05f5f9 | 2008-05-13 22:06:59 -0700 | [diff] [blame] | 71 | call ftrace_stub |
| 72 | mov %o0, %o7 |
| 73 | retl |
| 74 | nop |
David S. Miller | 63b7549 | 2010-04-12 22:35:24 -0700 | [diff] [blame] | 75 | .size ftrace_call,.-ftrace_call |
David Miller | d05f5f9 | 2008-05-13 22:06:59 -0700 | [diff] [blame] | 76 | .size ftrace_caller,.-ftrace_caller |
| 77 | #endif |
| 78 | #endif |