1 // SPDX-License-Identifier: GPL-2.0
5 #include <traceevent/event-parse.h>
13 static int comma_fprintf(FILE *fp
, bool *first
, const char *fmt
, ...)
19 ret
+= fprintf(fp
, ",");
21 ret
+= fprintf(fp
, ":");
26 ret
+= vfprintf(fp
, fmt
, args
);
31 static int __print_attr__fprintf(FILE *fp
, const char *name
, const char *val
, void *priv
)
33 return comma_fprintf(fp
, (bool *)priv
, " %s: %s", name
, val
);
36 int perf_evsel__fprintf(struct perf_evsel
*evsel
,
37 struct perf_attr_details
*details
, FILE *fp
)
42 if (details
->event_group
) {
43 struct perf_evsel
*pos
;
45 if (!perf_evsel__is_group_leader(evsel
))
48 if (evsel
->nr_members
> 1)
49 printed
+= fprintf(fp
, "%s{", evsel
->group_name
?: "");
51 printed
+= fprintf(fp
, "%s", perf_evsel__name(evsel
));
52 for_each_group_member(pos
, evsel
)
53 printed
+= fprintf(fp
, ",%s", perf_evsel__name(pos
));
55 if (evsel
->nr_members
> 1)
56 printed
+= fprintf(fp
, "}");
60 printed
+= fprintf(fp
, "%s", perf_evsel__name(evsel
));
62 if (details
->verbose
) {
63 printed
+= perf_event_attr__fprintf(fp
, &evsel
->attr
,
64 __print_attr__fprintf
, &first
);
65 } else if (details
->freq
) {
66 const char *term
= "sample_freq";
68 if (!evsel
->attr
.freq
)
69 term
= "sample_period";
71 printed
+= comma_fprintf(fp
, &first
, " %s=%" PRIu64
,
72 term
, (u64
)evsel
->attr
.sample_freq
);
75 if (details
->trace_fields
) {
76 struct tep_format_field
*field
;
78 if (evsel
->attr
.type
!= PERF_TYPE_TRACEPOINT
) {
79 printed
+= comma_fprintf(fp
, &first
, " (not a tracepoint)");
83 field
= evsel
->tp_format
->format
.fields
;
85 printed
+= comma_fprintf(fp
, &first
, " (no trace field)");
89 printed
+= comma_fprintf(fp
, &first
, " trace_fields: %s", field
->name
);
93 printed
+= comma_fprintf(fp
, &first
, "%s", field
->name
);
102 int sample__fprintf_callchain(struct perf_sample
*sample
, int left_alignment
,
103 unsigned int print_opts
, struct callchain_cursor
*cursor
,
107 struct callchain_cursor_node
*node
;
108 int print_ip
= print_opts
& EVSEL__PRINT_IP
;
109 int print_sym
= print_opts
& EVSEL__PRINT_SYM
;
110 int print_dso
= print_opts
& EVSEL__PRINT_DSO
;
111 int print_symoffset
= print_opts
& EVSEL__PRINT_SYMOFFSET
;
112 int print_oneline
= print_opts
& EVSEL__PRINT_ONELINE
;
113 int print_srcline
= print_opts
& EVSEL__PRINT_SRCLINE
;
114 int print_unknown_as_addr
= print_opts
& EVSEL__PRINT_UNKNOWN_AS_ADDR
;
115 int print_arrow
= print_opts
& EVSEL__PRINT_CALLCHAIN_ARROW
;
116 int print_skip_ignored
= print_opts
& EVSEL__PRINT_SKIP_IGNORED
;
117 char s
= print_oneline
? ' ' : '\t';
120 if (sample
->callchain
) {
121 struct addr_location node_al
;
123 callchain_cursor_commit(cursor
);
128 node
= callchain_cursor_current(cursor
);
132 if (node
->sym
&& node
->sym
->ignore
&& print_skip_ignored
)
135 printed
+= fprintf(fp
, "%-*.*s", left_alignment
, left_alignment
, " ");
137 if (print_arrow
&& !first
)
138 printed
+= fprintf(fp
, " <-");
141 printed
+= fprintf(fp
, "%c%16" PRIx64
, s
, node
->ip
);
144 addr
= node
->map
->map_ip(node
->map
, node
->ip
);
147 printed
+= fprintf(fp
, " ");
149 node_al
.map
= node
->map
;
151 if (print_symoffset
) {
152 printed
+= __symbol__fprintf_symname_offs(node
->sym
, &node_al
,
153 print_unknown_as_addr
,
156 printed
+= __symbol__fprintf_symname(node
->sym
, &node_al
,
157 print_unknown_as_addr
, fp
);
161 if (print_dso
&& (!node
->sym
|| !node
->sym
->inlined
)) {
162 printed
+= fprintf(fp
, " (");
163 printed
+= map__fprintf_dsoname(node
->map
, fp
);
164 printed
+= fprintf(fp
, ")");
168 printed
+= map__fprintf_srcline(node
->map
, addr
, "\n ", fp
);
170 if (node
->sym
&& node
->sym
->inlined
)
171 printed
+= fprintf(fp
, " (inlined)");
174 printed
+= fprintf(fp
, "\n");
176 /* Add srccode here too? */
177 if (symbol_conf
.bt_stop_list
&&
179 strlist__has_entry(symbol_conf
.bt_stop_list
,
186 callchain_cursor_advance(cursor
);
193 int sample__fprintf_sym(struct perf_sample
*sample
, struct addr_location
*al
,
194 int left_alignment
, unsigned int print_opts
,
195 struct callchain_cursor
*cursor
, FILE *fp
)
198 int print_ip
= print_opts
& EVSEL__PRINT_IP
;
199 int print_sym
= print_opts
& EVSEL__PRINT_SYM
;
200 int print_dso
= print_opts
& EVSEL__PRINT_DSO
;
201 int print_symoffset
= print_opts
& EVSEL__PRINT_SYMOFFSET
;
202 int print_srcline
= print_opts
& EVSEL__PRINT_SRCLINE
;
203 int print_unknown_as_addr
= print_opts
& EVSEL__PRINT_UNKNOWN_AS_ADDR
;
205 if (cursor
!= NULL
) {
206 printed
+= sample__fprintf_callchain(sample
, left_alignment
,
207 print_opts
, cursor
, fp
);
209 printed
+= fprintf(fp
, "%-*.*s", left_alignment
, left_alignment
, " ");
212 printed
+= fprintf(fp
, "%16" PRIx64
, sample
->ip
);
215 printed
+= fprintf(fp
, " ");
216 if (print_symoffset
) {
217 printed
+= __symbol__fprintf_symname_offs(al
->sym
, al
,
218 print_unknown_as_addr
,
221 printed
+= __symbol__fprintf_symname(al
->sym
, al
,
222 print_unknown_as_addr
, fp
);
227 printed
+= fprintf(fp
, " (");
228 printed
+= map__fprintf_dsoname(al
->map
, fp
);
229 printed
+= fprintf(fp
, ")");
233 printed
+= map__fprintf_srcline(al
->map
, al
->addr
, "\n ", fp
);