Go to the documentation of this file.
47 #include "debug/MemTest.hh"
87 noRequestEvent([
this]{ noRequest(); },
name()),
88 noResponseEvent([
this]{ noResponse(); },
name()),
93 percentReads(
p.percent_reads),
94 percentFunctional(
p.percent_functional),
95 percentUncacheable(
p.percent_uncacheable),
96 requestorId(
p.system->getRequestorId(
this)),
97 blockSize(
p.system->cacheLineSize()),
98 blockAddrMask(blockSize - 1),
99 baseAddr1(
p.base_addr_1),
100 baseAddr2(
p.base_addr_2),
101 uncacheAddr(
p.uncacheable_base_addr),
102 progressInterval(
p.progress_interval),
103 progressCheck(
p.progress_check),
104 nextProgressMessage(
p.progress_interval),
105 maxLoads(
p.max_loads),
106 atomic(
p.system->isAtomicMode()),
107 suppressFuncErrors(
p.suppress_func_errors), stats(
this)
110 fatal_if(
id >= blockSize,
"Too many testers, only %d allowed\n",
118 schedule(tickEvent,
curTick());
119 schedule(noRequestEvent, clockEdge(progressCheck));
125 if (if_name ==
"port")
135 assert(req->getSize() == 1);
143 pkt->
isWrite() ?
"write" :
"read",
145 pkt->
isError() ?
"error" :
"success");
147 const uint8_t *pkt_data = pkt->
getConstPtr<uint8_t>();
151 panic(
"%s access failed at %#x\n",
152 pkt->
isWrite() ?
"Write" :
"Read", req->getPaddr());
156 if (pkt_data[0] != ref_data) {
157 panic(
"%s: read of %x (blk %x) @ cycle %d "
158 "returns %x, expected %x\n",
name(),
160 pkt_data[0], ref_data);
168 "%s: completed %d read, %d write accesses @%d\n",
196 : statistics::
Group(parent),
197 ADD_STAT(numReads, statistics::units::Count::get(),
198 "number of read accesses completed"),
199 ADD_STAT(numWrites, statistics::units::Count::get(),
200 "number of write accesses completed")
244 "Tester %s has more than 100 outstanding requests\n",
name());
247 uint8_t *pkt_data =
new uint8_t[1];
252 [[maybe_unused]] uint8_t ref_data = 0;
257 ref_data = ref->second;
261 "Initiating %sread at addr %x (blk %x) expecting %x\n",
262 do_functional ?
"functional " :
"", req->getPaddr(),
268 DPRINTF(
MemTest,
"Initiating %swrite at addr %x (blk %x) value %x\n",
269 do_functional ?
"functional " :
"", req->getPaddr(),
278 bool keep_ticking =
true;
Tick curTick()
The universal simulation clock.
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
virtual Port & getPort(const std::string &if_name, PortID idx=InvalidPortID)
Get a port with a given name and index.
RequestorID requestorId
Request id for all generated traffic.
bool sendTimingReq(PacketPtr pkt)
Attempt to send a timing request to the responder port by calling its corresponding receive function.
The MemTest class tests a cache coherent memory system by generating false sharing and verifying the ...
const unsigned percentFunctional
void set(Type mask)
Set all flag's bits matching the given mask.
RequestPtr req
A pointer to the original request.
bool sendPkt(PacketPtr pkt)
std::unordered_map< Addr, uint8_t > referenceData
Tick sendAtomic(PacketPtr pkt)
Send an atomic request packet, where the data is moved and the state is updated in zero time,...
const unsigned percentUncacheable
void schedule(Event &event, Tick when)
EventFunctionWrapper noResponseEvent
void ccprintf(cp::Print &print)
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 (...
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...
Bitfield< 23, 20 > atomic
void sendFunctional(PacketPtr pkt) const
Send a functional request packet, where the data is instantly updated everywhere in the memory system...
virtual std::string name() const
gem5::MemTest::MemTestStats stats
#define ADD_STAT(n,...)
Convenience macro to add a stat to a statistics group.
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
ProbePointArg< PacketInfo > Packet
Packet probe point.
EventFunctionWrapper noRequestEvent
EventFunctionWrapper tickEvent
const bool suppressFuncErrors
std::shared_ptr< Request > RequestPtr
const T * getConstPtr() const
bool recvTimingResp(PacketPtr pkt)
Receive a timing response from the peer.
statistics::Scalar numWrites
Port & getPort(const std::string &if_name, PortID idx=InvalidPortID) override
Get a port with a given name and index.
void reschedule(Event &event, Tick when, bool always=false)
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
const std::string & name()
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 deschedule(Event &event)
const unsigned progressInterval
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
statistics::Scalar numReads
void dataDynamic(T *p)
Set the data pointer to a value that should have delete [] called on it.
@ UNCACHEABLE
The request is to an uncacheable address.
Addr blockAlign(Addr addr) const
Get the block aligned address.
const Cycles progressCheck
static unsigned int TESTER_ALLOCATOR
const unsigned percentReads
std::unordered_set< Addr > outstandingAddrs
#define fatal_if(cond,...)
Conditional fatal macro that checks the supplied condition and only causes a fatal error if the condi...
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
void setSuppressFuncError()
void completeRequest(PacketPtr pkt, bool functional=false)
Complete a request by checking the response.
MemTestStats(statistics::Group *parent)
void recvReqRetry()
Called by the peer if sendTimingReq was called on this peer (causing recvTimingReq to be called on th...
bool scheduled() const
Determine if the current event is scheduled.
#define panic(...)
This implements a cprintf based panic() function.
Generated on Tue Dec 21 2021 11:34:27 for gem5 by doxygen 1.8.17