Deleted Added
sdiff udiff text old ( 2632:1bb2f91485ea ) new ( 2665:a124942bacb8 )
full compact
1/*
2 * Copyright (c) 2001-2005 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#ifndef __BASE_TRACE_HH__
30#define __BASE_TRACE_HH__
31
32#include <vector>
33
34#include "base/cprintf.hh"
35#include "base/match.hh"
36#include "sim/host.hh"
37#include "sim/root.hh"
38
39#ifndef TRACING_ON
40#ifndef NDEBUG
41#define TRACING_ON 1
42#else
43#define TRACING_ON 0
44#endif
45#endif
46
47#include "base/traceflags.hh"
48
49namespace Trace {
50
51 typedef std::vector<bool> FlagVec;
52
53 extern FlagVec flags;
54
55#if TRACING_ON
56 const bool On = true;
57#else
58 const bool On = false;
59#endif
60
61 inline bool
62 IsOn(int t)
63 {
64 return flags[t];
65
66 }
67
68 void dump(const uint8_t *data, int count);
69
70 class Record
71 {
72 protected:
73 Tick cycle;
74
75 Record(Tick _cycle)
76 : cycle(_cycle)
77 {
78 }
79
80 public:
81 virtual ~Record() {}
82
83 virtual void dump(std::ostream &) = 0;
84 };
85
86 class PrintfRecord : public Record
87 {
88 private:
89 const char *format;
90 const std::string &name;
91 cp::ArgList &args;
92
93 public:
94 PrintfRecord(const char *_format, cp::ArgList &_args,
95 Tick cycle, const std::string &_name)
96 : Record(cycle), format(_format), name(_name), args(_args)
97 {
98 }
99
100 virtual ~PrintfRecord();
101
102 virtual void dump(std::ostream &);
103 };
104
105 class DataRecord : public Record
106 {
107 private:
108 const std::string &name;
109 uint8_t *data;
110 int len;
111
112 public:
113 DataRecord(Tick cycle, const std::string &name,
114 const void *_data, int _len);
115 virtual ~DataRecord();
116
117 virtual void dump(std::ostream &);
118 };
119
120 class Log
121 {
122 private:
123 int size; // number of records in log
124 Record **buffer; // array of 'size' Record ptrs (circular buf)
125 Record **nextRecPtr; // next slot to use in buffer
126 Record **wrapRecPtr; // &buffer[size], for quick wrap check
127
128 public:
129
130 Log();
131 ~Log();
132
133 void init(int _size);
134
135 void append(Record *); // append trace record to log
136 void dump(std::ostream &); // dump contents to stream
137 };
138
139 extern Log theLog;
140
141 extern ObjectMatch ignore;
142
143 inline void
144 dprintf(const char *format, cp::ArgList &args, Tick cycle,
145 const std::string &name)
146 {
147 if (name.empty() || !ignore.match(name))
148 theLog.append(new Trace::PrintfRecord(format, args, cycle, name));
149 }
150
151 inline void
152 dataDump(Tick cycle, const std::string &name, const void *data, int len)
153 {
154 theLog.append(new Trace::DataRecord(cycle, name, data, len));
155 }
156
157 extern const std::string DefaultName;
158};
159
160// This silly little class allows us to wrap a string in a functor
161// object so that we can give a name() that DPRINTF will like
162struct StringWrap
163{
164 std::string str;
165 StringWrap(const std::string &s) : str(s) {}
166 const std::string &operator()() const { return str; }
167};
168
169inline const std::string &name() { return Trace::DefaultName; }
170std::ostream &DebugOut();
171
172//
173// DPRINTF is a debugging trace facility that allows one to
174// selectively enable tracing statements. To use DPRINTF, there must
175// be a function or functor called name() that returns a const
176// std::string & in the current scope.
177//
178// If you desire that the automatic printing not occur, use DPRINTFR
179// (R for raw)
180//
181
182#if TRACING_ON
183
184#define DTRACE(x) (Trace::IsOn(Trace::x))
185
186#define DCOUT(x) if (Trace::IsOn(Trace::x)) DebugOut()
187
188#define DDUMP(x, data, count) \
189do { \
190 if (Trace::IsOn(Trace::x)) \
191 Trace::dataDump(curTick, name(), data, count); \
192} while (0)
193
194#define __dprintf(cycle, name, format, args...) \
195 Trace::dprintf(format, (*(new cp::ArgList), args), cycle, name)
196
197#define DPRINTF(x, args...) \
198do { \
199 if (Trace::IsOn(Trace::x)) \
200 __dprintf(curTick, name(), args, cp::ArgListNull()); \
201} while (0)
202
203#define DPRINTFR(x, args...) \
204do { \
205 if (Trace::IsOn(Trace::x)) \
206 __dprintf((Tick)-1, std::string(), args, cp::ArgListNull()); \
207} while (0)
208
209#define DPRINTFN(args...) \
210do { \
211 __dprintf(curTick, name(), args, cp::ArgListNull()); \
212} while (0)
213
214#define DPRINTFNR(args...) \
215do { \
216 __dprintf((Tick)-1, string(), args, cp::ArgListNull()); \
217} while (0)
218
219#else // !TRACING_ON
220
221#define DTRACE(x) (false)
222#define DCOUT(x) if (0) DebugOut()
223#define DPRINTF(x, args...) do {} while (0)
224#define DPRINTFR(args...) do {} while (0)
225#define DPRINTFN(args...) do {} while (0)
226#define DPRINTFNR(args...) do {} while (0)
227#define DDUMP(x, data, count) do {} while (0)
228
229#endif // TRACING_ON
230
231#endif // __BASE_TRACE_HH__