gem5 v24.1.0.1
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, 2021 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 <unordered_map>
45#include <unordered_set>
46
47#include "base/random.hh"
48#include "base/statistics.hh"
49#include "mem/port.hh"
50#include "params/MemTest.hh"
51#include "sim/clocked_object.hh"
52#include "sim/eventq.hh"
53#include "sim/stats.hh"
54
55namespace gem5
56{
57
71class MemTest : public ClockedObject
72{
73
74 public:
75
76 typedef MemTestParams Params;
77 MemTest(const Params &p);
78
79
80 Port &getPort(const std::string &if_name,
81 PortID idx=InvalidPortID) override;
82
83 protected:
84
85 void tick();
86
88
89 void noRequest();
90
92
93 void noResponse();
94
96
97 class CpuPort : public RequestPort
98 {
100
101 public:
102
103 CpuPort(const std::string &_name, MemTest &_memtest)
104 : RequestPort(_name), memtest(_memtest)
105 { }
106
107 protected:
108
109 bool recvTimingResp(PacketPtr pkt);
110
112
114
115 Tick recvAtomicSnoop(PacketPtr pkt) { return 0; }
116
117 void recvReqRetry();
118 };
119
121
123
124 // Set if reached the maximum number of outstanding requests.
125 // Won't tick until a response is received.
127
128 const unsigned size;
129
131
132 const unsigned percentReads;
133 const unsigned percentFunctional;
134 const unsigned percentUncacheable;
135 const unsigned percentAtomic;
136
139
140 unsigned int id;
141
142 std::unordered_set<Addr> outstandingAddrs;
143 std::unordered_map<Addr, uint8_t> atomicPendingData;
144
145 // store the expected value for the addresses we have touched
146 std::unordered_map<Addr, uint8_t> referenceData;
147
149
151
152 const unsigned sizeBlocks;
153
161 {
162 return (addr & ~blockAddrMask);
163 }
164
168
169 const unsigned progressInterval; // frequency of progress reports
171 Tick nextProgressMessage; // access # for next progress report
172
173 uint64_t numReads;
174 uint64_t numWrites;
175 uint64_t numAtomics;
176 const uint64_t maxLoads;
177
178 const bool atomic;
179
181 protected:
189
196 void completeRequest(PacketPtr pkt, bool functional = false);
197
198 bool sendPkt(PacketPtr pkt);
199
200 void recvRetry();
201
202 private:
204};
205
206} // namespace gem5
207
208#endif // __CPU_MEMTEST_MEMTEST_HH__
The ClockedObject class extends the SimObject with a clock and accessor functions to relate ticks to ...
Cycles is a wrapper class for representing cycle counts, i.e.
Definition types.hh:79
void recvFunctionalSnoop(PacketPtr pkt)
Receive a functional snoop request packet from the peer.
Definition memtest.hh:113
Tick recvAtomicSnoop(PacketPtr pkt)
Receive an atomic snoop request packet from our peer.
Definition memtest.hh:115
void recvTimingSnoopReq(PacketPtr pkt)
Receive a timing snoop request from the peer.
Definition memtest.hh:111
CpuPort(const std::string &_name, MemTest &_memtest)
Definition memtest.hh:103
void recvReqRetry()
Called by the peer if sendTimingReq was called on this peer (causing recvTimingReq to be called on th...
Definition memtest.cc:64
bool recvTimingResp(PacketPtr pkt)
Receive a timing response from the peer.
Definition memtest.cc:57
The MemTest class tests a cache coherent memory system by generating false sharing and verifying the ...
Definition memtest.hh:72
EventFunctionWrapper tickEvent
Definition memtest.hh:87
void noResponse()
Definition memtest.cc:373
const bool suppressFuncErrors
Definition memtest.hh:180
std::unordered_set< Addr > outstandingAddrs
Definition memtest.hh:142
const uint64_t maxLoads
Definition memtest.hh:176
void tick()
Definition memtest.cc:236
const Addr baseAddr1
Definition memtest.hh:165
gem5::MemTest::MemTestStats stats
const Cycles interval
Definition memtest.hh:130
std::unordered_map< Addr, uint8_t > atomicPendingData
Definition memtest.hh:143
const Cycles progressCheck
Definition memtest.hh:170
void recvRetry()
Definition memtest.cc:379
Random::RandomPtr rng
Definition memtest.hh:203
const Addr baseAddr2
Definition memtest.hh:166
const unsigned percentFunctional
Definition memtest.hh:133
Port & getPort(const std::string &if_name, PortID idx=InvalidPortID) override
Get a port with a given name and index.
Definition memtest.cc:126
Addr blockAlign(Addr addr) const
Get the block aligned address.
Definition memtest.hh:160
const unsigned percentAtomic
Definition memtest.hh:135
uint64_t numWrites
Definition memtest.hh:174
const unsigned size
Definition memtest.hh:128
const unsigned percentReads
Definition memtest.hh:132
void completeRequest(PacketPtr pkt, bool functional=false)
Complete a request by checking the response.
Definition memtest.cc:135
const Addr uncacheAddr
Definition memtest.hh:167
const unsigned progressInterval
Definition memtest.hh:169
std::unordered_map< Addr, uint8_t > referenceData
Definition memtest.hh:146
MemTestParams Params
Definition memtest.hh:76
unsigned int id
Definition memtest.hh:140
PacketPtr retryPkt
Definition memtest.hh:122
uint64_t numReads
Definition memtest.hh:173
Tick nextProgressMessage
Definition memtest.hh:171
const Addr blockSize
Definition memtest.hh:148
const unsigned sizeBlocks
Definition memtest.hh:152
EventFunctionWrapper noRequestEvent
Definition memtest.hh:91
uint64_t numAtomics
Definition memtest.hh:175
const bool atomic
Definition memtest.hh:178
EventFunctionWrapper noResponseEvent
Definition memtest.hh:95
const Addr blockAddrMask
Definition memtest.hh:150
RequestorID requestorId
Request id for all generated traffic.
Definition memtest.hh:138
bool sendPkt(PacketPtr pkt)
Definition memtest.cc:70
bool waitResponse
Definition memtest.hh:126
const unsigned percentUncacheable
Definition memtest.hh:134
CpuPort port
Definition memtest.hh:120
void noRequest()
Definition memtest.cc:367
const std::string _name
Definition named.hh:41
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Definition packet.hh:295
Ports are used to interface objects to each other.
Definition port.hh:62
std::shared_ptr< Random > RandomPtr
Definition random.hh:65
static RandomPtr genRandom()
Definition random.hh:68
A RequestPort is a specialisation of a Port, which implements the default protocol for the three diff...
Definition port.hh:136
Statistics container.
Definition group.hh:93
This is a simple scalar statistic, like a counter.
ClockedObject declaration and implementation.
Port Object Declaration.
Bitfield< 0 > p
Bitfield< 3 > addr
Definition types.hh:84
Copyright (c) 2024 Arm Limited All rights reserved.
Definition binary32.hh:36
const PortID InvalidPortID
Definition types.hh:246
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition types.hh:147
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
Definition types.hh:245
uint64_t Tick
Tick count type.
Definition types.hh:58
uint16_t RequestorID
Definition request.hh:95
Declaration of Statistics objects.
statistics::Scalar numWrites
Definition memtest.hh:186
statistics::Scalar numReads
Definition memtest.hh:185
statistics::Scalar numAtomics
Definition memtest.hh:187

Generated on Mon Jan 13 2025 04:28:32 for gem5 by doxygen 1.9.8