-
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: 160782 b: refs/heads/master c: 4bf1fa5 h: refs/heads/master v: v3
- Loading branch information
Uwe Kleine-König
authored and
Russell King
committed
Jul 21, 2009
1 parent
b308eaf
commit 15e7d8b
Showing
5 changed files
with
111 additions
and
4 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: 6a00cded91532f3d58e07729ba56269339281d8e | ||
refs/heads/master: 4bf1fa5a34aa2dd0d2cc58f0fc213a2e22d007a4 |
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,71 @@ | ||
/* | ||
* arch/arm/kernel/return_address.c | ||
* | ||
* Copyright (C) 2009 Uwe Kleine-Koenig <u.kleine-koenig@pengutronix.de> | ||
* for Pengutronix | ||
* | ||
* This program is free software; you can redistribute it and/or modify it | ||
* under the terms of the GNU General Public License version 2 as published by | ||
* the Free Software Foundation. | ||
*/ | ||
#include <linux/module.h> | ||
|
||
#if defined(CONFIG_FRAME_POINTER) && !defined(CONFIG_ARM_UNWIND) | ||
#include <linux/sched.h> | ||
|
||
#include <asm/stacktrace.h> | ||
|
||
struct return_address_data { | ||
unsigned int level; | ||
void *addr; | ||
}; | ||
|
||
static int save_return_addr(struct stackframe *frame, void *d) | ||
{ | ||
struct return_address_data *data = d; | ||
|
||
if (!data->level) { | ||
data->addr = (void *)frame->lr; | ||
|
||
return 1; | ||
} else { | ||
--data->level; | ||
return 0; | ||
} | ||
} | ||
|
||
void *return_address(unsigned int level) | ||
{ | ||
struct return_address_data data; | ||
struct stackframe frame; | ||
register unsigned long current_sp asm ("sp"); | ||
|
||
data.level = level + 1; | ||
|
||
frame.fp = (unsigned long)__builtin_frame_address(0); | ||
frame.sp = current_sp; | ||
frame.lr = (unsigned long)__builtin_return_address(0); | ||
frame.pc = (unsigned long)return_address; | ||
|
||
walk_stackframe(&frame, save_return_addr, &data); | ||
|
||
if (!data.level) | ||
return data.addr; | ||
else | ||
return NULL; | ||
} | ||
|
||
#else /* if defined(CONFIG_FRAME_POINTER) && !defined(CONFIG_ARM_UNWIND) */ | ||
|
||
#if defined(CONFIG_ARM_UNWIND) | ||
#warning "TODO: return_address should use unwind tables" | ||
#endif | ||
|
||
void *return_address(unsigned int level) | ||
{ | ||
return NULL; | ||
} | ||
|
||
#endif /* if defined(CONFIG_FRAME_POINTER) && !defined(CONFIG_ARM_UNWIND) / else */ | ||
|
||
EXPORT_SYMBOL_GPL(return_address); |
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