gem5  v20.0.0.3
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 using namespace std;
52 
53 unsigned int TESTER_ALLOCATOR = 0;
54 
55 bool
57 {
58  memtest.completeRequest(pkt);
59  return true;
60 }
61 
62 void
64 {
65  memtest.recvRetry();
66 }
67 
68 bool
70  if (atomic) {
71  port.sendAtomic(pkt);
72  completeRequest(pkt);
73  } else {
74  if (!port.sendTimingReq(pkt)) {
75  retryPkt = pkt;
76  return false;
77  }
78  }
79  return true;
80 }
81 
83  : ClockedObject(p),
84  tickEvent([this]{ tick(); }, name()),
85  noRequestEvent([this]{ noRequest(); }, name()),
86  noResponseEvent([this]{ noResponse(); }, name()),
87  port("port", *this),
88  retryPkt(nullptr),
89  size(p->size),
90  interval(p->interval),
91  percentReads(p->percent_reads),
92  percentFunctional(p->percent_functional),
93  percentUncacheable(p->percent_uncacheable),
94  masterId(p->system->getMasterId(this)),
95  blockSize(p->system->cacheLineSize()),
97  progressInterval(p->progress_interval),
98  progressCheck(p->progress_check),
99  nextProgressMessage(p->progress_interval),
100  maxLoads(p->max_loads),
101  atomic(p->system->isAtomicMode()),
102  suppressFuncErrors(p->suppress_func_errors)
103 {
104  id = TESTER_ALLOCATOR++;
105  fatal_if(id >= blockSize, "Too many testers, only %d allowed\n",
106  blockSize - 1);
107 
108  baseAddr1 = 0x100000;
109  baseAddr2 = 0x400000;
110  uncacheAddr = 0x800000;
111 
112  // set up counters
113  numReads = 0;
114  numWrites = 0;
115 
116  // kick things into action
119 }
120 
121 Port &
122 MemTest::getPort(const std::string &if_name, PortID idx)
123 {
124  if (if_name == "port")
125  return port;
126  else
127  return ClockedObject::getPort(if_name, idx);
128 }
129 
130 void
131 MemTest::completeRequest(PacketPtr pkt, bool functional)
132 {
133  const RequestPtr &req = pkt->req;
134  assert(req->getSize() == 1);
135 
136  // this address is no longer outstanding
137  auto remove_addr = outstandingAddrs.find(req->getPaddr());
138  assert(remove_addr != outstandingAddrs.end());
139  outstandingAddrs.erase(remove_addr);
140 
141  DPRINTF(MemTest, "Completing %s at address %x (blk %x) %s\n",
142  pkt->isWrite() ? "write" : "read",
143  req->getPaddr(), blockAlign(req->getPaddr()),
144  pkt->isError() ? "error" : "success");
145 
146  const uint8_t *pkt_data = pkt->getConstPtr<uint8_t>();
147 
148  if (pkt->isError()) {
149  if (!functional || !suppressFuncErrors)
150  panic( "%s access failed at %#x\n",
151  pkt->isWrite() ? "Write" : "Read", req->getPaddr());
152  } else {
153  if (pkt->isRead()) {
154  uint8_t ref_data = referenceData[req->getPaddr()];
155  if (pkt_data[0] != ref_data) {
156  panic("%s: read of %x (blk %x) @ cycle %d "
157  "returns %x, expected %x\n", name(),
158  req->getPaddr(), blockAlign(req->getPaddr()), curTick(),
159  pkt_data[0], ref_data);
160  }
161 
162  numReads++;
163  numReadsStat++;
164 
165  if (numReads == (uint64_t)nextProgressMessage) {
166  ccprintf(cerr, "%s: completed %d read, %d write accesses @%d\n",
167  name(), numReads, numWrites, curTick());
169  }
170 
171  if (maxLoads != 0 && numReads >= maxLoads)
172  exitSimLoop("maximum number of loads reached");
173  } else {
174  assert(pkt->isWrite());
175 
176  // update the reference data
177  referenceData[req->getPaddr()] = pkt_data[0];
178  numWrites++;
179  numWritesStat++;
180  }
181  }
182 
183  // the packet will delete the data
184  delete pkt;
185 
186  // finally shift the response timeout forward if we are still
187  // expecting responses; deschedule it otherwise
188  if (outstandingAddrs.size() != 0)
190  else if (noResponseEvent.scheduled())
192 }
193 
194 void
196 {
198 
199  using namespace Stats;
200 
202  .name(name() + ".num_reads")
203  .desc("number of read accesses completed")
204  ;
205 
207  .name(name() + ".num_writes")
208  .desc("number of write accesses completed")
209  ;
210 }
211 
212 void
214 {
215  // we should never tick if we are waiting for a retry
216  assert(!retryPkt);
217 
218  // create a new request
219  unsigned cmd = random_mt.random(0, 100);
220  uint8_t data = random_mt.random<uint8_t>();
221  bool uncacheable = random_mt.random(0, 100) < percentUncacheable;
222  unsigned base = random_mt.random(0, 1);
223  Request::Flags flags;
224  Addr paddr;
225 
226  // generate a unique address
227  do {
228  unsigned offset = random_mt.random<unsigned>(0, size - 1);
229 
230  // use the tester id as offset within the block for false sharing
231  offset = blockAlign(offset);
232  offset += id;
233 
234  if (uncacheable) {
235  flags.set(Request::UNCACHEABLE);
236  paddr = uncacheAddr + offset;
237  } else {
238  paddr = ((base) ? baseAddr1 : baseAddr2) + offset;
239  }
240  } while (outstandingAddrs.find(paddr) != outstandingAddrs.end());
241 
242  bool do_functional = (random_mt.random(0, 100) < percentFunctional) &&
243  !uncacheable;
244  RequestPtr req = std::make_shared<Request>(paddr, 1, flags, masterId);
245  req->setContext(id);
246 
247  outstandingAddrs.insert(paddr);
248 
249  // sanity check
250  panic_if(outstandingAddrs.size() > 100,
251  "Tester %s has more than 100 outstanding requests\n", name());
252 
253  PacketPtr pkt = nullptr;
254  uint8_t *pkt_data = new uint8_t[1];
255 
256  if (cmd < percentReads) {
257  // start by ensuring there is a reference value if we have not
258  // seen this address before
259  uint8_t M5_VAR_USED ref_data = 0;
260  auto ref = referenceData.find(req->getPaddr());
261  if (ref == referenceData.end()) {
262  referenceData[req->getPaddr()] = 0;
263  } else {
264  ref_data = ref->second;
265  }
266 
268  "Initiating %sread at addr %x (blk %x) expecting %x\n",
269  do_functional ? "functional " : "", req->getPaddr(),
270  blockAlign(req->getPaddr()), ref_data);
271 
272  pkt = new Packet(req, MemCmd::ReadReq);
273  pkt->dataDynamic(pkt_data);
274  } else {
275  DPRINTF(MemTest, "Initiating %swrite at addr %x (blk %x) value %x\n",
276  do_functional ? "functional " : "", req->getPaddr(),
277  blockAlign(req->getPaddr()), data);
278 
279  pkt = new Packet(req, MemCmd::WriteReq);
280  pkt->dataDynamic(pkt_data);
281  pkt_data[0] = data;
282  }
283 
284  // there is no point in ticking if we are waiting for a retry
285  bool keep_ticking = true;
286  if (do_functional) {
287  pkt->setSuppressFuncError();
288  port.sendFunctional(pkt);
289  completeRequest(pkt, true);
290  } else {
291  keep_ticking = sendPkt(pkt);
292  }
293 
294  if (keep_ticking) {
295  // schedule the next tick
297 
298  // finally shift the timeout for sending of requests forwards
299  // as we have successfully sent a packet
301  } else {
302  DPRINTF(MemTest, "Waiting for retry\n");
303  }
304 
305  // Schedule noResponseEvent now if we are expecting a response
306  if (!noResponseEvent.scheduled() && (outstandingAddrs.size() != 0))
308 }
309 
310 void
312 {
313  panic("%s did not send a request for %d cycles", name(), progressCheck);
314 }
315 
316 void
318 {
319  panic("%s did not see a response for %d cycles", name(), progressCheck);
320 }
321 
322 void
324 {
325  assert(retryPkt);
326  if (port.sendTimingReq(retryPkt)) {
327  DPRINTF(MemTest, "Proceeding after successful retry\n");
328 
329  retryPkt = nullptr;
330  // kick things into action again
333  }
334 }
335 
336 MemTest *
337 MemTestParams::create()
338 {
339  return new MemTest(this);
340 }
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:163
void ccprintf(cp::Print &print)
Definition: cprintf.hh:127
#define DPRINTF(x,...)
Definition: trace.hh:225
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
EventFunctionWrapper tickEvent
Definition: memtest.hh:84
Bitfield< 23, 20 > atomic
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
std::shared_ptr< Request > RequestPtr
Definition: request.hh:81
Addr blockAlign(Addr addr) const
Get the block aligned address.
Definition: memtest.hh:149
const Addr blockAddrMask
Definition: memtest.hh:141
std::unordered_map< Addr, uint8_t > referenceData
Definition: memtest.hh:137
Bitfield< 23, 0 > offset
Definition: types.hh:152
Overload hash function for BasicBlockRange type.
Definition: vec_reg.hh:587
bool sendTimingReq(PacketPtr pkt)
Attempt to send a timing request to the slave port by calling its corresponding receive function...
Definition: port.hh:441
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
bool isWrite() const
Definition: packet.hh:523
Declaration of Statistics objects.
bool isRead() const
Definition: packet.hh:522
The request is to an uncacheable address.
Definition: request.hh:113
EventFunctionWrapper noRequestEvent
Definition: memtest.hh:88
const bool atomic
Definition: memtest.hh:166
std::enable_if< std::is_integral< T >::value, T >::type random()
Use the SFINAE idiom to choose an implementation based on whether the type is integral or floating po...
Definition: random.hh:79
RequestPtr req
A pointer to the original request.
Definition: packet.hh:321
CpuPort port
Definition: memtest.hh:117
MasterID masterId
Request id for all generated traffic.
Definition: memtest.hh:130
Tick curTick()
The current simulated tick.
Definition: core.hh:44
const unsigned blockSize
Definition: memtest.hh:139
virtual Port & getPort(const std::string &if_name, PortID idx=InvalidPortID)
Get a port with a given name and index.
Definition: sim_object.cc:123
bool isError() const
Definition: packet.hh:549
void tick()
Definition: memtest.cc:213
PacketPtr retryPkt
Definition: memtest.hh:119
unsigned int id
Definition: memtest.hh:132
The ClockedObject class extends the SimObject with a clock and accessor functions to relate ticks to ...
Bitfield< 51, 12 > base
Definition: pagetable.hh:141
The MemTest class tests a cache coherent memory system by generating false sharing and verifying the ...
Definition: memtest.hh:67
void deschedule(Event &event)
Definition: eventq.hh:943
#define fatal_if(cond,...)
Conditional fatal macro that checks the supplied condition and only causes a fatal error if the condi...
Definition: logging.hh:199
void schedule(Event &event, Tick when)
Definition: eventq.hh:934
MemTest(const Params *p)
Definition: memtest.cc:82
bool recvTimingResp(PacketPtr pkt)
Receive a timing response from the peer.
Definition: memtest.cc:56
void reschedule(Event &event, Tick when, bool always=false)
Definition: eventq.hh:952
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:140
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
Definition: packet.hh:249
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...
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
unsigned int TESTER_ALLOCATOR
Definition: memtest.cc:53
uint64_t numReads
Definition: memtest.hh:162
std::set< Addr > outstandingAddrs
Definition: memtest.hh:134
bool scheduled() const
Determine if the current event is scheduled.
Definition: eventq.hh:459
Derived & name(const std::string &name)
Set the name and marks this stat to print at the end of simulation.
Definition: statistics.hh:276
Addr uncacheAddr
Definition: memtest.hh:156
virtual const std::string name() const
Definition: sim_object.hh:129
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:88
const unsigned percentUncacheable
Definition: memtest.hh:127
const Cycles progressCheck
Definition: memtest.hh:159
Random random_mt
Definition: random.cc:96
const unsigned percentReads
Definition: memtest.hh:125
const T * getConstPtr() const
Definition: packet.hh:1093
uint64_t numWrites
Definition: memtest.hh:163
void sendFunctional(PacketPtr pkt) const
Send a functional request packet, where the data is instantly updated everywhere in the memory system...
Definition: port.hh:435
Stats::Scalar numWritesStat
Definition: memtest.hh:171
Derived & desc(const std::string &_desc)
Set the description and marks this stat to print at the end of simulation.
Definition: statistics.hh:309
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
virtual void regStats()
Callback to set stat parameters.
Definition: group.cc:64
const uint64_t maxLoads
Definition: memtest.hh:164
Addr baseAddr1
Definition: memtest.hh:154
Bitfield< 0 > p
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
Definition: logging.hh:181
MemTestParams Params
Definition: memtest.hh:72
const char data[]
void set(Type flags)
Definition: flags.hh:68
ProbePointArg< PacketInfo > Packet
Packet probe point.
Definition: mem.hh:103

Generated on Fri Jul 3 2020 15:53:01 for gem5 by doxygen 1.8.13