gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
memtest.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2015, 2019 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 
42 
43 #include "base/random.hh"
44 #include "base/statistics.hh"
45 #include "base/trace.hh"
46 #include "debug/MemTest.hh"
47 #include "sim/sim_exit.hh"
48 #include "sim/stats.hh"
49 #include "sim/system.hh"
50 
51 unsigned int TESTER_ALLOCATOR = 0;
52 
53 bool
55 {
57  return true;
58 }
59 
60 void
62 {
63  memtest.recvRetry();
64 }
65 
66 bool
68  if (atomic) {
69  port.sendAtomic(pkt);
70  completeRequest(pkt);
71  } else {
72  if (!port.sendTimingReq(pkt)) {
73  retryPkt = pkt;
74  return false;
75  }
76  }
77  return true;
78 }
79 
81  : ClockedObject(p),
82  tickEvent([this]{ tick(); }, name()),
83  noRequestEvent([this]{ noRequest(); }, name()),
84  noResponseEvent([this]{ noResponse(); }, name()),
85  port("port", *this),
86  retryPkt(nullptr),
87  size(p.size),
88  interval(p.interval),
89  percentReads(p.percent_reads),
90  percentFunctional(p.percent_functional),
91  percentUncacheable(p.percent_uncacheable),
92  requestorId(p.system->getRequestorId(this)),
93  blockSize(p.system->cacheLineSize()),
94  blockAddrMask(blockSize - 1),
95  progressInterval(p.progress_interval),
96  progressCheck(p.progress_check),
97  nextProgressMessage(p.progress_interval),
98  maxLoads(p.max_loads),
99  atomic(p.system->isAtomicMode()),
100  suppressFuncErrors(p.suppress_func_errors), stats(this)
101 {
102  id = TESTER_ALLOCATOR++;
103  fatal_if(id >= blockSize, "Too many testers, only %d allowed\n",
104  blockSize - 1);
105 
106  baseAddr1 = 0x100000;
107  baseAddr2 = 0x400000;
108  uncacheAddr = 0x800000;
109 
110  // set up counters
111  numReads = 0;
112  numWrites = 0;
113 
114  // kick things into action
115  schedule(tickEvent, curTick());
116  schedule(noRequestEvent, clockEdge(progressCheck));
117 }
118 
119 Port &
120 MemTest::getPort(const std::string &if_name, PortID idx)
121 {
122  if (if_name == "port")
123  return port;
124  else
125  return ClockedObject::getPort(if_name, idx);
126 }
127 
128 void
129 MemTest::completeRequest(PacketPtr pkt, bool functional)
130 {
131  const RequestPtr &req = pkt->req;
132  assert(req->getSize() == 1);
133 
134  // this address is no longer outstanding
135  auto remove_addr = outstandingAddrs.find(req->getPaddr());
136  assert(remove_addr != outstandingAddrs.end());
137  outstandingAddrs.erase(remove_addr);
138 
139  DPRINTF(MemTest, "Completing %s at address %x (blk %x) %s\n",
140  pkt->isWrite() ? "write" : "read",
141  req->getPaddr(), blockAlign(req->getPaddr()),
142  pkt->isError() ? "error" : "success");
143 
144  const uint8_t *pkt_data = pkt->getConstPtr<uint8_t>();
145 
146  if (pkt->isError()) {
147  if (!functional || !suppressFuncErrors)
148  panic( "%s access failed at %#x\n",
149  pkt->isWrite() ? "Write" : "Read", req->getPaddr());
150  } else {
151  if (pkt->isRead()) {
152  uint8_t ref_data = referenceData[req->getPaddr()];
153  if (pkt_data[0] != ref_data) {
154  panic("%s: read of %x (blk %x) @ cycle %d "
155  "returns %x, expected %x\n", name(),
156  req->getPaddr(), blockAlign(req->getPaddr()), curTick(),
157  pkt_data[0], ref_data);
158  }
159 
160  numReads++;
161  stats.numReads++;
162 
163  if (numReads == (uint64_t)nextProgressMessage) {
164  ccprintf(std::cerr,
165  "%s: completed %d read, %d write accesses @%d\n",
166  name(), numReads, numWrites, curTick());
168  }
169 
170  if (maxLoads != 0 && numReads >= maxLoads)
171  exitSimLoop("maximum number of loads reached");
172  } else {
173  assert(pkt->isWrite());
174 
175  // update the reference data
176  referenceData[req->getPaddr()] = pkt_data[0];
177  numWrites++;
178  stats.numWrites++;
179  }
180  }
181 
182  // the packet will delete the data
183  delete pkt;
184 
185  // finally shift the response timeout forward if we are still
186  // expecting responses; deschedule it otherwise
187  if (outstandingAddrs.size() != 0)
189  else if (noResponseEvent.scheduled())
191 }
193  : Stats::Group(parent),
194  ADD_STAT(numReads, UNIT_COUNT, "number of read accesses completed"),
195  ADD_STAT(numWrites, UNIT_COUNT, "number of write accesses completed")
196 {
197 
198 }
199 
200 void
202 {
203  // we should never tick if we are waiting for a retry
204  assert(!retryPkt);
205 
206  // create a new request
207  unsigned cmd = random_mt.random(0, 100);
208  uint8_t data = random_mt.random<uint8_t>();
209  bool uncacheable = random_mt.random(0, 100) < percentUncacheable;
210  unsigned base = random_mt.random(0, 1);
211  Request::Flags flags;
212  Addr paddr;
213 
214  // generate a unique address
215  do {
216  unsigned offset = random_mt.random<unsigned>(0, size - 1);
217 
218  // use the tester id as offset within the block for false sharing
220  offset += id;
221 
222  if (uncacheable) {
223  flags.set(Request::UNCACHEABLE);
224  paddr = uncacheAddr + offset;
225  } else {
226  paddr = ((base) ? baseAddr1 : baseAddr2) + offset;
227  }
228  } while (outstandingAddrs.find(paddr) != outstandingAddrs.end());
229 
230  bool do_functional = (random_mt.random(0, 100) < percentFunctional) &&
231  !uncacheable;
232  RequestPtr req = std::make_shared<Request>(paddr, 1, flags, requestorId);
233  req->setContext(id);
234 
235  outstandingAddrs.insert(paddr);
236 
237  // sanity check
238  panic_if(outstandingAddrs.size() > 100,
239  "Tester %s has more than 100 outstanding requests\n", name());
240 
241  PacketPtr pkt = nullptr;
242  uint8_t *pkt_data = new uint8_t[1];
243 
244  if (cmd < percentReads) {
245  // start by ensuring there is a reference value if we have not
246  // seen this address before
247  M5_VAR_USED uint8_t ref_data = 0;
248  auto ref = referenceData.find(req->getPaddr());
249  if (ref == referenceData.end()) {
250  referenceData[req->getPaddr()] = 0;
251  } else {
252  ref_data = ref->second;
253  }
254 
256  "Initiating %sread at addr %x (blk %x) expecting %x\n",
257  do_functional ? "functional " : "", req->getPaddr(),
258  blockAlign(req->getPaddr()), ref_data);
259 
260  pkt = new Packet(req, MemCmd::ReadReq);
261  pkt->dataDynamic(pkt_data);
262  } else {
263  DPRINTF(MemTest, "Initiating %swrite at addr %x (blk %x) value %x\n",
264  do_functional ? "functional " : "", req->getPaddr(),
265  blockAlign(req->getPaddr()), data);
266 
267  pkt = new Packet(req, MemCmd::WriteReq);
268  pkt->dataDynamic(pkt_data);
269  pkt_data[0] = data;
270  }
271 
272  // there is no point in ticking if we are waiting for a retry
273  bool keep_ticking = true;
274  if (do_functional) {
275  pkt->setSuppressFuncError();
276  port.sendFunctional(pkt);
277  completeRequest(pkt, true);
278  } else {
279  keep_ticking = sendPkt(pkt);
280  }
281 
282  if (keep_ticking) {
283  // schedule the next tick
285 
286  // finally shift the timeout for sending of requests forwards
287  // as we have successfully sent a packet
289  } else {
290  DPRINTF(MemTest, "Waiting for retry\n");
291  }
292 
293  // Schedule noResponseEvent now if we are expecting a response
294  if (!noResponseEvent.scheduled() && (outstandingAddrs.size() != 0))
296 }
297 
298 void
300 {
301  panic("%s did not send a request for %d cycles", name(), progressCheck);
302 }
303 
304 void
306 {
307  panic("%s did not see a response for %d cycles", name(), progressCheck);
308 }
309 
310 void
312 {
313  assert(retryPkt);
314  if (port.sendTimingReq(retryPkt)) {
315  DPRINTF(MemTest, "Proceeding after successful retry\n");
316 
317  retryPkt = nullptr;
318  // kick things into action again
321  }
322 }
MemTest::atomic
const bool atomic
Definition: memtest.hh:165
Packet::isError
bool isError() const
Definition: packet.hh:584
Packet::setSuppressFuncError
void setSuppressFuncError()
Definition: packet.hh:718
Event::scheduled
bool scheduled() const
Determine if the current event is scheduled.
Definition: eventq.hh:462
MemTest::MemTest
MemTest(const Params &p)
Definition: memtest.cc:80
system.hh
data
const char data[]
Definition: circlebuf.test.cc:47
memtest.hh
MemTest::noResponseEvent
EventFunctionWrapper noResponseEvent
Definition: memtest.hh:91
ArmISA::atomic
Bitfield< 23, 20 > atomic
Definition: miscregs_types.hh:96
EventManager::reschedule
void reschedule(Event &event, Tick when, bool always=false)
Definition: eventq.hh:1034
Flags< FlagsType >
MemTest::tick
void tick()
Definition: memtest.cc:201
MemTest::getPort
Port & getPort(const std::string &if_name, PortID idx=InvalidPortID) override
Get a port with a given name and index.
Definition: memtest.cc:120
MemTest::nextProgressMessage
Tick nextProgressMessage
Definition: memtest.hh:159
random.hh
Packet::isRead
bool isRead() const
Definition: packet.hh:557
MemTest::suppressFuncErrors
const bool suppressFuncErrors
Definition: memtest.hh:167
MemCmd::ReadReq
@ ReadReq
Definition: packet.hh:83
PortID
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
Definition: types.hh:243
MemTest::progressCheck
const Cycles progressCheck
Definition: memtest.hh:158
RequestPtr
std::shared_ptr< Request > RequestPtr
Definition: request.hh:86
X86ISA::base
Bitfield< 51, 12 > base
Definition: pagetable.hh:138
Packet::req
RequestPtr req
A pointer to the original request.
Definition: packet.hh:341
MemTest::MemTestStats::MemTestStats
MemTestStats(Stats::Group *parent)
Definition: memtest.cc:192
EventManager::deschedule
void deschedule(Event &event)
Definition: eventq.hh:1025
Packet::dataDynamic
void dataDynamic(T *p)
Set the data pointer to a value that should have delete [] called on it.
Definition: packet.hh:1146
MemTest::percentUncacheable
const unsigned percentUncacheable
Definition: memtest.hh:126
MemTest::port
CpuPort port
Definition: memtest.hh:116
RequestPort::sendFunctional
void sendFunctional(PacketPtr pkt) const
Send a functional request packet, where the data is instantly updated everywhere in the memory system...
Definition: port.hh:482
MemTest::progressInterval
const unsigned progressInterval
Definition: memtest.hh:157
sim_exit.hh
MemTest::MemTestStats::numWrites
Stats::Scalar numWrites
Definition: memtest.hh:173
ClockedObject
The ClockedObject class extends the SimObject with a clock and accessor functions to relate ticks to ...
Definition: clocked_object.hh:231
MemTest::tickEvent
EventFunctionWrapper tickEvent
Definition: memtest.hh:83
Random::random
std::enable_if_t< std::is_integral< T >::value, T > random()
Use the SFINAE idiom to choose an implementation based on whether the type is integral or floating po...
Definition: random.hh:86
MemTest::percentReads
const unsigned percentReads
Definition: memtest.hh:124
MemTest::referenceData
std::unordered_map< Addr, uint8_t > referenceData
Definition: memtest.hh:136
MemCmd::WriteReq
@ WriteReq
Definition: packet.hh:86
random_mt
Random random_mt
Definition: random.cc:96
stats.hh
EventManager::schedule
void schedule(Event &event, Tick when)
Definition: eventq.hh:1016
MemTest::blockAlign
Addr blockAlign(Addr addr) const
Get the block aligned address.
Definition: memtest.hh:148
RequestPort::sendTimingReq
bool sendTimingReq(PacketPtr pkt)
Attempt to send a timing request to the responder port by calling its corresponding receive function.
Definition: port.hh:492
SimObject::getPort
virtual Port & getPort(const std::string &if_name, PortID idx=InvalidPortID)
Get a port with a given name and index.
Definition: sim_object.cc:120
DPRINTF
#define DPRINTF(x,...)
Definition: trace.hh:237
ADD_STAT
#define ADD_STAT(n,...)
Convenience macro to add a stat to a statistics group.
Definition: group.hh:71
MemTest::sendPkt
bool sendPkt(PacketPtr pkt)
Definition: memtest.cc:67
statistics.hh
Port
Ports are used to interface objects to each other.
Definition: port.hh:56
Clocked::clockEdge
Tick clockEdge(Cycles cycles=Cycles(0)) const
Determine the tick when a cycle begins, by default the current one, but the argument also enables the...
Definition: clocked_object.hh:174
MemTest::outstandingAddrs
std::set< Addr > outstandingAddrs
Definition: memtest.hh:133
MemTest::size
const unsigned size
Definition: memtest.hh:120
exitSimLoop
void exitSimLoop(const std::string &message, int exit_code, Tick when, Tick repeat, bool serialize)
Schedule an event to exit the simulation loop (returning to Python) at the end of the current cycle (...
Definition: sim_events.cc:85
Flags::set
void set(Type mask)
Set all flag's bits matching the given mask.
Definition: flags.hh:113
MemTest::CpuPort::recvTimingResp
bool recvTimingResp(PacketPtr pkt)
Receive a timing response from the peer.
Definition: memtest.cc:54
MemTest::id
unsigned int id
Definition: memtest.hh:131
MemTest
The MemTest class tests a cache coherent memory system by generating false sharing and verifying the ...
Definition: memtest.hh:67
MemTest::percentFunctional
const unsigned percentFunctional
Definition: memtest.hh:125
UNIT_COUNT
#define UNIT_COUNT
Definition: units.hh:49
MemTest::stats
MemTest::MemTestStats stats
ProbePoints::Packet
ProbePointArg< PacketInfo > Packet
Packet probe point.
Definition: mem.hh:103
Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:148
MemTest::baseAddr1
Addr baseAddr1
Definition: memtest.hh:153
name
const std::string & name()
Definition: trace.cc:48
SimObject::name
virtual const std::string name() const
Definition: sim_object.hh:182
panic_if
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
Definition: logging.hh:197
MemTest::noRequest
void noRequest()
Definition: memtest.cc:299
MemTest::retryPkt
PacketPtr retryPkt
Definition: memtest.hh:118
MemTest::numReads
uint64_t numReads
Definition: memtest.hh:161
MemTest::interval
const Cycles interval
Definition: memtest.hh:122
MemTest::baseAddr2
Addr baseAddr2
Definition: memtest.hh:154
MemTest::maxLoads
const uint64_t maxLoads
Definition: memtest.hh:163
Packet
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Definition: packet.hh:258
Request::UNCACHEABLE
@ UNCACHEABLE
The request is to an uncacheable address.
Definition: request.hh:118
Stats::Group
Statistics container.
Definition: group.hh:87
MemTest::requestorId
RequestorID requestorId
Request id for all generated traffic.
Definition: memtest.hh:129
ccprintf
void ccprintf(cp::Print &print)
Definition: cprintf.hh:127
Packet::isWrite
bool isWrite() const
Definition: packet.hh:558
Stats
Definition: statistics.cc:53
MemTest::noRequestEvent
EventFunctionWrapper noRequestEvent
Definition: memtest.hh:87
curTick
Tick curTick()
The universal simulation clock.
Definition: cur_tick.hh:43
trace.hh
RequestPort::sendAtomic
Tick sendAtomic(PacketPtr pkt)
Send an atomic request packet, where the data is moved and the state is updated in zero time,...
Definition: port.hh:461
MipsISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:323
MemTest::MemTestStats::numReads
Stats::Scalar numReads
Definition: memtest.hh:172
fatal_if
#define fatal_if(cond,...)
Conditional fatal macro that checks the supplied condition and only causes a fatal error if the condi...
Definition: logging.hh:219
MemTest::recvRetry
void recvRetry()
Definition: memtest.cc:311
Packet::getConstPtr
const T * getConstPtr() const
Definition: packet.hh:1167
MemTest::CpuPort::recvReqRetry
void recvReqRetry()
Called by the peer if sendTimingReq was called on this peer (causing recvTimingReq to be called on th...
Definition: memtest.cc:61
MemTest::numWrites
uint64_t numWrites
Definition: memtest.hh:162
MemTest::completeRequest
void completeRequest(PacketPtr pkt, bool functional=false)
Complete a request by checking the response.
Definition: memtest.cc:129
MemTest::noResponse
void noResponse()
Definition: memtest.cc:305
MemTest::CpuPort::memtest
MemTest & memtest
Definition: memtest.hh:95
MemTest::uncacheAddr
Addr uncacheAddr
Definition: memtest.hh:155
TESTER_ALLOCATOR
unsigned int TESTER_ALLOCATOR
Definition: memtest.cc:51
panic
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:171
ArmISA::offset
Bitfield< 23, 0 > offset
Definition: types.hh:153
MemTest::Params
MemTestParams Params
Definition: memtest.hh:72

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