]> git.proxmox.com Git - qemu.git/blame - simpletrace.c
trace: Support disabled events in trace-events
[qemu.git] / simpletrace.c
CommitLineData
26f7227b
SH
1/*
2 * Simple trace backend
3 *
4 * Copyright IBM, Corp. 2010
5 *
6 * This work is licensed under the terms of the GNU GPL, version 2. See
7 * the COPYING file in the top-level directory.
8 *
9 */
10
11#include <stdlib.h>
12#include <stdint.h>
13#include <stdio.h>
14#include <time.h>
15#include "trace.h"
16
17/** Trace file header event ID */
18#define HEADER_EVENT_ID (~(uint64_t)0) /* avoids conflicting with TraceEventIDs */
19
20/** Trace file magic number */
21#define HEADER_MAGIC 0xf2b177cb0aa429b4ULL
22
23/** Trace file version number, bump if format changes */
24#define HEADER_VERSION 0
25
26/** Trace buffer entry */
27typedef struct {
28 uint64_t event;
29 uint64_t timestamp_ns;
30 uint64_t x1;
31 uint64_t x2;
32 uint64_t x3;
33 uint64_t x4;
34 uint64_t x5;
35 uint64_t x6;
36} TraceRecord;
37
38enum {
39 TRACE_BUF_LEN = 64 * 1024 / sizeof(TraceRecord),
40};
41
42static TraceRecord trace_buf[TRACE_BUF_LEN];
43static unsigned int trace_idx;
44static FILE *trace_fp;
45
46static bool write_header(FILE *fp)
47{
48 static const TraceRecord header = {
49 .event = HEADER_EVENT_ID,
50 .timestamp_ns = HEADER_MAGIC,
51 .x1 = HEADER_VERSION,
52 };
53
54 return fwrite(&header, sizeof header, 1, fp) == 1;
55}
56
57static void flush_trace_buffer(void)
58{
59 if (!trace_fp) {
60 trace_fp = fopen("trace.log", "w");
61 if (trace_fp) {
62 write_header(trace_fp);
63 }
64 }
65 if (trace_fp) {
66 size_t unused; /* for when fwrite(3) is declared warn_unused_result */
67 unused = fwrite(trace_buf, trace_idx * sizeof(trace_buf[0]), 1, trace_fp);
68 }
69
70 /* Discard written trace records */
71 trace_idx = 0;
72}
73
74void st_set_trace_file_enabled(bool enable)
75{
76 if (enable == trace_file_enabled) {
77 return; /* no change */
78 }
79
80 /* Flush/discard trace buffer */
81 st_flush_trace_buffer();
82
83 /* To disable, close trace file */
84 if (!enable) {
85 fclose(trace_fp);
86 trace_fp = NULL;
87 }
88
89 trace_file_enabled = enable;
90}
91
92static void trace(TraceEventID event, uint64_t x1, uint64_t x2, uint64_t x3,
93 uint64_t x4, uint64_t x5, uint64_t x6)
94{
95 TraceRecord *rec = &trace_buf[trace_idx];
96 struct timespec ts;
97
98 /* TODO Windows? It would be good to use qemu-timer here but that isn't
99 * linked into qemu-tools. Also we should avoid recursion in the tracing
100 * code, therefore it is useful to be self-contained.
101 */
102 clock_gettime(CLOCK_MONOTONIC, &ts);
103
22890ab5
PS
104 if (!trace_list[event].state) {
105 return;
106 }
107
26f7227b
SH
108 rec->event = event;
109 rec->timestamp_ns = ts.tv_sec * 1000000000LL + ts.tv_nsec;
110 rec->x1 = x1;
111 rec->x2 = x2;
112 rec->x3 = x3;
113 rec->x4 = x4;
114 rec->x5 = x5;
115 rec->x6 = x6;
116
117 if (++trace_idx == TRACE_BUF_LEN) {
118 flush_trace_buffer();
119 }
120}
121
122void trace0(TraceEventID event)
123{
124 trace(event, 0, 0, 0, 0, 0, 0);
125}
126
127void trace1(TraceEventID event, uint64_t x1)
128{
129 trace(event, x1, 0, 0, 0, 0, 0);
130}
131
132void trace2(TraceEventID event, uint64_t x1, uint64_t x2)
133{
134 trace(event, x1, x2, 0, 0, 0, 0);
135}
136
137void trace3(TraceEventID event, uint64_t x1, uint64_t x2, uint64_t x3)
138{
139 trace(event, x1, x2, x3, 0, 0, 0);
140}
141
142void trace4(TraceEventID event, uint64_t x1, uint64_t x2, uint64_t x3, uint64_t x4)
143{
144 trace(event, x1, x2, x3, x4, 0, 0);
145}
146
147void trace5(TraceEventID event, uint64_t x1, uint64_t x2, uint64_t x3, uint64_t x4, uint64_t x5)
148{
149 trace(event, x1, x2, x3, x4, x5, 0);
150}
151
152void trace6(TraceEventID event, uint64_t x1, uint64_t x2, uint64_t x3, uint64_t x4, uint64_t x5, uint64_t x6)
153{
154 trace(event, x1, x2, x3, x4, x5, x6);
155}
156
157/**
158 * Flush the trace buffer on exit
159 */
160static void __attribute__((constructor)) st_init(void)
161{
162 atexit(st_flush_trace_buffer);
163}
22890ab5
PS
164
165void st_print_trace(FILE *stream, int (*stream_printf)(FILE *stream, const char *fmt, ...))
166{
167 unsigned int i;
168
169 for (i = 0; i < trace_idx; i++) {
170 stream_printf(stream, "Event %lu : %lx %lx %lx %lx %lx\n",
171 trace_buf[i].event, trace_buf[i].x1, trace_buf[i].x2,
172 trace_buf[i].x3, trace_buf[i].x4, trace_buf[i].x5);
173 }
174}
175
176void st_print_trace_events(FILE *stream, int (*stream_printf)(FILE *stream, const char *fmt, ...))
177{
178 unsigned int i;
179
180 for (i = 0; i < NR_TRACE_EVENTS; i++) {
181 stream_printf(stream, "%s [Event ID %u] : state %u\n",
182 trace_list[i].tp_name, i, trace_list[i].state);
183 }
184}
185
186static TraceEvent* find_trace_event_by_name(const char *tname)
187{
188 unsigned int i;
189
190 if (!tname) {
191 return NULL;
192 }
193
194 for (i = 0; i < NR_TRACE_EVENTS; i++) {
195 if (!strcmp(trace_list[i].tp_name, tname)) {
196 return &trace_list[i];
197 }
198 }
199 return NULL; /* indicates end of list reached without a match */
200}
201
202void st_change_trace_event_state(const char *tname, bool tstate)
203{
204 TraceEvent *tp;
205
206 tp = find_trace_event_by_name(tname);
207 if (tp) {
208 tp->state = tstate;
209 }
210}