From: Arnaldo Carvalho de Melo <acme@kernel.org>
To: Adrian Hunter <adrian.hunter@intel.com>
Cc: Jiri Olsa <jolsa@redhat.com>, Andi Kleen <ak@linux.intel.com>,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH 1/6] perf script: Enhance sample flags for trace begin / end
Date: Wed, 19 Sep 2018 15:48:31 -0300 [thread overview]
Message-ID: <20180919184831.GK31812@kernel.org> (raw)
In-Reply-To: <20180919184556.GJ31812@kernel.org>
Em Wed, Sep 19, 2018 at 03:45:56PM -0300, Arnaldo Carvalho de Melo escreveu:
> Em Wed, Sep 19, 2018 at 02:23:33PM +0300, Adrian Hunter escreveu:
> > Allow for different combinations of sample flags with "trace begin" or
> > "trace end".
>
> Please describe how you would use this with some command and its output.
This is another case where we have to apply these patches to then, at
the last patch see the result of it, isn't it possible to help people
not deep into intel-pt to figure, patch by patch, how these patches help
in achieving what you want at the last patch?
- Arnaldo
> - Arnaldo
>
> > Signed-off-by: Adrian Hunter <adrian.hunter@intel.com>
> > ---
> > tools/perf/builtin-script.c | 36 +++++++++++++++++++++++++++---------
> > 1 file changed, 27 insertions(+), 9 deletions(-)
> >
> > diff --git a/tools/perf/builtin-script.c b/tools/perf/builtin-script.c
> > index 6176bae177c2..4982380ba96d 100644
> > --- a/tools/perf/builtin-script.c
> > +++ b/tools/perf/builtin-script.c
> > @@ -1255,6 +1255,18 @@ static struct {
> > {0, NULL}
> > };
> >
> > +static const char *sample_flags_to_name(u32 flags)
> > +{
> > + int i;
> > +
> > + for (i = 0; sample_flags[i].name ; i++) {
> > + if (sample_flags[i].flags == flags)
> > + return sample_flags[i].name;
> > + }
> > +
> > + return NULL;
> > +}
> > +
> > static int perf_sample__fprintf_flags(u32 flags, FILE *fp)
> > {
> > const char *chars = PERF_IP_FLAG_CHARS;
> > @@ -1264,11 +1276,20 @@ static int perf_sample__fprintf_flags(u32 flags, FILE *fp)
> > char str[33];
> > int i, pos = 0;
> >
> > - for (i = 0; sample_flags[i].name ; i++) {
> > - if (sample_flags[i].flags == (flags & ~PERF_IP_FLAG_IN_TX)) {
> > - name = sample_flags[i].name;
> > - break;
> > - }
> > + name = sample_flags_to_name(flags & ~PERF_IP_FLAG_IN_TX);
> > + if (name)
> > + return fprintf(fp, " %-15s%4s ", name, in_tx ? "(x)" : "");
> > +
> > + if (flags & PERF_IP_FLAG_TRACE_BEGIN) {
> > + name = sample_flags_to_name(flags & ~(PERF_IP_FLAG_IN_TX | PERF_IP_FLAG_TRACE_BEGIN));
> > + if (name)
> > + return fprintf(fp, " tr strt %-7s%4s ", name, in_tx ? "(x)" : "");
> > + }
> > +
> > + if (flags & PERF_IP_FLAG_TRACE_END) {
> > + name = sample_flags_to_name(flags & ~(PERF_IP_FLAG_IN_TX | PERF_IP_FLAG_TRACE_END));
> > + if (name)
> > + return fprintf(fp, " tr end %-7s%4s ", name, in_tx ? "(x)" : "");
> > }
> >
> > for (i = 0; i < n; i++, flags >>= 1) {
> > @@ -1281,10 +1302,7 @@ static int perf_sample__fprintf_flags(u32 flags, FILE *fp)
> > }
> > str[pos] = 0;
> >
> > - if (name)
> > - return fprintf(fp, " %-7s%4s ", name, in_tx ? "(x)" : "");
> > -
> > - return fprintf(fp, " %-11s ", str);
> > + return fprintf(fp, " %-19s ", str);
> > }
> >
> > struct printer_data {
> > --
> > 2.17.1
next prev parent reply other threads:[~2018-09-19 18:48 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-09-19 11:23 [PATCH 0/6] perf intel-pt: Improve the data displayed when using address filters Adrian Hunter
2018-09-19 11:23 ` [PATCH 1/6] perf script: Enhance sample flags for trace begin / end Adrian Hunter
2018-09-19 18:45 ` Arnaldo Carvalho de Melo
2018-09-19 18:48 ` Arnaldo Carvalho de Melo [this message]
2018-09-19 11:23 ` [PATCH 2/6] perf db-export: Add trace begin / end branch type variants Adrian Hunter
2018-09-19 11:23 ` [PATCH 3/6] perf tools: Improve thread_stack__event() for trace begin / end Adrian Hunter
2018-09-20 18:13 ` RFC/error: " Arnaldo Carvalho de Melo
2018-09-20 18:18 ` Arnaldo Carvalho de Melo
2018-09-21 8:55 ` Adrian Hunter
2018-09-19 11:23 ` [PATCH 4/6] perf tools: Improve thread_stack__process() " Adrian Hunter
2018-09-19 11:23 ` [PATCH 5/6] perf intel-pt: Add decoder flags " Adrian Hunter
2018-09-19 11:23 ` [PATCH 6/6] perf intel-pt: Implement " Adrian Hunter
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=20180919184831.GK31812@kernel.org \
--to=acme@kernel.org \
--cc=adrian.hunter@intel.com \
--cc=ak@linux.intel.com \
--cc=jolsa@redhat.com \
--cc=linux-kernel@vger.kernel.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 NNTP newsgroup(s).