aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/include/asm/ftrace.h
diff options
context:
space:
mode:
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>2009-07-21 04:56:27 -0400
committerRussell King <rmk+kernel@arm.linux.org.uk>2009-07-21 12:21:28 -0400
commit4bf1fa5a34aa2dd0d2cc58f0fc213a2e22d007a4 (patch)
tree5618012a57263bf81e3e2678b622be948e4171b0 /arch/arm/include/asm/ftrace.h
parent6a00cded91532f3d58e07729ba56269339281d8e (diff)
[ARM] 5613/1: implement CALLER_ADDRESSx
From: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> As __builtin_return_address(n) doesn't work for ARM with n > 0, the kernel needs its own implementation. This fixes many warnings saying: warning: unsupported argument to '__builtin_return_address' The new methods and walk_stackframe must not be instrumented because CALLER_ADDRESSx is used in the various tracers and tracing the tracer is a bad idea. What's currently missing is an implementation using unwind tables. This is not fatal though, it's just that the tracers don't get enough information to be really useful. Note that if both ARM_UNWIND and FRAME_POINTER are enabled, walk_stackframe uses unwind information. So in this case the same implementation is used as when FRAME_POINTER is disabled. Cc: Catalin Marinas <catalin.marinas@arm.com> Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/include/asm/ftrace.h')
-rw-r--r--arch/arm/include/asm/ftrace.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/arch/arm/include/asm/ftrace.h b/arch/arm/include/asm/ftrace.h
index 39c8bc1a006a..d74265cffd86 100644
--- a/arch/arm/include/asm/ftrace.h
+++ b/arch/arm/include/asm/ftrace.h
@@ -11,4 +11,38 @@ extern void mcount(void);
11 11
12#endif 12#endif
13 13
14#ifndef __ASSEMBLY__
15
16#if defined(CONFIG_FRAME_POINTER) && !defined(CONFIG_ARM_UNWIND)
17/*
18 * return_address uses walk_stackframe to do it's work. If both
19 * CONFIG_FRAME_POINTER=y and CONFIG_ARM_UNWIND=y walk_stackframe uses unwind
20 * information. For this to work in the function tracer many functions would
21 * have to be marked with __notrace. So for now just depend on
22 * !CONFIG_ARM_UNWIND.
23 */
24
25void *return_address(unsigned int);
26
27#else
28
29extern inline void *return_address(unsigned int level)
30{
31 return NULL;
32}
33
34#endif
35
36#define HAVE_ARCH_CALLER_ADDR
37
38#define CALLER_ADDR0 ((unsigned long)__builtin_return_address(0))
39#define CALLER_ADDR1 ((unsigned long)return_address(1))
40#define CALLER_ADDR2 ((unsigned long)return_address(2))
41#define CALLER_ADDR3 ((unsigned long)return_address(3))
42#define CALLER_ADDR4 ((unsigned long)return_address(4))
43#define CALLER_ADDR5 ((unsigned long)return_address(5))
44#define CALLER_ADDR6 ((unsigned long)return_address(6))
45
46#endif /* ifndef __ASSEMBLY__ */
47
14#endif /* _ASM_ARM_FTRACE */ 48#endif /* _ASM_ARM_FTRACE */