gem5  v22.1.0.0
AccessTraceForAddress.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
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 __MEM_RUBY_PROFILER_ACCESSTRACEFORADDRESS_HH__
30 #define __MEM_RUBY_PROFILER_ACCESSTRACEFORADDRESS_HH__
31 
32 #include <iostream>
33 
35 #include "mem/ruby/common/Set.hh"
36 #include "mem/ruby/protocol/RubyAccessMode.hh"
37 #include "mem/ruby/protocol/RubyRequestType.hh"
38 
39 namespace gem5
40 {
41 
42 namespace ruby
43 {
44 
45 class Histogram;
46 
48 {
49  public:
51  : m_loads(0), m_stores(0), m_atomics(0), m_total(0), m_user(0),
52  m_sharing(0), m_histogram_ptr(NULL)
53  { }
55 
57  void update(RubyRequestType type, RubyAccessMode access_mode, NodeID cpu,
58  bool sharing_miss);
59  int getTotal() const;
60  int getSharing() const { return m_sharing; }
61  int getTouchedBy() const { return m_touched_by.count(); }
62  Addr getAddress() const { return m_addr; }
63  void addSample(int value);
64 
65  void print(std::ostream& out) const;
66 
67  static inline bool
69  const AccessTraceForAddress* n2)
70  {
71  return n1->getTotal() <= n2->getTotal();
72  }
73 
74  private:
76  uint64_t m_loads;
77  uint64_t m_stores;
78  uint64_t m_atomics;
79  uint64_t m_total;
80  uint64_t m_user;
81  uint64_t m_sharing;
84 };
85 
86 inline std::ostream&
87 operator<<(std::ostream& out, const AccessTraceForAddress& obj)
88 {
89  obj.print(out);
90  out << std::flush;
91  return out;
92 }
93 
94 } // namespace ruby
95 } // namespace gem5
96 
97 #endif // __MEM_RUBY_PROFILER_ACCESSTRACEFORADDRESS_HH__
static bool less_equal(const AccessTraceForAddress *n1, const AccessTraceForAddress *n2)
void update(RubyRequestType type, RubyAccessMode access_mode, NodeID cpu, bool sharing_miss)
void print(std::ostream &out) const
int count() const
Definition: Set.hh:129
Bitfield< 3 > addr
Definition: types.hh:84
unsigned int NodeID
Definition: TypeDefines.hh:42
std::ostream & operator<<(std::ostream &os, const BoolVec &myvector)
Definition: BoolVec.cc:49
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:147

Generated on Wed Dec 21 2022 10:22:38 for gem5 by doxygen 1.9.1