diff options
author | Andi Kleen <ak@linux.intel.com> | 2012-08-09 11:31:00 -0400 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2012-08-13 13:55:02 -0400 |
commit | 0fe7d7e9761ec7e23350b5543ddac470bb3cde1e (patch) | |
tree | 2ed713988e611e731b5cce1aba1f907b64018383 | |
parent | 3aafe5ae08f2aed378e06d78b207883879d25cbe (diff) |
perf symbols: Add description of JIT interface
Add a description of the JIT interface in the perf symbol resolution
code. I reverse engineered the format from the source.
Signed-off-by: Andi Kleen <ak@linux.intel.com>
Acked-by: Pekka Enberg <penberg@cs.helsinki.fi>
Cc: Pekka Enberg <penberg@cs.helsinki.fi>
Link: http://lkml.kernel.org/r/1344526260-18721-1-git-send-email-andi@firstfloor.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
-rw-r--r-- | tools/perf/Documentation/jit-interface.txt | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tools/perf/Documentation/jit-interface.txt b/tools/perf/Documentation/jit-interface.txt new file mode 100644 index 000000000000..a8656f564915 --- /dev/null +++ b/tools/perf/Documentation/jit-interface.txt | |||
@@ -0,0 +1,15 @@ | |||
1 | perf supports a simple JIT interface to resolve symbols for dynamic code generated | ||
2 | by a JIT. | ||
3 | |||
4 | The JIT has to write a /tmp/perf-%d.map (%d = pid of process) file | ||
5 | |||
6 | This is a text file. | ||
7 | |||
8 | Each line has the following format, fields separated with spaces: | ||
9 | |||
10 | START SIZE symbolname | ||
11 | |||
12 | START and SIZE are hex numbers without 0x. | ||
13 | symbolname is the rest of the line, so it could contain special characters. | ||
14 | |||
15 | The ownership of the file has to match the process. | ||