perf symbols: Simplify symbol machinery setup
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / tools / perf / builtin-trace.c
blob75972fd073dfb97b0154f66a8a34c29684d01b3e
1 #include "builtin.h"
3 #include "util/util.h"
4 #include "util/cache.h"
5 #include "util/symbol.h"
6 #include "util/thread.h"
7 #include "util/header.h"
9 #include "util/parse-options.h"
11 #include "perf.h"
12 #include "util/debug.h"
14 #include "util/trace-event.h"
15 #include "util/data_map.h"
17 static char const *input_name = "perf.data";
19 static unsigned long total = 0;
20 static unsigned long total_comm = 0;
22 static struct perf_header *header;
23 static u64 sample_type;
25 static char *cwd;
26 static int cwdlen;
29 static int
30 process_comm_event(event_t *event, unsigned long offset, unsigned long head)
32 struct thread *thread = threads__findnew(event->comm.pid);
34 dump_printf("%p [%p]: PERF_RECORD_COMM: %s:%d\n",
35 (void *)(offset + head),
36 (void *)(long)(event->header.size),
37 event->comm.comm, event->comm.pid);
39 if (thread == NULL ||
40 thread__set_comm(thread, event->comm.comm)) {
41 dump_printf("problem processing PERF_RECORD_COMM, skipping event.\n");
42 return -1;
44 total_comm++;
46 return 0;
49 static int
50 process_sample_event(event_t *event, unsigned long offset, unsigned long head)
52 u64 ip = event->ip.ip;
53 u64 timestamp = -1;
54 u32 cpu = -1;
55 u64 period = 1;
56 void *more_data = event->ip.__more_data;
57 struct thread *thread = threads__findnew(event->ip.pid);
59 if (sample_type & PERF_SAMPLE_TIME) {
60 timestamp = *(u64 *)more_data;
61 more_data += sizeof(u64);
64 if (sample_type & PERF_SAMPLE_CPU) {
65 cpu = *(u32 *)more_data;
66 more_data += sizeof(u32);
67 more_data += sizeof(u32); /* reserved */
70 if (sample_type & PERF_SAMPLE_PERIOD) {
71 period = *(u64 *)more_data;
72 more_data += sizeof(u64);
75 dump_printf("%p [%p]: PERF_RECORD_SAMPLE (IP, %d): %d/%d: %p period: %Ld\n",
76 (void *)(offset + head),
77 (void *)(long)(event->header.size),
78 event->header.misc,
79 event->ip.pid, event->ip.tid,
80 (void *)(long)ip,
81 (long long)period);
83 if (thread == NULL) {
84 pr_debug("problem processing %d event, skipping it.\n",
85 event->header.type);
86 return -1;
89 dump_printf(" ... thread: %s:%d\n", thread->comm, thread->pid);
91 if (sample_type & PERF_SAMPLE_RAW) {
92 struct {
93 u32 size;
94 char data[0];
95 } *raw = more_data;
98 * FIXME: better resolve from pid from the struct trace_entry
99 * field, although it should be the same than this perf
100 * event pid
102 print_event(cpu, raw->data, raw->size, timestamp, thread->comm);
104 total += period;
106 return 0;
109 static int sample_type_check(u64 type)
111 sample_type = type;
113 if (!(sample_type & PERF_SAMPLE_RAW)) {
114 fprintf(stderr,
115 "No trace sample to read. Did you call perf record "
116 "without -R?");
117 return -1;
120 return 0;
123 static struct perf_file_handler file_handler = {
124 .process_sample_event = process_sample_event,
125 .process_comm_event = process_comm_event,
126 .sample_type_check = sample_type_check,
129 static int __cmd_trace(void)
131 register_idle_thread();
132 register_perf_file_handler(&file_handler);
134 return mmap_dispatch_perf_file(&header, input_name,
135 0, 0, &cwdlen, &cwd);
138 static const char * const annotate_usage[] = {
139 "perf trace [<options>] <command>",
140 NULL
143 static const struct option options[] = {
144 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
145 "dump raw trace in ASCII"),
146 OPT_BOOLEAN('v', "verbose", &verbose,
147 "be more verbose (show symbol address, etc)"),
148 OPT_BOOLEAN('l', "latency", &latency_format,
149 "show latency attributes (irqs/preemption disabled, etc)"),
150 OPT_END()
153 int cmd_trace(int argc, const char **argv, const char *prefix __used)
155 symbol__init(0);
157 argc = parse_options(argc, argv, options, annotate_usage, 0);
158 if (argc) {
160 * Special case: if there's an argument left then assume tha
161 * it's a symbol filter:
163 if (argc > 1)
164 usage_with_options(annotate_usage, options);
167 setup_pager();
169 return __cmd_trace();