gem5  v21.0.1.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
storage.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2021 Daniel R. Carvalho
3  * Copyright (c) 2019 Arm Limited
4  * All rights reserved.
5  *
6  * The license below extends only to copyright in the software and shall
7  * not be construed as granting a license to any other intellectual
8  * property including but not limited to intellectual property relating
9  * to a hardware implementation of the functionality of the software
10  * licensed hereunder. You may use the software subject to the license
11  * terms below provided that you ensure that this notice is replicated
12  * unmodified and in its entirety in all distributions of the software,
13  * modified or unmodified, in source code or in binary form.
14  *
15  * Copyright (c) 2003-2005 The Regents of The University of Michigan
16  * All rights reserved.
17  *
18  * Redistribution and use in source and binary forms, with or without
19  * modification, are permitted provided that the following conditions are
20  * met: redistributions of source code must retain the above copyright
21  * notice, this list of conditions and the following disclaimer;
22  * redistributions in binary form must reproduce the above copyright
23  * notice, this list of conditions and the following disclaimer in the
24  * documentation and/or other materials provided with the distribution;
25  * neither the name of the copyright holders nor the names of its
26  * contributors may be used to endorse or promote products derived from
27  * this software without specific prior written permission.
28  *
29  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
30  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
31  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
32  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
33  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
34  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
35  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
39  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40  */
41 
42 #include "base/stats/storage.hh"
43 
44 #include <cmath>
45 
46 namespace Stats {
47 
48 void
50 {
51  assert(bucket_size > 0);
52  if (val < min_track)
53  underflow += number;
54  else if (val > max_track)
55  overflow += number;
56  else {
57  cvec[std::floor((val - min_track) / bucket_size)] += number;
58  }
59 
60  if (val < min_val)
61  min_val = val;
62 
63  if (val > max_val)
64  max_val = val;
65 
66  sum += val * number;
67  squares += val * val * number;
68  samples += number;
69 }
70 
71 void
73 {
74  int size = cvec.size();
75  int zero = size / 2; // round down!
76  int top_half = zero + (size - zero + 1) / 2; // round up!
77  int bottom_half = (size - zero) / 2; // round down!
78 
79  // grow down
80  int low_pair = zero - 1;
81  for (int i = zero - 1; i >= bottom_half; i--) {
82  cvec[i] = cvec[low_pair];
83  if (low_pair - 1 >= 0)
84  cvec[i] += cvec[low_pair - 1];
85  low_pair -= 2;
86  }
87  assert(low_pair == 0 || low_pair == -1 || low_pair == -2);
88 
89  for (int i = bottom_half - 1; i >= 0; i--)
90  cvec[i] = Counter();
91 
92  // grow up
93  int high_pair = zero;
94  for (int i = zero; i < top_half; i++) {
95  cvec[i] = cvec[high_pair];
96  if (high_pair + 1 < size)
97  cvec[i] += cvec[high_pair + 1];
98  high_pair += 2;
99  }
100  assert(high_pair == size || high_pair == size + 1);
101 
102  for (int i = top_half; i < size; i++)
103  cvec[i] = Counter();
104 
105  max_bucket *= 2;
106  min_bucket *= 2;
107  bucket_size *= 2;
108 }
109 
110 void
112 {
113  const int size = cvec.size();
114  const int zero = size / 2; // round down!
115  const bool even = ((size - 1) % 2) == 0;
116 
117  // Make sure that zero becomes the lower bound of the middle bucket. On
118  // an even number of buckets the last bucket does not change its lower
119  // bound, therefore it does not need to absorb any other bucket
120  int pair = size - 1;
121  if (even) {
122  pair--;
123  }
124  for (int i = pair; i >= zero; --i) {
125  cvec[i] = cvec[pair];
126  if (pair - 1 >= 0)
127  cvec[i] += cvec[pair - 1];
128  pair -= 2;
129  }
130 
131  for (int i = zero - 1; i >= 0; i--)
132  cvec[i] = Counter();
133 
134  // Double the range by using the negative of the lower bound of the last
135  // bucket as the new lower bound of the first bucket
137 
138  // A special case must be handled when there is an odd number of
139  // buckets so that zero is kept as the lower bound of the middle bucket
140  if (!even) {
143  }
144 
145  // Only update the bucket size once the range has been updated
146  bucket_size *= 2;
147 }
148 
149 void
151 {
152  int size = cvec.size();
153  int half = (size + 1) / 2; // round up!
154 
155  int pair = 0;
156  for (int i = 0; i < half; i++) {
157  cvec[i] = cvec[pair];
158  if (pair + 1 < size)
159  cvec[i] += cvec[pair + 1];
160  pair += 2;
161  }
162  assert(pair == size || pair == size + 1);
163 
164  for (int i = half; i < size; i++)
165  cvec[i] = Counter();
166 
167  max_bucket *= 2;
168  bucket_size *= 2;
169 }
170 
171 void
173 {
174  assert(min_bucket < max_bucket);
175  if (val < min_bucket) {
176  if (min_bucket == 0)
177  growDown();
178 
179  while (val < min_bucket)
180  growOut();
181  } else if (val >= max_bucket + bucket_size) {
182  if (min_bucket == 0) {
183  while (val >= max_bucket + bucket_size)
184  growUp();
185  } else {
186  while (val >= max_bucket + bucket_size)
187  growOut();
188  }
189  }
190 
191  assert(bucket_size > 0);
192  size_type index =
193  (int64_t)std::floor((val - min_bucket) / bucket_size);
194 
195  assert(index < size());
196  cvec[index] += number;
197 
198  sum += val * number;
199  squares += val * val * number;
200  logs += std::log(val) * number;
201  samples += number;
202 }
203 
204 void
206 {
207  int b_size = hs->size();
208  assert(size() == b_size);
209  assert(min_bucket == hs->min_bucket);
210 
211  sum += hs->sum;
212  logs += hs->logs;
213  squares += hs->squares;
214  samples += hs->samples;
215 
216  while (bucket_size > hs->bucket_size)
217  hs->growUp();
218  while (bucket_size < hs->bucket_size)
219  growUp();
220 
221  for (uint32_t i = 0; i < b_size; i++)
222  cvec[i] += hs->cvec[i];
223 }
224 
225 } // namespace Stats
Stats::HistStor::growUp
void growUp()
Given a bucket size B, and a range of values [0, N], this function doubles the bucket size to double ...
Definition: storage.cc:150
MipsISA::index
Bitfield< 30, 0 > index
Definition: pra_constants.hh:44
Stats::HistStor::cvec
VCounter cvec
Counter for each bucket.
Definition: storage.hh:414
ArmISA::i
Bitfield< 7 > i
Definition: miscregs_types.hh:63
Stats::HistStor
Templatized storage and interface for a histogram stat.
Definition: storage.hh:395
Stats::DistStor::min_val
Counter min_val
The smallest value sampled.
Definition: storage.hh:240
Stats::HistStor::max_bucket
Counter max_bucket
Lower bound of the last bucket's range.
Definition: storage.hh:401
Stats::DistStor::samples
Counter samples
The number of samples.
Definition: storage.hh:252
Stats::HistStor::growDown
void growDown()
Given a bucket size B, and a range of values [0, N], this function doubles the bucket size to double ...
Definition: storage.cc:111
Stats::DistStor::min_track
Counter min_track
The minimum value to track.
Definition: storage.hh:233
Stats::HistStor::logs
Counter logs
The sum of logarithm of each sample, used to compute geometric mean.
Definition: storage.hh:408
storage.hh
Stats::HistStor::min_bucket
Counter min_bucket
Lower bound of the first bucket's range.
Definition: storage.hh:399
Stats::HistStor::squares
Counter squares
The sum of squares.
Definition: storage.hh:410
Stats::DistStor::bucket_size
Counter bucket_size
The number of entries in each bucket.
Definition: storage.hh:237
Stats::DistStor::sample
void sample(Counter val, int number)
Add a value to the distribution for the given number of times.
Definition: storage.cc:49
Stats::DistStor::squares
Counter squares
The sum of squares.
Definition: storage.hh:250
Stats::HistStor::zero
bool zero() const
Returns true if any calls to sample have been made.
Definition: storage.hh:500
Stats::DistStor::max_track
Counter max_track
The maximum value to track.
Definition: storage.hh:235
Stats::HistStor::sum
Counter sum
The current sum.
Definition: storage.hh:406
Stats::DistStor::cvec
VCounter cvec
Counter for each bucket.
Definition: storage.hh:254
X86ISA::val
Bitfield< 63 > val
Definition: misc.hh:769
Stats::DistStor::max_val
Counter max_val
The largest value sampled.
Definition: storage.hh:242
Stats::HistStor::bucket_size
Counter bucket_size
The number of entries in each bucket.
Definition: storage.hh:403
Stats::DistStor::underflow
Counter underflow
The number of values sampled less than min.
Definition: storage.hh:244
Stats::Counter
double Counter
All counters are of 64-bit values.
Definition: types.hh:41
Stats::HistStor::add
void add(HistStor *other)
Adds the contents of the given storage to this storage.
Definition: storage.cc:205
Stats::HistStor::growOut
void growOut()
Given a bucket size B, and a range of values [M, N], where M < 0, this function doubles the bucket si...
Definition: storage.cc:72
Stats::DistStor::sum
Counter sum
The current sum.
Definition: storage.hh:248
Stats
Definition: statistics.cc:53
Stats::size_type
unsigned int size_type
Definition: types.hh:54
Stats::HistStor::size
size_type size() const
Return the number of buckets in this distribution.
Definition: storage.hh:493
Stats::HistStor::sample
void sample(Counter val, int number)
Add a value to the distribution for the given number of times.
Definition: storage.cc:172
Stats::HistStor::samples
Counter samples
The number of samples.
Definition: storage.hh:412
Stats::DistStor::overflow
Counter overflow
The number of values sampled more than max.
Definition: storage.hh:246

Generated on Tue Jun 22 2021 15:28:25 for gem5 by doxygen 1.8.17