summaryrefslogtreecommitdiffstats
path: root/tapset/context.stp
diff options
context:
space:
mode:
authorDave Brolley <brolley@redhat.com>2009-04-08 12:03:08 -0400
committerDave Brolley <brolley@redhat.com>2009-04-08 12:03:08 -0400
commit2f7ba4b8416eae26971da68fdc14aa8560a7939c (patch)
treed5b4383e43bc108d9f76d30addfd857b6bf8dc62 /tapset/context.stp
parent83d18bfb001f334309163e54d6c5bd28a1829035 (diff)
parent3dd58c2ac312fc16aa38124987081adbd6697629 (diff)
downloadsystemtap-steved-2f7ba4b8416eae26971da68fdc14aa8560a7939c.tar.gz
systemtap-steved-2f7ba4b8416eae26971da68fdc14aa8560a7939c.tar.xz
systemtap-steved-2f7ba4b8416eae26971da68fdc14aa8560a7939c.zip
Merge branch 'master' of git://sources.redhat.com/git/systemtap
Diffstat (limited to 'tapset/context.stp')
-rw-r--r--tapset/context.stp25
1 files changed, 25 insertions, 0 deletions
diff --git a/tapset/context.stp b/tapset/context.stp
index 9f4be0e6..36d68c8d 100644
--- a/tapset/context.stp
+++ b/tapset/context.stp
@@ -11,6 +11,11 @@
//provide information such as a backtrace to where the event occured and the current register values for the
//processor.
// </tapsetdescription>
+
+%{
+#include <asm/processor.h>
+%}
+
/**
* sfunction print_regs - Print a register dump.
*/
@@ -227,3 +232,23 @@ function stack_unused:long () %{ /* pure */
THIS->__retvalue = (long)&a & (THREAD_SIZE-1);
%}
+/**
+ * sfunction uaddr - User space address of current running task.
+ *
+ * Description: Returns the address in userspace that the current
+ * task was at when the probe occured. When the current running task
+ * isn't a user space thread, or the address cannot be found, zero
+ * is returned.
+ */
+function uaddr:long () %{ /* pure */
+ int64_t addr = 0;
+ if (current->mm)
+ {
+ struct pt_regs *uregs;
+ uregs = task_pt_regs(current);
+ if (uregs)
+ addr = (int64_t) REG_IP(uregs);
+ }
+ THIS->__retvalue = addr;
+%}
+