summaryrefslogtreecommitdiffstats
path: root/runtime/stack-x86_64.c
diff options
context:
space:
mode:
authorDave Brolley <brolley@redhat.com>2009-12-17 16:59:26 -0500
committerDave Brolley <brolley@redhat.com>2009-12-17 16:59:26 -0500
commit6dd4e32114264ccda20395cb07bb877de3c062b2 (patch)
tree6ea4eb4e631df7832c07eafeda2ca4031870b335 /runtime/stack-x86_64.c
parent089ed967ce3894c3569091db70db423a5316b04e (diff)
parent4180475982d87f720897baa6f988a48b4c654ee5 (diff)
downloadsystemtap-steved-6dd4e32114264ccda20395cb07bb877de3c062b2.tar.gz
systemtap-steved-6dd4e32114264ccda20395cb07bb877de3c062b2.tar.xz
systemtap-steved-6dd4e32114264ccda20395cb07bb877de3c062b2.zip
Merge branch 'master' of ssh://sources.redhat.com/git/systemtap
Diffstat (limited to 'runtime/stack-x86_64.c')
-rw-r--r--runtime/stack-x86_64.c14
1 files changed, 13 insertions, 1 deletions
diff --git a/runtime/stack-x86_64.c b/runtime/stack-x86_64.c
index 914242e0..80ebd3e7 100644
--- a/runtime/stack-x86_64.c
+++ b/runtime/stack-x86_64.c
@@ -28,15 +28,27 @@ static void _stp_stack_print_fallback(unsigned long stack, int verbose, int leve
static void __stp_stack_print(struct pt_regs *regs, int verbose, int levels,
- struct task_struct *tsk)
+ struct task_struct *tsk, struct uretprobe_instance *ri)
{
#ifdef STP_USE_DWARF_UNWINDER
+ int start_levels = levels;
// FIXME: large stack allocation
struct unwind_frame_info info;
arch_unw_init_frame_info(&info, regs);
while (levels && (tsk || !arch_unw_user_mode(&info))) {
int ret = unwind(&info, tsk);
+#if UPROBES_API_VERSION > 1
+ unsigned long maybe_pc = 0;
+ if (ri) {
+ maybe_pc = uprobe_get_pc(ri, UNW_PC(&info),
+ UNW_SP(&info));
+ if (!maybe_pc)
+ printk("SYSTEMTAP ERROR: uprobe_get_return returned 0\n");
+ else
+ UNW_PC(&info) = maybe_pc;
+ }
+#endif
dbug_unwind(1, "ret=%d PC=%lx SP=%lx\n", ret, UNW_PC(&info), UNW_SP(&info));
if (ret == 0) {
_stp_func_print(UNW_PC(&info), verbose, 1, tsk);