-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move the 64 bit mount code from mcount.S into mcount64.S and avoid code duplication. Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
- Loading branch information
Martin Schwidefsky
committed
Sep 11, 2009
1 parent
04efc3b
commit 6ac2a4d
Showing
3 changed files
with
89 additions
and
138 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
/* | ||
* Copyright IBM Corp. 2008,2009 | ||
* | ||
* Author(s): Heiko Carstens <heiko.carstens@de.ibm.com>, | ||
* | ||
*/ | ||
|
||
#include <asm/asm-offsets.h> | ||
|
||
.globl ftrace_stub | ||
ftrace_stub: | ||
br %r14 | ||
|
||
.globl _mcount | ||
_mcount: | ||
#ifdef CONFIG_DYNAMIC_FTRACE | ||
br %r14 | ||
|
||
.data | ||
.globl ftrace_dyn_func | ||
ftrace_dyn_func: | ||
.quad ftrace_stub | ||
.previous | ||
|
||
.globl ftrace_caller | ||
ftrace_caller: | ||
#endif | ||
larl %r1,function_trace_stop | ||
icm %r1,0xf,0(%r1) | ||
bnzr %r14 | ||
stmg %r2,%r5,32(%r15) | ||
stg %r14,112(%r15) | ||
lgr %r1,%r15 | ||
aghi %r15,-160 | ||
stg %r1,__SF_BACKCHAIN(%r15) | ||
lgr %r2,%r14 | ||
lg %r3,168(%r15) | ||
#ifdef CONFIG_DYNAMIC_FTRACE | ||
larl %r14,ftrace_dyn_func | ||
#else | ||
larl %r14,ftrace_trace_function | ||
#endif | ||
lg %r14,0(%r14) | ||
basr %r14,%r14 | ||
#ifdef CONFIG_FUNCTION_GRAPH_TRACER | ||
#ifdef CONFIG_DYNAMIC_FTRACE | ||
.globl ftrace_graph_caller | ||
ftrace_graph_caller: | ||
# This unconditional branch gets runtime patched. Change only if | ||
# you know what you are doing. See ftrace_enable_graph_caller(). | ||
j 0f | ||
#endif | ||
lg %r2,272(%r15) | ||
lg %r3,168(%r15) | ||
brasl %r14,prepare_ftrace_return | ||
stg %r2,168(%r15) | ||
0: | ||
#endif | ||
aghi %r15,160 | ||
lmg %r2,%r5,32(%r15) | ||
lg %r14,112(%r15) | ||
br %r14 | ||
|
||
#ifdef CONFIG_FUNCTION_GRAPH_TRACER | ||
|
||
.globl return_to_handler | ||
return_to_handler: | ||
stmg %r2,%r5,32(%r15) | ||
lgr %r1,%r15 | ||
aghi %r15,-160 | ||
stg %r1,__SF_BACKCHAIN(%r15) | ||
brasl %r14,ftrace_return_to_handler | ||
aghi %r15,160 | ||
lgr %r14,%r2 | ||
lmg %r2,%r5,32(%r15) | ||
br %r14 | ||
|
||
#endif |