-
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.
yaml --- r: 157446 b: refs/heads/master c: 6ac2a4d h: refs/heads/master v: v3
- Loading branch information
Martin Schwidefsky
committed
Sep 11, 2009
1 parent
0cc5cfb
commit 15c40cf
Showing
4 changed files
with
90 additions
and
139 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 04efc3be767cfed0d348fd598eba8fe5f5bf5fe6 | ||
refs/heads/master: 6ac2a4ddd10d6916785b4c566d521025c855f823 |
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 |