gem5 v24.1.0.1
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
Check.cc
Go to the documentation of this file.
1/*
2 * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
3 * Copyright (c) 2009 Advanced Micro Devices, Inc.
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer;
10 * redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution;
13 * neither the name of the copyright holders nor the names of its
14 * contributors may be used to endorse or promote products derived from
15 * this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 */
29
31
32#include "base/trace.hh"
33#include "debug/RubyTest.hh"
35
36namespace gem5
37{
38
40
41Check::Check(Addr address, Addr pc, int _num_writers, int _num_readers,
42 RubyTester* _tester)
43 : m_num_writers(_num_writers), m_num_readers(_num_readers),
44 m_tester_ptr(_tester)
45{
46 m_status = ruby::TesterStatus_Idle;
47
48 pickValue();
50 changeAddress(address);
51 m_pc = pc;
52 m_access_mode = ruby::RubyAccessMode(
53 rng->random(0, ruby::RubyAccessMode_NUM - 1));
54 m_store_count = 0;
55}
56
57void
59{
60 DPRINTF(RubyTest, "initiating\n");
61 debugPrint();
62
63 // currently no protocols support prefetches
64 if (false && (rng->random(0, 0xf) == 0)) {
65 initiatePrefetch(); // Prefetch from random processor
66 }
67
68 if (m_tester_ptr->getCheckFlush() && (rng->random(0, 0xff) == 0)) {
69 initiateFlush(); // issue a Flush request from random processor
70 }
71
72 if (m_status == ruby::TesterStatus_Idle) {
74 } else if (m_status == ruby::TesterStatus_Ready) {
76 } else {
77 // Pending - do nothing
78 DPRINTF(RubyTest,
79 "initiating action/check - failed: action/check is pending\n");
80 }
81}
82
83void
85{
86 DPRINTF(RubyTest, "initiating prefetch\n");
87
88 int index = rng->random(0, m_num_readers - 1);
90
93
95
96 // 1 in 8 chance this will be an exclusive prefetch
97 if (rng->random(0, 0x7) != 0) {
98 cmd = MemCmd::ReadReq;
99
100 // if necessary, make the request an instruction fetch
103 (rng->random(0, 0x1)))) {
105 }
106 } else {
107 cmd = MemCmd::WriteReq;
109 }
110
111 // Prefetches are assumed to be 0 sized
112 RequestPtr req = std::make_shared<Request>(
114 req->setPC(m_pc);
115 req->setContext(index);
116
117 PacketPtr pkt = new Packet(req, cmd);
118 // despite the oddity of the 0 size (questionable if this should
119 // even be allowed), a prefetch is still a read and as such needs
120 // a place to store the result
121 uint8_t *data = new uint8_t[1];
122 pkt->dataDynamic(data);
123
124 // push the subblock onto the sender state. The sequencer will
125 // update the subblock on the return
126 pkt->senderState = new SenderState(m_address, req->getSize(),
128
129 if (port->sendTimingReq(pkt)) {
130 DPRINTF(RubyTest, "successfully initiated prefetch.\n");
131 } else {
132 // If the packet did not issue, must delete
133 delete pkt->senderState;
134 delete pkt;
135
136 DPRINTF(RubyTest,
137 "prefetch initiation failed because Port was busy.\n");
138 }
139}
140
141void
143{
144
145 DPRINTF(RubyTest, "initiating Flush\n");
146
147 int index = rng->random(0, m_num_writers - 1);
149
151
152 RequestPtr req = std::make_shared<Request>(
154 req->setPC(m_pc);
155
156 Packet::Command cmd;
157
158 cmd = MemCmd::FlushReq;
159
160 PacketPtr pkt = new Packet(req, cmd);
161
162 // push the subblock onto the sender state. The sequencer will
163 // update the subblock on the return
164 pkt->senderState = new SenderState(m_address, req->getSize(),
166
167 if (port->sendTimingReq(pkt)) {
168 DPRINTF(RubyTest, "initiating Flush - successful\n");
169 }
170}
171
172void
174{
175 DPRINTF(RubyTest, "initiating Action\n");
176 assert(m_status == ruby::TesterStatus_Idle);
177
178 int index = rng->random(0, m_num_writers - 1);
180
182
183 // Create the particular address for the next byte to be written
184 Addr writeAddr(m_address + m_store_count);
185
186 // Stores are assumed to be 1 byte-sized
187 RequestPtr req = std::make_shared<Request>(
188 writeAddr, 1, flags, m_tester_ptr->requestorId());
189 req->setPC(m_pc);
190
191 req->setContext(index);
192 Packet::Command cmd;
193
194 // 1 out of 8 chance, issue an atomic rather than a write
195 // if ((random() & 0x7) == 0) {
196 // cmd = MemCmd::SwapReq;
197 // } else {
198 cmd = MemCmd::WriteReq;
199 // }
200
201 PacketPtr pkt = new Packet(req, cmd);
202 uint8_t *writeData = new uint8_t[1];
203 *writeData = m_value + m_store_count;
204 pkt->dataDynamic(writeData);
205
206 DPRINTF(RubyTest, "Seq write: index %d data 0x%x check 0x%x\n", index,
207 *(pkt->getConstPtr<uint8_t>()), *writeData);
208
209 // push the subblock onto the sender state. The sequencer will
210 // update the subblock on the return
211 pkt->senderState = new SenderState(m_address, req->getSize(),
213
214 if (port->sendTimingReq(pkt)) {
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;
219 DPRINTF(RubyTest, "Check %#x, State=Action_Pending\n", m_address);
220 } else {
221 // If the packet did not issue, must delete
222 // Note: No need to delete the data, the packet destructor
223 // will delete it
224 delete pkt->senderState;
225 delete pkt;
226
227 DPRINTF(RubyTest, "failed to initiate action - sequencer not ready\n");
228 }
229
230 DPRINTF(RubyTest, "status after action update: %s\n",
231 (ruby::TesterStatus_to_string(m_status)).c_str());
232}
233
234void
236{
237 DPRINTF(RubyTest, "Initiating Check\n");
238 assert(m_status == ruby::TesterStatus_Ready);
239
240 int index = rng->random(0, m_num_readers - 1);
242
244
245 // If necessary, make the request an instruction fetch
248 (rng->random(0, 0x1)))) {
250 }
251
252 // Checks are sized depending on the number of bytes written
253 RequestPtr req = std::make_shared<Request>(
255 req->setPC(m_pc);
256
257 req->setContext(index);
258 PacketPtr pkt = new Packet(req, MemCmd::ReadReq);
259 uint8_t *dataArray = new uint8_t[CHECK_SIZE];
260 pkt->dataDynamic(dataArray);
261
262 DPRINTF(RubyTest, "Seq read: index %d\n", index);
263
264 // push the subblock onto the sender state. The sequencer will
265 // update the subblock on the return
266 pkt->senderState = new SenderState(m_address, req->getSize(),
268
269 if (port->sendTimingReq(pkt)) {
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;
274 DPRINTF(RubyTest, "Check %#x, State=Check_Pending\n", m_address);
275 } else {
276 // If the packet did not issue, must delete
277 // Note: No need to delete the data, the packet destructor
278 // will delete it
279 delete pkt->senderState;
280 delete pkt;
281
282 DPRINTF(RubyTest, "failed to initiate check - cpu port not ready\n");
283 }
284
285 DPRINTF(RubyTest, "status after check update: %s\n",
286 ruby::TesterStatus_to_string(m_status).c_str());
287}
288
289void
291{
292 Addr address = data->getAddress();
293
294 // This isn't exactly right since we now have multi-byte checks
295 // assert(getAddress() == address);
296
297 int block_size_bits = CACHE_LINE_BITS;
298 assert(ruby::makeLineAddress(m_address, block_size_bits) ==
299 ruby::makeLineAddress(address, block_size_bits));
300 assert(data != NULL);
301
302 DPRINTF(RubyTest, "RubyTester Callback\n");
303 debugPrint();
304
305 if (m_status == ruby::TesterStatus_Action_Pending) {
306 DPRINTF(RubyTest, "Action callback write value: %d, currently %d\n",
307 (m_value + m_store_count), data->getByte(0));
308 // Perform store one byte at a time
309 data->setByte(0, (m_value + m_store_count));
311 if (m_store_count == CHECK_SIZE) {
312 m_status = ruby::TesterStatus_Ready;
313 DPRINTF(RubyTest, "Check %#x, State=Ready\n", m_address);
314 } else {
315 m_status = ruby::TesterStatus_Idle;
316 DPRINTF(RubyTest, "Check %#x, State=Idle store_count: %d\n",
318 }
319 DPRINTF(RubyTest, "Action callback return data now %d\n",
320 data->getByte(0));
321 } else if (m_status == ruby::TesterStatus_Check_Pending) {
322 DPRINTF(RubyTest, "Check callback\n");
323 // Perform load/check
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"
328 "Time: %d\n",
329 proc, address, data, byte_number,
330 (int)m_value + byte_number,
331 (int)data->getByte(byte_number), *this, curTime);
332 }
333 }
334 DPRINTF(RubyTest, "Action/check success\n");
335 debugPrint();
336
337 // successful check complete, increment complete
339
340 m_status = ruby::TesterStatus_Idle;
341 DPRINTF(RubyTest, "Check %#x, State=Idle\n", m_address);
342 pickValue();
343
344 } else {
345 panic("Unexpected TesterStatus: %s proc: %d data: %s m_status: %s "
346 "time: %d\n", *this, proc, data, m_status, curTime);
347 }
348
349 DPRINTF(RubyTest, "proc: %d, Address: 0x%x\n", proc,
350 ruby::makeLineAddress(m_address, block_size_bits));
351 DPRINTF(RubyTest, "Callback done\n");
352 debugPrint();
353}
354
355void
357{
358 assert(m_status == ruby::TesterStatus_Idle ||
359 m_status == ruby::TesterStatus_Ready);
360 m_status = ruby::TesterStatus_Idle;
361 m_address = address;
362 DPRINTF(RubyTest, "Check %#x, State=Idle\n", m_address);
363 m_store_count = 0;
364}
365
366void
368{
369 assert(m_status == ruby::TesterStatus_Idle);
370 m_value = rng->random(0, 0xff); // One byte
371 m_store_count = 0;
372}
373
374void
376{
377 assert(m_status == ruby::TesterStatus_Idle ||
378 m_status == ruby::TesterStatus_Ready);
379 m_status = ruby::TesterStatus_Idle;
380 m_initiatingNode = (rng->random(0, m_num_writers - 1));
381 DPRINTF(RubyTest, "Check %#x, State=Idle, picked initiating node %d\n",
383 m_store_count = 0;
384}
385
386void
387Check::print(std::ostream& out) const
388{
389 out << "["
390 << m_address << ", value: "
391 << (int)m_value << ", status: "
392 << m_status << ", initiating node: "
393 << m_initiatingNode << ", store_count: "
395 << "]" << std::flush;
396}
397
398void
400{
401 DPRINTF(RubyTest,
402 "[%#x, value: %d, status: %s, initiating node: %d, store_count: %d]\n",
403 m_address, (int)m_value,
404 ruby::TesterStatus_to_string(m_status).c_str(),
406}
407
408} // namespace gem5
#define DPRINTF(x,...)
Definition trace.hh:209
const char data[]
void changeAddress(Addr address)
Definition Check.cc:356
Addr m_pc
Definition Check.hh:83
void initiateCheck()
Definition Check.cc:235
void initiate()
Definition Check.cc:58
ruby::RubyAccessMode m_access_mode
Definition Check.hh:84
void initiateAction()
Definition Check.cc:173
void pickInitiatingNode()
Definition Check.cc:375
void print(std::ostream &out) const
Definition Check.cc:387
int m_store_count
Definition Check.hh:80
Random::RandomPtr rng
Definition Check.hh:88
void performCallback(ruby::NodeID proc, ruby::SubBlock *data, Cycles curTime)
Definition Check.cc:290
void pickValue()
Definition Check.cc:367
Addr m_address
Definition Check.hh:82
void initiateFlush()
Definition Check.cc:142
void initiatePrefetch()
Definition Check.cc:84
RubyTester * m_tester_ptr
Definition Check.hh:87
ruby::NodeID m_initiatingNode
Definition Check.hh:81
void debugPrint()
Definition Check.cc:399
ruby::TesterStatus m_status
Definition Check.hh:78
uint8_t m_value
Definition Check.hh:79
Check(Addr address, Addr pc, int _num_writers, int _num_readers, RubyTester *_tester)
Definition Check.cc:41
int m_num_writers
Definition Check.hh:85
int m_num_readers
Definition Check.hh:86
Cycles is a wrapper class for representing cycle counts, i.e.
Definition types.hh:79
Command
List of all commands associated with a packet.
Definition packet.hh:85
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Definition packet.hh:295
SenderState * senderState
This packet's sender state.
Definition packet.hh:545
const T * getConstPtr() const
Definition packet.hh:1234
void dataDynamic(T *p)
Set the data pointer to a value that should have delete [] called on it.
Definition packet.hh:1213
A RequestPort is a specialisation of a Port, which implements the default protocol for the three diff...
Definition port.hh:136
bool sendTimingReq(PacketPtr pkt)
Attempt to send a timing request to the responder port by calling its corresponding receive function.
Definition port.hh:603
@ PF_EXCLUSIVE
The request should be prefetched into the exclusive state.
Definition request.hh:166
@ INST_FETCH
The request was an instruction fetch.
Definition request.hh:115
@ PREFETCH
The request is a prefetch.
Definition request.hh:164
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.
Definition flags.hh:116
#define panic(...)
This implements a cprintf based panic() function.
Definition logging.hh:188
uint8_t flags
Definition helpers.cc:87
Bitfield< 4 > pc
Bitfield< 30, 0 > index
Addr makeLineAddress(Addr addr, int cacheLineBits)
Definition Address.cc:61
unsigned int NodeID
Copyright (c) 2024 Arm Limited All rights reserved.
Definition binary32.hh:36
std::shared_ptr< Request > RequestPtr
Definition request.hh:94
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition types.hh:147
const int CHECK_SIZE
Definition Check.hh:50
RubyTester::SenderState SenderState
Definition Check.cc:39
const int CACHE_LINE_BITS
Definition Check.hh:51

Generated on Mon Jan 13 2025 04:28:32 for gem5 by doxygen 1.9.8