gem5  v20.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
packet.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2011-2019 ARM Limited
3  * All rights reserved
4  *
5  * The license below extends only to copyright in the software and shall
6  * not be construed as granting a license to any other intellectual
7  * property including but not limited to intellectual property relating
8  * to a hardware implementation of the functionality of the software
9  * licensed hereunder. You may use the software subject to the license
10  * terms below provided that you ensure that this notice is replicated
11  * unmodified and in its entirety in all distributions of the software,
12  * modified or unmodified, in source code or in binary form.
13  *
14  * Copyright (c) 2006 The Regents of The University of Michigan
15  * Copyright (c) 2010,2015 Advanced Micro Devices, Inc.
16  * All rights reserved.
17  *
18  * Redistribution and use in source and binary forms, with or without
19  * modification, are permitted provided that the following conditions are
20  * met: redistributions of source code must retain the above copyright
21  * notice, this list of conditions and the following disclaimer;
22  * redistributions in binary form must reproduce the above copyright
23  * notice, this list of conditions and the following disclaimer in the
24  * documentation and/or other materials provided with the distribution;
25  * neither the name of the copyright holders nor the names of its
26  * contributors may be used to endorse or promote products derived from
27  * this software without specific prior written permission.
28  *
29  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
30  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
31  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
32  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
33  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
34  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
35  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
39  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40  */
41 
48 #include "mem/packet.hh"
49 
50 #include <algorithm>
51 #include <cstring>
52 #include <iostream>
53 #include <sstream>
54 #include <string>
55 
56 #include "base/cprintf.hh"
57 #include "base/logging.hh"
58 #include "base/trace.hh"
59 #include "mem/packet_access.hh"
60 
61 // The one downside to bitsets is that static initializers can get ugly.
62 #define SET1(a1) (1 << (a1))
63 #define SET2(a1, a2) (SET1(a1) | SET1(a2))
64 #define SET3(a1, a2, a3) (SET2(a1, a2) | SET1(a3))
65 #define SET4(a1, a2, a3, a4) (SET3(a1, a2, a3) | SET1(a4))
66 #define SET5(a1, a2, a3, a4, a5) (SET4(a1, a2, a3, a4) | SET1(a5))
67 #define SET6(a1, a2, a3, a4, a5, a6) (SET5(a1, a2, a3, a4, a5) | SET1(a6))
68 #define SET7(a1, a2, a3, a4, a5, a6, a7) (SET6(a1, a2, a3, a4, a5, a6) | \
69  SET1(a7))
70 
73 {
74  /* InvalidCmd */
75  { 0, InvalidCmd, "InvalidCmd" },
76  /* ReadReq - Read issued by a non-caching agent such as a CPU or
77  * device, with no restrictions on alignment. */
78  { SET3(IsRead, IsRequest, NeedsResponse), ReadResp, "ReadReq" },
79  /* ReadResp */
80  { SET3(IsRead, IsResponse, HasData), InvalidCmd, "ReadResp" },
81  /* ReadRespWithInvalidate */
82  { SET4(IsRead, IsResponse, HasData, IsInvalidate),
83  InvalidCmd, "ReadRespWithInvalidate" },
84  /* WriteReq */
85  { SET5(IsWrite, NeedsWritable, IsRequest, NeedsResponse, HasData),
86  WriteResp, "WriteReq" },
87  /* WriteResp */
88  { SET2(IsWrite, IsResponse), InvalidCmd, "WriteResp" },
89  /* WritebackDirty */
90  { SET5(IsWrite, IsRequest, IsEviction, HasData, FromCache),
91  InvalidCmd, "WritebackDirty" },
92  /* WritebackClean - This allows the upstream cache to writeback a
93  * line to the downstream cache without it being considered
94  * dirty. */
95  { SET5(IsWrite, IsRequest, IsEviction, HasData, FromCache),
96  InvalidCmd, "WritebackClean" },
97  /* WriteClean - This allows a cache to write a dirty block to a memory
98  below without evicting its copy. */
99  { SET4(IsWrite, IsRequest, HasData, FromCache), InvalidCmd, "WriteClean" },
100  /* CleanEvict */
101  { SET3(IsRequest, IsEviction, FromCache), InvalidCmd, "CleanEvict" },
102  /* SoftPFReq */
103  { SET4(IsRead, IsRequest, IsSWPrefetch, NeedsResponse),
104  SoftPFResp, "SoftPFReq" },
105  /* SoftPFExReq */
106  { SET6(IsRead, NeedsWritable, IsInvalidate, IsRequest,
107  IsSWPrefetch, NeedsResponse), SoftPFResp, "SoftPFExReq" },
108  /* HardPFReq */
109  { SET5(IsRead, IsRequest, IsHWPrefetch, NeedsResponse, FromCache),
110  HardPFResp, "HardPFReq" },
111  /* SoftPFResp */
112  { SET4(IsRead, IsResponse, IsSWPrefetch, HasData),
113  InvalidCmd, "SoftPFResp" },
114  /* HardPFResp */
115  { SET4(IsRead, IsResponse, IsHWPrefetch, HasData),
116  InvalidCmd, "HardPFResp" },
117  /* WriteLineReq */
118  { SET5(IsWrite, NeedsWritable, IsRequest, NeedsResponse, HasData),
119  WriteResp, "WriteLineReq" },
120  /* UpgradeReq */
121  { SET6(IsInvalidate, NeedsWritable, IsUpgrade, IsRequest, NeedsResponse,
122  FromCache),
123  UpgradeResp, "UpgradeReq" },
124  /* SCUpgradeReq: response could be UpgradeResp or UpgradeFailResp */
125  { SET7(IsInvalidate, NeedsWritable, IsUpgrade, IsLlsc,
126  IsRequest, NeedsResponse, FromCache),
127  UpgradeResp, "SCUpgradeReq" },
128  /* UpgradeResp */
129  { SET2(IsUpgrade, IsResponse),
130  InvalidCmd, "UpgradeResp" },
131  /* SCUpgradeFailReq: generates UpgradeFailResp but still gets the data */
132  { SET7(IsRead, NeedsWritable, IsInvalidate,
133  IsLlsc, IsRequest, NeedsResponse, FromCache),
134  UpgradeFailResp, "SCUpgradeFailReq" },
135  /* UpgradeFailResp - Behaves like a ReadExReq, but notifies an SC
136  * that it has failed, acquires line as Dirty*/
137  { SET3(IsRead, IsResponse, HasData),
138  InvalidCmd, "UpgradeFailResp" },
139  /* ReadExReq - Read issues by a cache, always cache-line aligned,
140  * and the response is guaranteed to be writeable (exclusive or
141  * even modified) */
142  { SET6(IsRead, NeedsWritable, IsInvalidate, IsRequest, NeedsResponse,
143  FromCache),
144  ReadExResp, "ReadExReq" },
145  /* ReadExResp - Response matching a read exclusive, as we check
146  * the need for exclusive also on responses */
147  { SET3(IsRead, IsResponse, HasData),
148  InvalidCmd, "ReadExResp" },
149  /* ReadCleanReq - Read issued by a cache, always cache-line
150  * aligned, and the response is guaranteed to not contain dirty data
151  * (exclusive or shared).*/
152  { SET4(IsRead, IsRequest, NeedsResponse, FromCache),
153  ReadResp, "ReadCleanReq" },
154  /* ReadSharedReq - Read issued by a cache, always cache-line
155  * aligned, response is shared, possibly exclusive, owned or even
156  * modified. */
157  { SET4(IsRead, IsRequest, NeedsResponse, FromCache),
158  ReadResp, "ReadSharedReq" },
159  /* LoadLockedReq: note that we use plain ReadResp as response, so that
160  * we can also use ReadRespWithInvalidate when needed */
161  { SET4(IsRead, IsLlsc, IsRequest, NeedsResponse),
162  ReadResp, "LoadLockedReq" },
163  /* StoreCondReq */
164  { SET6(IsWrite, NeedsWritable, IsLlsc,
165  IsRequest, NeedsResponse, HasData),
166  StoreCondResp, "StoreCondReq" },
167  /* StoreCondFailReq: generates failing StoreCondResp */
168  { SET6(IsWrite, NeedsWritable, IsLlsc,
169  IsRequest, NeedsResponse, HasData),
170  StoreCondResp, "StoreCondFailReq" },
171  /* StoreCondResp */
172  { SET3(IsWrite, IsLlsc, IsResponse),
173  InvalidCmd, "StoreCondResp" },
174  /* SwapReq -- for Swap ldstub type operations */
175  { SET6(IsRead, IsWrite, NeedsWritable, IsRequest, HasData, NeedsResponse),
176  SwapResp, "SwapReq" },
177  /* SwapResp -- for Swap ldstub type operations */
178  { SET4(IsRead, IsWrite, IsResponse, HasData),
179  InvalidCmd, "SwapResp" },
180  { 0, InvalidCmd, "Deprecated_MessageReq" },
181  { 0, InvalidCmd, "Deprecated_MessageResp" },
182  /* MemFenceReq -- for synchronization requests */
183  {SET2(IsRequest, NeedsResponse), MemFenceResp, "MemFenceReq"},
184  /* MemFenceResp -- for synchronization responses */
185  {SET1(IsResponse), InvalidCmd, "MemFenceResp"},
186  /* Cache Clean Request -- Update with the latest data all existing
187  copies of the block down to the point indicated by the
188  request */
189  { SET4(IsRequest, IsClean, NeedsResponse, FromCache),
190  CleanSharedResp, "CleanSharedReq" },
191  /* Cache Clean Response - Indicates that all caches up to the
192  specified point of reference have a up-to-date copy of the
193  cache block or no copy at all */
194  { SET2(IsResponse, IsClean), InvalidCmd, "CleanSharedResp" },
195  /* Cache Clean and Invalidate Request -- Invalidate all existing
196  copies down to the point indicated by the request */
197  { SET5(IsRequest, IsInvalidate, IsClean, NeedsResponse, FromCache),
198  CleanInvalidResp, "CleanInvalidReq" },
199  /* Cache Clean and Invalidate Respose -- Indicates that no cache
200  above the specified point holds the block and that the block
201  was written to a memory below the specified point. */
202  { SET3(IsResponse, IsInvalidate, IsClean),
203  InvalidCmd, "CleanInvalidResp" },
204  /* InvalidDestError -- packet dest field invalid */
205  { SET2(IsResponse, IsError), InvalidCmd, "InvalidDestError" },
206  /* BadAddressError -- memory address invalid */
207  { SET2(IsResponse, IsError), InvalidCmd, "BadAddressError" },
208  /* FunctionalReadError */
209  { SET3(IsRead, IsResponse, IsError), InvalidCmd, "FunctionalReadError" },
210  /* FunctionalWriteError */
211  { SET3(IsWrite, IsResponse, IsError), InvalidCmd, "FunctionalWriteError" },
212  /* PrintReq */
213  { SET2(IsRequest, IsPrint), InvalidCmd, "PrintReq" },
214  /* Flush Request */
215  { SET3(IsRequest, IsFlush, NeedsWritable), InvalidCmd, "FlushReq" },
216  /* Invalidation Request */
217  { SET5(IsInvalidate, IsRequest, NeedsWritable, NeedsResponse, FromCache),
218  InvalidateResp, "InvalidateReq" },
219  /* Invalidation Response */
220  { SET2(IsInvalidate, IsResponse),
221  InvalidCmd, "InvalidateResp" }
222 };
223 
224 AddrRange
226 {
227  return RangeSize(getAddr(), getSize());
228 }
229 
230 bool
232  uint8_t *_data)
233 {
234  const Addr func_start = getAddr();
235  const Addr func_end = getAddr() + getSize() - 1;
236  const Addr val_start = addr;
237  const Addr val_end = val_start + size - 1;
238 
239  if (is_secure != _isSecure || func_start > val_end ||
240  val_start > func_end) {
241  // no intersection
242  return false;
243  }
244 
245  // check print first since it doesn't require data
246  if (isPrint()) {
247  assert(!_data);
248  safe_cast<PrintReqState*>(senderState)->printObj(obj);
249  return false;
250  }
251 
252  // we allow the caller to pass NULL to signify the other packet
253  // has no data
254  if (!_data) {
255  return false;
256  }
257 
258  const Addr val_offset = func_start > val_start ?
259  func_start - val_start : 0;
260  const Addr func_offset = func_start < val_start ?
261  val_start - func_start : 0;
262  const Addr overlap_size = std::min(val_end, func_end)+1 -
263  std::max(val_start, func_start);
264 
265  if (isRead()) {
266  std::memcpy(getPtr<uint8_t>() + func_offset,
267  _data + val_offset,
268  overlap_size);
269 
270  // initialise the tracking of valid bytes if we have not
271  // used it already
272  if (bytesValid.empty())
273  bytesValid.resize(getSize(), false);
274 
275  // track if we are done filling the functional access
276  bool all_bytes_valid = true;
277 
278  int i = 0;
279 
280  // check up to func_offset
281  for (; all_bytes_valid && i < func_offset; ++i)
282  all_bytes_valid &= bytesValid[i];
283 
284  // update the valid bytes
285  for (i = func_offset; i < func_offset + overlap_size; ++i)
286  bytesValid[i] = true;
287 
288  // check the bit after the update we just made
289  for (; all_bytes_valid && i < getSize(); ++i)
290  all_bytes_valid &= bytesValid[i];
291 
292  return all_bytes_valid;
293  } else if (isWrite()) {
294  std::memcpy(_data + val_offset,
295  getConstPtr<uint8_t>() + func_offset,
296  overlap_size);
297  } else {
298  panic("Don't know how to handle command %s\n", cmdString());
299  }
300 
301  // keep going with request by default
302  return false;
303 }
304 
305 void
307 {
308  assert(isRequest());
309  // If we have already found a responder, no other cache should
310  // commit to responding
311  assert(!pkt->cacheResponding() || !cacheResponding());
312  flags.set(pkt->flags & RESPONDER_FLAGS);
313 }
314 
315 void
317 {
318  assert(sender_state != NULL);
319  sender_state->predecessor = senderState;
320  senderState = sender_state;
321 }
322 
325 {
326  assert(senderState != NULL);
327  SenderState *sender_state = senderState;
328  senderState = sender_state->predecessor;
329  sender_state->predecessor = NULL;
330  return sender_state;
331 }
332 
333 uint64_t
335 {
336  switch(getSize()) {
337  case 1:
338  return (uint64_t)get<uint8_t>(endian);
339  case 2:
340  return (uint64_t)get<uint16_t>(endian);
341  case 4:
342  return (uint64_t)get<uint32_t>(endian);
343  case 8:
344  return (uint64_t)get<uint64_t>(endian);
345  default:
346  panic("%i isn't a supported word size.\n", getSize());
347  }
348 }
349 
350 void
351 Packet::setUintX(uint64_t w, ByteOrder endian)
352 {
353  switch(getSize()) {
354  case 1:
355  set<uint8_t>((uint8_t)w, endian);
356  break;
357  case 2:
358  set<uint16_t>((uint16_t)w, endian);
359  break;
360  case 4:
361  set<uint32_t>((uint32_t)w, endian);
362  break;
363  case 8:
364  set<uint64_t>((uint64_t)w, endian);
365  break;
366  default:
367  panic("%i isn't a supported word size.\n", getSize());
368  }
369 
370 }
371 
372 void
373 Packet::print(std::ostream &o, const int verbosity,
374  const std::string &prefix) const
375 {
376  ccprintf(o, "%s%s [%x:%x]%s%s%s%s%s%s", prefix, cmdString(),
377  getAddr(), getAddr() + getSize() - 1,
378  req->isSecure() ? " (s)" : "",
379  req->isInstFetch() ? " IF" : "",
380  req->isUncacheable() ? " UC" : "",
381  isExpressSnoop() ? " ES" : "",
382  req->isToPOC() ? " PoC" : "",
383  req->isToPOU() ? " PoU" : "");
384 }
385 
386 std::string
387 Packet::print() const {
388  std::ostringstream str;
389  print(str);
390  return str.str();
391 }
392 
393 bool
394 Packet::matchBlockAddr(const Addr addr, const bool is_secure,
395  const int blk_size) const
396 {
397  return (getBlockAddr(blk_size) == addr) && (isSecure() == is_secure);
398 }
399 
400 bool
401 Packet::matchBlockAddr(const PacketPtr pkt, const int blk_size) const
402 {
403  return matchBlockAddr(pkt->getBlockAddr(blk_size), pkt->isSecure(),
404  blk_size);
405 }
406 
407 bool
408 Packet::matchAddr(const Addr addr, const bool is_secure) const
409 {
410  return (getAddr() == addr) && (isSecure() == is_secure);
411 }
412 
413 bool
414 Packet::matchAddr(const PacketPtr pkt) const
415 {
416  return matchAddr(pkt->getAddr(), pkt->isSecure());
417 }
418 
419 Packet::PrintReqState::PrintReqState(std::ostream &_os, int _verbosity)
420  : curPrefixPtr(new std::string("")), os(_os), verbosity(_verbosity)
421 {
422  labelStack.push_back(LabelStackEntry("", curPrefixPtr));
423 }
424 
426 {
427  labelStack.pop_back();
428  assert(labelStack.empty());
429  delete curPrefixPtr;
430 }
431 
433 LabelStackEntry::LabelStackEntry(const std::string &_label,
434  std::string *_prefix)
435  : label(_label), prefix(_prefix), labelPrinted(false)
436 {
437 }
438 
439 void
440 Packet::PrintReqState::pushLabel(const std::string &lbl,
441  const std::string &prefix)
442 {
443  labelStack.push_back(LabelStackEntry(lbl, curPrefixPtr));
444  curPrefixPtr = new std::string(*curPrefixPtr);
445  *curPrefixPtr += prefix;
446 }
447 
448 void
450 {
451  delete curPrefixPtr;
452  curPrefixPtr = labelStack.back().prefix;
453  labelStack.pop_back();
454  assert(!labelStack.empty());
455 }
456 
457 void
459 {
460  if (!labelStack.back().labelPrinted) {
461  LabelStack::iterator i = labelStack.begin();
462  LabelStack::iterator end = labelStack.end();
463  while (i != end) {
464  if (!i->labelPrinted) {
465  ccprintf(os, "%s%s\n", *(i->prefix), i->label);
466  i->labelPrinted = true;
467  }
468  i++;
469  }
470  }
471 }
472 
473 
474 void
476 {
477  printLabels();
478  obj->print(os, verbosity, curPrefix());
479 }
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:163
void ccprintf(cp::Print &print)
Definition: cprintf.hh:127
AddrRange RangeSize(Addr start, Addr size)
Definition: addr_range.hh:580
void setUintX(uint64_t w, ByteOrder endian)
Set the value in the word w after truncating it to the length of the packet and then byteswapping it ...
Definition: packet.cc:351
std::vector< bool > bytesValid
Track the bytes found that satisfy a functional read.
Definition: packet.hh:346
bool isExpressSnoop() const
Definition: packet.hh:628
Bitfield< 7 > i
Object used to maintain state of a PrintReq.
Definition: packet.hh:408
LabelStackEntry(const std::string &_label, std::string *_prefix)
Definition: packet.cc:433
LabelStack labelStack
Definition: packet.hh:423
bool matchBlockAddr(const Addr addr, const bool is_secure, const int blk_size) const
Check if packet corresponds to a given block-aligned address and address space.
Definition: packet.cc:394
#define SET4(a1, a2, a3, a4)
Definition: packet.cc:65
bool cacheResponding() const
Definition: packet.hh:585
Overload hash function for BasicBlockRange type.
Definition: vec_reg.hh:587
const int verbosity
Definition: packet.hh:429
static const CommandInfo commandInfo[]
Array to map Command enum to associated info.
Definition: packet.hh:177
const std::string & curPrefix()
Returns the current line prefix.
Definition: packet.hh:437
void popLabel()
Pop a label off the label stack.
Definition: packet.cc:449
bool isWrite() const
Definition: packet.hh:523
PrintReqState(std::ostream &os, int verbosity=0)
Definition: packet.cc:419
bool isRead() const
Definition: packet.hh:522
Bitfield< 17 > os
Definition: misc.hh:803
uint64_t getUintX(ByteOrder endian) const
Get the data in the packet byte swapped from the specified endianness and zero-extended to 64 bits...
Definition: packet.cc:334
Addr getBlockAddr(unsigned int blk_size) const
Definition: packet.hh:744
Flags flags
Definition: packet.hh:310
RequestPtr req
A pointer to the original request.
Definition: packet.hh:321
#define SET7(a1, a2, a3, a4, a5, a6, a7)
Definition: packet.cc:68
std::ostream & os
Definition: packet.hh:428
std::string print() const
A no-args wrapper of print(std::ostream...) meant to be invoked from DPRINTFs avoiding string overhea...
Definition: packet.cc:387
unsigned getSize() const
Definition: packet.hh:730
#define SET3(a1, a2, a3)
Definition: packet.cc:64
Structure that defines attributes and other data associated with a Command.
Definition: packet.hh:165
#define SET1(a1)
Definition: packet.cc:62
The AddrRange class encapsulates an address range, and supports a number of tests to check if two ran...
Definition: addr_range.hh:68
An entry in the label stack.
Definition: packet.hh:414
unsigned size
The size of the request or transfer.
Definition: packet.hh:341
bool isRequest() const
Definition: packet.hh:525
#define SET2(a1, a2)
Definition: packet.cc:63
SenderState * predecessor
Definition: packet.hh:399
bool trySatisfyFunctional(PacketPtr other)
Check a functional request against a memory value stored in another packet (i.e.
Definition: packet.hh:1258
void printLabels()
Print all of the pending unprinted labels on the stack.
Definition: packet.cc:458
ByteOrder
Definition: types.hh:245
void copyResponderFlags(const PacketPtr pkt)
Copy the reponse flags from an input packet to this packet.
Definition: packet.cc:306
Addr getAddr() const
Definition: packet.hh:720
AddrRange getAddrRange() const
Get address range to which this packet belongs.
Definition: packet.cc:225
Bitfield< 0 > w
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:140
bool _isSecure
True if the request targets the secure memory space.
Definition: packet.hh:338
Addr addr
The address of the request.
Definition: packet.hh:335
T safe_cast(U ptr)
Definition: cast.hh:59
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
Definition: packet.hh:249
std::string * curPrefixPtr
Definition: packet.hh:425
Abstract base class for objects which support being printed to a stream for debugging.
Definition: printable.hh:44
A virtual base opaque structure used to hold state associated with the packet (e.g., an MSHR), specific to a SimObject that sees the packet.
Definition: packet.hh:397
void pushLabel(const std::string &lbl, const std::string &prefix=" ")
Push a label onto the label stack, and prepend the given prefix string onto the current prefix...
Definition: packet.cc:440
Declaration of the Packet class.
SenderState * senderState
This packet&#39;s sender state.
Definition: packet.hh:474
#define SET6(a1, a2, a3, a4, a5, a6)
Definition: packet.cc:67
#define SET5(a1, a2, a3, a4, a5)
Definition: packet.cc:66
bool isPrint() const
Definition: packet.hh:550
virtual void print(std::ostream &os, int verbosity=0, const std::string &prefix="") const =0
void pushSenderState(SenderState *sender_state)
Push a new sender state to the packet and make the current sender state the predecessor of the new on...
Definition: packet.cc:316
bool isSecure() const
Definition: packet.hh:749
SenderState * popSenderState()
Pop the top of the state stack and return a pointer to it.
Definition: packet.cc:324
const std::string & cmdString() const
Return the string name of the cmd field (for debugging and tracing).
Definition: packet.hh:517
bool matchAddr(const Addr addr, const bool is_secure) const
Check if packet corresponds to a given address and address space.
Definition: packet.cc:408
void set(Type flags)
Definition: flags.hh:68
void printObj(Printable *obj)
Print a Printable object to os, because it matched the address on a PrintReq.
Definition: packet.cc:475

Generated on Thu May 28 2020 16:21:34 for gem5 by doxygen 1.8.13