All of lore.kernel.org
 help / color / mirror / Atom feed
From: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
To: Namhyung Kim <namhyung@kernel.org>
Cc: Gaurav Jain <gjain@fb.com>,
	Peter Zijlstra <a.p.zijlstra@chello.nl>,
	Paul Mackerras <paulus@samba.org>, Ingo Molnar <mingo@kernel.org>,
	Namhyung Kim <namhyung.kim@lge.com>,
	LKML <linux-kernel@vger.kernel.org>, Jiri Olsa <jolsa@redhat.com>,
	David Ahern <dsahern@gmail.com>, Andi Kleen <andi@firstfloor.org>
Subject: Re: [PATCH] perf tools: Fix JIT profiling on heap
Date: Tue, 21 Jan 2014 10:55:52 -0300	[thread overview]
Message-ID: <20140121135552.GD18027@ghostprotocols.net> (raw)
In-Reply-To: <87iotd7ucn.fsf@sejong.aot.lge.com>

Em Tue, Jan 21, 2014 at 02:54:32PM +0900, Namhyung Kim escreveu:
> On Fri, 17 Jan 2014 11:34:04 -0300, Arnaldo Carvalho de Melo wrote:
> > Em Fri, Jan 17, 2014 at 04:44:04PM +0900, Namhyung Kim escreveu:
> >> On Thu, 16 Jan 2014 20:23:27 +0000, Gaurav Jain wrote:
> >> > Does perf support data mappings from perf map files?

> >> IIUC there's no difference between function and data mapping.  So

> > Do the /tmp/perf mapping has any per entry indication on the type of
> > symbol it is (data, text) like ELF and kallsyms symtabs have?

> Quoting Documentation/jit-interface.txt:
 
>   Each line has the following format, fields separated with spaces:
 
>   START SIZE symbolname

> > It is possible for a function and a variable to have the same virt
> > addrin some arches (SPARC, iirc), that is why we have different MAP_
> > types (FUNCTION, VARIABLE)
 
> Hmm.. didn't know that, interesting..

> > So a 'struct map' for a data mmap should point to a different 'dso'
> > of the JIT /tmp/perf-... style if those maps don't have per entry
> > indication of text/data.
 
> Yes, but there's no way to do it currently.

Why not? Its just a matter of having a /tmp/perf-...-data file that has
the same structure as the current files for text mmaps :-)

It would then be used as the map->dso for resolving data addresses.
 
> >> only function symbols in function mappings and variables in data
> >> mapping based on the address it accesses.

> > Well, the lookup should figure out if the IP refers to TEXT or DATA and
> > use MAP__{FUNCTION, VARIABLE} accordingly when asking for symbol
> > resolution.

> Right.  But in this case we cannot determine whether a symbol in the
> /tmp/perf-... file is a function or variable.

That is why we would then need to have separate /tmp/perf-... files,
disambiguated by an extension, one for text addresses, another for data
ones.

Or change the format to match /proc/kallsyms, which probably is what we
should've done from day one...

Detecting the format change would be trivial, as we would find 3 tokens
in the new format, instead of the current 2.
 
> >> What I wasn't sure is whether JIT program also produces some dynamic data.
> >> And I think only perf mem command cares about data mappings, no?

> > Well, I think it would be great to do that kind of data resolution for
> > JITs the same way it is interesting to do for ELF ones :-)
> >
> > I need to stare harder at that patch, but with the above in mind, do we
> > really have to check if the map is MAP__FUNCTION as IIRC this patch
> > does?
> 
> Not sure.  For a JIT case, I guess the mapping is always executable and
> we don't support data mapping yet, so it seems okay for now.

Ok, agreed, applying the patch, thanks,

- Arnaldo

  reply	other threads:[~2014-01-21 13:56 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-01-16  1:49 [PATCH] perf tools: Fix JIT profiling on heap Namhyung Kim
2014-01-16 14:37 ` Arnaldo Carvalho de Melo
2014-01-16 20:23   ` Gaurav Jain
2014-01-17  7:44     ` Namhyung Kim
2014-01-17 14:34       ` Arnaldo Carvalho de Melo
2014-01-21  5:54         ` Namhyung Kim
2014-01-21 13:55           ` Arnaldo Carvalho de Melo [this message]
2014-01-21 14:16             ` Ingo Molnar
2014-01-22 23:43       ` Gaurav Jain
2014-01-22 23:50         ` Namhyung Kim
2014-01-23 17:04 ` [tip:perf/urgent] perf symbols: Fix JIT symbol resolution " tip-bot for Namhyung Kim
2014-01-31 11:50 ` [PATCH] perf tools: Fix JIT profiling " Pekka Enberg
2014-01-31 15:04   ` Arnaldo Carvalho de Melo
2014-01-31 20:29     ` Pekka Enberg

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=20140121135552.GD18027@ghostprotocols.net \
    --to=acme@ghostprotocols.net \
    --cc=a.p.zijlstra@chello.nl \
    --cc=andi@firstfloor.org \
    --cc=dsahern@gmail.com \
    --cc=gjain@fb.com \
    --cc=jolsa@redhat.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mingo@kernel.org \
    --cc=namhyung.kim@lge.com \
    --cc=namhyung@kernel.org \
    --cc=paulus@samba.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.