merge with m5 head
[gem5.git] / base / trace.cc
1 /*
2 * Copyright (c) 2003 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;
9 * redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution;
12 * neither the name of the copyright holders nor the names of its
13 * contributors may be used to endorse or promote products derived from
14 * this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29 #include <ctype.h>
30 #include <fstream>
31 #include <iostream>
32 #include <list>
33 #include <string>
34 #include <vector>
35
36 #include "base/misc.hh"
37 #include "base/trace.hh"
38 #include "base/str.hh"
39
40 using namespace std;
41
42 namespace Trace {
43 const string DefaultName("global");
44 FlagVec flags(NumFlags, false);
45
46 //
47 // This variable holds the output stream for debug information. Other
48 // than setting up/redirecting this stream, do *NOT* reference this
49 // directly; use DebugOut() (see below) to access this stream for
50 // output.
51 //
52 ostream *dprintf_stream = &cerr;
53
54 int dprintf_ignore_size;
55 vector<string> dprintf_ignore;
56 vector<vector<string> > ignore_tokens;
57 vector<int> ignore_size;
58
59 bool
60 dprintf_ignore_name(const string &name)
61 {
62 vector<string> name_tokens;
63 tokenize(name_tokens, name, '.');
64 int ntsize = name_tokens.size();
65
66 for (int i = 0; i < dprintf_ignore_size; ++i) {
67 bool match = true;
68 int jstop = ignore_size[i];
69 for (int j = 0; j < jstop; ++j) {
70 if (j >= ntsize)
71 break;
72
73 const string &ignore = ignore_tokens[i][j];
74 if (ignore != "*" && ignore != name_tokens[j]) {
75 match = false;
76 break;
77 }
78 }
79
80 if (match == true)
81 return true;
82 }
83
84 return false;
85 }
86
87
88 Log theLog;
89
90 Log::Log()
91 {
92 size = 0;
93 buffer = NULL;
94 }
95
96
97 void
98 Log::init(int _size)
99 {
100 if (buffer != NULL) {
101 fatal("Trace::Log::init called twice!");
102 }
103
104 size = _size;
105
106 buffer = new (Record *)[size];
107
108 for (int i = 0; i < size; ++i) {
109 buffer[i] = NULL;
110 }
111
112 nextRecPtr = &buffer[0];
113 wrapRecPtr = &buffer[size];
114 }
115
116
117 Log::~Log()
118 {
119 for (int i = 0; i < size; ++i) {
120 delete buffer[i];
121 }
122
123 delete [] buffer;
124 }
125
126
127 void
128 Log::append(Record *rec)
129 {
130 // dump record to output stream if there's one open
131 if (dprintf_stream != NULL) {
132 rec->dump(*dprintf_stream);
133 }
134
135 // no buffering: justget rid of it now
136 if (buffer == NULL) {
137 delete rec;
138 return;
139 }
140
141 Record *oldRec = *nextRecPtr;
142
143 if (oldRec != NULL) {
144 // log has wrapped: overwrite
145 delete oldRec;
146 }
147
148 *nextRecPtr = rec;
149
150 if (++nextRecPtr == wrapRecPtr) {
151 nextRecPtr = &buffer[0];
152 }
153 }
154
155
156 void
157 Log::dump(ostream &os)
158 {
159 if (buffer == NULL) {
160 return;
161 }
162
163 Record **bufPtr = nextRecPtr;
164
165 if (*bufPtr == NULL) {
166 // next record slot is empty: log must not be full yet.
167 // start dumping from beginning of buffer
168 bufPtr = buffer;
169 }
170
171 do {
172 Record *rec = *bufPtr;
173
174 rec->dump(os);
175
176 if (++bufPtr == wrapRecPtr) {
177 bufPtr = &buffer[0];
178 }
179 } while (bufPtr != nextRecPtr);
180 }
181
182 PrintfRecord::~PrintfRecord()
183 {
184 delete &args;
185 }
186
187
188 void
189 PrintfRecord::dump(ostream &os)
190 {
191 string fmt = "";
192
193 if (!name.empty()) {
194 fmt = "%s: " + fmt;
195 args.prepend(name);
196 }
197
198 if (cycle != (Tick)-1) {
199 fmt = "%7d: " + fmt;
200 args.prepend(cycle);
201 }
202
203 fmt += format;
204
205 args.dump(os, fmt);
206 os.flush();
207 }
208
209
210
211 RawDataRecord::RawDataRecord(Tick _cycle, const void *_data, int _len)
212 : Record(_cycle), len(_len)
213 {
214 data = new uint8_t[len];
215 memcpy(data, _data, len);
216 }
217
218
219 RawDataRecord::~RawDataRecord()
220 {
221 delete [] data;
222 }
223
224
225 void
226 RawDataRecord::dump(ostream &os)
227 {
228 int c, i, j;
229
230 for (i = 0; i < len; i += 16) {
231 ccprintf(os, "%08x ", i);
232 c = len - i;
233 if (c > 16) c = 16;
234
235 for (j = 0; j < c; j++) {
236 ccprintf(os, "%02x ", data[i + j] & 0xff);
237 if ((j & 0xf) == 7 && j > 0)
238 ccprintf(os, " ");
239 }
240
241 for (; j < 16; j++)
242 ccprintf(os, " ");
243 ccprintf(os, " ");
244
245 for (j = 0; j < c; j++) {
246 int ch = data[i + j] & 0x7f;
247 ccprintf(os,
248 "%c", (char)(isprint(ch) ? ch : ' '));
249 }
250
251 ccprintf(os, "\n");
252
253 if (c < 16)
254 break;
255 }
256 }
257 } // namespace Trace
258
259 //
260 // Returns the current output stream for debug information. As a
261 // wrapper around Trace::dprintf_stream, this handles cases where debug
262 // information is generated in the process of parsing .ini options,
263 // before we process the option that sets up the debug output stream
264 // itself.
265 //
266 std::ostream &
267 DebugOut()
268 {
269 return *Trace::dprintf_stream;
270 }
271
272 /////////////////////////////////////////////
273 //
274 // C-linkage functions for invoking from gdb
275 //
276 /////////////////////////////////////////////
277
278 //
279 // Dump trace buffer to specified file (cout if NULL)
280 //
281 extern "C"
282 void
283 dumpTrace(const char *filename)
284 {
285 if (filename != NULL) {
286 ofstream out(filename);
287 Trace::theLog.dump(out);
288 out.close();
289 }
290 else {
291 Trace::theLog.dump(cout);
292 }
293 }
294
295
296 //
297 // Turn on/off trace output to cerr. Typically used when trace output
298 // is only going to circular buffer, but you want to see what's being
299 // sent there as you step through some code in gdb. This uses the
300 // same facility as the "trace to file" feature, and will print error
301 // messages rather than clobbering an existing ostream pointer.
302 //
303 extern "C"
304 void
305 echoTrace(bool on)
306 {
307 if (on) {
308 if (Trace::dprintf_stream != NULL) {
309 cerr << "Already echoing trace to a file... go do a 'tail -f'"
310 << " on that file instead." << endl;
311 } else {
312 Trace::dprintf_stream = &cerr;
313 }
314 } else {
315 if (Trace::dprintf_stream != &cerr) {
316 cerr << "Not echoing trace to cerr." << endl;
317 } else {
318 Trace::dprintf_stream = NULL;
319 }
320 }
321 }
322
323 extern "C"
324 void
325 printTraceFlags()
326 {
327 using namespace Trace;
328 for (int i = 0; i < numFlagStrings; ++i)
329 if (flags[i])
330 cprintf("%s\n", flagStrings[i]);
331 }
332
333 void
334 tweakTraceFlag(const char *string, bool value)
335 {
336 using namespace Trace;
337 std::string str(string);
338
339 for (int i = 0; i < numFlagStrings; ++i) {
340 if (str != flagStrings[i])
341 continue;
342
343 int idx = i;
344
345 if (idx < NumFlags) {
346 flags[idx] = value;
347 } else {
348 idx -= NumFlags;
349 if (idx >= NumCompoundFlags) {
350 ccprintf(cerr, "Invalid compound flag");
351 return;
352 }
353
354 const Flags *flagVec = compoundFlags[idx];
355
356 for (int j = 0; flagVec[j] != -1; ++j) {
357 if (flagVec[j] >= NumFlags) {
358 ccprintf(cerr, "Invalid compound flag");
359 return;
360 }
361 flags[flagVec[j]] = value;
362 }
363 }
364
365 cprintf("flag %s was %s\n", string, value ? "set" : "cleared");
366 return;
367 }
368
369 cprintf("could not find flag %s\n", string);
370 }
371
372 extern "C"
373 void
374 setTraceFlag(const char *string)
375 {
376 tweakTraceFlag(string, true);
377 }
378
379 extern "C"
380 void
381 clearTraceFlag(const char *string)
382 {
383 tweakTraceFlag(string, false);
384 }