gem5  v20.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
memtest.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2015 ARM Limited
3  * All rights reserved
4  *
5  * The license below extends only to copyright in the software and shall
6  * not be construed as granting a license to any other intellectual
7  * property including but not limited to intellectual property relating
8  * to a hardware implementation of the functionality of the software
9  * licensed hereunder. You may use the software subject to the license
10  * terms below provided that you ensure that this notice is replicated
11  * unmodified and in its entirety in all distributions of the software,
12  * modified or unmodified, in source code or in binary form.
13  *
14  * Copyright (c) 2002-2005 The Regents of The University of Michigan
15  * All rights reserved.
16  *
17  * Redistribution and use in source and binary forms, with or without
18  * modification, are permitted provided that the following conditions are
19  * met: redistributions of source code must retain the above copyright
20  * notice, this list of conditions and the following disclaimer;
21  * redistributions in binary form must reproduce the above copyright
22  * notice, this list of conditions and the following disclaimer in the
23  * documentation and/or other materials provided with the distribution;
24  * neither the name of the copyright holders nor the names of its
25  * contributors may be used to endorse or promote products derived from
26  * this software without specific prior written permission.
27  *
28  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
31  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
32  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
33  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
34  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39  */
40 
41 #ifndef __CPU_MEMTEST_MEMTEST_HH__
42 #define __CPU_MEMTEST_MEMTEST_HH__
43 
44 #include <set>
45 #include <unordered_map>
46 
47 #include "base/statistics.hh"
48 #include "mem/port.hh"
49 #include "params/MemTest.hh"
50 #include "sim/clocked_object.hh"
51 #include "sim/eventq.hh"
52 #include "sim/stats.hh"
53 
67 class MemTest : public ClockedObject
68 {
69 
70  public:
71 
72  typedef MemTestParams Params;
73  MemTest(const Params *p);
74 
75  void regStats() override;
76 
77  Port &getPort(const std::string &if_name,
78  PortID idx=InvalidPortID) override;
79 
80  protected:
81 
82  void tick();
83 
85 
86  void noRequest();
87 
89 
90  void noResponse();
91 
93 
94  class CpuPort : public MasterPort
95  {
97 
98  public:
99 
100  CpuPort(const std::string &_name, MemTest &_memtest)
101  : MasterPort(_name, &_memtest), memtest(_memtest)
102  { }
103 
104  protected:
105 
106  bool recvTimingResp(PacketPtr pkt);
107 
109 
111 
112  Tick recvAtomicSnoop(PacketPtr pkt) { return 0; }
113 
114  void recvReqRetry();
115  };
116 
118 
120 
121  const unsigned size;
122 
124 
125  const unsigned percentReads;
126  const unsigned percentFunctional;
127  const unsigned percentUncacheable;
128 
131 
132  unsigned int id;
133 
134  std::set<Addr> outstandingAddrs;
135 
136  // store the expected value for the addresses we have touched
137  std::unordered_map<Addr, uint8_t> referenceData;
138 
139  const unsigned blockSize;
140 
142 
150  {
151  return (addr & ~blockAddrMask);
152  }
153 
157 
158  const unsigned progressInterval; // frequency of progress reports
160  Tick nextProgressMessage; // access # for next progress report
161 
162  uint64_t numReads;
163  uint64_t numWrites;
164  const uint64_t maxLoads;
165 
166  const bool atomic;
167 
168  const bool suppressFuncErrors;
169 
172 
179  void completeRequest(PacketPtr pkt, bool functional = false);
180 
181  bool sendPkt(PacketPtr pkt);
182 
183  void recvRetry();
184 
185 };
186 
187 #endif // __CPU_MEMTEST_MEMTEST_HH__
A MasterPort is a specialisation of a BaseMasterPort, which implements the default protocol for the t...
Definition: port.hh:71
const Cycles interval
Definition: memtest.hh:123
void recvRetry()
Definition: memtest.cc:323
bool sendPkt(PacketPtr pkt)
Definition: memtest.cc:69
Ports are used to interface objects to each other.
Definition: port.hh:56
EventFunctionWrapper noResponseEvent
Definition: memtest.hh:92
void noResponse()
Definition: memtest.cc:317
const unsigned size
Definition: memtest.hh:121
const bool suppressFuncErrors
Definition: memtest.hh:168
Cycles is a wrapper class for representing cycle counts, i.e.
Definition: types.hh:81
EventFunctionWrapper tickEvent
Definition: memtest.hh:84
const PortID InvalidPortID
Definition: types.hh:236
const unsigned percentFunctional
Definition: memtest.hh:126
void recvReqRetry()
Called by the peer if sendTimingReq was called on this peer (causing recvTimingReq to be called on th...
Definition: memtest.cc:63
const unsigned progressInterval
Definition: memtest.hh:158
Addr blockAlign(Addr addr) const
Get the block aligned address.
Definition: memtest.hh:149
ip6_addr_t addr
Definition: inet.hh:330
const Addr blockAddrMask
Definition: memtest.hh:141
std::unordered_map< Addr, uint8_t > referenceData
Definition: memtest.hh:137
void regStats() override
Callback to set stat parameters.
Definition: memtest.cc:195
Port & getPort(const std::string &if_name, PortID idx=InvalidPortID) override
Get a port with a given name and index.
Definition: memtest.cc:122
Declaration of Statistics objects.
This is a simple scalar statistic, like a counter.
Definition: statistics.hh:2505
EventFunctionWrapper noRequestEvent
Definition: memtest.hh:88
const bool atomic
Definition: memtest.hh:166
CpuPort port
Definition: memtest.hh:117
MasterID masterId
Request id for all generated traffic.
Definition: memtest.hh:130
const unsigned blockSize
Definition: memtest.hh:139
void tick()
Definition: memtest.cc:213
PacketPtr retryPkt
Definition: memtest.hh:119
uint64_t Tick
Tick count type.
Definition: types.hh:61
unsigned int id
Definition: memtest.hh:132
The ClockedObject class extends the SimObject with a clock and accessor functions to relate ticks to ...
ClockedObject declaration and implementation.
The MemTest class tests a cache coherent memory system by generating false sharing and verifying the ...
Definition: memtest.hh:67
Port Object Declaration.
MemTest(const Params *p)
Definition: memtest.cc:82
bool recvTimingResp(PacketPtr pkt)
Receive a timing response from the peer.
Definition: memtest.cc:56
void recvFunctionalSnoop(PacketPtr pkt)
Receive a functional snoop request packet from the peer.
Definition: memtest.hh:110
CpuPort(const std::string &_name, MemTest &_memtest)
Definition: memtest.hh:100
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:140
uint16_t MasterID
Definition: request.hh:84
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
Definition: packet.hh:249
void noRequest()
Definition: memtest.cc:311
Tick nextProgressMessage
Definition: memtest.hh:160
Stats::Scalar numReadsStat
Definition: memtest.hh:170
Addr baseAddr2
Definition: memtest.hh:155
uint64_t numReads
Definition: memtest.hh:162
std::set< Addr > outstandingAddrs
Definition: memtest.hh:134
Addr uncacheAddr
Definition: memtest.hh:156
const unsigned percentUncacheable
Definition: memtest.hh:127
MemTest & memtest
Definition: memtest.hh:96
const Cycles progressCheck
Definition: memtest.hh:159
void recvTimingSnoopReq(PacketPtr pkt)
Receive a timing snoop request from the peer.
Definition: memtest.hh:108
const unsigned percentReads
Definition: memtest.hh:125
uint64_t numWrites
Definition: memtest.hh:163
Stats::Scalar numWritesStat
Definition: memtest.hh:171
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
Definition: types.hh:235
void completeRequest(PacketPtr pkt, bool functional=false)
Complete a request by checking the response.
Definition: memtest.cc:131
const uint64_t maxLoads
Definition: memtest.hh:164
Tick recvAtomicSnoop(PacketPtr pkt)
Receive an atomic snoop request packet from our peer.
Definition: memtest.hh:112
Addr baseAddr1
Definition: memtest.hh:154
Bitfield< 0 > p
MemTestParams Params
Definition: memtest.hh:72

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