 edbe9817ae
			
		
	
	
	edbe9817ae
	
	
	
		
			
			Adding 'perf data convert' to convert perf data file into different
format. This patch adds support for CTF format conversion.
To convert perf.data into CTF run:
  $ perf data convert --to-ctf=./ctf-data/
  [ perf data convert: Converted 'perf.data' into CTF data './ctf-data/' ]
  [ perf data convert: Converted and wrote 11.268 MB (100230 samples) ]
The command will create CTF metadata out of perf.data file (or one
specified via -i option) and then convert all sample events into single
CTF stream.
Each sample_type bit is translated into separated CTF event field apart
from following exceptions:
  PERF_SAMPLE_RAW          - added in next patch
  PERF_SAMPLE_READ         - TODO
  PERF_SAMPLE_CALLCHAIN    - TODO
  PERF_SAMPLE_BRANCH_STACK - TODO
  PERF_SAMPLE_REGS_USER    - TODO
  PERF_SAMPLE_STACK_USER   - TODO
  $ perf --debug=data-convert=2 data convert ...
The converted CTF data could be analyzed by CTF tools, like babletrace
or tracecompass [1].
  $ babeltrace ./ctf-data/
  [03:19:13.962125533] (+?.?????????) cycles: { }, { ip = 0xFFFFFFFF8105443A, tid = 20714, pid = 20714, period = 1 }
  [03:19:13.962130001] (+0.000004468) cycles: { }, { ip = 0xFFFFFFFF8105443A, tid = 20714, pid = 20714, period = 1 }
  [03:19:13.962131936] (+0.000001935) cycles: { }, { ip = 0xFFFFFFFF8105443A, tid = 20714, pid = 20714, period = 8 }
  [03:19:13.962133732] (+0.000001796) cycles: { }, { ip = 0xFFFFFFFF8105443A, tid = 20714, pid = 20714, period = 114 }
  [03:19:13.962135557] (+0.000001825) cycles: { }, { ip = 0xFFFFFFFF8105443A, tid = 20714, pid = 20714, period = 2087 }
  [03:19:13.962137627] (+0.000002070) cycles: { }, { ip = 0xFFFFFFFF81361938, tid = 20714, pid = 20714, period = 37582 }
  [03:19:13.962161091] (+0.000023464) cycles: { }, { ip = 0xFFFFFFFF8124218F, tid = 20714, pid = 20714, period = 600246 }
  [03:19:13.962517569] (+0.000356478) cycles: { }, { ip = 0xFFFFFFFF811A75DB, tid = 20714, pid = 20714, period = 1325731 }
  [03:19:13.969518008] (+0.007000439) cycles: { }, { ip = 0x34080917B2, tid = 20714, pid = 20714, period = 1144298 }
The following members to the ctf-environment were decided to be added to
distinguish and specify perf CTF data:
  - domain
    It says "kernel" because it contains a kernel trace (not to be
    confused with a user space like lttng-ust does)
  - tracer_name
    It says perf. This can be used to distinguish between lttng and perf
    CTF based trace.
  - version
    The kernel version from stream. In addition to release, this is what
    it looks like on a Debian kernel:
      release = "3.14-1-amd64";
      version = "3.14.0";
[1] http://projects.eclipse.org/projects/tools.tracecompass
Signed-off-by: Jiri Olsa <jolsa@kernel.org>
Acked-by: Namhyung Kim <namhyung@kernel.org>
Reviewed-by: David Ahern <dsahern@gmail.com>
Tested-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Jeremie Galarneau <jgalar@efficios.com>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Cc: Tom Zanussi <tzanussi@gmail.com>
Cc: Wang Nan <wangnan0@huawei.com>
Link: http://lkml.kernel.org/r/1424470628-5969-4-git-send-email-jolsa@kernel.org
Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
		
	
			
		
			
				
	
	
		
			56 lines
		
	
	
	
		
			1.9 KiB
			
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
	
		
			1.9 KiB
			
		
	
	
	
		
			C
		
	
	
	
	
	
| /* For debugging general purposes */
 | |
| #ifndef __PERF_DEBUG_H
 | |
| #define __PERF_DEBUG_H
 | |
| 
 | |
| #include <stdbool.h>
 | |
| #include <string.h>
 | |
| #include "event.h"
 | |
| #include "../ui/helpline.h"
 | |
| #include "../ui/progress.h"
 | |
| #include "../ui/util.h"
 | |
| 
 | |
| extern int verbose;
 | |
| extern bool quiet, dump_trace;
 | |
| extern int debug_ordered_events;
 | |
| extern int debug_data_convert;
 | |
| 
 | |
| #ifndef pr_fmt
 | |
| #define pr_fmt(fmt) fmt
 | |
| #endif
 | |
| 
 | |
| #define pr_err(fmt, ...) \
 | |
| 	eprintf(0, verbose, pr_fmt(fmt), ##__VA_ARGS__)
 | |
| #define pr_warning(fmt, ...) \
 | |
| 	eprintf(0, verbose, pr_fmt(fmt), ##__VA_ARGS__)
 | |
| #define pr_info(fmt, ...) \
 | |
| 	eprintf(0, verbose, pr_fmt(fmt), ##__VA_ARGS__)
 | |
| #define pr_debug(fmt, ...) \
 | |
| 	eprintf(1, verbose, pr_fmt(fmt), ##__VA_ARGS__)
 | |
| #define pr_debugN(n, fmt, ...) \
 | |
| 	eprintf(n, verbose, pr_fmt(fmt), ##__VA_ARGS__)
 | |
| #define pr_debug2(fmt, ...) pr_debugN(2, pr_fmt(fmt), ##__VA_ARGS__)
 | |
| #define pr_debug3(fmt, ...) pr_debugN(3, pr_fmt(fmt), ##__VA_ARGS__)
 | |
| #define pr_debug4(fmt, ...) pr_debugN(4, pr_fmt(fmt), ##__VA_ARGS__)
 | |
| 
 | |
| #define pr_time_N(n, var, t, fmt, ...) \
 | |
| 	eprintf_time(n, var, t, fmt, ##__VA_ARGS__)
 | |
| 
 | |
| #define pr_oe_time(t, fmt, ...)  pr_time_N(1, debug_ordered_events, t, pr_fmt(fmt), ##__VA_ARGS__)
 | |
| #define pr_oe_time2(t, fmt, ...) pr_time_N(2, debug_ordered_events, t, pr_fmt(fmt), ##__VA_ARGS__)
 | |
| 
 | |
| #define STRERR_BUFSIZE	128	/* For the buffer size of strerror_r */
 | |
| 
 | |
| int dump_printf(const char *fmt, ...) __attribute__((format(printf, 1, 2)));
 | |
| void trace_event(union perf_event *event);
 | |
| 
 | |
| int ui__error(const char *format, ...) __attribute__((format(printf, 1, 2)));
 | |
| int ui__warning(const char *format, ...) __attribute__((format(printf, 1, 2)));
 | |
| 
 | |
| void pr_stat(const char *fmt, ...);
 | |
| 
 | |
| int eprintf(int level, int var, const char *fmt, ...) __attribute__((format(printf, 3, 4)));
 | |
| int eprintf_time(int level, int var, u64 t, const char *fmt, ...) __attribute__((format(printf, 4, 5)));
 | |
| 
 | |
| int perf_debug_option(const char *str);
 | |
| 
 | |
| #endif	/* __PERF_DEBUG_H */
 |