46 #include "debug/MemTest.hh" 58 memtest.completeRequest(pkt);
74 if (!port.sendTimingReq(pkt)) {
84 tickEvent([this]{
tick(); },
name()),
101 atomic(
p->system->isAtomicMode()),
124 if (if_name ==
"port")
134 assert(req->getSize() == 1);
142 pkt->
isWrite() ?
"write" :
"read",
144 pkt->
isError() ?
"error" :
"success");
146 const uint8_t *pkt_data = pkt->
getConstPtr<uint8_t>();
150 panic(
"%s access failed at %#x\n",
151 pkt->
isWrite() ?
"Write" :
"Read", 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(),
159 pkt_data[0], ref_data);
166 ccprintf(cerr,
"%s: completed %d read, %d write accesses @%d\n",
199 using namespace Stats;
203 .
desc(
"number of read accesses completed")
208 .
desc(
"number of write accesses completed")
251 "Tester %s has more than 100 outstanding requests\n",
name());
254 uint8_t *pkt_data =
new uint8_t[1];
259 uint8_t M5_VAR_USED ref_data = 0;
264 ref_data = ref->second;
268 "Initiating %sread at addr %x (blk %x) expecting %x\n",
269 do_functional ?
"functional " :
"", req->getPaddr(),
273 pkt->dataDynamic(pkt_data);
275 DPRINTF(
MemTest,
"Initiating %swrite at addr %x (blk %x) value %x\n",
276 do_functional ?
"functional " :
"", req->getPaddr(),
280 pkt->dataDynamic(pkt_data);
285 bool keep_ticking =
true;
287 pkt->setSuppressFuncError();
337 MemTestParams::create()
#define panic(...)
This implements a cprintf based panic() function.
void ccprintf(cp::Print &print)
bool sendPkt(PacketPtr pkt)
Ports are used to interface objects to each other.
EventFunctionWrapper noResponseEvent
const bool suppressFuncErrors
EventFunctionWrapper tickEvent
Bitfield< 23, 20 > atomic
const unsigned percentFunctional
void recvReqRetry()
Called by the peer if sendTimingReq was called on this peer (causing recvTimingReq to be called on th...
const unsigned progressInterval
std::shared_ptr< Request > RequestPtr
Addr blockAlign(Addr addr) const
Get the block aligned address.
std::unordered_map< Addr, uint8_t > referenceData
Overload hash function for BasicBlockRange type.
bool sendTimingReq(PacketPtr pkt)
Attempt to send a timing request to the slave port by calling its corresponding receive function...
void regStats() override
Callback to set stat parameters.
Port & getPort(const std::string &if_name, PortID idx=InvalidPortID) override
Get a port with a given name and index.
Declaration of Statistics objects.
The request is to an uncacheable address.
EventFunctionWrapper noRequestEvent
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...
RequestPtr req
A pointer to the original request.
MasterID masterId
Request id for all generated traffic.
Tick curTick()
The current simulated tick.
virtual Port & getPort(const std::string &if_name, PortID idx=InvalidPortID)
Get a port with a given name and index.
The ClockedObject class extends the SimObject with a clock and accessor functions to relate ticks to ...
The MemTest class tests a cache coherent memory system by generating false sharing and verifying the ...
void deschedule(Event &event)
#define fatal_if(cond,...)
Conditional fatal macro that checks the supplied condition and only causes a fatal error if the condi...
void schedule(Event &event, Tick when)
bool recvTimingResp(PacketPtr pkt)
Receive a timing response from the peer.
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.
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
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...
Stats::Scalar numReadsStat
unsigned int TESTER_ALLOCATOR
std::set< Addr > outstandingAddrs
bool scheduled() const
Determine if the current event is scheduled.
Derived & name(const std::string &name)
Set the name and marks this stat to print at the end of simulation.
virtual const std::string name() const
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 (...
const unsigned percentUncacheable
const Cycles progressCheck
const unsigned percentReads
const T * getConstPtr() const
void sendFunctional(PacketPtr pkt) const
Send a functional request packet, where the data is instantly updated everywhere in the memory system...
Stats::Scalar numWritesStat
Derived & desc(const std::string &_desc)
Set the description and marks this stat to print at the end of simulation.
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
void completeRequest(PacketPtr pkt, bool functional=false)
Complete a request by checking the response.
virtual void regStats()
Callback to set stat parameters.
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
ProbePointArg< PacketInfo > Packet
Packet probe point.