Go to the documentation of this file.
36 #include "debug/ProtocolTest.hh"
43 threadEvent(this,
"TesterThread tick"),
44 deadlockCheckEvent(this),
45 threadId(
p.thread_id),
46 numLanes(
p.num_lanes),
47 tester(nullptr), addrManager(nullptr), port(nullptr),
48 scalarPort(nullptr), sqcPort(nullptr), curEpisode(nullptr),
49 curAction(nullptr), pendingLdStCount(0), pendingFenceCount(0),
50 pendingAtomicCount(0), lastActiveCycle(
Cycles(0)),
51 deadlockThreshold(
p.deadlock_threshold)
58 assert(
ep !=
nullptr);
162 int tokens_needed = 0;
171 for (
int lane = 0; lane <
numLanes; ++lane) {
183 return tokens_needed;
196 bool haveTokens =
true;
249 for (
int lane = 0; lane <
numLanes; ++lane) {
282 panic(
"The tester got an invalid action\n");
316 panic(
"The tester got an invalid action\n");
334 OutstandingReqTable::iterator it = req_table.find(address);
337 if (it == req_table.end()) {
343 (it->second).push_back(req);
350 OutstandingReqTable::iterator it = req_table.find(
addr);
353 assert(it != req_table.end());
357 assert(!req_list.empty());
366 if (req_list.empty()) {
377 std::stringstream
ss;
381 ss <<
threadName <<
": Atomic Op returned unexpected value\n"
383 <<
"\tLane ID " << lane <<
"\n"
385 <<
"\tAtomic Op's return value " << ret_val <<
"\n";
401 std::stringstream
ss;
405 ss <<
threadName <<
": Loaded value is not consistent with "
406 <<
"the last stored value\n"
407 <<
"\tTesterThread " <<
threadId <<
"\n"
409 <<
"\tLane ID " << lane <<
"\n"
411 <<
"\tLoaded value " << ret_val <<
"\n"
440 std::stringstream
ss;
444 <<
"\tCurrent cycle: " <<
curCycle() <<
"\n"
462 std::stringstream&
ss)
const
466 for (
const auto&
m : table) {
467 for (
const auto& req :
m.second) {
469 <<
": delta (curCycle - issueCycle) = "
470 << (cur_cycle - req.issueCycle) << std::endl;
479 ss <<
"\t\tOutstanding Loads:\n";
481 ss <<
"\t\tOutstanding Stores:\n";
483 ss <<
"\t\tOutstanding Atomics:\n";
485 ss <<
"\t\tNumber of outstanding acquires & releases: "
ProtocolTester::GMTokenPort * tokenPort
TesterThreadParams Params
Tick curTick()
The universal simulation clock.
DeadlockCheckEvent deadlockCheckEvent
Cycles curCycle() const
Determine the current cycle, corresponding to a tick aligned to a clock edge.
virtual void issueLoadOps()=0
std::string printAddress(Addr addr)
bool hasMoreActions() const
virtual void issueAtomicOps()=0
ProtocolTester::SeqPort * port
virtual void issueReleaseOp()=0
const Episode::Action * curAction
OutstandingReqTable outstandingAtomics
bool validateAtomicResp(Location loc, Value ret_val)
TesterThreadEvent threadEvent
void schedule(Event &event, Tick when)
virtual void issueStoreOps()=0
EpisodeHistory episodeHistory
Cycles is a wrapper class for representing cycle counts, i.e.
void attachTesterThreadToPorts(ProtocolTester *_tester, ProtocolTester::SeqPort *_port, ProtocolTester::GMTokenPort *_tokenPort=nullptr, ProtocolTester::SeqPort *_sqcPort=nullptr, ProtocolTester::SeqPort *_scalarPort=nullptr)
int getEpisodeLength() const
bool haveTokens(int num_tokens)
Query if there are at least num_tokens tokens available to acquire.
OutstandingReqTable outstandingStores
OutstandingReq popOutstandingReq(OutstandingReqTable &req_table, Addr address)
const Action * peekCurAction() const
void validateLoadResp(Location loc, int lane, Value ret_val)
virtual void issueAcquireOp()=0
ProtocolTester::SeqPort * sqcPort
void acquireTokens(int num_tokens)
Acquire tokens by decrementing the number of available tokens across the port.
std::vector< OutstandingReq > OutstandingReqList
void dumpErrorLog(std::stringstream &ss)
Location getLocation(int lane) const
void printOutstandingReqs(const OutstandingReqTable &table, std::stringstream &ss) const
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
AddressManager::Location Location
AddressManager * addrManager
ProtocolTester::SeqPort * scalarPort
static const int INVALID_LOCATION
The ClockedObject class extends the SimObject with a clock and accessor functions to relate ticks to ...
void addOutstandingReqs(OutstandingReqTable &req_table, Addr addr, int lane, Location loc, Value stored_val=AddressManager::INVALID_VALUE)
OutstandingReqTable outstandingLoads
void scheduleDeadlockCheckEvent()
Tick nextCycle() const
Based on the clock of the object, determine the start tick of the first cycle that is at least one cy...
void printAllOutstandingReqs(std::stringstream &ss) const
bool checkDRF(Location atomic_loc, Location loc, bool isStore, int max_lane) const
bool checkDRF(Location atomic_loc, Location loc, bool isStore) const
AddressManager * getAddressManager() const
void validateAtomicResp(Location loc, int lane, Value ret_val)
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Value getLoggedValue(Location loc) const
std::unordered_map< Addr, OutstandingReqList > OutstandingReqTable
TesterThread(const Params &p)
AddressManager::Value Value
std::string printLastWriter(Location loc) const
bool scheduled() const
Determine if the current event is scheduled.
#define panic(...)
This implements a cprintf based panic() function.
Addr getAddress(Location loc)
Generated on Sun Jul 30 2023 01:56:53 for gem5 by doxygen 1.8.17