gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
activity.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 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 
29 #include "cpu/activity.hh"
30 
31 #include <string>
32 
33 #include "cpu/timebuf.hh"
34 #include "debug/Activity.hh"
35 
36 ActivityRecorder::ActivityRecorder(const std::string &name, int num_stages,
37  int longest_latency, int activity)
38  : _name(name), activityBuffer(longest_latency, 0),
39  longestLatency(longest_latency), activityCount(activity),
40  numStages(num_stages)
41 {
42  stageActive = new bool[numStages];
43  std::memset(stageActive, 0, numStages);
44 }
45 
47 {
48  delete[] stageActive;
49 }
50 
51 void
53 {
54  // If we've already recorded activity for this cycle, we don't
55  // want to increment the count any more.
56  if (activityBuffer[0]) {
57  return;
58  }
59 
60  activityBuffer[0] = true;
61 
62  ++activityCount;
63 
64  DPRINTF(Activity, "Activity: %i\n", activityCount);
65 }
66 
67 void
69 {
70  // If there's a 1 in the slot that is about to be erased once the
71  // time buffer advances, then decrement the activityCount.
73  --activityCount;
74 
75  assert(activityCount >= 0);
76 
77  DPRINTF(Activity, "Activity: %i\n", activityCount);
78 
79  if (activityCount == 0) {
80  DPRINTF(Activity, "No activity left!\n");
81  }
82  }
83 
85 }
86 
87 void
89 {
90  // Increment the activity count if this stage wasn't already active.
91  if (!stageActive[idx]) {
92  ++activityCount;
93 
94  stageActive[idx] = true;
95 
96  DPRINTF(Activity, "Activity: %i\n", activityCount);
97  } else {
98  DPRINTF(Activity, "Stage %i already active.\n", idx);
99  }
100 
101 // assert(activityCount < longestLatency + numStages + 1);
102 }
103 
104 void
106 {
107  // Decrement the activity count if this stage was active.
108  if (stageActive[idx]) {
109  --activityCount;
110 
111  stageActive[idx] = false;
112 
113  DPRINTF(Activity, "Activity: %i\n", activityCount);
114  } else {
115  DPRINTF(Activity, "Stage %i already inactive.\n", idx);
116  }
117 
118  assert(activityCount >= 0);
119 }
120 
121 void
123 {
124  activityCount = 0;
125  std::memset(stageActive, 0, numStages);
126  for (int i = 0; i < longestLatency + 1; ++i)
128 }
129 
130 void
132 {
133  for (int i = 0; i <= longestLatency; ++i) {
134  cprintf("[Idx:%i %i] ", i, activityBuffer[-i]);
135  }
136 
137  cprintf("\n");
138 
139  for (int i = 0; i < numStages; ++i) {
140  cprintf("[Stage:%i %i]\n", i, stageActive[i]);
141  }
142 
143  cprintf("\n");
144 
145  cprintf("Activity count: %i\n", activityCount);
146 }
147 
148 void
150 {
151  int count = 0;
152  for (int i = 0; i <= longestLatency; ++i) {
153  if (activityBuffer[-i]) {
154  count++;
155  }
156  }
157 
158  for (int i = 0; i < numStages; ++i) {
159  if (stageActive[i]) {
160  count++;
161  }
162  }
163 
164  assert(count == activityCount);
165 }
ArmISA::i
Bitfield< 7 > i
Definition: miscregs_types.hh:63
ActivityRecorder::advance
void advance()
Advances the activity buffer, decrementing the activityCount if active communication just left the ti...
Definition: activity.cc:68
X86ISA::count
count
Definition: misc.hh:703
ActivityRecorder::longestLatency
int longestLatency
Longest latency time buffer in the CPU.
Definition: activity.hh:118
timebuf.hh
cprintf
void cprintf(const char *format, const Args &...args)
Definition: cprintf.hh:152
DPRINTF
#define DPRINTF(x,...)
Definition: trace.hh:237
ActivityRecorder::~ActivityRecorder
~ActivityRecorder()
Definition: activity.cc:46
activity.hh
ActivityRecorder::reset
void reset()
Clears the time buffer and the activity count.
Definition: activity.cc:122
ActivityRecorder::numStages
int numStages
Number of stages that can be marked as active or inactive.
Definition: activity.hh:132
ActivityRecorder::activityBuffer
TimeBuffer< bool > activityBuffer
Time buffer that tracks if any cycles has active communication in them.
Definition: activity.hh:115
name
const std::string & name()
Definition: trace.cc:48
ActivityRecorder::activityCount
int activityCount
Tracks how many stages and cycles of time buffer have activity.
Definition: activity.hh:129
ActivityRecorder::validate
void validate()
Debug function to ensure that the activity count matches the contents of the time buffer.
Definition: activity.cc:149
ActivityRecorder::stageActive
bool * stageActive
Records which stages are active/inactive.
Definition: activity.hh:135
ActivityRecorder::activity
void activity()
Records that there is activity this cycle.
Definition: activity.cc:52
ActivityRecorder::activateStage
void activateStage(const int idx)
Marks a stage as active.
Definition: activity.cc:88
TimeBuffer::advance
void advance()
Definition: timebuf.hh:176
ActivityRecorder::deactivateStage
void deactivateStage(const int idx)
Deactivates a stage.
Definition: activity.cc:105
ActivityRecorder::ActivityRecorder
ActivityRecorder(const std::string &name, int num_stages, int longest_latency, int count)
Definition: activity.cc:36
ActivityRecorder::dump
void dump()
Debug function to dump the contents of the time buffer.
Definition: activity.cc:131

Generated on Tue Mar 23 2021 19:41:24 for gem5 by doxygen 1.8.17