public inbox for systemtap@sourceware.org
 help / color / mirror / Atom feed
From: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
To: Christian Kaiser <kaiser@dolphinics.com>
Cc: systemtap@sourceware.org
Subject: Re: trace function argument
Date: Tue, 16 Jun 2009 10:47:00 -0000	[thread overview]
Message-ID: <20090616104724.GD4614@in.ibm.com> (raw)
In-Reply-To: <4A37747E.907@dolphinics.com>

On Tue, Jun 16, 2009 at 12:31:26PM +0200, Christian Kaiser wrote:
> Ananth N Mavinakayanahalli wrote:
>> On Tue, Jun 16, 2009 at 11:47:08AM +0200, Christian Kaiser wrote:
>>> Ananth N Mavinakayanahalli wrote:
>>>> On Tue, Jun 16, 2009 at 11:08:35AM +0200, Christian Kaiser wrote:
>>>> With debuginfoless kernels, you can do pretty much what you cite with
>>>> DTrace above.
>>> I am not sure if I understand you right. If I can do pretty much the 
>>> same, how is it working then? Let's take your example from above. How can 
>>> I print out 'clone_flags' with debuginfoless kernels?
>> With debuginfoless kernels, you can't refer to variables by name, rather
>> using arg1, arg2, etc. See tapset/<arch>/registers.stp for more
>> information. For eg:
>> $ stap -ve 'probe kprobe.function("do_fork") { printf("clone_flags = 
>> %x\n", ulong_arg(1)) exit() }'
>> Pass 1: parsed user script and 53 library script(s) in 300usr/0sys/306real 
>> ms.
>> Pass 2: analyzed script: 1 probe(s), 4 function(s), 1 embed(s), 0 
>> global(s) in 0usr/0sys/4real ms.
>> Pass 3: translated to C into 
>> "/tmp/stapnc3ps4/stap_21b73cfa060f885eb93a27cf4013ed70_2418.c" in 
>> 0usr/0sys/0real ms.
>> Pass 4: compiled C into "stap_21b73cfa060f885eb93a27cf4013ed70_2418.ko" in 
>> 1490usr/230sys/1711real ms.
>> Pass 5: starting run.
>> clone_flags = 1200011
>> Pass 5: run completed in 10usr/30sys/2234real ms.
>
> Ok, so 'arg0' for dtrace is 'ulong_arg(1)' for systemtap. That was unclear 
> to me!

To be clearer, its <type>_arg(<argnum>) as Mark pointed out in his
email. So, int_arg(x), long_arg(x), s32_arg(x), pointer_arg(x), etc.,
are all available for use.

Happy hacking!

Ananth

  reply	other threads:[~2009-06-16 10:47 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-06-16  9:08 Christian Kaiser
2009-06-16  9:15 ` Ananth N Mavinakayanahalli
2009-06-16  9:47   ` Christian Kaiser
2009-06-16 10:01     ` Ananth N Mavinakayanahalli
2009-06-16 10:31       ` Christian Kaiser
2009-06-16 10:47         ` Ananth N Mavinakayanahalli [this message]
2009-06-16 10:04     ` Mark Wielaard

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20090616104724.GD4614@in.ibm.com \
    --to=ananth@in.ibm.com \
    --cc=kaiser@dolphinics.com \
    --cc=systemtap@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).