trace.hh revision 8232:b28d06a175be
1/*
2 * Copyright (c) 2001-2006 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 * Authors: Nathan Binkert
29 *          Steve Reinhardt
30 */
31
32#ifndef __BASE_TRACE_HH__
33#define __BASE_TRACE_HH__
34
35#include <string>
36
37#include "base/cprintf.hh"
38#include "base/debug.hh"
39#include "base/match.hh"
40#include "base/types.hh"
41#include "sim/core.hh"
42
43namespace Trace {
44
45using Debug::SimpleFlag;
46using Debug::CompoundFlag;
47
48std::ostream &output();
49void setOutput(const std::string &filename);
50
51extern bool enabled;
52bool changeFlag(const char *str, bool value);
53void dumpStatus();
54
55extern ObjectMatch ignore;
56extern const std::string DefaultName;
57
58void dprintf(Tick when, const std::string &name, const char *format,
59             CPRINTF_DECLARATION);
60void dump(Tick when, const std::string &name, const void *data, int len);
61
62} // namespace Trace
63
64// This silly little class allows us to wrap a string in a functor
65// object so that we can give a name() that DPRINTF will like
66struct StringWrap
67{
68    std::string str;
69    StringWrap(const std::string &s) : str(s) {}
70    const std::string &operator()() const { return str; }
71};
72
73inline const std::string &name() { return Trace::DefaultName; }
74
75//
76// DPRINTF is a debugging trace facility that allows one to
77// selectively enable tracing statements.  To use DPRINTF, there must
78// be a function or functor called name() that returns a const
79// std::string & in the current scope.
80//
81// If you desire that the automatic printing not occur, use DPRINTFR
82// (R for raw)
83//
84
85#if TRACING_ON
86
87#define DTRACE(x) ((Debug::x) && Trace::enabled)
88
89#define DDUMP(x, data, count) do {                              \
90    using namespace Debug;                                      \
91    if (DTRACE(x))                                              \
92        Trace::dump(curTick(), name(), data, count);              \
93} while (0)
94
95#define DPRINTF(x, ...) do {                                    \
96    using namespace Debug;                                      \
97    if (DTRACE(x))                                              \
98        Trace::dprintf(curTick(), name(), __VA_ARGS__);           \
99} while (0)
100
101#define DPRINTFS(x, s, ...) do {                                \
102    using namespace Debug;                                      \
103    if (DTRACE(x))                                              \
104        Trace::dprintf(curTick(), s->name(), __VA_ARGS__);      \
105} while (0)
106
107#define DPRINTFR(x, ...) do {                                   \
108    using namespace Debug;                                      \
109    if (DTRACE(x))                                              \
110        Trace::dprintf((Tick)-1, std::string(), __VA_ARGS__);   \
111} while (0)
112
113#define DDUMPN(data, count) do {                                \
114    Trace::dump(curTick(), name(), data, count);                  \
115} while (0)
116
117#define DPRINTFN(...) do {                                      \
118    Trace::dprintf(curTick(), name(), __VA_ARGS__);               \
119} while (0)
120
121#define DPRINTFNR(...) do {                                     \
122    Trace::dprintf((Tick)-1, string(), __VA_ARGS__);            \
123} while (0)
124
125#else // !TRACING_ON
126
127#define DTRACE(x) (false)
128#define DDUMP(x, data, count) do {} while (0)
129#define DPRINTF(x, ...) do {} while (0)
130#define DPRINTFS(x, ...) do {} while (0)
131#define DPRINTFR(...) do {} while (0)
132#define DDUMPN(data, count) do {} while (0)
133#define DPRINTFN(...) do {} while (0)
134#define DPRINTFNR(...) do {} while (0)
135
136#endif  // TRACING_ON
137
138#endif // __BASE_TRACE_HH__
139