gem5  v20.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
profile.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 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 #include "cpu/profile.hh"
30 
31 #include <string>
32 
33 #include "base/bitfield.hh"
34 #include "base/callback.hh"
35 #include "base/loader/symtab.hh"
36 #include "base/statistics.hh"
37 #include "base/trace.hh"
38 #include "cpu/base.hh"
39 #include "cpu/thread_context.hh"
40 
41 using namespace std;
42 
44  : count(0)
45 { }
46 
47 void
48 ProfileNode::dump(const string &symbol, uint64_t id,
49  const Loader::SymbolTable *symtab, ostream &os) const
50 {
51  ccprintf(os, "%#x %s %d ", id, symbol, count);
52  ChildList::const_iterator i, end = children.end();
53  for (i = children.begin(); i != end; ++i) {
54  const ProfileNode *node = i->second;
55  ccprintf(os, "%#x ", (intptr_t)node);
56  }
57 
58  ccprintf(os, "\n");
59 
60  for (i = children.begin(); i != end; ++i) {
61  Addr addr = i->first;
62  string symbol;
63  if (addr == 1)
64  symbol = "user";
65  else if (addr == 2)
66  symbol = "console";
67  else if (addr == 3)
68  symbol = "unknown";
69  else if (!symtab->findSymbol(addr, symbol))
70  panic("could not find symbol for address %#x\n", addr);
71 
72  const ProfileNode *node = i->second;
73  node->dump(symbol, (intptr_t)node, symtab, os);
74  }
75 }
76 
77 void
79 {
80  count = 0;
81  ChildList::iterator i, end = children.end();
82  for (i = children.begin(); i != end; ++i)
83  i->second->clear();
84 }
85 
87  : reset(0), symtab(_symtab)
88 {
91 }
92 
94 {
95  if (reset)
96  delete reset;
97 }
98 
101 {
102  ProfileNode *current = &top;
103  for (int i = 0, size = stack.size(); i < size; ++i) {
104  ProfileNode *&ptr = current->children[stack[size - i - 1]];
105  if (ptr == NULL)
106  ptr = new ProfileNode;
107 
108  current = ptr;
109  }
110 
111  return current;
112 }
113 
114 void
116 {
117  top.clear();
118  pc_count.clear();
119 }
120 
121 void
123 {
124  ccprintf(os, ">>>PC data\n");
125  map<Addr, Counter>::const_iterator i, end = pc_count.end();
126  for (i = pc_count.begin(); i != end; ++i) {
127  Addr pc = i->first;
128  Counter count = i->second;
129 
130  std::string symbol;
131  if (pc == 1)
132  ccprintf(os, "user %d\n", count);
133  else if (symtab->findSymbol(pc, symbol) && !symbol.empty())
134  ccprintf(os, "%s %d\n", symbol, count);
135  else
136  ccprintf(os, "%#x %d\n", pc, count);
137  }
138 
139  ccprintf(os, ">>>function data\n");
140  top.dump("top", 0, symtab, os);
141 }
142 
143 void
145 {
146  node->count++;
147 
148  Addr symaddr;
149  if (symtab->findNearestAddr(pc, symaddr)) {
150  pc_count[symaddr]++;
151  } else {
152  // record PC even if we don't have a symbol to avoid
153  // silently biasing the histogram
154  pc_count[pc]++;
155  }
156 }
count
Definition: misc.hh:703
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:163
void ccprintf(cp::Print &print)
Definition: cprintf.hh:127
const Loader::SymbolTable * symtab
Definition: profile.hh:65
Counter count
Definition: profile.hh:50
Definition: test.h:61
void sample(ProfileNode *node, Addr pc)
Definition: profile.cc:144
Bitfield< 7 > i
std::map< Addr, Counter > pc_count
Definition: profile.hh:67
ChildList children
Definition: profile.hh:47
ip6_addr_t addr
Definition: inet.hh:330
bool findSymbol(Addr address, std::string &symbol) const
Definition: symtab.hh:84
void reset()
Definition: statistics.cc:569
Overload hash function for BasicBlockRange type.
Definition: vec_reg.hh:587
void clear()
Definition: profile.cc:78
ProfileNode top
Definition: profile.hh:66
ThreadContext is the external interface to all thread state for anything outside of the CPU...
Declaration of Statistics objects.
Bitfield< 17 > os
Definition: misc.hh:803
FunctionProfile(const Loader::SymbolTable *symtab)
Definition: profile.cc:86
ProfileNode()
Definition: profile.cc:43
Bitfield< 4 > pc
void clear()
Definition: profile.cc:115
void dump(ThreadContext *tc, std::ostream &out) const
Definition: profile.cc:122
void registerResetCallback(Callback *cb)
Register a callback that should be called whenever statistics are reset.
Definition: statistics.cc:537
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:140
Callback * reset
Definition: profile.hh:64
int64_t Counter
Statistics counter type.
Definition: types.hh:56
Bitfield< 17, 16 > stack
Definition: misc.hh:587
void dump(const std::string &symbol, uint64_t id, const Loader::SymbolTable *symtab, std::ostream &os) const
Definition: profile.cc:48
bool findNearestAddr(Addr addr, Addr &symaddr, Addr &nextaddr) const
Definition: symtab.hh:147
Helper template class to turn a simple class member function into a callback.
Definition: callback.hh:62
ProfileNode * consume(ThreadContext *tc, const StaticInstPtr &inst)
Definition: profile.hh:82

Generated on Thu May 28 2020 16:21:31 for gem5 by doxygen 1.8.13