47#include "debug/MemTest.hh"
87 noRequestEvent([
this]{ noRequest(); },
name()),
88 noResponseEvent([
this]{ noResponse(); },
name()),
94 percentReads(
p.percent_reads),
95 percentFunctional(
p.percent_functional),
96 percentUncacheable(
p.percent_uncacheable),
97 requestorId(
p.system->getRequestorId(
this)),
98 blockSize(
p.system->cacheLineSize()),
99 blockAddrMask(blockSize - 1),
100 sizeBlocks(size / blockSize),
101 baseAddr1(
p.base_addr_1),
102 baseAddr2(
p.base_addr_2),
103 uncacheAddr(
p.uncacheable_base_addr),
104 progressInterval(
p.progress_interval),
105 progressCheck(
p.progress_check),
106 nextProgressMessage(
p.progress_interval),
107 maxLoads(
p.max_loads),
108 atomic(
p.system->isAtomicMode()),
109 suppressFuncErrors(
p.suppress_func_errors), stats(
this)
112 fatal_if(
id >= blockSize,
"Too many testers, only %d allowed\n",
120 schedule(tickEvent,
curTick());
121 schedule(noRequestEvent, clockEdge(progressCheck));
127 if (if_name ==
"port")
137 assert(req->getSize() == 1);
145 pkt->
isWrite() ?
"write" :
"read",
147 pkt->
isError() ?
"error" :
"success");
149 const uint8_t *pkt_data = pkt->
getConstPtr<uint8_t>();
153 panic(
"%s access failed at %#x\n",
154 pkt->
isWrite() ?
"Write" :
"Read", req->getPaddr());
158 if (pkt_data[0] != ref_data) {
159 panic(
"%s: read of %x (blk %x) @ cycle %d "
160 "returns %x, expected %x\n",
name(),
162 pkt_data[0], ref_data);
170 "%s: completed %d read, %d write accesses @%d\n",
204 : statistics::
Group(parent),
205 ADD_STAT(numReads, statistics::units::Count::get(),
206 "number of read accesses completed"),
207 ADD_STAT(numWrites, statistics::units::Count::get(),
208 "number of write accesses completed")
260 "Tester %s has more than 100 outstanding requests\n",
name());
263 uint8_t *pkt_data =
new uint8_t[1];
268 [[maybe_unused]] uint8_t ref_data = 0;
273 ref_data = ref->second;
277 "Initiating %sread at addr %x (blk %x) expecting %x\n",
278 do_functional ?
"functional " :
"", req->getPaddr(),
282 pkt->dataDynamic(pkt_data);
284 DPRINTF(
MemTest,
"Initiating %swrite at addr %x (blk %x) value %x\n",
285 do_functional ?
"functional " :
"", req->getPaddr(),
289 pkt->dataDynamic(pkt_data);
294 bool keep_ticking =
true;
The ClockedObject class extends the SimObject with a clock and accessor functions to relate ticks to ...
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 recvReqRetry()
Called by the peer if sendTimingReq was called on this peer (causing recvTimingReq to be called on th...
bool recvTimingResp(PacketPtr pkt)
Receive a timing response from the peer.
The MemTest class tests a cache coherent memory system by generating false sharing and verifying the ...
EventFunctionWrapper tickEvent
const bool suppressFuncErrors
std::unordered_set< Addr > outstandingAddrs
gem5::MemTest::MemTestStats stats
const Cycles progressCheck
const unsigned percentFunctional
Port & getPort(const std::string &if_name, PortID idx=InvalidPortID) override
Get a port with a given name and index.
Addr blockAlign(Addr addr) const
Get the block aligned address.
const unsigned percentReads
void completeRequest(PacketPtr pkt, bool functional=false)
Complete a request by checking the response.
const unsigned progressInterval
std::unordered_map< Addr, uint8_t > referenceData
const unsigned sizeBlocks
EventFunctionWrapper noRequestEvent
EventFunctionWrapper noResponseEvent
RequestorID requestorId
Request id for all generated traffic.
bool sendPkt(PacketPtr pkt)
const unsigned percentUncacheable
virtual std::string name() const
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
RequestPtr req
A pointer to the original request.
const T * getConstPtr() const
void setSuppressFuncError()
Tick sendAtomic(PacketPtr pkt)
Send an atomic request packet, where the data is moved and the state is updated in zero time,...
bool sendTimingReq(PacketPtr pkt)
Attempt to send a timing request to the responder port by calling its corresponding receive function.
void sendFunctional(PacketPtr pkt) const
Send a functional request packet, where the data is instantly updated everywhere in the memory system...
@ UNCACHEABLE
The request is to an uncacheable address.
#define ADD_STAT(n,...)
Convenience macro to add a stat to a statistics group.
std::enable_if_t< std::is_integral_v< T >, T > random()
Use the SFINAE idiom to choose an implementation based on whether the type is integral or floating po...
void deschedule(Event &event)
bool scheduled() const
Determine if the current event is scheduled.
void schedule(Event &event, Tick when)
void reschedule(Event &event, Tick when, bool always=false)
#define panic(...)
This implements a cprintf based panic() function.
#define fatal_if(cond,...)
Conditional fatal macro that checks the supplied condition and only causes a fatal error if the condi...
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
virtual Port & getPort(const std::string &if_name, PortID idx=InvalidPortID)
Get a port with a given name and index.
Bitfield< 23, 20 > atomic
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
std::shared_ptr< Request > RequestPtr
Tick curTick()
The universal simulation clock.
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
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 (...
static unsigned int TESTER_ALLOCATOR
void ccprintf(cp::Print &print)
Declaration of Statistics objects.
statistics::Scalar numWrites
statistics::Scalar numReads
MemTestStats(statistics::Group *parent)
const std::string & name()