1 #include <linux/kernel.h>
2 #include <traceevent/event-parse.h>
16 #include "perf_regs.h"
19 static int perf_session__open(struct perf_session
*session
)
21 struct perf_data_file
*file
= session
->file
;
23 if (perf_session__read_header(session
) < 0) {
24 pr_err("incompatible file format (rerun with -v to learn more)");
28 if (perf_data_file__is_pipe(file
))
31 if (!perf_evlist__valid_sample_type(session
->evlist
)) {
32 pr_err("non matching sample_type");
36 if (!perf_evlist__valid_sample_id_all(session
->evlist
)) {
37 pr_err("non matching sample_id_all");
41 if (!perf_evlist__valid_read_format(session
->evlist
)) {
42 pr_err("non matching read_format");
49 void perf_session__set_id_hdr_size(struct perf_session
*session
)
51 u16 id_hdr_size
= perf_evlist__id_hdr_size(session
->evlist
);
53 machines__set_id_hdr_size(&session
->machines
, id_hdr_size
);
56 int perf_session__create_kernel_maps(struct perf_session
*session
)
58 int ret
= machine__create_kernel_maps(&session
->machines
.host
);
61 ret
= machines__create_guest_kernel_maps(&session
->machines
);
65 static void perf_session__destroy_kernel_maps(struct perf_session
*session
)
67 machines__destroy_kernel_maps(&session
->machines
);
70 struct perf_session
*perf_session__new(struct perf_data_file
*file
,
71 bool repipe
, struct perf_tool
*tool
)
73 struct perf_session
*session
= zalloc(sizeof(*session
));
78 session
->repipe
= repipe
;
79 INIT_LIST_HEAD(&session
->ordered_samples
.samples
);
80 INIT_LIST_HEAD(&session
->ordered_samples
.sample_cache
);
81 INIT_LIST_HEAD(&session
->ordered_samples
.to_free
);
82 machines__init(&session
->machines
);
85 if (perf_data_file__open(file
))
90 if (perf_data_file__is_read(file
)) {
91 if (perf_session__open(session
) < 0)
94 perf_session__set_id_hdr_size(session
);
98 if (!file
|| perf_data_file__is_write(file
)) {
100 * In O_RDONLY mode this will be performed when reading the
101 * kernel MMAP event, in perf_event__process_mmap().
103 if (perf_session__create_kernel_maps(session
) < 0)
107 if (tool
&& tool
->ordering_requires_timestamps
&&
108 tool
->ordered_samples
&& !perf_evlist__sample_id_all(session
->evlist
)) {
109 dump_printf("WARNING: No sample_id_all support, falling back to unordered processing\n");
110 tool
->ordered_samples
= false;
116 perf_data_file__close(file
);
118 perf_session__delete(session
);
123 static void perf_session__delete_dead_threads(struct perf_session
*session
)
125 machine__delete_dead_threads(&session
->machines
.host
);
128 static void perf_session__delete_threads(struct perf_session
*session
)
130 machine__delete_threads(&session
->machines
.host
);
133 static void perf_session_env__delete(struct perf_session_env
*env
)
135 zfree(&env
->hostname
);
136 zfree(&env
->os_release
);
137 zfree(&env
->version
);
139 zfree(&env
->cpu_desc
);
142 zfree(&env
->cmdline
);
143 zfree(&env
->sibling_cores
);
144 zfree(&env
->sibling_threads
);
145 zfree(&env
->numa_nodes
);
146 zfree(&env
->pmu_mappings
);
149 void perf_session__delete(struct perf_session
*session
)
151 perf_session__destroy_kernel_maps(session
);
152 perf_session__delete_dead_threads(session
);
153 perf_session__delete_threads(session
);
154 perf_session_env__delete(&session
->header
.env
);
155 machines__exit(&session
->machines
);
157 perf_data_file__close(session
->file
);
162 static int process_event_synth_tracing_data_stub(struct perf_tool
*tool
164 union perf_event
*event
166 struct perf_session
*session
169 dump_printf(": unhandled!\n");
173 static int process_event_synth_attr_stub(struct perf_tool
*tool __maybe_unused
,
174 union perf_event
*event __maybe_unused
,
175 struct perf_evlist
**pevlist
178 dump_printf(": unhandled!\n");
182 static int process_event_sample_stub(struct perf_tool
*tool __maybe_unused
,
183 union perf_event
*event __maybe_unused
,
184 struct perf_sample
*sample __maybe_unused
,
185 struct perf_evsel
*evsel __maybe_unused
,
186 struct machine
*machine __maybe_unused
)
188 dump_printf(": unhandled!\n");
192 static int process_event_stub(struct perf_tool
*tool __maybe_unused
,
193 union perf_event
*event __maybe_unused
,
194 struct perf_sample
*sample __maybe_unused
,
195 struct machine
*machine __maybe_unused
)
197 dump_printf(": unhandled!\n");
201 static int process_finished_round_stub(struct perf_tool
*tool __maybe_unused
,
202 union perf_event
*event __maybe_unused
,
203 struct perf_session
*perf_session
206 dump_printf(": unhandled!\n");
210 static int process_finished_round(struct perf_tool
*tool
,
211 union perf_event
*event
,
212 struct perf_session
*session
);
214 void perf_tool__fill_defaults(struct perf_tool
*tool
)
216 if (tool
->sample
== NULL
)
217 tool
->sample
= process_event_sample_stub
;
218 if (tool
->mmap
== NULL
)
219 tool
->mmap
= process_event_stub
;
220 if (tool
->mmap2
== NULL
)
221 tool
->mmap2
= process_event_stub
;
222 if (tool
->comm
== NULL
)
223 tool
->comm
= process_event_stub
;
224 if (tool
->fork
== NULL
)
225 tool
->fork
= process_event_stub
;
226 if (tool
->exit
== NULL
)
227 tool
->exit
= process_event_stub
;
228 if (tool
->lost
== NULL
)
229 tool
->lost
= perf_event__process_lost
;
230 if (tool
->read
== NULL
)
231 tool
->read
= process_event_sample_stub
;
232 if (tool
->throttle
== NULL
)
233 tool
->throttle
= process_event_stub
;
234 if (tool
->unthrottle
== NULL
)
235 tool
->unthrottle
= process_event_stub
;
236 if (tool
->attr
== NULL
)
237 tool
->attr
= process_event_synth_attr_stub
;
238 if (tool
->tracing_data
== NULL
)
239 tool
->tracing_data
= process_event_synth_tracing_data_stub
;
240 if (tool
->build_id
== NULL
)
241 tool
->build_id
= process_finished_round_stub
;
242 if (tool
->finished_round
== NULL
) {
243 if (tool
->ordered_samples
)
244 tool
->finished_round
= process_finished_round
;
246 tool
->finished_round
= process_finished_round_stub
;
250 static void swap_sample_id_all(union perf_event
*event
, void *data
)
252 void *end
= (void *) event
+ event
->header
.size
;
253 int size
= end
- data
;
255 BUG_ON(size
% sizeof(u64
));
256 mem_bswap_64(data
, size
);
259 static void perf_event__all64_swap(union perf_event
*event
,
260 bool sample_id_all __maybe_unused
)
262 struct perf_event_header
*hdr
= &event
->header
;
263 mem_bswap_64(hdr
+ 1, event
->header
.size
- sizeof(*hdr
));
266 static void perf_event__comm_swap(union perf_event
*event
, bool sample_id_all
)
268 event
->comm
.pid
= bswap_32(event
->comm
.pid
);
269 event
->comm
.tid
= bswap_32(event
->comm
.tid
);
272 void *data
= &event
->comm
.comm
;
274 data
+= PERF_ALIGN(strlen(data
) + 1, sizeof(u64
));
275 swap_sample_id_all(event
, data
);
279 static void perf_event__mmap_swap(union perf_event
*event
,
282 event
->mmap
.pid
= bswap_32(event
->mmap
.pid
);
283 event
->mmap
.tid
= bswap_32(event
->mmap
.tid
);
284 event
->mmap
.start
= bswap_64(event
->mmap
.start
);
285 event
->mmap
.len
= bswap_64(event
->mmap
.len
);
286 event
->mmap
.pgoff
= bswap_64(event
->mmap
.pgoff
);
289 void *data
= &event
->mmap
.filename
;
291 data
+= PERF_ALIGN(strlen(data
) + 1, sizeof(u64
));
292 swap_sample_id_all(event
, data
);
296 static void perf_event__mmap2_swap(union perf_event
*event
,
299 event
->mmap2
.pid
= bswap_32(event
->mmap2
.pid
);
300 event
->mmap2
.tid
= bswap_32(event
->mmap2
.tid
);
301 event
->mmap2
.start
= bswap_64(event
->mmap2
.start
);
302 event
->mmap2
.len
= bswap_64(event
->mmap2
.len
);
303 event
->mmap2
.pgoff
= bswap_64(event
->mmap2
.pgoff
);
304 event
->mmap2
.maj
= bswap_32(event
->mmap2
.maj
);
305 event
->mmap2
.min
= bswap_32(event
->mmap2
.min
);
306 event
->mmap2
.ino
= bswap_64(event
->mmap2
.ino
);
309 void *data
= &event
->mmap2
.filename
;
311 data
+= PERF_ALIGN(strlen(data
) + 1, sizeof(u64
));
312 swap_sample_id_all(event
, data
);
315 static void perf_event__task_swap(union perf_event
*event
, bool sample_id_all
)
317 event
->fork
.pid
= bswap_32(event
->fork
.pid
);
318 event
->fork
.tid
= bswap_32(event
->fork
.tid
);
319 event
->fork
.ppid
= bswap_32(event
->fork
.ppid
);
320 event
->fork
.ptid
= bswap_32(event
->fork
.ptid
);
321 event
->fork
.time
= bswap_64(event
->fork
.time
);
324 swap_sample_id_all(event
, &event
->fork
+ 1);
327 static void perf_event__read_swap(union perf_event
*event
, bool sample_id_all
)
329 event
->read
.pid
= bswap_32(event
->read
.pid
);
330 event
->read
.tid
= bswap_32(event
->read
.tid
);
331 event
->read
.value
= bswap_64(event
->read
.value
);
332 event
->read
.time_enabled
= bswap_64(event
->read
.time_enabled
);
333 event
->read
.time_running
= bswap_64(event
->read
.time_running
);
334 event
->read
.id
= bswap_64(event
->read
.id
);
337 swap_sample_id_all(event
, &event
->read
+ 1);
340 static void perf_event__throttle_swap(union perf_event
*event
,
343 event
->throttle
.time
= bswap_64(event
->throttle
.time
);
344 event
->throttle
.id
= bswap_64(event
->throttle
.id
);
345 event
->throttle
.stream_id
= bswap_64(event
->throttle
.stream_id
);
348 swap_sample_id_all(event
, &event
->throttle
+ 1);
351 static u8
revbyte(u8 b
)
353 int rev
= (b
>> 4) | ((b
& 0xf) << 4);
354 rev
= ((rev
& 0xcc) >> 2) | ((rev
& 0x33) << 2);
355 rev
= ((rev
& 0xaa) >> 1) | ((rev
& 0x55) << 1);
360 * XXX this is hack in attempt to carry flags bitfield
361 * throught endian village. ABI says:
363 * Bit-fields are allocated from right to left (least to most significant)
364 * on little-endian implementations and from left to right (most to least
365 * significant) on big-endian implementations.
367 * The above seems to be byte specific, so we need to reverse each
368 * byte of the bitfield. 'Internet' also says this might be implementation
369 * specific and we probably need proper fix and carry perf_event_attr
370 * bitfield flags in separate data file FEAT_ section. Thought this seems
373 static void swap_bitfield(u8
*p
, unsigned len
)
377 for (i
= 0; i
< len
; i
++) {
383 /* exported for swapping attributes in file header */
384 void perf_event__attr_swap(struct perf_event_attr
*attr
)
386 attr
->type
= bswap_32(attr
->type
);
387 attr
->size
= bswap_32(attr
->size
);
388 attr
->config
= bswap_64(attr
->config
);
389 attr
->sample_period
= bswap_64(attr
->sample_period
);
390 attr
->sample_type
= bswap_64(attr
->sample_type
);
391 attr
->read_format
= bswap_64(attr
->read_format
);
392 attr
->wakeup_events
= bswap_32(attr
->wakeup_events
);
393 attr
->bp_type
= bswap_32(attr
->bp_type
);
394 attr
->bp_addr
= bswap_64(attr
->bp_addr
);
395 attr
->bp_len
= bswap_64(attr
->bp_len
);
396 attr
->branch_sample_type
= bswap_64(attr
->branch_sample_type
);
397 attr
->sample_regs_user
= bswap_64(attr
->sample_regs_user
);
398 attr
->sample_stack_user
= bswap_32(attr
->sample_stack_user
);
400 swap_bitfield((u8
*) (&attr
->read_format
+ 1), sizeof(u64
));
403 static void perf_event__hdr_attr_swap(union perf_event
*event
,
404 bool sample_id_all __maybe_unused
)
408 perf_event__attr_swap(&event
->attr
.attr
);
410 size
= event
->header
.size
;
411 size
-= (void *)&event
->attr
.id
- (void *)event
;
412 mem_bswap_64(event
->attr
.id
, size
);
415 static void perf_event__event_type_swap(union perf_event
*event
,
416 bool sample_id_all __maybe_unused
)
418 event
->event_type
.event_type
.event_id
=
419 bswap_64(event
->event_type
.event_type
.event_id
);
422 static void perf_event__tracing_data_swap(union perf_event
*event
,
423 bool sample_id_all __maybe_unused
)
425 event
->tracing_data
.size
= bswap_32(event
->tracing_data
.size
);
428 typedef void (*perf_event__swap_op
)(union perf_event
*event
,
431 static perf_event__swap_op perf_event__swap_ops
[] = {
432 [PERF_RECORD_MMAP
] = perf_event__mmap_swap
,
433 [PERF_RECORD_MMAP2
] = perf_event__mmap2_swap
,
434 [PERF_RECORD_COMM
] = perf_event__comm_swap
,
435 [PERF_RECORD_FORK
] = perf_event__task_swap
,
436 [PERF_RECORD_EXIT
] = perf_event__task_swap
,
437 [PERF_RECORD_LOST
] = perf_event__all64_swap
,
438 [PERF_RECORD_READ
] = perf_event__read_swap
,
439 [PERF_RECORD_THROTTLE
] = perf_event__throttle_swap
,
440 [PERF_RECORD_UNTHROTTLE
] = perf_event__throttle_swap
,
441 [PERF_RECORD_SAMPLE
] = perf_event__all64_swap
,
442 [PERF_RECORD_HEADER_ATTR
] = perf_event__hdr_attr_swap
,
443 [PERF_RECORD_HEADER_EVENT_TYPE
] = perf_event__event_type_swap
,
444 [PERF_RECORD_HEADER_TRACING_DATA
] = perf_event__tracing_data_swap
,
445 [PERF_RECORD_HEADER_BUILD_ID
] = NULL
,
446 [PERF_RECORD_HEADER_MAX
] = NULL
,
449 struct sample_queue
{
452 union perf_event
*event
;
453 struct list_head list
;
456 static void perf_session_free_sample_buffers(struct perf_session
*session
)
458 struct ordered_samples
*os
= &session
->ordered_samples
;
460 while (!list_empty(&os
->to_free
)) {
461 struct sample_queue
*sq
;
463 sq
= list_entry(os
->to_free
.next
, struct sample_queue
, list
);
469 static int perf_session_deliver_event(struct perf_session
*session
,
470 union perf_event
*event
,
471 struct perf_sample
*sample
,
472 struct perf_tool
*tool
,
475 static int flush_sample_queue(struct perf_session
*s
,
476 struct perf_tool
*tool
)
478 struct ordered_samples
*os
= &s
->ordered_samples
;
479 struct list_head
*head
= &os
->samples
;
480 struct sample_queue
*tmp
, *iter
;
481 struct perf_sample sample
;
482 u64 limit
= os
->next_flush
;
483 u64 last_ts
= os
->last_sample
? os
->last_sample
->timestamp
: 0ULL;
484 bool show_progress
= limit
== ULLONG_MAX
;
485 struct ui_progress prog
;
488 if (!tool
->ordered_samples
|| !limit
)
492 ui_progress__init(&prog
, os
->nr_samples
, "Processing time ordered events...");
494 list_for_each_entry_safe(iter
, tmp
, head
, list
) {
498 if (iter
->timestamp
> limit
)
501 ret
= perf_evlist__parse_sample(s
->evlist
, iter
->event
, &sample
);
503 pr_err("Can't parse sample, err = %d\n", ret
);
505 ret
= perf_session_deliver_event(s
, iter
->event
, &sample
, tool
,
511 os
->last_flush
= iter
->timestamp
;
512 list_del(&iter
->list
);
513 list_add(&iter
->list
, &os
->sample_cache
);
516 ui_progress__update(&prog
, 1);
519 if (list_empty(head
)) {
520 os
->last_sample
= NULL
;
521 } else if (last_ts
<= limit
) {
523 list_entry(head
->prev
, struct sample_queue
, list
);
532 * When perf record finishes a pass on every buffers, it records this pseudo
534 * We record the max timestamp t found in the pass n.
535 * Assuming these timestamps are monotonic across cpus, we know that if
536 * a buffer still has events with timestamps below t, they will be all
537 * available and then read in the pass n + 1.
538 * Hence when we start to read the pass n + 2, we can safely flush every
539 * events with timestamps below t.
541 * ============ PASS n =================
544 * cnt1 timestamps | cnt2 timestamps
547 * - | 4 <--- max recorded
549 * ============ PASS n + 1 ==============
552 * cnt1 timestamps | cnt2 timestamps
555 * 5 | 7 <---- max recorded
557 * Flush every events below timestamp 4
559 * ============ PASS n + 2 ==============
562 * cnt1 timestamps | cnt2 timestamps
567 * Flush every events below timestamp 7
570 static int process_finished_round(struct perf_tool
*tool
,
571 union perf_event
*event __maybe_unused
,
572 struct perf_session
*session
)
574 int ret
= flush_sample_queue(session
, tool
);
576 session
->ordered_samples
.next_flush
= session
->ordered_samples
.max_timestamp
;
581 /* The queue is ordered by time */
582 static void __queue_event(struct sample_queue
*new, struct perf_session
*s
)
584 struct ordered_samples
*os
= &s
->ordered_samples
;
585 struct sample_queue
*sample
= os
->last_sample
;
586 u64 timestamp
= new->timestamp
;
590 os
->last_sample
= new;
593 list_add(&new->list
, &os
->samples
);
594 os
->max_timestamp
= timestamp
;
599 * last_sample might point to some random place in the list as it's
600 * the last queued event. We expect that the new event is close to
603 if (sample
->timestamp
<= timestamp
) {
604 while (sample
->timestamp
<= timestamp
) {
605 p
= sample
->list
.next
;
606 if (p
== &os
->samples
) {
607 list_add_tail(&new->list
, &os
->samples
);
608 os
->max_timestamp
= timestamp
;
611 sample
= list_entry(p
, struct sample_queue
, list
);
613 list_add_tail(&new->list
, &sample
->list
);
615 while (sample
->timestamp
> timestamp
) {
616 p
= sample
->list
.prev
;
617 if (p
== &os
->samples
) {
618 list_add(&new->list
, &os
->samples
);
621 sample
= list_entry(p
, struct sample_queue
, list
);
623 list_add(&new->list
, &sample
->list
);
627 #define MAX_SAMPLE_BUFFER (64 * 1024 / sizeof(struct sample_queue))
629 int perf_session_queue_event(struct perf_session
*s
, union perf_event
*event
,
630 struct perf_sample
*sample
, u64 file_offset
)
632 struct ordered_samples
*os
= &s
->ordered_samples
;
633 struct list_head
*sc
= &os
->sample_cache
;
634 u64 timestamp
= sample
->time
;
635 struct sample_queue
*new;
637 if (!timestamp
|| timestamp
== ~0ULL)
640 if (timestamp
< s
->ordered_samples
.last_flush
) {
641 printf("Warning: Timestamp below last timeslice flush\n");
645 if (!list_empty(sc
)) {
646 new = list_entry(sc
->next
, struct sample_queue
, list
);
647 list_del(&new->list
);
648 } else if (os
->sample_buffer
) {
649 new = os
->sample_buffer
+ os
->sample_buffer_idx
;
650 if (++os
->sample_buffer_idx
== MAX_SAMPLE_BUFFER
)
651 os
->sample_buffer
= NULL
;
653 os
->sample_buffer
= malloc(MAX_SAMPLE_BUFFER
* sizeof(*new));
654 if (!os
->sample_buffer
)
656 list_add(&os
->sample_buffer
->list
, &os
->to_free
);
657 os
->sample_buffer_idx
= 2;
658 new = os
->sample_buffer
+ 1;
661 new->timestamp
= timestamp
;
662 new->file_offset
= file_offset
;
665 __queue_event(new, s
);
670 static void callchain__printf(struct perf_sample
*sample
)
674 printf("... chain: nr:%" PRIu64
"\n", sample
->callchain
->nr
);
676 for (i
= 0; i
< sample
->callchain
->nr
; i
++)
677 printf("..... %2d: %016" PRIx64
"\n",
678 i
, sample
->callchain
->ips
[i
]);
681 static void branch_stack__printf(struct perf_sample
*sample
)
685 printf("... branch stack: nr:%" PRIu64
"\n", sample
->branch_stack
->nr
);
687 for (i
= 0; i
< sample
->branch_stack
->nr
; i
++)
688 printf("..... %2"PRIu64
": %016" PRIx64
" -> %016" PRIx64
"\n",
689 i
, sample
->branch_stack
->entries
[i
].from
,
690 sample
->branch_stack
->entries
[i
].to
);
693 static void regs_dump__printf(u64 mask
, u64
*regs
)
697 for_each_set_bit(rid
, (unsigned long *) &mask
, sizeof(mask
) * 8) {
700 printf(".... %-5s 0x%" PRIx64
"\n",
701 perf_reg_name(rid
), val
);
705 static void regs_user__printf(struct perf_sample
*sample
, u64 mask
)
707 struct regs_dump
*user_regs
= &sample
->user_regs
;
709 if (user_regs
->regs
) {
710 printf("... user regs: mask 0x%" PRIx64
"\n", mask
);
711 regs_dump__printf(mask
, user_regs
->regs
);
715 static void stack_user__printf(struct stack_dump
*dump
)
717 printf("... ustack: size %" PRIu64
", offset 0x%x\n",
718 dump
->size
, dump
->offset
);
721 static void perf_session__print_tstamp(struct perf_session
*session
,
722 union perf_event
*event
,
723 struct perf_sample
*sample
)
725 u64 sample_type
= __perf_evlist__combined_sample_type(session
->evlist
);
727 if (event
->header
.type
!= PERF_RECORD_SAMPLE
&&
728 !perf_evlist__sample_id_all(session
->evlist
)) {
729 fputs("-1 -1 ", stdout
);
733 if ((sample_type
& PERF_SAMPLE_CPU
))
734 printf("%u ", sample
->cpu
);
736 if (sample_type
& PERF_SAMPLE_TIME
)
737 printf("%" PRIu64
" ", sample
->time
);
740 static void sample_read__printf(struct perf_sample
*sample
, u64 read_format
)
742 printf("... sample_read:\n");
744 if (read_format
& PERF_FORMAT_TOTAL_TIME_ENABLED
)
745 printf("...... time enabled %016" PRIx64
"\n",
746 sample
->read
.time_enabled
);
748 if (read_format
& PERF_FORMAT_TOTAL_TIME_RUNNING
)
749 printf("...... time running %016" PRIx64
"\n",
750 sample
->read
.time_running
);
752 if (read_format
& PERF_FORMAT_GROUP
) {
755 printf(".... group nr %" PRIu64
"\n", sample
->read
.group
.nr
);
757 for (i
= 0; i
< sample
->read
.group
.nr
; i
++) {
758 struct sample_read_value
*value
;
760 value
= &sample
->read
.group
.values
[i
];
761 printf("..... id %016" PRIx64
762 ", value %016" PRIx64
"\n",
763 value
->id
, value
->value
);
766 printf("..... id %016" PRIx64
", value %016" PRIx64
"\n",
767 sample
->read
.one
.id
, sample
->read
.one
.value
);
770 static void dump_event(struct perf_session
*session
, union perf_event
*event
,
771 u64 file_offset
, struct perf_sample
*sample
)
776 printf("\n%#" PRIx64
" [%#x]: event: %d\n",
777 file_offset
, event
->header
.size
, event
->header
.type
);
782 perf_session__print_tstamp(session
, event
, sample
);
784 printf("%#" PRIx64
" [%#x]: PERF_RECORD_%s", file_offset
,
785 event
->header
.size
, perf_event__name(event
->header
.type
));
788 static void dump_sample(struct perf_evsel
*evsel
, union perf_event
*event
,
789 struct perf_sample
*sample
)
796 printf("(IP, %d): %d/%d: %#" PRIx64
" period: %" PRIu64
" addr: %#" PRIx64
"\n",
797 event
->header
.misc
, sample
->pid
, sample
->tid
, sample
->ip
,
798 sample
->period
, sample
->addr
);
800 sample_type
= evsel
->attr
.sample_type
;
802 if (sample_type
& PERF_SAMPLE_CALLCHAIN
)
803 callchain__printf(sample
);
805 if (sample_type
& PERF_SAMPLE_BRANCH_STACK
)
806 branch_stack__printf(sample
);
808 if (sample_type
& PERF_SAMPLE_REGS_USER
)
809 regs_user__printf(sample
, evsel
->attr
.sample_regs_user
);
811 if (sample_type
& PERF_SAMPLE_STACK_USER
)
812 stack_user__printf(&sample
->user_stack
);
814 if (sample_type
& PERF_SAMPLE_WEIGHT
)
815 printf("... weight: %" PRIu64
"\n", sample
->weight
);
817 if (sample_type
& PERF_SAMPLE_DATA_SRC
)
818 printf(" . data_src: 0x%"PRIx64
"\n", sample
->data_src
);
820 if (sample_type
& PERF_SAMPLE_TRANSACTION
)
821 printf("... transaction: %" PRIx64
"\n", sample
->transaction
);
823 if (sample_type
& PERF_SAMPLE_READ
)
824 sample_read__printf(sample
, evsel
->attr
.read_format
);
827 static struct machine
*
828 perf_session__find_machine_for_cpumode(struct perf_session
*session
,
829 union perf_event
*event
,
830 struct perf_sample
*sample
)
832 const u8 cpumode
= event
->header
.misc
& PERF_RECORD_MISC_CPUMODE_MASK
;
833 struct machine
*machine
;
836 ((cpumode
== PERF_RECORD_MISC_GUEST_KERNEL
) ||
837 (cpumode
== PERF_RECORD_MISC_GUEST_USER
))) {
840 if (event
->header
.type
== PERF_RECORD_MMAP
841 || event
->header
.type
== PERF_RECORD_MMAP2
)
842 pid
= event
->mmap
.pid
;
846 machine
= perf_session__find_machine(session
, pid
);
848 machine
= perf_session__findnew_machine(session
,
849 DEFAULT_GUEST_KERNEL_ID
);
853 return &session
->machines
.host
;
856 static int deliver_sample_value(struct perf_session
*session
,
857 struct perf_tool
*tool
,
858 union perf_event
*event
,
859 struct perf_sample
*sample
,
860 struct sample_read_value
*v
,
861 struct machine
*machine
)
863 struct perf_sample_id
*sid
;
865 sid
= perf_evlist__id2sid(session
->evlist
, v
->id
);
868 sample
->period
= v
->value
- sid
->period
;
869 sid
->period
= v
->value
;
872 if (!sid
|| sid
->evsel
== NULL
) {
873 ++session
->stats
.nr_unknown_id
;
877 return tool
->sample(tool
, event
, sample
, sid
->evsel
, machine
);
880 static int deliver_sample_group(struct perf_session
*session
,
881 struct perf_tool
*tool
,
882 union perf_event
*event
,
883 struct perf_sample
*sample
,
884 struct machine
*machine
)
889 for (i
= 0; i
< sample
->read
.group
.nr
; i
++) {
890 ret
= deliver_sample_value(session
, tool
, event
, sample
,
891 &sample
->read
.group
.values
[i
],
901 perf_session__deliver_sample(struct perf_session
*session
,
902 struct perf_tool
*tool
,
903 union perf_event
*event
,
904 struct perf_sample
*sample
,
905 struct perf_evsel
*evsel
,
906 struct machine
*machine
)
908 /* We know evsel != NULL. */
909 u64 sample_type
= evsel
->attr
.sample_type
;
910 u64 read_format
= evsel
->attr
.read_format
;
912 /* Standard sample delievery. */
913 if (!(sample_type
& PERF_SAMPLE_READ
))
914 return tool
->sample(tool
, event
, sample
, evsel
, machine
);
916 /* For PERF_SAMPLE_READ we have either single or group mode. */
917 if (read_format
& PERF_FORMAT_GROUP
)
918 return deliver_sample_group(session
, tool
, event
, sample
,
921 return deliver_sample_value(session
, tool
, event
, sample
,
922 &sample
->read
.one
, machine
);
925 static int perf_session_deliver_event(struct perf_session
*session
,
926 union perf_event
*event
,
927 struct perf_sample
*sample
,
928 struct perf_tool
*tool
,
931 struct perf_evsel
*evsel
;
932 struct machine
*machine
;
934 dump_event(session
, event
, file_offset
, sample
);
936 evsel
= perf_evlist__id2evsel(session
->evlist
, sample
->id
);
937 if (evsel
!= NULL
&& event
->header
.type
!= PERF_RECORD_SAMPLE
) {
939 * XXX We're leaving PERF_RECORD_SAMPLE unnacounted here
940 * because the tools right now may apply filters, discarding
941 * some of the samples. For consistency, in the future we
942 * should have something like nr_filtered_samples and remove
943 * the sample->period from total_sample_period, etc, KISS for
946 * Also testing against NULL allows us to handle files without
947 * attr.sample_id_all and/or without PERF_SAMPLE_ID. In the
948 * future probably it'll be a good idea to restrict event
949 * processing via perf_session to files with both set.
951 hists__inc_nr_events(&evsel
->hists
, event
->header
.type
);
954 machine
= perf_session__find_machine_for_cpumode(session
, event
,
957 switch (event
->header
.type
) {
958 case PERF_RECORD_SAMPLE
:
959 dump_sample(evsel
, event
, sample
);
961 ++session
->stats
.nr_unknown_id
;
964 if (machine
== NULL
) {
965 ++session
->stats
.nr_unprocessable_samples
;
968 return perf_session__deliver_sample(session
, tool
, event
,
969 sample
, evsel
, machine
);
970 case PERF_RECORD_MMAP
:
971 return tool
->mmap(tool
, event
, sample
, machine
);
972 case PERF_RECORD_MMAP2
:
973 return tool
->mmap2(tool
, event
, sample
, machine
);
974 case PERF_RECORD_COMM
:
975 return tool
->comm(tool
, event
, sample
, machine
);
976 case PERF_RECORD_FORK
:
977 return tool
->fork(tool
, event
, sample
, machine
);
978 case PERF_RECORD_EXIT
:
979 return tool
->exit(tool
, event
, sample
, machine
);
980 case PERF_RECORD_LOST
:
981 if (tool
->lost
== perf_event__process_lost
)
982 session
->stats
.total_lost
+= event
->lost
.lost
;
983 return tool
->lost(tool
, event
, sample
, machine
);
984 case PERF_RECORD_READ
:
985 return tool
->read(tool
, event
, sample
, evsel
, machine
);
986 case PERF_RECORD_THROTTLE
:
987 return tool
->throttle(tool
, event
, sample
, machine
);
988 case PERF_RECORD_UNTHROTTLE
:
989 return tool
->unthrottle(tool
, event
, sample
, machine
);
991 ++session
->stats
.nr_unknown_events
;
996 static int perf_session__process_user_event(struct perf_session
*session
, union perf_event
*event
,
997 struct perf_tool
*tool
, u64 file_offset
)
999 int fd
= perf_data_file__fd(session
->file
);
1002 dump_event(session
, event
, file_offset
, NULL
);
1004 /* These events are processed right away */
1005 switch (event
->header
.type
) {
1006 case PERF_RECORD_HEADER_ATTR
:
1007 err
= tool
->attr(tool
, event
, &session
->evlist
);
1009 perf_session__set_id_hdr_size(session
);
1011 case PERF_RECORD_HEADER_TRACING_DATA
:
1012 /* setup for reading amidst mmap */
1013 lseek(fd
, file_offset
, SEEK_SET
);
1014 return tool
->tracing_data(tool
, event
, session
);
1015 case PERF_RECORD_HEADER_BUILD_ID
:
1016 return tool
->build_id(tool
, event
, session
);
1017 case PERF_RECORD_FINISHED_ROUND
:
1018 return tool
->finished_round(tool
, event
, session
);
1024 static void event_swap(union perf_event
*event
, bool sample_id_all
)
1026 perf_event__swap_op swap
;
1028 swap
= perf_event__swap_ops
[event
->header
.type
];
1030 swap(event
, sample_id_all
);
1033 static int perf_session__process_event(struct perf_session
*session
,
1034 union perf_event
*event
,
1035 struct perf_tool
*tool
,
1038 struct perf_sample sample
;
1041 if (session
->header
.needs_swap
)
1042 event_swap(event
, perf_evlist__sample_id_all(session
->evlist
));
1044 if (event
->header
.type
>= PERF_RECORD_HEADER_MAX
)
1047 events_stats__inc(&session
->stats
, event
->header
.type
);
1049 if (event
->header
.type
>= PERF_RECORD_USER_TYPE_START
)
1050 return perf_session__process_user_event(session
, event
, tool
, file_offset
);
1053 * For all kernel events we get the sample data
1055 ret
= perf_evlist__parse_sample(session
->evlist
, event
, &sample
);
1059 if (tool
->ordered_samples
) {
1060 ret
= perf_session_queue_event(session
, event
, &sample
,
1066 return perf_session_deliver_event(session
, event
, &sample
, tool
,
1070 void perf_event_header__bswap(struct perf_event_header
*hdr
)
1072 hdr
->type
= bswap_32(hdr
->type
);
1073 hdr
->misc
= bswap_16(hdr
->misc
);
1074 hdr
->size
= bswap_16(hdr
->size
);
1077 struct thread
*perf_session__findnew(struct perf_session
*session
, pid_t pid
)
1079 return machine__findnew_thread(&session
->machines
.host
, 0, pid
);
1082 static struct thread
*perf_session__register_idle_thread(struct perf_session
*session
)
1084 struct thread
*thread
= perf_session__findnew(session
, 0);
1086 if (thread
== NULL
|| thread__set_comm(thread
, "swapper", 0)) {
1087 pr_err("problem inserting idle task.\n");
1094 static void perf_session__warn_about_errors(const struct perf_session
*session
,
1095 const struct perf_tool
*tool
)
1097 if (tool
->lost
== perf_event__process_lost
&&
1098 session
->stats
.nr_events
[PERF_RECORD_LOST
] != 0) {
1099 ui__warning("Processed %d events and lost %d chunks!\n\n"
1100 "Check IO/CPU overload!\n\n",
1101 session
->stats
.nr_events
[0],
1102 session
->stats
.nr_events
[PERF_RECORD_LOST
]);
1105 if (session
->stats
.nr_unknown_events
!= 0) {
1106 ui__warning("Found %u unknown events!\n\n"
1107 "Is this an older tool processing a perf.data "
1108 "file generated by a more recent tool?\n\n"
1109 "If that is not the case, consider "
1110 "reporting to linux-kernel@vger.kernel.org.\n\n",
1111 session
->stats
.nr_unknown_events
);
1114 if (session
->stats
.nr_unknown_id
!= 0) {
1115 ui__warning("%u samples with id not present in the header\n",
1116 session
->stats
.nr_unknown_id
);
1119 if (session
->stats
.nr_invalid_chains
!= 0) {
1120 ui__warning("Found invalid callchains!\n\n"
1121 "%u out of %u events were discarded for this reason.\n\n"
1122 "Consider reporting to linux-kernel@vger.kernel.org.\n\n",
1123 session
->stats
.nr_invalid_chains
,
1124 session
->stats
.nr_events
[PERF_RECORD_SAMPLE
]);
1127 if (session
->stats
.nr_unprocessable_samples
!= 0) {
1128 ui__warning("%u unprocessable samples recorded.\n"
1129 "Do you have a KVM guest running and not using 'perf kvm'?\n",
1130 session
->stats
.nr_unprocessable_samples
);
1134 volatile int session_done
;
1136 static int __perf_session__process_pipe_events(struct perf_session
*session
,
1137 struct perf_tool
*tool
)
1139 int fd
= perf_data_file__fd(session
->file
);
1140 union perf_event
*event
;
1141 uint32_t size
, cur_size
= 0;
1148 perf_tool__fill_defaults(tool
);
1151 cur_size
= sizeof(union perf_event
);
1153 buf
= malloc(cur_size
);
1158 err
= readn(fd
, event
, sizeof(struct perf_event_header
));
1163 pr_err("failed to read event header\n");
1167 if (session
->header
.needs_swap
)
1168 perf_event_header__bswap(&event
->header
);
1170 size
= event
->header
.size
;
1171 if (size
< sizeof(struct perf_event_header
)) {
1172 pr_err("bad event header size\n");
1176 if (size
> cur_size
) {
1177 void *new = realloc(buf
, size
);
1179 pr_err("failed to allocate memory to read event\n");
1187 p
+= sizeof(struct perf_event_header
);
1189 if (size
- sizeof(struct perf_event_header
)) {
1190 err
= readn(fd
, p
, size
- sizeof(struct perf_event_header
));
1193 pr_err("unexpected end of event stream\n");
1197 pr_err("failed to read event data\n");
1202 if ((skip
= perf_session__process_event(session
, event
, tool
, head
)) < 0) {
1203 pr_err("%#" PRIx64
" [%#x]: failed to process type: %d\n",
1204 head
, event
->header
.size
, event
->header
.type
);
1214 if (!session_done())
1217 /* do the final flush for ordered samples */
1218 session
->ordered_samples
.next_flush
= ULLONG_MAX
;
1219 err
= flush_sample_queue(session
, tool
);
1222 perf_session__warn_about_errors(session
, tool
);
1223 perf_session_free_sample_buffers(session
);
1227 static union perf_event
*
1228 fetch_mmaped_event(struct perf_session
*session
,
1229 u64 head
, size_t mmap_size
, char *buf
)
1231 union perf_event
*event
;
1234 * Ensure we have enough space remaining to read
1235 * the size of the event in the headers.
1237 if (head
+ sizeof(event
->header
) > mmap_size
)
1240 event
= (union perf_event
*)(buf
+ head
);
1242 if (session
->header
.needs_swap
)
1243 perf_event_header__bswap(&event
->header
);
1245 if (head
+ event
->header
.size
> mmap_size
) {
1246 /* We're not fetching the event so swap back again */
1247 if (session
->header
.needs_swap
)
1248 perf_event_header__bswap(&event
->header
);
1256 * On 64bit we can mmap the data file in one go. No need for tiny mmap
1257 * slices. On 32bit we use 32MB.
1259 #if BITS_PER_LONG == 64
1260 #define MMAP_SIZE ULLONG_MAX
1263 #define MMAP_SIZE (32 * 1024 * 1024ULL)
1264 #define NUM_MMAPS 128
1267 int __perf_session__process_events(struct perf_session
*session
,
1268 u64 data_offset
, u64 data_size
,
1269 u64 file_size
, struct perf_tool
*tool
)
1271 int fd
= perf_data_file__fd(session
->file
);
1272 u64 head
, page_offset
, file_offset
, file_pos
;
1273 int err
, mmap_prot
, mmap_flags
, map_idx
= 0;
1275 char *buf
, *mmaps
[NUM_MMAPS
];
1276 union perf_event
*event
;
1278 struct ui_progress prog
;
1280 perf_tool__fill_defaults(tool
);
1282 page_offset
= page_size
* (data_offset
/ page_size
);
1283 file_offset
= page_offset
;
1284 head
= data_offset
- page_offset
;
1286 if (data_size
&& (data_offset
+ data_size
< file_size
))
1287 file_size
= data_offset
+ data_size
;
1289 ui_progress__init(&prog
, file_size
, "Processing events...");
1291 mmap_size
= MMAP_SIZE
;
1292 if (mmap_size
> file_size
)
1293 mmap_size
= file_size
;
1295 memset(mmaps
, 0, sizeof(mmaps
));
1297 mmap_prot
= PROT_READ
;
1298 mmap_flags
= MAP_SHARED
;
1300 if (session
->header
.needs_swap
) {
1301 mmap_prot
|= PROT_WRITE
;
1302 mmap_flags
= MAP_PRIVATE
;
1305 buf
= mmap(NULL
, mmap_size
, mmap_prot
, mmap_flags
, fd
,
1307 if (buf
== MAP_FAILED
) {
1308 pr_err("failed to mmap file\n");
1312 mmaps
[map_idx
] = buf
;
1313 map_idx
= (map_idx
+ 1) & (ARRAY_SIZE(mmaps
) - 1);
1314 file_pos
= file_offset
+ head
;
1317 event
= fetch_mmaped_event(session
, head
, mmap_size
, buf
);
1319 if (mmaps
[map_idx
]) {
1320 munmap(mmaps
[map_idx
], mmap_size
);
1321 mmaps
[map_idx
] = NULL
;
1324 page_offset
= page_size
* (head
/ page_size
);
1325 file_offset
+= page_offset
;
1326 head
-= page_offset
;
1330 size
= event
->header
.size
;
1332 if (size
< sizeof(struct perf_event_header
) ||
1333 perf_session__process_event(session
, event
, tool
, file_pos
) < 0) {
1334 pr_err("%#" PRIx64
" [%#x]: failed to process type: %d\n",
1335 file_offset
+ head
, event
->header
.size
,
1336 event
->header
.type
);
1344 ui_progress__update(&prog
, size
);
1349 if (file_pos
< file_size
)
1353 /* do the final flush for ordered samples */
1354 session
->ordered_samples
.next_flush
= ULLONG_MAX
;
1355 err
= flush_sample_queue(session
, tool
);
1357 ui_progress__finish();
1358 perf_session__warn_about_errors(session
, tool
);
1359 perf_session_free_sample_buffers(session
);
1363 int perf_session__process_events(struct perf_session
*session
,
1364 struct perf_tool
*tool
)
1366 u64 size
= perf_data_file__size(session
->file
);
1369 if (perf_session__register_idle_thread(session
) == NULL
)
1372 if (!perf_data_file__is_pipe(session
->file
))
1373 err
= __perf_session__process_events(session
,
1374 session
->header
.data_offset
,
1375 session
->header
.data_size
,
1378 err
= __perf_session__process_pipe_events(session
, tool
);
1383 bool perf_session__has_traces(struct perf_session
*session
, const char *msg
)
1385 struct perf_evsel
*evsel
;
1387 evlist__for_each(session
->evlist
, evsel
) {
1388 if (evsel
->attr
.type
== PERF_TYPE_TRACEPOINT
)
1392 pr_err("No trace sample to read. Did you call 'perf %s'?\n", msg
);
1396 int maps__set_kallsyms_ref_reloc_sym(struct map
**maps
,
1397 const char *symbol_name
, u64 addr
)
1401 struct ref_reloc_sym
*ref
;
1403 ref
= zalloc(sizeof(struct ref_reloc_sym
));
1407 ref
->name
= strdup(symbol_name
);
1408 if (ref
->name
== NULL
) {
1413 bracket
= strchr(ref
->name
, ']');
1419 for (i
= 0; i
< MAP__NR_TYPES
; ++i
) {
1420 struct kmap
*kmap
= map__kmap(maps
[i
]);
1421 kmap
->ref_reloc_sym
= ref
;
1427 size_t perf_session__fprintf_dsos(struct perf_session
*session
, FILE *fp
)
1429 return machines__fprintf_dsos(&session
->machines
, fp
);
1432 size_t perf_session__fprintf_dsos_buildid(struct perf_session
*session
, FILE *fp
,
1433 bool (skip
)(struct dso
*dso
, int parm
), int parm
)
1435 return machines__fprintf_dsos_buildid(&session
->machines
, fp
, skip
, parm
);
1438 size_t perf_session__fprintf_nr_events(struct perf_session
*session
, FILE *fp
)
1440 struct perf_evsel
*pos
;
1441 size_t ret
= fprintf(fp
, "Aggregated stats:\n");
1443 ret
+= events_stats__fprintf(&session
->stats
, fp
);
1445 evlist__for_each(session
->evlist
, pos
) {
1446 ret
+= fprintf(fp
, "%s stats:\n", perf_evsel__name(pos
));
1447 ret
+= events_stats__fprintf(&pos
->hists
.stats
, fp
);
1453 size_t perf_session__fprintf(struct perf_session
*session
, FILE *fp
)
1456 * FIXME: Here we have to actually print all the machines in this
1457 * session, not just the host...
1459 return machine__fprintf(&session
->machines
.host
, fp
);
1462 struct perf_evsel
*perf_session__find_first_evtype(struct perf_session
*session
,
1465 struct perf_evsel
*pos
;
1467 evlist__for_each(session
->evlist
, pos
) {
1468 if (pos
->attr
.type
== type
)
1474 void perf_evsel__print_ip(struct perf_evsel
*evsel
, struct perf_sample
*sample
,
1475 struct addr_location
*al
,
1476 unsigned int print_opts
, unsigned int stack_depth
)
1478 struct callchain_cursor_node
*node
;
1479 int print_ip
= print_opts
& PRINT_IP_OPT_IP
;
1480 int print_sym
= print_opts
& PRINT_IP_OPT_SYM
;
1481 int print_dso
= print_opts
& PRINT_IP_OPT_DSO
;
1482 int print_symoffset
= print_opts
& PRINT_IP_OPT_SYMOFFSET
;
1483 int print_oneline
= print_opts
& PRINT_IP_OPT_ONELINE
;
1484 int print_srcline
= print_opts
& PRINT_IP_OPT_SRCLINE
;
1485 char s
= print_oneline
? ' ' : '\t';
1487 if (symbol_conf
.use_callchain
&& sample
->callchain
) {
1488 struct addr_location node_al
;
1490 if (machine__resolve_callchain(al
->machine
, evsel
, al
->thread
,
1492 PERF_MAX_STACK_DEPTH
) != 0) {
1494 error("Failed to resolve callchain. Skipping\n");
1497 callchain_cursor_commit(&callchain_cursor
);
1499 if (print_symoffset
)
1502 while (stack_depth
) {
1505 node
= callchain_cursor_current(&callchain_cursor
);
1509 if (node
->sym
&& node
->sym
->ignore
)
1513 printf("%c%16" PRIx64
, s
, node
->ip
);
1516 addr
= node
->map
->map_ip(node
->map
, node
->ip
);
1520 if (print_symoffset
) {
1521 node_al
.addr
= addr
;
1522 node_al
.map
= node
->map
;
1523 symbol__fprintf_symname_offs(node
->sym
, &node_al
, stdout
);
1525 symbol__fprintf_symname(node
->sym
, stdout
);
1530 map__fprintf_dsoname(node
->map
, stdout
);
1535 map__fprintf_srcline(node
->map
, addr
, "\n ",
1543 callchain_cursor_advance(&callchain_cursor
);
1547 if (al
->sym
&& al
->sym
->ignore
)
1551 printf("%16" PRIx64
, sample
->ip
);
1555 if (print_symoffset
)
1556 symbol__fprintf_symname_offs(al
->sym
, al
,
1559 symbol__fprintf_symname(al
->sym
, stdout
);
1564 map__fprintf_dsoname(al
->map
, stdout
);
1569 map__fprintf_srcline(al
->map
, al
->addr
, "\n ", stdout
);
1573 int perf_session__cpu_bitmap(struct perf_session
*session
,
1574 const char *cpu_list
, unsigned long *cpu_bitmap
)
1577 struct cpu_map
*map
;
1579 for (i
= 0; i
< PERF_TYPE_MAX
; ++i
) {
1580 struct perf_evsel
*evsel
;
1582 evsel
= perf_session__find_first_evtype(session
, i
);
1586 if (!(evsel
->attr
.sample_type
& PERF_SAMPLE_CPU
)) {
1587 pr_err("File does not contain CPU events. "
1588 "Remove -c option to proceed.\n");
1593 map
= cpu_map__new(cpu_list
);
1595 pr_err("Invalid cpu_list\n");
1599 for (i
= 0; i
< map
->nr
; i
++) {
1600 int cpu
= map
->map
[i
];
1602 if (cpu
>= MAX_NR_CPUS
) {
1603 pr_err("Requested CPU %d too large. "
1604 "Consider raising MAX_NR_CPUS\n", cpu
);
1605 goto out_delete_map
;
1608 set_bit(cpu
, cpu_bitmap
);
1614 cpu_map__delete(map
);
1618 void perf_session__fprintf_info(struct perf_session
*session
, FILE *fp
,
1621 int fd
= perf_data_file__fd(session
->file
);
1625 if (session
== NULL
|| fp
== NULL
)
1628 ret
= fstat(fd
, &st
);
1632 fprintf(fp
, "# ========\n");
1633 fprintf(fp
, "# captured on: %s", ctime(&st
.st_ctime
));
1634 perf_header__fprintf_info(session
, fp
, full
);
1635 fprintf(fp
, "# ========\n#\n");
1639 int __perf_session__set_tracepoints_handlers(struct perf_session
*session
,
1640 const struct perf_evsel_str_handler
*assocs
,
1643 struct perf_evsel
*evsel
;
1647 for (i
= 0; i
< nr_assocs
; i
++) {
1649 * Adding a handler for an event not in the session,
1652 evsel
= perf_evlist__find_tracepoint_by_name(session
->evlist
, assocs
[i
].name
);
1657 if (evsel
->handler
!= NULL
)
1659 evsel
->handler
= assocs
[i
].handler
;