diff options
author | Rabin Vincent <rabin@rab.in> | 2010-08-03 12:09:40 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2010-08-10 17:10:52 -0400 |
commit | 686ff22812d908eaa537edd62fb1eb3d64336301 (patch) | |
tree | eaf5562ab54583f079901650e2f8f2e68417cca1 /arch/arm/kernel | |
parent | 28e192d6e5711477c177918d0661f31836ef72a5 (diff) |
ARM: 6288/1: ftrace: document mcount formats
Add a comment describing the mcount variants and how the callsites look
like.
Acked-by: Frederic Weisbecker <fweisbec@gmail.com>
Signed-off-by: Rabin Vincent <rabin@rab.in>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/kernel')
-rw-r--r-- | arch/arm/kernel/entry-common.S | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/arch/arm/kernel/entry-common.S b/arch/arm/kernel/entry-common.S index 0b042bdb11bf..f05a35a59694 100644 --- a/arch/arm/kernel/entry-common.S +++ b/arch/arm/kernel/entry-common.S | |||
@@ -92,6 +92,42 @@ ENDPROC(ret_from_fork) | |||
92 | #define CALL(x) .long x | 92 | #define CALL(x) .long x |
93 | 93 | ||
94 | #ifdef CONFIG_FUNCTION_TRACER | 94 | #ifdef CONFIG_FUNCTION_TRACER |
95 | /* | ||
96 | * When compiling with -pg, gcc inserts a call to the mcount routine at the | ||
97 | * start of every function. In mcount, apart from the function's address (in | ||
98 | * lr), we need to get hold of the function's caller's address. | ||
99 | * | ||
100 | * Older GCCs (pre-4.4) inserted a call to a routine called mcount like this: | ||
101 | * | ||
102 | * bl mcount | ||
103 | * | ||
104 | * These versions have the limitation that in order for the mcount routine to | ||
105 | * be able to determine the function's caller's address, an APCS-style frame | ||
106 | * pointer (which is set up with something like the code below) is required. | ||
107 | * | ||
108 | * mov ip, sp | ||
109 | * push {fp, ip, lr, pc} | ||
110 | * sub fp, ip, #4 | ||
111 | * | ||
112 | * With EABI, these frame pointers are not available unless -mapcs-frame is | ||
113 | * specified, and if building as Thumb-2, not even then. | ||
114 | * | ||
115 | * Newer GCCs (4.4+) solve this problem by introducing a new version of mcount, | ||
116 | * with call sites like: | ||
117 | * | ||
118 | * push {lr} | ||
119 | * bl __gnu_mcount_nc | ||
120 | * | ||
121 | * With these compilers, frame pointers are not necessary. | ||
122 | * | ||
123 | * mcount can be thought of as a function called in the middle of a subroutine | ||
124 | * call. As such, it needs to be transparent for both the caller and the | ||
125 | * callee: the original lr needs to be restored when leaving mcount, and no | ||
126 | * registers should be clobbered. (In the __gnu_mcount_nc implementation, we | ||
127 | * clobber the ip register. This is OK because the ARM calling convention | ||
128 | * allows it to be clobbered in subroutines and doesn't use it to hold | ||
129 | * parameters.) | ||
130 | */ | ||
95 | #ifdef CONFIG_DYNAMIC_FTRACE | 131 | #ifdef CONFIG_DYNAMIC_FTRACE |
96 | ENTRY(mcount) | 132 | ENTRY(mcount) |
97 | stmdb sp!, {r0-r3, lr} | 133 | stmdb sp!, {r0-r3, lr} |