2 * Copyright (C) 2009, Steven Rostedt <srostedt@redhat.com>
4 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License (not later!)
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
29 #include "trace-event.h"
31 static int get_common_field(struct scripting_context
*context
,
32 int *offset
, int *size
, const char *type
)
34 struct pevent
*pevent
= context
->pevent
;
35 struct event_format
*event
;
36 struct format_field
*field
;
42 event
= pevent
->events
[0];
43 field
= pevent_find_common_field(event
, type
);
46 *offset
= field
->offset
;
50 return pevent_read_number(pevent
, context
->event_data
+ *offset
, *size
);
53 int common_lock_depth(struct scripting_context
*context
)
59 ret
= get_common_field(context
, &size
, &offset
,
67 int common_flags(struct scripting_context
*context
)
73 ret
= get_common_field(context
, &size
, &offset
,
81 int common_pc(struct scripting_context
*context
)
87 ret
= get_common_field(context
, &size
, &offset
,
88 "common_preempt_count");
96 raw_field_value(struct event_format
*event
, const char *name
, void *data
)
98 struct format_field
*field
;
99 unsigned long long val
;
101 field
= pevent_find_any_field(event
, name
);
105 pevent_read_number_field(field
, data
, &val
);
110 unsigned long long read_size(struct event_format
*event
, void *ptr
, int size
)
112 return pevent_read_number(event
->pevent
, ptr
, size
);
115 void event_format__fprintf(struct event_format
*event
,
116 int cpu
, void *data
, int size
, FILE *fp
)
118 struct pevent_record record
;
121 memset(&record
, 0, sizeof(record
));
127 pevent_event_info(&s
, event
, &record
);
128 trace_seq_do_fprintf(&s
, fp
);
129 trace_seq_destroy(&s
);
132 void event_format__print(struct event_format
*event
,
133 int cpu
, void *data
, int size
)
135 return event_format__fprintf(event
, cpu
, data
, size
, stdout
);
138 void parse_ftrace_printk(struct pevent
*pevent
,
139 char *file
, unsigned int size __maybe_unused
)
141 unsigned long long addr
;
148 line
= strtok_r(file
, "\n", &next
);
150 addr_str
= strtok_r(line
, ":", &fmt
);
152 warning("printk format with empty entry");
155 addr
= strtoull(addr_str
, NULL
, 16);
156 /* fmt still has a space, skip it */
157 printk
= strdup(fmt
+1);
158 line
= strtok_r(NULL
, "\n", &next
);
159 pevent_register_print_string(pevent
, printk
, addr
);
163 int parse_ftrace_file(struct pevent
*pevent
, char *buf
, unsigned long size
)
165 return pevent_parse_event(pevent
, buf
, size
, "ftrace");
168 int parse_event_file(struct pevent
*pevent
,
169 char *buf
, unsigned long size
, char *sys
)
171 return pevent_parse_event(pevent
, buf
, size
, sys
);
174 struct event_format
*trace_find_next_event(struct pevent
*pevent
,
175 struct event_format
*event
)
179 if (!pevent
|| !pevent
->events
)
184 return pevent
->events
[0];
187 if (idx
< pevent
->nr_events
&& event
== pevent
->events
[idx
]) {
189 if (idx
== pevent
->nr_events
)
191 return pevent
->events
[idx
];
194 for (idx
= 1; idx
< pevent
->nr_events
; idx
++) {
195 if (event
== pevent
->events
[idx
- 1])
196 return pevent
->events
[idx
];
203 unsigned long long value
;
206 static const struct flag flags
[] = {
208 { "TIMER_SOFTIRQ", 1 },
209 { "NET_TX_SOFTIRQ", 2 },
210 { "NET_RX_SOFTIRQ", 3 },
211 { "BLOCK_SOFTIRQ", 4 },
212 { "BLOCK_IOPOLL_SOFTIRQ", 5 },
213 { "TASKLET_SOFTIRQ", 6 },
214 { "SCHED_SOFTIRQ", 7 },
215 { "HRTIMER_SOFTIRQ", 8 },
216 { "RCU_SOFTIRQ", 9 },
218 { "HRTIMER_NORESTART", 0 },
219 { "HRTIMER_RESTART", 1 },
222 unsigned long long eval_flag(const char *flag
)
227 * Some flags in the format files do not get converted.
228 * If the flag is not numeric, see if it is something that
229 * we already know about.
231 if (isdigit(flag
[0]))
232 return strtoull(flag
, NULL
, 0);
234 for (i
= 0; i
< (int)(sizeof(flags
)/sizeof(flags
[0])); i
++)
235 if (strcmp(flags
[i
].name
, flag
) == 0)
236 return flags
[i
].value
;