33#include "debug/RubyTest.hh"
43 : m_num_writers(_num_writers), m_num_readers(_num_readers),
53 rng->random(0, ruby::RubyAccessMode_NUM - 1));
60 DPRINTF(RubyTest,
"initiating\n");
64 if (
false && (
rng->random(0, 0xf) == 0)) {
72 if (
m_status == ruby::TesterStatus_Idle) {
74 }
else if (
m_status == ruby::TesterStatus_Ready) {
79 "initiating action/check - failed: action/check is pending\n");
86 DPRINTF(RubyTest,
"initiating prefetch\n");
97 if (
rng->random(0, 0x7) != 0) {
103 (
rng->random(0, 0x1)))) {
115 req->setContext(
index);
121 uint8_t *
data =
new uint8_t[1];
130 DPRINTF(RubyTest,
"successfully initiated prefetch.\n");
137 "prefetch initiation failed because Port was busy.\n");
145 DPRINTF(RubyTest,
"initiating Flush\n");
168 DPRINTF(RubyTest,
"initiating Flush - successful\n");
175 DPRINTF(RubyTest,
"initiating Action\n");
176 assert(
m_status == ruby::TesterStatus_Idle);
191 req->setContext(
index);
202 uint8_t *writeData =
new uint8_t[1];
206 DPRINTF(RubyTest,
"Seq write: index %d data 0x%x check 0x%x\n",
index,
215 DPRINTF(RubyTest,
"initiating action - successful\n");
216 DPRINTF(RubyTest,
"status before action update: %s\n",
217 (ruby::TesterStatus_to_string(
m_status)).c_str());
218 m_status = ruby::TesterStatus_Action_Pending;
227 DPRINTF(RubyTest,
"failed to initiate action - sequencer not ready\n");
230 DPRINTF(RubyTest,
"status after action update: %s\n",
231 (ruby::TesterStatus_to_string(
m_status)).c_str());
237 DPRINTF(RubyTest,
"Initiating Check\n");
238 assert(
m_status == ruby::TesterStatus_Ready);
248 (
rng->random(0, 0x1)))) {
257 req->setContext(
index);
270 DPRINTF(RubyTest,
"initiating check - successful\n");
271 DPRINTF(RubyTest,
"status before check update: %s\n",
272 ruby::TesterStatus_to_string(
m_status).c_str());
273 m_status = ruby::TesterStatus_Check_Pending;
282 DPRINTF(RubyTest,
"failed to initiate check - cpu port not ready\n");
285 DPRINTF(RubyTest,
"status after check update: %s\n",
286 ruby::TesterStatus_to_string(
m_status).c_str());
300 assert(
data != NULL);
302 DPRINTF(RubyTest,
"RubyTester Callback\n");
305 if (
m_status == ruby::TesterStatus_Action_Pending) {
306 DPRINTF(RubyTest,
"Action callback write value: %d, currently %d\n",
312 m_status = ruby::TesterStatus_Ready;
316 DPRINTF(RubyTest,
"Check %#x, State=Idle store_count: %d\n",
319 DPRINTF(RubyTest,
"Action callback return data now %d\n",
321 }
else if (
m_status == ruby::TesterStatus_Check_Pending) {
322 DPRINTF(RubyTest,
"Check callback\n");
324 for (
int byte_number=0; byte_number<
CHECK_SIZE; byte_number++) {
325 if (uint8_t(
m_value + byte_number) !=
data->getByte(byte_number)) {
326 panic(
"Action/check failure: proc: %d address: %#x data: %s "
327 "byte_number: %d m_value+byte_number: %d byte: %d %s"
329 proc, address,
data, byte_number,
331 (
int)
data->getByte(byte_number), *
this, curTime);
334 DPRINTF(RubyTest,
"Action/check success\n");
345 panic(
"Unexpected TesterStatus: %s proc: %d data: %s m_status: %s "
349 DPRINTF(RubyTest,
"proc: %d, Address: 0x%x\n", proc,
351 DPRINTF(RubyTest,
"Callback done\n");
358 assert(
m_status == ruby::TesterStatus_Idle ||
359 m_status == ruby::TesterStatus_Ready);
369 assert(
m_status == ruby::TesterStatus_Idle);
377 assert(
m_status == ruby::TesterStatus_Idle ||
378 m_status == ruby::TesterStatus_Ready);
381 DPRINTF(RubyTest,
"Check %#x, State=Idle, picked initiating node %d\n",
391 << (int)
m_value <<
", status: "
392 <<
m_status <<
", initiating node: "
395 <<
"]" << std::flush;
402 "[%#x, value: %d, status: %s, initiating node: %d, store_count: %d]\n",
404 ruby::TesterStatus_to_string(
m_status).c_str(),
void changeAddress(Addr address)
ruby::RubyAccessMode m_access_mode
void pickInitiatingNode()
void print(std::ostream &out) const
void performCallback(ruby::NodeID proc, ruby::SubBlock *data, Cycles curTime)
RubyTester * m_tester_ptr
ruby::NodeID m_initiatingNode
ruby::TesterStatus m_status
Check(Addr address, Addr pc, int _num_writers, int _num_readers, RubyTester *_tester)
Cycles is a wrapper class for representing cycle counts, i.e.
Command
List of all commands associated with a packet.
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
SenderState * senderState
This packet's sender state.
const T * getConstPtr() const
void dataDynamic(T *p)
Set the data pointer to a value that should have delete [] called on it.
A RequestPort is a specialisation of a Port, which implements the default protocol for the three diff...
bool sendTimingReq(PacketPtr pkt)
Attempt to send a timing request to the responder port by calling its corresponding receive function.
@ PF_EXCLUSIVE
The request should be prefetched into the exclusive state.
@ INST_FETCH
The request was an instruction fetch.
@ PREFETCH
The request is a prefetch.
bool isInstOnlyCpuPort(int idx)
void incrementCheckCompletions()
RequestPort * getWritableCpuPort(int idx)
RequestorID requestorId()
bool isInstDataCpuPort(int idx)
RequestPort * getReadableCpuPort(int idx)
void set(Type mask)
Set all flag's bits matching the given mask.
#define panic(...)
This implements a cprintf based panic() function.
Addr makeLineAddress(Addr addr, int cacheLineBits)
Copyright (c) 2024 Arm Limited All rights reserved.
std::shared_ptr< Request > RequestPtr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
RubyTester::SenderState SenderState
const int CACHE_LINE_BITS