Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8035e428 authored by Ingo Molnar's avatar Ingo Molnar
Browse files

perf_counter tools: Prepare for 'perf annotate'



Prepare for the 'perf annotate' implementation by splitting off
builtin-annotate.c from builtin-report.c.

( We keep this commit separate to ease the later librarization
  of the facilities that perf-report and perf-annotate shares. )

Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
LKML-Reference: <new-submission>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent 6e6b754f
Loading
Loading
Loading
Loading
+26 −0
Original line number Diff line number Diff line
perf-annotate(1)
==============

NAME
----
perf-annotate - Read perf.data (created by perf record) and annotate functions

SYNOPSIS
--------
[verse]
'perf annotate' [-i <file> | --input=file] symbol_name

DESCRIPTION
-----------
This command displays the performance counter profile information recorded
via perf record.

OPTIONS
-------
-i::
--input=::
        Input file name. (default: perf.data)

SEE ALSO
--------
linkperf:perf-record[1]
+2 −1
Original line number Diff line number Diff line
@@ -323,12 +323,13 @@ LIB_OBJS += util/symbol.o
LIB_OBJS += util/color.o
LIB_OBJS += util/pager.o

BUILTIN_OBJS += builtin-annotate.o
BUILTIN_OBJS += builtin-help.o
BUILTIN_OBJS += builtin-list.o
BUILTIN_OBJS += builtin-record.o
BUILTIN_OBJS += builtin-report.o
BUILTIN_OBJS += builtin-stat.o
BUILTIN_OBJS += builtin-top.o
BUILTIN_OBJS += builtin-list.o

PERFLIBS = $(LIB_FILE)
EXTLIBS =
Loading