gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
packet.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2012-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 
47 #ifndef __MEM_PACKET_HH__
48 #define __MEM_PACKET_HH__
49 
50 #include <bitset>
51 #include <cassert>
52 #include <list>
53 
54 #include "base/addr_range.hh"
55 #include "base/cast.hh"
56 #include "base/compiler.hh"
57 #include "base/flags.hh"
58 #include "base/logging.hh"
59 #include "base/printable.hh"
60 #include "base/types.hh"
61 #include "mem/htm.hh"
62 #include "mem/request.hh"
63 #include "sim/byteswap.hh"
64 #include "sim/core.hh"
65 
66 class Packet;
67 typedef Packet *PacketPtr;
68 typedef uint8_t* PacketDataPtr;
70 typedef uint64_t PacketId;
71 
72 class MemCmd
73 {
74  friend class Packet;
75 
76  public:
80  enum Command
81  {
91  WriteClean, // writes dirty data below without evicting
100  SCUpgradeReq, // Special "weak" upgrade for StoreCond
102  SCUpgradeFailReq, // Failed SCUpgradeReq in MSHR (never sent)
103  UpgradeFailResp, // Valid for SCUpgradeReq only
110  StoreCondFailReq, // Failed StoreCondReq in MSHR (never sent)
114  // MessageReq and MessageResp are deprecated.
116  MemSyncReq, // memory synchronization request (e.g., cache invalidate)
117  MemSyncResp, // memory synchronization response
123  // Error responses
124  // @TODO these should be classified as responses rather than
125  // requests; coding them as requests initially for backwards
126  // compatibility
127  InvalidDestError, // packet dest field invalid
128  BadAddressError, // memory address invalid
129  FunctionalReadError, // unable to fulfill functional read
130  FunctionalWriteError, // unable to fulfill functional write
131  // Fake simulator-only commands
132  PrintReq, // Print state matching address
133  FlushReq, //request for a cache flush
134  InvalidateReq, // request for address to be invalidated
136  // hardware transactional memory
141  };
142 
143  private:
148  {
168  };
169 
174  struct CommandInfo
175  {
177  const std::bitset<NUM_COMMAND_ATTRIBUTES> attributes;
182  const std::string str;
183  };
184 
186  static const CommandInfo commandInfo[];
187 
188  private:
189 
191 
192  bool
194  {
195  return commandInfo[cmd].attributes[attrib] != 0;
196  }
197 
198  public:
199 
200  bool isRead() const { return testCmdAttrib(IsRead); }
201  bool isWrite() const { return testCmdAttrib(IsWrite); }
202  bool isUpgrade() const { return testCmdAttrib(IsUpgrade); }
203  bool isRequest() const { return testCmdAttrib(IsRequest); }
204  bool isResponse() const { return testCmdAttrib(IsResponse); }
205  bool needsWritable() const { return testCmdAttrib(NeedsWritable); }
206  bool needsResponse() const { return testCmdAttrib(NeedsResponse); }
207  bool isInvalidate() const { return testCmdAttrib(IsInvalidate); }
208  bool isEviction() const { return testCmdAttrib(IsEviction); }
209  bool isClean() const { return testCmdAttrib(IsClean); }
210  bool fromCache() const { return testCmdAttrib(FromCache); }
211 
215  bool isWriteback() const { return testCmdAttrib(IsEviction) &&
217 
223  bool hasData() const { return testCmdAttrib(HasData); }
224  bool isLLSC() const { return testCmdAttrib(IsLlsc); }
225  bool isSWPrefetch() const { return testCmdAttrib(IsSWPrefetch); }
226  bool isHWPrefetch() const { return testCmdAttrib(IsHWPrefetch); }
227  bool isPrefetch() const { return testCmdAttrib(IsSWPrefetch) ||
229  bool isError() const { return testCmdAttrib(IsError); }
230  bool isPrint() const { return testCmdAttrib(IsPrint); }
231  bool isFlush() const { return testCmdAttrib(IsFlush); }
232 
233  Command
235  {
236  return commandInfo[cmd].response;
237  }
238 
240  const std::string &toString() const { return commandInfo[cmd].str; }
241  int toInt() const { return (int)cmd; }
242 
243  MemCmd(Command _cmd) : cmd(_cmd) { }
244  MemCmd(int _cmd) : cmd((Command)_cmd) { }
246 
247  bool operator==(MemCmd c2) const { return (cmd == c2.cmd); }
248  bool operator!=(MemCmd c2) const { return (cmd != c2.cmd); }
249 };
250 
258 class Packet : public Printable
259 {
260  public:
261  typedef uint32_t FlagsType;
262  typedef ::Flags<FlagsType> Flags;
263 
264  private:
265 
266  enum : FlagsType {
267  // Flags to transfer across when copying a packet
268  COPY_FLAGS = 0x000000FF,
269 
270  // Flags that are used to create reponse packets
271  RESPONDER_FLAGS = 0x00000009,
272 
273  // Does this packet have sharers (which means it should not be
274  // considered writable) or not. See setHasSharers below.
275  HAS_SHARERS = 0x00000001,
276 
277  // Special control flags
279  EXPRESS_SNOOP = 0x00000002,
280 
285 
286  // Snoop co-ordination flag to indicate that a cache is
287  // responding to a snoop. See setCacheResponding below.
288  CACHE_RESPONDING = 0x00000008,
289 
290  // The writeback/writeclean should be propagated further
291  // downstream by the receiver
292  WRITE_THROUGH = 0x00000010,
293 
294  // Response co-ordination flag for cache maintenance
295  // operations
296  SATISFIED = 0x00000020,
297 
298  // hardware transactional memory
299 
300  // Indicates that this packet/request has returned from the
301  // cache hierarchy in a failed transaction. The core is
302  // notified like this.
303  FAILS_TRANSACTION = 0x00000040,
304 
305  // Indicates that this packet/request originates in the CPU executing
306  // in transactional mode, i.e. in a transaction.
307  FROM_TRANSACTION = 0x00000080,
308 
310  VALID_ADDR = 0x00000100,
311  VALID_SIZE = 0x00000200,
312 
315  STATIC_DATA = 0x00001000,
319  DYNAMIC_DATA = 0x00002000,
320 
323  SUPPRESS_FUNC_ERROR = 0x00008000,
324 
325  // Signal block present to squash prefetch and cache evict packets
326  // through express snoop flag
327  BLOCK_CACHED = 0x00010000
328  };
329 
331 
332  public:
334 
337 
338  const PacketId id;
339 
342 
343  private:
352 
356 
358  bool _isSecure;
359 
361  unsigned size;
362 
367 
368  // Quality of Service priority value
369  uint8_t _qosValue;
370 
371  // hardware transactional memory
372 
379 
385 
386  public:
387 
395  uint32_t headerDelay;
396 
403  uint32_t snoopDelay;
404 
413  uint32_t payloadDelay;
414 
432  struct SenderState
433  {
436  virtual ~SenderState() {}
437  };
438 
443  class PrintReqState : public SenderState
444  {
445  private:
450  {
451  const std::string label;
452  std::string *prefix;
454  LabelStackEntry(const std::string &_label, std::string *_prefix);
455  };
456 
459 
460  std::string *curPrefixPtr;
461 
462  public:
463  std::ostream &os;
464  const int verbosity;
465 
466  PrintReqState(std::ostream &os, int verbosity = 0);
467  ~PrintReqState();
468 
472  const std::string &curPrefix() { return *curPrefixPtr; }
473 
479  void pushLabel(const std::string &lbl,
480  const std::string &prefix = " ");
481 
485  void popLabel();
486 
492  void printLabels();
493 
498  void printObj(Printable *obj);
499  };
500 
510 
519  void pushSenderState(SenderState *sender_state);
520 
530 
538  template <typename T>
540  {
541  T *t = NULL;
542  SenderState* sender_state = senderState;
543  while (t == NULL && sender_state != NULL) {
544  t = dynamic_cast<T*>(sender_state);
545  sender_state = sender_state->predecessor;
546  }
547  return t;
548  }
549 
552  const std::string &cmdString() const { return cmd.toString(); }
553 
555  inline int cmdToIndex() const { return cmd.toInt(); }
556 
557  bool isRead() const { return cmd.isRead(); }
558  bool isWrite() const { return cmd.isWrite(); }
559  bool isUpgrade() const { return cmd.isUpgrade(); }
560  bool isRequest() const { return cmd.isRequest(); }
561  bool isResponse() const { return cmd.isResponse(); }
562  bool needsWritable() const
563  {
564  // we should never check if a response needsWritable, the
565  // request has this flag, and for a response we should rather
566  // look at the hasSharers flag (if not set, the response is to
567  // be considered writable)
568  assert(isRequest());
569  return cmd.needsWritable();
570  }
571  bool needsResponse() const { return cmd.needsResponse(); }
572  bool isInvalidate() const { return cmd.isInvalidate(); }
573  bool isEviction() const { return cmd.isEviction(); }
574  bool isClean() const { return cmd.isClean(); }
575  bool fromCache() const { return cmd.fromCache(); }
576  bool isWriteback() const { return cmd.isWriteback(); }
577  bool hasData() const { return cmd.hasData(); }
578  bool hasRespData() const
579  {
580  MemCmd resp_cmd = cmd.responseCommand();
581  return resp_cmd.hasData();
582  }
583  bool isLLSC() const { return cmd.isLLSC(); }
584  bool isError() const { return cmd.isError(); }
585  bool isPrint() const { return cmd.isPrint(); }
586  bool isFlush() const { return cmd.isFlush(); }
587 
588  bool isWholeLineWrite(unsigned blk_size)
589  {
590  return (cmd == MemCmd::WriteReq || cmd == MemCmd::WriteLineReq) &&
591  getOffset(blk_size) == 0 && getSize() == blk_size;
592  }
593 
595 
615  {
616  assert(isRequest());
617  assert(!flags.isSet(CACHE_RESPONDING));
619  }
620  bool cacheResponding() const { return flags.isSet(CACHE_RESPONDING); }
647  bool hasSharers() const { return flags.isSet(HAS_SHARERS); }
649 
663  bool isExpressSnoop() const { return flags.isSet(EXPRESS_SNOOP); }
664 
675  {
676  assert(cacheResponding());
677  assert(!responderHadWritable());
679  }
680  bool responderHadWritable() const
681  { return flags.isSet(RESPONDER_HAD_WRITABLE); }
682 
690  void copyResponderFlags(const PacketPtr pkt);
691 
697  {
698  assert(cmd.isWrite() &&
701  }
703  bool writeThrough() const { return flags.isSet(WRITE_THROUGH); }
704 
711  {
712  assert(cmd.isClean());
713  assert(!flags.isSet(SATISFIED));
715  }
716  bool satisfied() const { return flags.isSet(SATISFIED); }
717 
721  bool isBlockCached() const { return flags.isSet(BLOCK_CACHED); }
723 
730  inline uint8_t qosValue() const { return _qosValue; }
731 
738  inline void qosValue(const uint8_t qos_value)
739  { _qosValue = qos_value; }
740 
741  inline RequestorID requestorId() const { return req->requestorId(); }
742 
743  // Network error conditions... encapsulate them as methods since
744  // their encoding keeps changing (from result field to command
745  // field, etc.)
746  void
748  {
749  assert(isResponse());
751  }
752 
753  void copyError(Packet *pkt) { assert(pkt->isError()); cmd = pkt->cmd; }
754 
755  Addr getAddr() const { assert(flags.isSet(VALID_ADDR)); return addr; }
763  void setAddr(Addr _addr) { assert(flags.isSet(VALID_ADDR)); addr = _addr; }
764 
765  unsigned getSize() const { assert(flags.isSet(VALID_SIZE)); return size; }
766 
772  AddrRange getAddrRange() const;
773 
774  Addr getOffset(unsigned int blk_size) const
775  {
776  return getAddr() & Addr(blk_size - 1);
777  }
778 
779  Addr getBlockAddr(unsigned int blk_size) const
780  {
781  return getAddr() & ~(Addr(blk_size - 1));
782  }
783 
784  bool isSecure() const
785  {
786  assert(flags.isSet(VALID_ADDR));
787  return _isSecure;
788  }
789 
793  AtomicOpFunctor *getAtomicOp() const { return req->getAtomicOpFunctor(); }
794  bool isAtomicOp() const { return req->isAtomic(); }
795 
800  void
802  {
803  assert(isLLSC());
804  assert(isWrite());
806  }
807 
812  void
814  {
815  assert(isLLSC());
816  assert(isRead());
818  }
819 
825  Packet(const RequestPtr &_req, MemCmd _cmd)
826  : cmd(_cmd), id((PacketId)_req.get()), req(_req),
827  data(nullptr), addr(0), _isSecure(false), size(0),
828  _qosValue(0),
831  headerDelay(0), snoopDelay(0),
832  payloadDelay(0), senderState(NULL)
833  {
834  flags.clear();
835  if (req->hasPaddr()) {
836  addr = req->getPaddr();
838  _isSecure = req->isSecure();
839  }
840 
851  if (req->isHTMCmd()) {
853  assert(addr == 0x0);
854  }
855  if (req->hasSize()) {
856  size = req->getSize();
858  }
859  }
860 
866  Packet(const RequestPtr &_req, MemCmd _cmd, int _blkSize, PacketId _id = 0)
867  : cmd(_cmd), id(_id ? _id : (PacketId)_req.get()), req(_req),
868  data(nullptr), addr(0), _isSecure(false),
869  _qosValue(0),
872  headerDelay(0),
873  snoopDelay(0), payloadDelay(0), senderState(NULL)
874  {
875  flags.clear();
876  if (req->hasPaddr()) {
877  addr = req->getPaddr() & ~(_blkSize - 1);
879  _isSecure = req->isSecure();
880  }
881  size = _blkSize;
883  }
884 
892  Packet(const PacketPtr pkt, bool clear_flags, bool alloc_data)
893  : cmd(pkt->cmd), id(pkt->id), req(pkt->req),
894  data(nullptr),
895  addr(pkt->addr), _isSecure(pkt->_isSecure), size(pkt->size),
896  bytesValid(pkt->bytesValid),
897  _qosValue(pkt->qosValue()),
900  headerDelay(pkt->headerDelay),
901  snoopDelay(0),
904  {
905  if (!clear_flags)
906  flags.set(pkt->flags & COPY_FLAGS);
907 
908  flags.set(pkt->flags & (VALID_ADDR|VALID_SIZE));
909 
910  if (pkt->isHtmTransactional())
912 
913  if (pkt->htmTransactionFailedInCache()) {
916  );
917  }
918 
919  // should we allocate space for data, or not, the express
920  // snoops do not need to carry any data as they only serve to
921  // co-ordinate state changes
922  if (alloc_data) {
923  // even if asked to allocate data, if the original packet
924  // holds static data, then the sender will not be doing
925  // any memcpy on receiving the response, thus we simply
926  // carry the pointer forward
927  if (pkt->flags.isSet(STATIC_DATA)) {
928  data = pkt->data;
930  } else {
931  allocate();
932  }
933  }
934  }
935 
939  static MemCmd
941  {
942  if (req->isHTMCmd()) {
943  if (req->isHTMAbort())
944  return MemCmd::HTMAbort;
945  else
946  return MemCmd::HTMReq;
947  } else if (req->isLLSC())
948  return MemCmd::LoadLockedReq;
949  else if (req->isPrefetchEx())
950  return MemCmd::SoftPFExReq;
951  else if (req->isPrefetch())
952  return MemCmd::SoftPFReq;
953  else
954  return MemCmd::ReadReq;
955  }
956 
960  static MemCmd
962  {
963  if (req->isLLSC())
964  return MemCmd::StoreCondReq;
965  else if (req->isSwap() || req->isAtomic())
966  return MemCmd::SwapReq;
967  else if (req->isCacheInvalidate()) {
968  return req->isCacheClean() ? MemCmd::CleanInvalidReq :
970  } else if (req->isCacheClean()) {
971  return MemCmd::CleanSharedReq;
972  } else
973  return MemCmd::WriteReq;
974  }
975 
980  static PacketPtr
982  {
983  return new Packet(req, makeReadCmd(req));
984  }
985 
986  static PacketPtr
988  {
989  return new Packet(req, makeWriteCmd(req));
990  }
991 
996  {
997  deleteData();
998  }
999 
1004  void
1006  {
1007  assert(needsResponse());
1008  assert(isRequest());
1009  cmd = cmd.responseCommand();
1010 
1011  // responses are never express, even if the snoop that
1012  // triggered them was
1014  }
1015 
1016  void
1018  {
1019  makeResponse();
1020  }
1021 
1022  void
1024  {
1025  makeResponse();
1026  }
1027 
1028  void
1030  {
1031  if (!success) {
1032  if (isWrite()) {
1034  } else {
1036  }
1037  }
1038  }
1039 
1040  void
1041  setSize(unsigned size)
1042  {
1043  assert(!flags.isSet(VALID_SIZE));
1044 
1045  this->size = size;
1046  flags.set(VALID_SIZE);
1047  }
1048 
1058  bool matchBlockAddr(const Addr addr, const bool is_secure,
1059  const int blk_size) const;
1060 
1069  bool matchBlockAddr(const PacketPtr pkt, const int blk_size) const;
1070 
1078  bool matchAddr(const Addr addr, const bool is_secure) const;
1079 
1087  bool matchAddr(const PacketPtr pkt) const;
1088 
1089  public:
1106  template <typename T>
1107  void
1109  {
1111  data = (PacketDataPtr)p;
1113  }
1114 
1123  template <typename T>
1124  void
1125  dataStaticConst(const T *p)
1126  {
1128  data = const_cast<PacketDataPtr>(p);
1130  }
1131 
1144  template <typename T>
1145  void
1147  {
1149  data = (PacketDataPtr)p;
1151  }
1152 
1156  template <typename T>
1157  T*
1159  {
1161  assert(!isMaskedWrite());
1162  return (T*)data;
1163  }
1164 
1165  template <typename T>
1166  const T*
1167  getConstPtr() const
1168  {
1170  return (const T*)data;
1171  }
1172 
1177  template <typename T>
1178  T getBE() const;
1179 
1184  template <typename T>
1185  T getLE() const;
1186 
1191  template <typename T>
1192  T get(ByteOrder endian) const;
1193 
1195  template <typename T>
1196  void setBE(T v);
1197 
1199  template <typename T>
1200  void setLE(T v);
1201 
1206  template <typename T>
1207  void set(T v, ByteOrder endian);
1208 
1213  uint64_t getUintX(ByteOrder endian) const;
1214 
1220  void setUintX(uint64_t w, ByteOrder endian);
1221 
1225  void
1226  setData(const uint8_t *p)
1227  {
1228  // we should never be copying data onto itself, which means we
1229  // must idenfity packets with static data, as they carry the
1230  // same pointer from source to destination and back
1231  assert(p != getPtr<uint8_t>() || flags.isSet(STATIC_DATA));
1232 
1233  if (p != getPtr<uint8_t>()) {
1234  // for packet with allocated dynamic data, we copy data from
1235  // one to the other, e.g. a forwarded response to a response
1236  std::memcpy(getPtr<uint8_t>(), p, getSize());
1237  }
1238  }
1239 
1244  void
1245  setDataFromBlock(const uint8_t *blk_data, int blkSize)
1246  {
1247  setData(blk_data + getOffset(blkSize));
1248  }
1249 
1254  void
1255  writeData(uint8_t *p) const
1256  {
1257  if (!isMaskedWrite()) {
1258  std::memcpy(p, getConstPtr<uint8_t>(), getSize());
1259  } else {
1260  assert(req->getByteEnable().size() == getSize());
1261  // Write only the enabled bytes
1262  const uint8_t *base = getConstPtr<uint8_t>();
1263  for (int i = 0; i < getSize(); i++) {
1264  if (req->getByteEnable()[i]) {
1265  p[i] = *(base + i);
1266  }
1267  // Disabled bytes stay untouched
1268  }
1269  }
1270  }
1271 
1278  void
1279  writeDataToBlock(uint8_t *blk_data, int blkSize) const
1280  {
1281  writeData(blk_data + getOffset(blkSize));
1282  }
1283 
1288  void
1290  {
1291  if (flags.isSet(DYNAMIC_DATA))
1292  delete [] data;
1293 
1295  data = NULL;
1296  }
1297 
1299  void
1301  {
1302  // if either this command or the response command has a data
1303  // payload, actually allocate space
1304  if (hasData() || hasRespData()) {
1307  data = new uint8_t[getSize()];
1308  }
1309  }
1310 
1314  template <typename T>
1315  T getRaw() const;
1316 
1318  template <typename T>
1319  void setRaw(T v);
1320 
1321  public:
1331  bool
1333  {
1334  if (other->isMaskedWrite()) {
1335  // Do not forward data if overlapping with a masked write
1336  if (_isSecure == other->isSecure() &&
1337  getAddr() <= (other->getAddr() + other->getSize() - 1) &&
1338  other->getAddr() <= (getAddr() + getSize() - 1)) {
1339  warn("Trying to check against a masked write, skipping."
1340  " (addr: 0x%x, other addr: 0x%x)", getAddr(),
1341  other->getAddr());
1342  }
1343  return false;
1344  }
1345  // all packets that are carrying a payload should have a valid
1346  // data pointer
1347  return trySatisfyFunctional(other, other->getAddr(), other->isSecure(),
1348  other->getSize(),
1349  other->hasData() ?
1350  other->getPtr<uint8_t>() : NULL);
1351  }
1352 
1357  bool
1359  {
1360  return cmd == MemCmd::HardPFReq || isEviction();
1361  }
1362 
1367  bool
1369  {
1371  }
1372 
1373  bool
1375  {
1376  return (cmd == MemCmd::WriteReq && req->isMasked());
1377  }
1378 
1386  bool
1387  trySatisfyFunctional(Printable *obj, Addr base, bool is_secure, int size,
1388  uint8_t *_data);
1389 
1393  void
1394  pushLabel(const std::string &lbl)
1395  {
1396  if (isPrint())
1397  safe_cast<PrintReqState*>(senderState)->pushLabel(lbl);
1398  }
1399 
1403  void
1405  {
1406  if (isPrint())
1407  safe_cast<PrintReqState*>(senderState)->popLabel();
1408  }
1409 
1410  void print(std::ostream &o, int verbosity = 0,
1411  const std::string &prefix = "") const;
1412 
1419  std::string print() const;
1420 
1421  // hardware transactional memory
1422 
1431  void makeHtmTransactionalReqResponse(const HtmCacheFailure ret_code);
1432 
1437  void setHtmTransactional(uint64_t val);
1438 
1443  bool isHtmTransactional() const;
1444 
1451  uint64_t getHtmTransactionUid() const;
1452 
1458  void setHtmTransactionFailedInCache(const HtmCacheFailure ret_code);
1459 
1465  bool htmTransactionFailedInCache() const;
1466 
1472 };
1473 
1474 #endif //__MEM_PACKET_HH
MemCmd::FunctionalReadError
@ FunctionalReadError
Definition: packet.hh:129
Packet::isError
bool isError() const
Definition: packet.hh:584
Packet::writeThrough
bool writeThrough() const
Definition: packet.hh:703
MemCmd::isClean
bool isClean() const
Definition: packet.hh:209
MemCmd::ReadExResp
@ ReadExResp
Definition: packet.hh:105
Packet::setSuppressFuncError
void setSuppressFuncError()
Definition: packet.hh:718
Packet::makeAtomicResponse
void makeAtomicResponse()
Definition: packet.hh:1017
Packet::getBE
T getBE() const
Get the data in the packet byte swapped from big endian to host endian.
Definition: packet_access.hh:68
MemCmd::SoftPFExReq
@ SoftPFExReq
Definition: packet.hh:94
Packet::PrintReqState::popLabel
void popLabel()
Pop a label off the label stack.
Definition: packet.cc:465
Packet::PrintReqState::LabelStackEntry::prefix
std::string * prefix
Definition: packet.hh:452
Packet::isResponse
bool isResponse() const
Definition: packet.hh:561
MemCmd::WritebackClean
@ WritebackClean
Definition: packet.hh:90
warn
#define warn(...)
Definition: logging.hh:239
MemCmd::isSWPrefetch
bool isSWPrefetch() const
Definition: packet.hh:225
Packet::getAddrRange
AddrRange getAddrRange() const
Get address range to which this packet belongs.
Definition: packet.cc:241
Packet::dataStaticConst
void dataStaticConst(const T *p)
Set the data pointer to the following value that should not be freed.
Definition: packet.hh:1125
MemCmd::CommandInfo::attributes
const std::bitset< NUM_COMMAND_ATTRIBUTES > attributes
Set of attribute flags.
Definition: packet.hh:177
Packet::makeTimingResponse
void makeTimingResponse()
Definition: packet.hh:1023
MemCmd::IsFlush
@ IsFlush
Flush the address from caches.
Definition: packet.hh:165
Packet::cacheResponding
bool cacheResponding() const
Definition: packet.hh:620
Packet::PrintReqState::LabelStackEntry
An entry in the label stack.
Definition: packet.hh:449
Packet::hasSharers
bool hasSharers() const
Definition: packet.hh:647
Packet::satisfied
bool satisfied() const
Definition: packet.hh:716
Packet::PrintReqState::LabelStack
std::list< LabelStackEntry > LabelStack
Definition: packet.hh:457
Packet::PrintReqState::verbosity
const int verbosity
Definition: packet.hh:464
Packet::copyResponderFlags
void copyResponderFlags(const PacketPtr pkt)
Copy the reponse flags from an input packet to this packet.
Definition: packet.cc:322
Packet::getAddr
Addr getAddr() const
Definition: packet.hh:755
Packet::set
void set(T v, ByteOrder endian)
Set the value in the data pointer to v using the specified endianness.
Definition: packet_access.hh:112
Packet::htmReturnReason
HtmCacheFailure htmReturnReason
Holds the return status of the transaction.
Definition: packet.hh:378
Packet::SATISFIED
@ SATISFIED
Definition: packet.hh:296
MemCmd::HardPFReq
@ HardPFReq
Definition: packet.hh:95
Packet::PrintReqState::~PrintReqState
~PrintReqState()
Definition: packet.cc:441
Packet::writeData
void writeData(uint8_t *p) const
Copy data from the packet to the memory at the provided pointer.
Definition: packet.hh:1255
Packet::setCacheResponding
void setCacheResponding()
Snoop flags.
Definition: packet.hh:614
Packet::isHtmTransactional
bool isHtmTransactional() const
Returns whether or not this packet/request originates in the CPU executing in transactional mode,...
Definition: packet.cc:544
Packet::isExpressSnoop
bool isExpressSnoop() const
Definition: packet.hh:663
Packet::addr
Addr addr
The address of the request.
Definition: packet.hh:355
Packet::responderHadWritable
bool responderHadWritable() const
Definition: packet.hh:680
Packet::convertLlToRead
void convertLlToRead()
When ruby is in use, Ruby will monitor the cache line and the phys memory should treat LL ops as norm...
Definition: packet.hh:813
Packet::payloadDelay
uint32_t payloadDelay
The extra pipelining delay from seeing the packet until the end of payload is transmitted by the comp...
Definition: packet.hh:413
ArmISA::i
Bitfield< 7 > i
Definition: miscregs_types.hh:63
MemCmd::IsWrite
@ IsWrite
Data flows from requester to responder.
Definition: packet.hh:150
MemCmd::CommandInfo
Structure that defines attributes and other data associated with a Command.
Definition: packet.hh:174
Flags< FlagsType >
MemCmd::isWriteback
bool isWriteback() const
A writeback is an eviction that carries data.
Definition: packet.hh:215
Packet::setResponderHadWritable
void setResponderHadWritable()
On responding to a snoop request (which only happens for Modified or Owned lines),...
Definition: packet.hh:674
Packet::hasRespData
bool hasRespData() const
Definition: packet.hh:578
Packet::setRaw
void setRaw(T v)
Set the value in the data pointer to v without byte swapping.
Definition: packet_access.hh:58
Packet::WRITE_THROUGH
@ WRITE_THROUGH
Definition: packet.hh:292
MemCmd::SoftPFResp
@ SoftPFResp
Definition: packet.hh:96
Packet::setHasSharers
void setHasSharers()
On fills, the hasSharers flag is used by the caches in combination with the cacheResponding flag,...
Definition: packet.hh:646
MemCmd::UpgradeReq
@ UpgradeReq
Definition: packet.hh:99
HtmCacheFailure::NO_FAIL
@ NO_FAIL
Packet::SUPPRESS_FUNC_ERROR
@ SUPPRESS_FUNC_ERROR
suppress the error if this packet encounters a functional access failure.
Definition: packet.hh:323
Packet::setSatisfied
void setSatisfied()
Set when a request hits in a cache and the cache is not going to respond.
Definition: packet.hh:710
Packet::isRead
bool isRead() const
Definition: packet.hh:557
Packet::fromCache
bool fromCache() const
Definition: packet.hh:575
Packet::Packet
Packet(const RequestPtr &_req, MemCmd _cmd)
Constructor.
Definition: packet.hh:825
htm.hh
MemCmd::CleanEvict
@ CleanEvict
Definition: packet.hh:92
MemCmd::ReadReq
@ ReadReq
Definition: packet.hh:83
Packet::SenderState::SenderState
SenderState()
Definition: packet.hh:435
MemCmd::FlushReq
@ FlushReq
Definition: packet.hh:133
PacketDataPtr
uint8_t * PacketDataPtr
Definition: packet.hh:68
Packet::makeReadCmd
static MemCmd makeReadCmd(const RequestPtr &req)
Generate the appropriate read MemCmd based on the Request flags.
Definition: packet.hh:940
Packet::isAtomicOp
bool isAtomicOp() const
Definition: packet.hh:794
Packet::pushLabel
void pushLabel(const std::string &lbl)
Push label for PrintReq (safe to call unconditionally).
Definition: packet.hh:1394
cast.hh
Packet::needsWritable
bool needsWritable() const
Definition: packet.hh:562
Packet::isInvalidate
bool isInvalidate() const
Definition: packet.hh:572
RequestPtr
std::shared_ptr< Request > RequestPtr
Definition: request.hh:86
MemCmd::MemCmd
MemCmd(Command _cmd)
Definition: packet.hh:243
X86ISA::base
Bitfield< 51, 12 > base
Definition: pagetable.hh:138
Packet::req
RequestPtr req
A pointer to the original request.
Definition: packet.hh:341
MemCmd::LoadLockedReq
@ LoadLockedReq
Definition: packet.hh:108
Packet::isEviction
bool isEviction() const
Definition: packet.hh:573
Packet::isLLSC
bool isLLSC() const
Definition: packet.hh:583
Packet::requestorId
RequestorID requestorId() const
Definition: packet.hh:741
Packet::dataDynamic
void dataDynamic(T *p)
Set the data pointer to a value that should have delete [] called on it.
Definition: packet.hh:1146
std::vector< bool >
Packet::print
std::string print() const
A no-args wrapper of print(std::ostream...) meant to be invoked from DPRINTFs avoiding string overhea...
Definition: packet.cc:403
Packet::setBlockCached
void setBlockCached()
Definition: packet.hh:720
Packet::htmTransactionUid
uint64_t htmTransactionUid
A global unique identifier of the transaction.
Definition: packet.hh:384
Packet::getSize
unsigned getSize() const
Definition: packet.hh:765
Packet::RESPONDER_FLAGS
@ RESPONDER_FLAGS
Definition: packet.hh:271
Packet::data
PacketDataPtr data
A pointer to the data being transferred.
Definition: packet.hh:351
MemCmd::IsEviction
@ IsEviction
Definition: packet.hh:158
MemCmd::HardPFResp
@ HardPFResp
Definition: packet.hh:97
Packet::isRequest
bool isRequest() const
Definition: packet.hh:560
MemCmd::IsSWPrefetch
@ IsSWPrefetch
Definition: packet.hh:159
MemCmd::CommandInfo::response
const Command response
Corresponding response for requests; InvalidCmd if no response is applicable.
Definition: packet.hh:180
MemCmd::MemFenceResp
@ MemFenceResp
Definition: packet.hh:118
Packet::flags
Flags flags
Definition: packet.hh:330
Packet::~Packet
~Packet()
clean up packet variables
Definition: packet.hh:995
PacketPtr
Packet * PacketPtr
Definition: packet.hh:66
Packet::matchBlockAddr
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:410
MemCmd::ReadRespWithInvalidate
@ ReadRespWithInvalidate
Definition: packet.hh:85
MemCmd::isEviction
bool isEviction() const
Definition: packet.hh:208
Packet::convertScToWrite
void convertScToWrite()
It has been determined that the SC packet should successfully update memory.
Definition: packet.hh:801
Packet::FROM_TRANSACTION
@ FROM_TRANSACTION
Definition: packet.hh:307
MemCmd::isFlush
bool isFlush() const
Definition: packet.hh:231
Packet::writeDataToBlock
void writeDataToBlock(uint8_t *blk_data, int blkSize) const
Copy data from the packet to the provided block pointer, which is aligned to the given block size.
Definition: packet.hh:1279
request.hh
Packet::headerDelay
uint32_t headerDelay
The extra delay from seeing the packet until the header is transmitted.
Definition: packet.hh:395
Packet::isSecure
bool isSecure() const
Definition: packet.hh:784
Flags::noneSet
bool noneSet(Type mask) const
Verifies whether no bits matching the given mask are set.
Definition: flags.hh:96
Packet::setData
void setData(const uint8_t *p)
Copy data into the packet from the provided pointer.
Definition: packet.hh:1226
printable.hh
MipsISA::c2
Bitfield< 6 > c2
Definition: pra_constants.hh:238
Packet::setBE
void setBE(T v)
Set the value in the data pointer to v as big endian.
Definition: packet_access.hh:98
Packet::copyError
void copyError(Packet *pkt)
Definition: packet.hh:753
AtomicOpFunctor
Definition: amo.hh:40
MemCmd::IsHWPrefetch
@ IsHWPrefetch
Definition: packet.hh:160
MemCmd::CommandInfo::str
const std::string str
String representation (for printing)
Definition: packet.hh:182
MemCmd::Command
Command
List of all commands associated with a packet.
Definition: packet.hh:80
Packet::PrintReqState::curPrefixPtr
std::string * curPrefixPtr
Definition: packet.hh:460
MemCmd::WriteReq
@ WriteReq
Definition: packet.hh:86
Packet::Packet
Packet(const RequestPtr &_req, MemCmd _cmd, int _blkSize, PacketId _id=0)
Alternate constructor if you are trying to create a packet with a request that is for a whole block,...
Definition: packet.hh:866
Packet::SenderState::~SenderState
virtual ~SenderState()
Definition: packet.hh:436
MemCmd::WriteCompleteResp
@ WriteCompleteResp
Definition: packet.hh:88
Packet::RESPONDER_HAD_WRITABLE
@ RESPONDER_HAD_WRITABLE
Allow a responding cache to inform the cache hierarchy that it had a writable copy before responding.
Definition: packet.hh:284
MemCmd::InvalidDestError
@ InvalidDestError
Definition: packet.hh:127
RequestorID
uint16_t RequestorID
Definition: request.hh:89
MemCmd::InvalidCmd
@ InvalidCmd
Definition: packet.hh:82
Packet::DYNAMIC_DATA
@ DYNAMIC_DATA
The data pointer points to a value that should be freed when the packet is destroyed.
Definition: packet.hh:319
Packet::qosValue
uint8_t qosValue() const
QoS Value getter Returns 0 if QoS value was never set (constructor default).
Definition: packet.hh:730
MemCmd::SwapReq
@ SwapReq
Definition: packet.hh:112
MemCmd::SoftPFReq
@ SoftPFReq
Definition: packet.hh:93
MemCmd::IsResponse
@ IsResponse
Issue by responder.
Definition: packet.hh:156
MemCmd::WriteLineReq
@ WriteLineReq
Definition: packet.hh:98
MemCmd::isInvalidate
bool isInvalidate() const
Definition: packet.hh:207
MemCmd::isRead
bool isRead() const
Definition: packet.hh:200
Packet::isWholeLineWrite
bool isWholeLineWrite(unsigned blk_size)
Definition: packet.hh:588
MemCmd::IsError
@ IsError
Error response.
Definition: packet.hh:163
Packet::setWriteThrough
void setWriteThrough()
A writeback/writeclean cmd gets propagated further downstream by the receiver when the flag is set.
Definition: packet.hh:696
MemCmd::isLLSC
bool isLLSC() const
Definition: packet.hh:224
Packet::PrintReqState::pushLabel
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:456
MemCmd::WritebackDirty
@ WritebackDirty
Definition: packet.hh:89
Packet::SenderState
A virtual base opaque structure used to hold state associated with the packet (e.g....
Definition: packet.hh:432
Packet::matchAddr
bool matchAddr(const Addr addr, const bool is_secure) const
Check if packet corresponds to a given address and address space.
Definition: packet.cc:424
MemCmd::HTMReqResp
@ HTMReqResp
Definition: packet.hh:138
Flags::clear
void clear()
Clear all flag's bits.
Definition: flags.hh:99
MemCmd::CleanSharedResp
@ CleanSharedResp
Definition: packet.hh:120
AddrRange
The AddrRange class encapsulates an address range, and supports a number of tests to check if two ran...
Definition: addr_range.hh:68
Packet::FAILS_TRANSACTION
@ FAILS_TRANSACTION
Definition: packet.hh:303
MipsISA::w
Bitfield< 0 > w
Definition: pra_constants.hh:278
Packet::PrintReqState::LabelStackEntry::label
const std::string label
Definition: packet.hh:451
Packet::getUintX
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:350
MemCmd::toString
const std::string & toString() const
Return the string to a cmd given by idx.
Definition: packet.hh:240
MemCmd::SCUpgradeFailReq
@ SCUpgradeFailReq
Definition: packet.hh:102
MemCmd::ReadCleanReq
@ ReadCleanReq
Definition: packet.hh:106
MemCmd
Definition: packet.hh:72
Packet::getBlockAddr
Addr getBlockAddr(unsigned int blk_size) const
Definition: packet.hh:779
Packet::cmdString
const std::string & cmdString() const
Return the string name of the cmd field (for debugging and tracing).
Definition: packet.hh:552
MemCmd::MemCmd
MemCmd()
Definition: packet.hh:245
Packet::_isSecure
bool _isSecure
True if the request targets the secure memory space.
Definition: packet.hh:358
MemCmd::FunctionalWriteError
@ FunctionalWriteError
Definition: packet.hh:130
Packet::PrintReqState::LabelStackEntry::LabelStackEntry
LabelStackEntry(const std::string &_label, std::string *_prefix)
Definition: packet.cc:449
Packet::createRead
static PacketPtr createRead(const RequestPtr &req)
Constructor-like methods that return Packets based on Request objects.
Definition: packet.hh:981
MemCmd::HTMReq
@ HTMReq
Definition: packet.hh:137
Packet::needsResponse
bool needsResponse() const
Definition: packet.hh:571
Packet::findNextSenderState
T * findNextSenderState() const
Go through the sender state stack and return the first instance that is of type T (as determined by a...
Definition: packet.hh:539
MemCmd::MemCmd
MemCmd(int _cmd)
Definition: packet.hh:244
MemCmd::IsPrint
@ IsPrint
Print state matching address (for debugging)
Definition: packet.hh:164
MemCmd::NUM_COMMAND_ATTRIBUTES
@ NUM_COMMAND_ATTRIBUTES
Definition: packet.hh:167
MemCmd::toInt
int toInt() const
Definition: packet.hh:241
Packet::PrintReqState::os
std::ostream & os
Definition: packet.hh:463
MemCmd::SwapResp
@ SwapResp
Definition: packet.hh:113
Packet::getAtomicOp
AtomicOpFunctor * getAtomicOp() const
Accessor function to atomic op.
Definition: packet.hh:793
Packet::setDataFromBlock
void setDataFromBlock(const uint8_t *blk_data, int blkSize)
Copy data into the packet from the provided block pointer, which is aligned to the given block size.
Definition: packet.hh:1245
MemCmd::testCmdAttrib
bool testCmdAttrib(MemCmd::Attribute attrib) const
Definition: packet.hh:193
Packet::PrintReqState::LabelStackEntry::labelPrinted
bool labelPrinted
Definition: packet.hh:453
MemCmd::IsLlsc
@ IsLlsc
Alpha/MIPS LL or SC access.
Definition: packet.hh:161
Packet::suppressFuncError
bool suppressFuncError() const
Definition: packet.hh:719
Packet::setHtmTransactionFailedInCache
void setHtmTransactionFailedInCache(const HtmCacheFailure ret_code)
Stipulates that this packet/request has returned from the cache hierarchy in a failed transaction.
Definition: packet.cc:514
MemCmd::isUpgrade
bool isUpgrade() const
Definition: packet.hh:202
Packet::PrintReqState::curPrefix
const std::string & curPrefix()
Returns the current line prefix.
Definition: packet.hh:472
Packet::STATIC_DATA
@ STATIC_DATA
Is the data pointer set to a value that shouldn't be freed when the packet is destroyed?
Definition: packet.hh:315
Packet::mustCheckAbove
bool mustCheckAbove() const
Does the request need to check for cached copies of the same block in the memory hierarchy above.
Definition: packet.hh:1358
Packet::setUintX
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:367
Flags::set
void set(Type mask)
Set all flag's bits matching the given mask.
Definition: flags.hh:113
Packet::setHtmTransactional
void setHtmTransactional(uint64_t val)
Stipulates that this packet/request originates in the CPU executing in transactional mode,...
Definition: packet.cc:537
Packet::EXPRESS_SNOOP
@ EXPRESS_SNOOP
Special timing-mode atomic snoop for multi-level coherence.
Definition: packet.hh:279
MemCmd::isError
bool isError() const
Definition: packet.hh:229
Packet::bytesValid
std::vector< bool > bytesValid
Track the bytes found that satisfy a functional read.
Definition: packet.hh:366
Packet::PrintReqState::PrintReqState
PrintReqState(std::ostream &os, int verbosity=0)
Definition: packet.cc:435
Packet::getOffset
Addr getOffset(unsigned int blk_size) const
Definition: packet.hh:774
Packet::snoopDelay
uint32_t snoopDelay
Keep track of the extra delay incurred by snooping upwards before sending a request down the memory s...
Definition: packet.hh:403
MemCmd::commandInfo
static const CommandInfo commandInfo[]
Array to map Command enum to associated info.
Definition: packet.hh:186
Packet::isUpgrade
bool isUpgrade() const
Definition: packet.hh:559
compiler.hh
MemCmd::Attribute
Attribute
List of command attributes.
Definition: packet.hh:147
Printable
Abstract base class for objects which support being printed to a stream for debugging.
Definition: printable.hh:44
MemCmd::isRequest
bool isRequest() const
Definition: packet.hh:203
MemCmd::HasData
@ HasData
There is an associated payload.
Definition: packet.hh:162
Packet::makeWriteCmd
static MemCmd makeWriteCmd(const RequestPtr &req)
Generate the appropriate write MemCmd based on the Request flags.
Definition: packet.hh:961
Packet::qosValue
void qosValue(const uint8_t qos_value)
QoS Value setter Interface for setting QoS priority value of the packet.
Definition: packet.hh:738
MemCmd::IsRequest
@ IsRequest
Issued by requester.
Definition: packet.hh:155
MemCmd::needsWritable
bool needsWritable() const
Definition: packet.hh:205
Packet::cmdToIndex
int cmdToIndex() const
Return the index of this command.
Definition: packet.hh:555
Packet::VALID_ADDR
@ VALID_ADDR
Are the 'addr' and 'size' fields valid?
Definition: packet.hh:310
Packet::Flags
::Flags< FlagsType > Flags
Definition: packet.hh:262
Packet::PrintReqState
Object used to maintain state of a PrintReq.
Definition: packet.hh:443
X86ISA::val
Bitfield< 63 > val
Definition: misc.hh:769
Flags::isSet
bool isSet(Type mask) const
Verifies whether any bit matching the given mask is set.
Definition: flags.hh:80
Packet::id
const PacketId id
Definition: packet.hh:338
core.hh
Packet::HAS_SHARERS
@ HAS_SHARERS
Definition: packet.hh:275
Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:148
Packet::makeResponse
void makeResponse()
Take a request packet and modify it in place to be suitable for returning as a response to that reque...
Definition: packet.hh:1005
Packet::setAddr
void setAddr(Addr _addr)
Update the address of this packet mid-transaction.
Definition: packet.hh:763
HtmCacheFailure
HtmCacheFailure
Definition: htm.hh:56
Packet::htmTransactionFailedInCache
bool htmTransactionFailedInCache() const
Returns whether or not this packet/request has returned from the cache hierarchy in a failed transact...
Definition: packet.cc:524
MemCmd::IsRead
@ IsRead
Data flows from responder to requester.
Definition: packet.hh:149
Packet::CACHE_RESPONDING
@ CACHE_RESPONDING
Definition: packet.hh:288
MemCmd::MemSyncResp
@ MemSyncResp
Definition: packet.hh:117
flags.hh
MemCmd::needsResponse
bool needsResponse() const
Definition: packet.hh:206
MemCmd::MemFenceReq
@ MemFenceReq
Definition: packet.hh:115
MemCmd::cmd
Command cmd
Definition: packet.hh:190
MemCmd::SCUpgradeReq
@ SCUpgradeReq
Definition: packet.hh:100
addr_range.hh
Packet::hasData
bool hasData() const
Definition: packet.hh:577
Packet::isCleanEviction
bool isCleanEviction() const
Is this packet a clean eviction, including both actual clean evict packets, but also clean writebacks...
Definition: packet.hh:1368
Packet::getHtmTransactionUid
uint64_t getHtmTransactionUid() const
If a packet/request originates in a CPU executing in transactional mode, i.e.
Definition: packet.cc:550
Packet::cmd
MemCmd cmd
The command field of the packet.
Definition: packet.hh:336
Packet::getRaw
T getRaw() const
Get the data in the packet without byte swapping.
Definition: packet_access.hh:49
MemCmd::CleanSharedReq
@ CleanSharedReq
Definition: packet.hh:119
Packet::createWrite
static PacketPtr createWrite(const RequestPtr &req)
Definition: packet.hh:987
Packet::get
T get(ByteOrder endian) const
Get the data in the packet byte swapped from the specified endianness.
Definition: packet_access.hh:82
MemCmd::FromCache
@ FromCache
Request originated from a caching agent.
Definition: packet.hh:166
Packet::getLE
T getLE() const
Get the data in the packet byte swapped from little endian to host endian.
Definition: packet_access.hh:75
Packet::pushSenderState
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:332
MemCmd::HTMAbort
@ HTMAbort
Definition: packet.hh:139
MemCmd::operator==
bool operator==(MemCmd c2) const
Definition: packet.hh:247
MemCmd::isResponse
bool isResponse() const
Definition: packet.hh:204
MemCmd::NeedsResponse
@ NeedsResponse
Requester needs response from target.
Definition: packet.hh:157
MemCmd::isPrefetch
bool isPrefetch() const
Definition: packet.hh:227
MemCmd::IsUpgrade
@ IsUpgrade
Definition: packet.hh:151
Packet::PrintReqState::printLabels
void printLabels()
Print all of the pending unprinted labels on the stack.
Definition: packet.cc:474
Packet::setBadAddress
void setBadAddress()
Definition: packet.hh:747
types.hh
ArmISA::t
Bitfield< 5 > t
Definition: miscregs_types.hh:67
MemCmd::WriteResp
@ WriteResp
Definition: packet.hh:87
Packet::isClean
bool isClean() const
Definition: packet.hh:574
Packet::setExpressSnoop
void setExpressSnoop()
The express snoop flag is used for two purposes.
Definition: packet.hh:662
MemCmd::MemSyncReq
@ MemSyncReq
Definition: packet.hh:116
MemCmd::IsClean
@ IsClean
Cleans any existing dirty blocks.
Definition: packet.hh:153
Packet::dataStatic
void dataStatic(T *p)
Set the data pointer to the following value that should not be freed.
Definition: packet.hh:1108
MemCmd::StoreCondResp
@ StoreCondResp
Definition: packet.hh:111
Packet::makeHtmTransactionalReqResponse
void makeHtmTransactionalReqResponse(const HtmCacheFailure ret_code)
Communicates to the core that a packet was processed by the memory subsystem while running in transac...
Definition: packet.cc:498
Packet
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Definition: packet.hh:258
MemCmd::BadAddressError
@ BadAddressError
Definition: packet.hh:128
Packet::popSenderState
SenderState * popSenderState()
Pop the top of the state stack and return a pointer to it.
Definition: packet.cc:340
Packet::Packet
Packet(const PacketPtr pkt, bool clear_flags, bool alloc_data)
Alternate constructor for copying a packet.
Definition: packet.hh:892
Packet::isMaskedWrite
bool isMaskedWrite() const
Definition: packet.hh:1374
MemCmd::InvalidateReq
@ InvalidateReq
Definition: packet.hh:134
Packet::_qosValue
uint8_t _qosValue
Definition: packet.hh:369
logging.hh
Packet::isWrite
bool isWrite() const
Definition: packet.hh:558
MemCmd::fromCache
bool fromCache() const
Definition: packet.hh:210
Packet::PrintReqState::printObj
void printObj(Printable *obj)
Print a Printable object to os, because it matched the address on a PrintReq.
Definition: packet.cc:491
Packet::setLE
void setLE(T v)
Set the value in the data pointer to v as little endian.
Definition: packet_access.hh:105
Packet::getPtr
T * getPtr()
get a pointer to the data ptr.
Definition: packet.hh:1158
Packet::FlagsType
uint32_t FlagsType
Definition: packet.hh:261
MemCmd::isPrint
bool isPrint() const
Definition: packet.hh:230
MemCmd::ReadSharedReq
@ ReadSharedReq
Definition: packet.hh:107
Packet::size
unsigned size
The size of the request or transfer.
Definition: packet.hh:361
Packet::VALID_SIZE
@ VALID_SIZE
Definition: packet.hh:311
MemCmd::isHWPrefetch
bool isHWPrefetch() const
Definition: packet.hh:226
PacketList
std::list< PacketPtr > PacketList
Definition: packet.hh:69
MemCmd::operator!=
bool operator!=(MemCmd c2) const
Definition: packet.hh:248
MemCmd::ReadResp
@ ReadResp
Definition: packet.hh:84
MemCmd::InvalidateResp
@ InvalidateResp
Definition: packet.hh:135
MemCmd::hasData
bool hasData() const
Check if this particular packet type carries payload data.
Definition: packet.hh:223
MemCmd::WriteClean
@ WriteClean
Definition: packet.hh:91
PacketId
uint64_t PacketId
Definition: packet.hh:70
Packet::clearBlockCached
void clearBlockCached()
Definition: packet.hh:722
MemCmd::IsInvalidate
@ IsInvalidate
Definition: packet.hh:152
Packet::isFlush
bool isFlush() const
Definition: packet.hh:586
MemCmd::CleanInvalidReq
@ CleanInvalidReq
Definition: packet.hh:121
Packet::senderState
SenderState * senderState
This packet's sender state.
Definition: packet.hh:509
Packet::getHtmTransactionFailedInCacheRC
HtmCacheFailure getHtmTransactionFailedInCacheRC() const
If a packet/request has returned from the cache hierarchy in a failed transaction,...
Definition: packet.cc:530
MipsISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:323
Packet::isPrint
bool isPrint() const
Definition: packet.hh:585
std::list
STL list class.
Definition: stl.hh:51
Packet::isBlockCached
bool isBlockCached() const
Definition: packet.hh:721
Packet::isWriteback
bool isWriteback() const
Definition: packet.hh:576
Packet::allocate
void allocate()
Allocate memory for the packet.
Definition: packet.hh:1300
MemCmd::ReadExReq
@ ReadExReq
Definition: packet.hh:104
MemCmd::CleanInvalidResp
@ CleanInvalidResp
Definition: packet.hh:122
MemCmd::UpgradeFailResp
@ UpgradeFailResp
Definition: packet.hh:103
Packet::SenderState::predecessor
SenderState * predecessor
Definition: packet.hh:434
MemCmd::NeedsWritable
@ NeedsWritable
Requires writable copy to complete in-cache.
Definition: packet.hh:154
Packet::trySatisfyFunctional
bool trySatisfyFunctional(PacketPtr other)
Check a functional request against a memory value stored in another packet (i.e.
Definition: packet.hh:1332
Packet::PrintReqState::labelStack
LabelStack labelStack
Definition: packet.hh:458
MemCmd::StoreCondReq
@ StoreCondReq
Definition: packet.hh:109
Packet::COPY_FLAGS
@ COPY_FLAGS
Definition: packet.hh:268
Packet::clearWriteThrough
void clearWriteThrough()
Definition: packet.hh:702
Packet::BLOCK_CACHED
@ BLOCK_CACHED
Definition: packet.hh:327
Packet::getConstPtr
const T * getConstPtr() const
Definition: packet.hh:1167
Packet::setFunctionalResponseStatus
void setFunctionalResponseStatus(bool success)
Definition: packet.hh:1029
ArmISA::v
Bitfield< 28 > v
Definition: miscregs_types.hh:51
MemCmd::NUM_MEM_CMDS
@ NUM_MEM_CMDS
Definition: packet.hh:140
MemCmd::UpgradeResp
@ UpgradeResp
Definition: packet.hh:101
MemCmd::responseCommand
Command responseCommand() const
Definition: packet.hh:234
Packet::popLabel
void popLabel()
Pop label for PrintReq (safe to call unconditionally).
Definition: packet.hh:1404
MemCmd::isWrite
bool isWrite() const
Definition: packet.hh:201
MemCmd::StoreCondFailReq
@ StoreCondFailReq
Definition: packet.hh:110
MemCmd::PrintReq
@ PrintReq
Definition: packet.hh:132
byteswap.hh
Packet::setSize
void setSize(unsigned size)
Definition: packet.hh:1041
Packet::deleteData
void deleteData()
delete the data pointed to in the data pointer.
Definition: packet.hh:1289
Packet::Command
MemCmd::Command Command
Definition: packet.hh:333

Generated on Tue Mar 23 2021 19:41:28 for gem5 by doxygen 1.8.17