Go to the documentation of this file.
46 #include "debug/MemTest.hh"
83 noRequestEvent([
this]{ noRequest(); },
name()),
84 noResponseEvent([
this]{ noResponse(); },
name()),
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)
103 fatal_if(
id >= blockSize,
"Too many testers, only %d allowed\n",
106 baseAddr1 = 0x100000;
107 baseAddr2 = 0x400000;
108 uncacheAddr = 0x800000;
115 schedule(tickEvent,
curTick());
116 schedule(noRequestEvent, clockEdge(progressCheck));
122 if (if_name ==
"port")
132 assert(req->getSize() == 1);
140 pkt->
isWrite() ?
"write" :
"read",
142 pkt->
isError() ?
"error" :
"success");
144 const uint8_t *pkt_data = pkt->
getConstPtr<uint8_t>();
148 panic(
"%s access failed at %#x\n",
149 pkt->
isWrite() ?
"Write" :
"Read", 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(),
157 pkt_data[0], ref_data);
165 "%s: completed %d read, %d write accesses @%d\n",
193 :
Stats::Group(parent),
239 "Tester %s has more than 100 outstanding requests\n",
name());
242 uint8_t *pkt_data =
new uint8_t[1];
247 M5_VAR_USED uint8_t ref_data = 0;
252 ref_data = ref->second;
256 "Initiating %sread at addr %x (blk %x) expecting %x\n",
257 do_functional ?
"functional " :
"", req->getPaddr(),
263 DPRINTF(
MemTest,
"Initiating %swrite at addr %x (blk %x) value %x\n",
264 do_functional ?
"functional " :
"", req->getPaddr(),
273 bool keep_ticking =
true;
void setSuppressFuncError()
bool scheduled() const
Determine if the current event is scheduled.
EventFunctionWrapper noResponseEvent
Bitfield< 23, 20 > atomic
void reschedule(Event &event, Tick when, bool always=false)
Port & getPort(const std::string &if_name, PortID idx=InvalidPortID) override
Get a port with a given name and index.
const bool suppressFuncErrors
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
const Cycles progressCheck
std::shared_ptr< Request > RequestPtr
RequestPtr req
A pointer to the original request.
MemTestStats(Stats::Group *parent)
void deschedule(Event &event)
void dataDynamic(T *p)
Set the data pointer to a value that should have delete [] called on it.
const unsigned percentUncacheable
void sendFunctional(PacketPtr pkt) const
Send a functional request packet, where the data is instantly updated everywhere in the memory system...
const unsigned progressInterval
The ClockedObject class extends the SimObject with a clock and accessor functions to relate ticks to ...
EventFunctionWrapper tickEvent
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...
const unsigned percentReads
std::unordered_map< Addr, uint8_t > referenceData
void schedule(Event &event, Tick when)
Addr blockAlign(Addr addr) const
Get the block aligned address.
bool sendTimingReq(PacketPtr pkt)
Attempt to send a timing request to the responder port by calling its corresponding receive function.
virtual Port & getPort(const std::string &if_name, PortID idx=InvalidPortID)
Get a port with a given name and index.
#define ADD_STAT(n,...)
Convenience macro to add a stat to a statistics group.
bool sendPkt(PacketPtr pkt)
Ports are used to interface objects to each other.
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...
std::set< Addr > outstandingAddrs
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 (...
void set(Type mask)
Set all flag's bits matching the given mask.
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 ...
const unsigned percentFunctional
MemTest::MemTestStats stats
ProbePointArg< PacketInfo > Packet
Packet probe point.
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
const std::string & name()
virtual const std::string name() const
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
@ UNCACHEABLE
The request is to an uncacheable address.
RequestorID requestorId
Request id for all generated traffic.
void ccprintf(cp::Print &print)
EventFunctionWrapper noRequestEvent
Tick curTick()
The universal simulation clock.
Tick sendAtomic(PacketPtr pkt)
Send an atomic request packet, where the data is moved and the state is updated in zero time,...
#define fatal_if(cond,...)
Conditional fatal macro that checks the supplied condition and only causes a fatal error if the condi...
const T * getConstPtr() const
void recvReqRetry()
Called by the peer if sendTimingReq was called on this peer (causing recvTimingReq to be called on th...
void completeRequest(PacketPtr pkt, bool functional=false)
Complete a request by checking the response.
unsigned int TESTER_ALLOCATOR
#define panic(...)
This implements a cprintf based panic() function.
Generated on Tue Mar 23 2021 19:41:25 for gem5 by doxygen 1.8.17