gem5  v20.0.0.3
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/request.hh"
62 #include "sim/core.hh"
63 
64 class Packet;
65 typedef Packet *PacketPtr;
66 typedef uint8_t* PacketDataPtr;
68 typedef uint64_t PacketId;
69 
70 class MemCmd
71 {
72  friend class Packet;
73 
74  public:
78  enum Command
79  {
88  WriteClean, // writes dirty data below without evicting
97  SCUpgradeReq, // Special "weak" upgrade for StoreCond
99  SCUpgradeFailReq, // Failed SCUpgradeReq in MSHR (never sent)
100  UpgradeFailResp, // Valid for SCUpgradeReq only
107  StoreCondFailReq, // Failed StoreCondReq in MSHR (never sent)
111  // MessageReq and MessageResp are deprecated.
118  // Error responses
119  // @TODO these should be classified as responses rather than
120  // requests; coding them as requests initially for backwards
121  // compatibility
122  InvalidDestError, // packet dest field invalid
123  BadAddressError, // memory address invalid
124  FunctionalReadError, // unable to fulfill functional read
125  FunctionalWriteError, // unable to fulfill functional write
126  // Fake simulator-only commands
127  PrintReq, // Print state matching address
128  FlushReq, //request for a cache flush
129  InvalidateReq, // request for address to be invalidated
132  };
133 
134  private:
139  {
159  };
160 
165  struct CommandInfo
166  {
168  const std::bitset<NUM_COMMAND_ATTRIBUTES> attributes;
173  const std::string str;
174  };
175 
177  static const CommandInfo commandInfo[];
178 
179  private:
180 
182 
183  bool
185  {
186  return commandInfo[cmd].attributes[attrib] != 0;
187  }
188 
189  public:
190 
191  bool isRead() const { return testCmdAttrib(IsRead); }
192  bool isWrite() const { return testCmdAttrib(IsWrite); }
193  bool isUpgrade() const { return testCmdAttrib(IsUpgrade); }
194  bool isRequest() const { return testCmdAttrib(IsRequest); }
195  bool isResponse() const { return testCmdAttrib(IsResponse); }
196  bool needsWritable() const { return testCmdAttrib(NeedsWritable); }
197  bool needsResponse() const { return testCmdAttrib(NeedsResponse); }
198  bool isInvalidate() const { return testCmdAttrib(IsInvalidate); }
199  bool isEviction() const { return testCmdAttrib(IsEviction); }
200  bool isClean() const { return testCmdAttrib(IsClean); }
201  bool fromCache() const { return testCmdAttrib(FromCache); }
202 
206  bool isWriteback() const { return testCmdAttrib(IsEviction) &&
208 
214  bool hasData() const { return testCmdAttrib(HasData); }
215  bool isLLSC() const { return testCmdAttrib(IsLlsc); }
216  bool isSWPrefetch() const { return testCmdAttrib(IsSWPrefetch); }
217  bool isHWPrefetch() const { return testCmdAttrib(IsHWPrefetch); }
218  bool isPrefetch() const { return testCmdAttrib(IsSWPrefetch) ||
220  bool isError() const { return testCmdAttrib(IsError); }
221  bool isPrint() const { return testCmdAttrib(IsPrint); }
222  bool isFlush() const { return testCmdAttrib(IsFlush); }
223 
224  Command
226  {
227  return commandInfo[cmd].response;
228  }
229 
231  const std::string &toString() const { return commandInfo[cmd].str; }
232  int toInt() const { return (int)cmd; }
233 
234  MemCmd(Command _cmd) : cmd(_cmd) { }
235  MemCmd(int _cmd) : cmd((Command)_cmd) { }
236  MemCmd() : cmd(InvalidCmd) { }
237 
238  bool operator==(MemCmd c2) const { return (cmd == c2.cmd); }
239  bool operator!=(MemCmd c2) const { return (cmd != c2.cmd); }
240 };
241 
249 class Packet : public Printable
250 {
251  public:
252  typedef uint32_t FlagsType;
253  typedef ::Flags<FlagsType> Flags;
254 
255  private:
256 
257  enum : FlagsType {
258  // Flags to transfer across when copying a packet
259  COPY_FLAGS = 0x0000003F,
260 
261  // Flags that are used to create reponse packets
262  RESPONDER_FLAGS = 0x00000009,
263 
264  // Does this packet have sharers (which means it should not be
265  // considered writable) or not. See setHasSharers below.
266  HAS_SHARERS = 0x00000001,
267 
268  // Special control flags
270  EXPRESS_SNOOP = 0x00000002,
271 
275  RESPONDER_HAD_WRITABLE = 0x00000004,
276 
277  // Snoop co-ordination flag to indicate that a cache is
278  // responding to a snoop. See setCacheResponding below.
279  CACHE_RESPONDING = 0x00000008,
280 
281  // The writeback/writeclean should be propagated further
282  // downstream by the receiver
283  WRITE_THROUGH = 0x00000010,
284 
285  // Response co-ordination flag for cache maintenance
286  // operations
287  SATISFIED = 0x00000020,
288 
290  VALID_ADDR = 0x00000100,
291  VALID_SIZE = 0x00000200,
292 
295  STATIC_DATA = 0x00001000,
299  DYNAMIC_DATA = 0x00002000,
300 
303  SUPPRESS_FUNC_ERROR = 0x00008000,
304 
305  // Signal block present to squash prefetch and cache evict packets
306  // through express snoop flag
307  BLOCK_CACHED = 0x00010000
308  };
309 
310  Flags flags;
311 
312  public:
314 
317 
318  const PacketId id;
319 
322 
323  private:
332 
336 
338  bool _isSecure;
339 
341  unsigned size;
342 
347 
348  // Quality of Service priority value
349  uint8_t _qosValue;
350 
351  public:
352 
360  uint32_t headerDelay;
361 
368  uint32_t snoopDelay;
369 
378  uint32_t payloadDelay;
379 
397  struct SenderState
398  {
400  SenderState() : predecessor(NULL) {}
401  virtual ~SenderState() {}
402  };
403 
408  class PrintReqState : public SenderState
409  {
410  private:
415  {
416  const std::string label;
417  std::string *prefix;
419  LabelStackEntry(const std::string &_label, std::string *_prefix);
420  };
421 
423  LabelStack labelStack;
424 
425  std::string *curPrefixPtr;
426 
427  public:
428  std::ostream &os;
429  const int verbosity;
430 
431  PrintReqState(std::ostream &os, int verbosity = 0);
432  ~PrintReqState();
433 
437  const std::string &curPrefix() { return *curPrefixPtr; }
438 
444  void pushLabel(const std::string &lbl,
445  const std::string &prefix = " ");
446 
450  void popLabel();
451 
457  void printLabels();
458 
463  void printObj(Printable *obj);
464  };
465 
475 
484  void pushSenderState(SenderState *sender_state);
485 
494  SenderState *popSenderState();
495 
503  template <typename T>
505  {
506  T *t = NULL;
507  SenderState* sender_state = senderState;
508  while (t == NULL && sender_state != NULL) {
509  t = dynamic_cast<T*>(sender_state);
510  sender_state = sender_state->predecessor;
511  }
512  return t;
513  }
514 
517  const std::string &cmdString() const { return cmd.toString(); }
518 
520  inline int cmdToIndex() const { return cmd.toInt(); }
521 
522  bool isRead() const { return cmd.isRead(); }
523  bool isWrite() const { return cmd.isWrite(); }
524  bool isUpgrade() const { return cmd.isUpgrade(); }
525  bool isRequest() const { return cmd.isRequest(); }
526  bool isResponse() const { return cmd.isResponse(); }
527  bool needsWritable() const
528  {
529  // we should never check if a response needsWritable, the
530  // request has this flag, and for a response we should rather
531  // look at the hasSharers flag (if not set, the response is to
532  // be considered writable)
533  assert(isRequest());
534  return cmd.needsWritable();
535  }
536  bool needsResponse() const { return cmd.needsResponse(); }
537  bool isInvalidate() const { return cmd.isInvalidate(); }
538  bool isEviction() const { return cmd.isEviction(); }
539  bool isClean() const { return cmd.isClean(); }
540  bool fromCache() const { return cmd.fromCache(); }
541  bool isWriteback() const { return cmd.isWriteback(); }
542  bool hasData() const { return cmd.hasData(); }
543  bool hasRespData() const
544  {
545  MemCmd resp_cmd = cmd.responseCommand();
546  return resp_cmd.hasData();
547  }
548  bool isLLSC() const { return cmd.isLLSC(); }
549  bool isError() const { return cmd.isError(); }
550  bool isPrint() const { return cmd.isPrint(); }
551  bool isFlush() const { return cmd.isFlush(); }
552 
553  bool isWholeLineWrite(unsigned blk_size)
554  {
555  return (cmd == MemCmd::WriteReq || cmd == MemCmd::WriteLineReq) &&
556  getOffset(blk_size) == 0 && getSize() == blk_size;
557  }
558 
560 
580  {
581  assert(isRequest());
582  assert(!flags.isSet(CACHE_RESPONDING));
583  flags.set(CACHE_RESPONDING);
584  }
585  bool cacheResponding() const { return flags.isSet(CACHE_RESPONDING); }
611  void setHasSharers() { flags.set(HAS_SHARERS); }
612  bool hasSharers() const { return flags.isSet(HAS_SHARERS); }
614 
627  void setExpressSnoop() { flags.set(EXPRESS_SNOOP); }
628  bool isExpressSnoop() const { return flags.isSet(EXPRESS_SNOOP); }
629 
640  {
641  assert(cacheResponding());
642  assert(!responderHadWritable());
643  flags.set(RESPONDER_HAD_WRITABLE);
644  }
645  bool responderHadWritable() const
646  { return flags.isSet(RESPONDER_HAD_WRITABLE); }
647 
655  void copyResponderFlags(const PacketPtr pkt);
656 
662  {
663  assert(cmd.isWrite() &&
664  (cmd.isEviction() || cmd == MemCmd::WriteClean));
665  flags.set(WRITE_THROUGH);
666  }
667  void clearWriteThrough() { flags.clear(WRITE_THROUGH); }
668  bool writeThrough() const { return flags.isSet(WRITE_THROUGH); }
669 
676  {
677  assert(cmd.isClean());
678  assert(!flags.isSet(SATISFIED));
679  flags.set(SATISFIED);
680  }
681  bool satisfied() const { return flags.isSet(SATISFIED); }
682 
683  void setSuppressFuncError() { flags.set(SUPPRESS_FUNC_ERROR); }
684  bool suppressFuncError() const { return flags.isSet(SUPPRESS_FUNC_ERROR); }
685  void setBlockCached() { flags.set(BLOCK_CACHED); }
686  bool isBlockCached() const { return flags.isSet(BLOCK_CACHED); }
687  void clearBlockCached() { flags.clear(BLOCK_CACHED); }
688 
695  inline uint8_t qosValue() const { return _qosValue; }
696 
703  inline void qosValue(const uint8_t qos_value)
704  { _qosValue = qos_value; }
705 
706  inline MasterID masterId() const { return req->masterId(); }
707 
708  // Network error conditions... encapsulate them as methods since
709  // their encoding keeps changing (from result field to command
710  // field, etc.)
711  void
713  {
714  assert(isResponse());
716  }
717 
718  void copyError(Packet *pkt) { assert(pkt->isError()); cmd = pkt->cmd; }
719 
720  Addr getAddr() const { assert(flags.isSet(VALID_ADDR)); return addr; }
728  void setAddr(Addr _addr) { assert(flags.isSet(VALID_ADDR)); addr = _addr; }
729 
730  unsigned getSize() const { assert(flags.isSet(VALID_SIZE)); return size; }
731 
737  AddrRange getAddrRange() const;
738 
739  Addr getOffset(unsigned int blk_size) const
740  {
741  return getAddr() & Addr(blk_size - 1);
742  }
743 
744  Addr getBlockAddr(unsigned int blk_size) const
745  {
746  return getAddr() & ~(Addr(blk_size - 1));
747  }
748 
749  bool isSecure() const
750  {
751  assert(flags.isSet(VALID_ADDR));
752  return _isSecure;
753  }
754 
758  AtomicOpFunctor *getAtomicOp() const { return req->getAtomicOpFunctor(); }
759  bool isAtomicOp() const { return req->isAtomic(); }
760 
765  void
767  {
768  assert(isLLSC());
769  assert(isWrite());
770  cmd = MemCmd::WriteReq;
771  }
772 
777  void
779  {
780  assert(isLLSC());
781  assert(isRead());
782  cmd = MemCmd::ReadReq;
783  }
784 
790  Packet(const RequestPtr &_req, MemCmd _cmd)
791  : cmd(_cmd), id((PacketId)_req.get()), req(_req),
792  data(nullptr), addr(0), _isSecure(false), size(0),
793  _qosValue(0), headerDelay(0), snoopDelay(0),
794  payloadDelay(0), senderState(NULL)
795  {
796  if (req->hasPaddr()) {
797  addr = req->getPaddr();
798  flags.set(VALID_ADDR);
799  _isSecure = req->isSecure();
800  }
801  if (req->hasSize()) {
802  size = req->getSize();
803  flags.set(VALID_SIZE);
804  }
805  }
806 
812  Packet(const RequestPtr &_req, MemCmd _cmd, int _blkSize, PacketId _id = 0)
813  : cmd(_cmd), id(_id ? _id : (PacketId)_req.get()), req(_req),
814  data(nullptr), addr(0), _isSecure(false),
815  _qosValue(0), headerDelay(0),
816  snoopDelay(0), payloadDelay(0), senderState(NULL)
817  {
818  if (req->hasPaddr()) {
819  addr = req->getPaddr() & ~(_blkSize - 1);
820  flags.set(VALID_ADDR);
821  _isSecure = req->isSecure();
822  }
823  size = _blkSize;
824  flags.set(VALID_SIZE);
825  }
826 
834  Packet(const PacketPtr pkt, bool clear_flags, bool alloc_data)
835  : cmd(pkt->cmd), id(pkt->id), req(pkt->req),
836  data(nullptr),
837  addr(pkt->addr), _isSecure(pkt->_isSecure), size(pkt->size),
838  bytesValid(pkt->bytesValid),
839  _qosValue(pkt->qosValue()),
840  headerDelay(pkt->headerDelay),
841  snoopDelay(0),
842  payloadDelay(pkt->payloadDelay),
843  senderState(pkt->senderState)
844  {
845  if (!clear_flags)
846  flags.set(pkt->flags & COPY_FLAGS);
847 
848  flags.set(pkt->flags & (VALID_ADDR|VALID_SIZE));
849 
850  // should we allocate space for data, or not, the express
851  // snoops do not need to carry any data as they only serve to
852  // co-ordinate state changes
853  if (alloc_data) {
854  // even if asked to allocate data, if the original packet
855  // holds static data, then the sender will not be doing
856  // any memcpy on receiving the response, thus we simply
857  // carry the pointer forward
858  if (pkt->flags.isSet(STATIC_DATA)) {
859  data = pkt->data;
860  flags.set(STATIC_DATA);
861  } else {
862  allocate();
863  }
864  }
865  }
866 
870  static MemCmd
872  {
873  if (req->isLLSC())
874  return MemCmd::LoadLockedReq;
875  else if (req->isPrefetchEx())
876  return MemCmd::SoftPFExReq;
877  else if (req->isPrefetch())
878  return MemCmd::SoftPFReq;
879  else
880  return MemCmd::ReadReq;
881  }
882 
886  static MemCmd
888  {
889  if (req->isLLSC())
890  return MemCmd::StoreCondReq;
891  else if (req->isSwap() || req->isAtomic())
892  return MemCmd::SwapReq;
893  else if (req->isCacheInvalidate()) {
894  return req->isCacheClean() ? MemCmd::CleanInvalidReq :
896  } else if (req->isCacheClean()) {
897  return MemCmd::CleanSharedReq;
898  } else
899  return MemCmd::WriteReq;
900  }
901 
906  static PacketPtr
907  createRead(const RequestPtr &req)
908  {
909  return new Packet(req, makeReadCmd(req));
910  }
911 
912  static PacketPtr
914  {
915  return new Packet(req, makeWriteCmd(req));
916  }
917 
922  {
923  deleteData();
924  }
925 
930  void
932  {
933  assert(needsResponse());
934  assert(isRequest());
935  cmd = cmd.responseCommand();
936 
937  // responses are never express, even if the snoop that
938  // triggered them was
939  flags.clear(EXPRESS_SNOOP);
940  }
941 
942  void
944  {
945  makeResponse();
946  }
947 
948  void
950  {
951  makeResponse();
952  }
953 
954  void
956  {
957  if (!success) {
958  if (isWrite()) {
960  } else {
962  }
963  }
964  }
965 
966  void
967  setSize(unsigned size)
968  {
969  assert(!flags.isSet(VALID_SIZE));
970 
971  this->size = size;
972  flags.set(VALID_SIZE);
973  }
974 
984  bool matchBlockAddr(const Addr addr, const bool is_secure,
985  const int blk_size) const;
986 
995  bool matchBlockAddr(const PacketPtr pkt, const int blk_size) const;
996 
1004  bool matchAddr(const Addr addr, const bool is_secure) const;
1005 
1013  bool matchAddr(const PacketPtr pkt) const;
1014 
1015  public:
1032  template <typename T>
1033  void
1035  {
1036  assert(flags.noneSet(STATIC_DATA|DYNAMIC_DATA));
1037  data = (PacketDataPtr)p;
1038  flags.set(STATIC_DATA);
1039  }
1040 
1049  template <typename T>
1050  void
1051  dataStaticConst(const T *p)
1052  {
1053  assert(flags.noneSet(STATIC_DATA|DYNAMIC_DATA));
1054  data = const_cast<PacketDataPtr>(p);
1055  flags.set(STATIC_DATA);
1056  }
1057 
1070  template <typename T>
1071  void
1073  {
1074  assert(flags.noneSet(STATIC_DATA|DYNAMIC_DATA));
1075  data = (PacketDataPtr)p;
1076  flags.set(DYNAMIC_DATA);
1077  }
1078 
1082  template <typename T>
1083  T*
1085  {
1086  assert(flags.isSet(STATIC_DATA|DYNAMIC_DATA));
1087  assert(!isMaskedWrite());
1088  return (T*)data;
1089  }
1090 
1091  template <typename T>
1092  const T*
1093  getConstPtr() const
1094  {
1095  assert(flags.isSet(STATIC_DATA|DYNAMIC_DATA));
1096  return (const T*)data;
1097  }
1098 
1103  template <typename T>
1104  T getBE() const;
1105 
1110  template <typename T>
1111  T getLE() const;
1112 
1117  template <typename T>
1118  T get(ByteOrder endian) const;
1119 
1121  template <typename T>
1122  void setBE(T v);
1123 
1125  template <typename T>
1126  void setLE(T v);
1127 
1132  template <typename T>
1133  void set(T v, ByteOrder endian);
1134 
1139  uint64_t getUintX(ByteOrder endian) const;
1140 
1146  void setUintX(uint64_t w, ByteOrder endian);
1147 
1151  void
1152  setData(const uint8_t *p)
1153  {
1154  // we should never be copying data onto itself, which means we
1155  // must idenfity packets with static data, as they carry the
1156  // same pointer from source to destination and back
1157  assert(p != getPtr<uint8_t>() || flags.isSet(STATIC_DATA));
1158 
1159  if (p != getPtr<uint8_t>()) {
1160  // for packet with allocated dynamic data, we copy data from
1161  // one to the other, e.g. a forwarded response to a response
1162  std::memcpy(getPtr<uint8_t>(), p, getSize());
1163  }
1164  }
1165 
1170  void
1171  setDataFromBlock(const uint8_t *blk_data, int blkSize)
1172  {
1173  setData(blk_data + getOffset(blkSize));
1174  }
1175 
1180  void
1181  writeData(uint8_t *p) const
1182  {
1183  if (!isMaskedWrite()) {
1184  std::memcpy(p, getConstPtr<uint8_t>(), getSize());
1185  } else {
1186  assert(req->getByteEnable().size() == getSize());
1187  // Write only the enabled bytes
1188  const uint8_t *base = getConstPtr<uint8_t>();
1189  for (int i = 0; i < getSize(); i++) {
1190  if (req->getByteEnable()[i]) {
1191  p[i] = *(base + i);
1192  }
1193  // Disabled bytes stay untouched
1194  }
1195  }
1196  }
1197 
1204  void
1205  writeDataToBlock(uint8_t *blk_data, int blkSize) const
1206  {
1207  writeData(blk_data + getOffset(blkSize));
1208  }
1209 
1214  void
1216  {
1217  if (flags.isSet(DYNAMIC_DATA))
1218  delete [] data;
1219 
1220  flags.clear(STATIC_DATA|DYNAMIC_DATA);
1221  data = NULL;
1222  }
1223 
1225  void
1227  {
1228  // if either this command or the response command has a data
1229  // payload, actually allocate space
1230  if (hasData() || hasRespData()) {
1231  assert(flags.noneSet(STATIC_DATA|DYNAMIC_DATA));
1232  flags.set(DYNAMIC_DATA);
1233  data = new uint8_t[getSize()];
1234  }
1235  }
1236 
1240  template <typename T>
1241  T getRaw() const;
1242 
1244  template <typename T>
1245  void setRaw(T v);
1246 
1247  public:
1257  bool
1259  {
1260  if (other->isMaskedWrite()) {
1261  // Do not forward data if overlapping with a masked write
1262  if (_isSecure == other->isSecure() &&
1263  getAddr() <= (other->getAddr() + other->getSize() - 1) &&
1264  other->getAddr() <= (getAddr() + getSize() - 1)) {
1265  warn("Trying to check against a masked write, skipping."
1266  " (addr: 0x%x, other addr: 0x%x)", getAddr(),
1267  other->getAddr());
1268  }
1269  return false;
1270  }
1271  // all packets that are carrying a payload should have a valid
1272  // data pointer
1273  return trySatisfyFunctional(other, other->getAddr(), other->isSecure(),
1274  other->getSize(),
1275  other->hasData() ?
1276  other->getPtr<uint8_t>() : NULL);
1277  }
1278 
1283  bool
1285  {
1286  return cmd == MemCmd::HardPFReq || isEviction();
1287  }
1288 
1293  bool
1295  {
1296  return cmd == MemCmd::CleanEvict || cmd == MemCmd::WritebackClean;
1297  }
1298 
1299  bool
1301  {
1302  return (cmd == MemCmd::WriteReq && req->isMasked());
1303  }
1304 
1312  bool
1313  trySatisfyFunctional(Printable *obj, Addr base, bool is_secure, int size,
1314  uint8_t *_data);
1315 
1319  void
1320  pushLabel(const std::string &lbl)
1321  {
1322  if (isPrint())
1323  safe_cast<PrintReqState*>(senderState)->pushLabel(lbl);
1324  }
1325 
1329  void
1331  {
1332  if (isPrint())
1333  safe_cast<PrintReqState*>(senderState)->popLabel();
1334  }
1335 
1336  void print(std::ostream &o, int verbosity = 0,
1337  const std::string &prefix = "") const;
1338 
1345  std::string print() const;
1346 };
1347 
1348 #endif //__MEM_PACKET_HH
Alpha/MIPS LL or SC access.
Definition: packet.hh:152
MemCmd(int _cmd)
Definition: packet.hh:235
Requires writable copy to complete in-cache.
Definition: packet.hh:145
bool isPrint() const
Definition: packet.hh:221
std::vector< bool > bytesValid
Track the bytes found that satisfy a functional read.
Definition: packet.hh:346
const PacketId id
Definition: packet.hh:318
void setResponderHadWritable()
On responding to a snoop request (which only happens for Modified or Owned lines), make sure that we can transform an Owned response to a Modified one.
Definition: packet.hh:639
bool isExpressSnoop() const
Definition: packet.hh:628
void setSize(unsigned size)
Definition: packet.hh:967
bool suppressFuncError() const
Definition: packet.hh:684
void setHasSharers()
On fills, the hasSharers flag is used by the caches in combination with the cacheResponding flag...
Definition: packet.hh:611
bool mustCheckAbove() const
Does the request need to check for cached copies of the same block in the memory hierarchy above...
Definition: packet.hh:1284
Data flows from requester to responder.
Definition: packet.hh:141
Bitfield< 28 > v
MemCmd::Command Command
Definition: packet.hh:313
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:504
Definition: packet.hh:70
There is an associated payload.
Definition: packet.hh:153
AtomicOpFunctor * getAtomicOp() const
Accessor function to atomic op.
Definition: packet.hh:758
bool testCmdAttrib(MemCmd::Attribute attrib) const
Definition: packet.hh:184
void setSuppressFuncError()
Definition: packet.hh:683
Bitfield< 7 > i
void qosValue(const uint8_t qos_value)
QoS Value setter Interface for setting QoS priority value of the packet.
Definition: packet.hh:703
Object used to maintain state of a PrintReq.
Definition: packet.hh:408
uint32_t snoopDelay
Keep track of the extra delay incurred by snooping upwards before sending a request down the memory s...
Definition: packet.hh:368
void makeTimingResponse()
Definition: packet.hh:949
bool isUpgrade() const
Definition: packet.hh:524
Flush the address from caches.
Definition: packet.hh:156
bool isCleanEviction() const
Is this packet a clean eviction, including both actual clean evict packets, but also clean writebacks...
Definition: packet.hh:1294
const std::string & toString() const
Return the string to a cmd given by idx.
Definition: packet.hh:231
Declaration of a request, the overall memory request consisting of the parts of the request that are ...
std::shared_ptr< Request > RequestPtr
Definition: request.hh:81
::Flags< FlagsType > Flags
Definition: packet.hh:253
bool isSet() const
Definition: flags.hh:60
uint8_t * PacketDataPtr
Definition: packet.hh:66
LabelStack labelStack
Definition: packet.hh:423
Bitfield< 6 > c2
bool isSWPrefetch() const
Definition: packet.hh:216
void clear()
Definition: flags.hh:66
ip6_addr_t addr
Definition: inet.hh:330
static PacketPtr createWrite(const RequestPtr &req)
Definition: packet.hh:913
bool isClean() const
Definition: packet.hh:539
bool isFlush() const
Definition: packet.hh:222
bool cacheResponding() const
Definition: packet.hh:585
Requester needs response from target.
Definition: packet.hh:148
const int verbosity
Definition: packet.hh:429
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:812
uint32_t FlagsType
Definition: packet.hh:252
Cleans any existing dirty blocks.
Definition: packet.hh:144
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
static MemCmd makeReadCmd(const RequestPtr &req)
Generate the appropriate read MemCmd based on the Request flags.
Definition: packet.hh:871
void pushLabel(const std::string &lbl)
Push label for PrintReq (safe to call unconditionally).
Definition: packet.hh:1320
bool isWrite() const
Definition: packet.hh:523
bool isInvalidate() const
Definition: packet.hh:537
T * getPtr()
get a pointer to the data ptr.
Definition: packet.hh:1084
void setSatisfied()
Set when a request hits in a cache and the cache is not going to respond.
Definition: packet.hh:675
bool isRead() const
Definition: packet.hh:522
void dataStatic(T *p)
Set the data pointer to the following value that should not be freed.
Definition: packet.hh:1034
bool isRequest() const
Definition: packet.hh:194
bool isAtomicOp() const
Definition: packet.hh:759
bool isError() const
Definition: packet.hh:220
bool needsWritable() const
Definition: packet.hh:527
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
MemCmd()
Definition: packet.hh:236
std::ostream & os
Definition: packet.hh:428
bool isBlockCached() const
Definition: packet.hh:686
void setFunctionalResponseStatus(bool success)
Definition: packet.hh:955
unsigned getSize() const
Definition: packet.hh:730
Structure that defines attributes and other data associated with a Command.
Definition: packet.hh:165
PacketDataPtr data
A pointer to the data being transferred.
Definition: packet.hh:331
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 isWriteback() const
A writeback is an eviction that carries data.
Definition: packet.hh:206
bool isRequest() const
Definition: packet.hh:525
void convertScToWrite()
It has been determined that the SC packet should successfully update memory.
Definition: packet.hh:766
bool isUpgrade() const
Definition: packet.hh:193
bool needsResponse() const
Definition: packet.hh:536
uint32_t headerDelay
The extra delay from seeing the packet until the header is transmitted.
Definition: packet.hh:360
bool isError() const
Definition: packet.hh:549
Addr getOffset(unsigned int blk_size) const
Definition: packet.hh:739
SenderState * predecessor
Definition: packet.hh:399
Attribute
List of command attributes.
Definition: packet.hh:138
void setData(const uint8_t *p)
Copy data into the packet from the provided pointer.
Definition: packet.hh:1152
Packet * PacketPtr
Definition: packet.hh:64
void makeAtomicResponse()
Definition: packet.hh:943
Issued by requester.
Definition: packet.hh:146
uint8_t qosValue() const
QoS Value getter Returns 0 if QoS value was never set (constructor default).
Definition: packet.hh:695
void deleteData()
delete the data pointed to in the data pointer.
Definition: packet.hh:1215
bool isResponse() const
Definition: packet.hh:526
bool trySatisfyFunctional(PacketPtr other)
Check a functional request against a memory value stored in another packet (i.e.
Definition: packet.hh:1258
void popLabel()
Pop label for PrintReq (safe to call unconditionally).
Definition: packet.hh:1330
bool isClean() const
Definition: packet.hh:200
ByteOrder
Definition: types.hh:245
Bitfield< 51, 12 > base
Definition: pagetable.hh:141
bool needsWritable() const
Definition: packet.hh:196
MemCmd(Command _cmd)
Definition: packet.hh:234
bool writeThrough() const
Definition: packet.hh:668
Addr getAddr() const
Definition: packet.hh:720
bool isHWPrefetch() const
Definition: packet.hh:217
void dataStaticConst(const T *p)
Set the data pointer to the following value that should not be freed.
Definition: packet.hh:1051
bool hasData() const
Definition: packet.hh:542
void writeData(uint8_t *p) const
Copy data from the packet to the memory at the provided pointer.
Definition: packet.hh:1181
MasterID masterId() const
Definition: packet.hh:706
Error response.
Definition: packet.hh:154
Addr getOffset(Addr addr)
Definition: Address.cc:48
STL list class.
Definition: stl.hh:51
bool isLLSC() const
Definition: packet.hh:215
bool isEviction() const
Definition: packet.hh:199
Bitfield< 0 > w
Defines global host-dependent types: Counter, Tick, and (indirectly) {int,uint}{8,16,32,64}_t.
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
friend class Packet
Packet probe point.
Definition: packet.hh:72
uint16_t MasterID
Definition: request.hh:84
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:778
uint32_t payloadDelay
The extra pipelining delay from seeing the packet until the end of payload is transmitted by the comp...
Definition: packet.hh:378
static PacketPtr createRead(const RequestPtr &req)
Constructor-like methods that return Packets based on Request objects.
Definition: packet.hh:907
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
const std::bitset< NUM_COMMAND_ATTRIBUTES > attributes
Set of attribute flags.
Definition: packet.hh:168
Print state matching address (for debugging)
Definition: packet.hh:155
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
bool isRead() const
Definition: packet.hh:191
void setBadAddress()
Definition: packet.hh:712
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:1171
bool responderHadWritable() const
Definition: packet.hh:645
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
static MemCmd makeWriteCmd(const RequestPtr &req)
Generate the appropriate write MemCmd based on the Request flags.
Definition: packet.hh:887
Command responseCommand() const
Definition: packet.hh:225
int cmdToIndex() const
Return the index of this command.
Definition: packet.hh:520
bool hasSharers() const
Definition: packet.hh:612
bool satisfied() const
Definition: packet.hh:681
bool isMaskedWrite() const
Definition: packet.hh:1300
bool isLLSC() const
Definition: packet.hh:548
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:931
void setAddr(Addr _addr)
Update the address of this packet mid-transaction.
Definition: packet.hh:728
bool fromCache() const
Definition: packet.hh:540
Packet(const RequestPtr &_req, MemCmd _cmd)
Constructor.
Definition: packet.hh:790
Issue by responder.
Definition: packet.hh:147
~Packet()
clean up packet variables
Definition: packet.hh:921
Data flows from responder to requester.
Definition: packet.hh:140
bool needsResponse() const
Definition: packet.hh:197
bool isWrite() const
Definition: packet.hh:192
bool hasRespData() const
Definition: packet.hh:543
const Command response
Corresponding response for requests; InvalidCmd if no response is applicable.
Definition: packet.hh:171
bool hasData() const
Check if this particular packet type carries payload data.
Definition: packet.hh:214
bool fromCache() const
Definition: packet.hh:201
SenderState * senderState
This packet&#39;s sender state.
Definition: packet.hh:474
MemCmd cmd
The command field of the packet.
Definition: packet.hh:316
bool isEviction() const
Definition: packet.hh:538
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:1205
std::list< PacketPtr > PacketList
Definition: packet.hh:67
int toInt() const
Definition: packet.hh:232
bool operator==(MemCmd c2) const
Definition: packet.hh:238
bool isPrint() const
Definition: packet.hh:550
bool isResponse() const
Definition: packet.hh:195
const T * getConstPtr() const
Definition: packet.hh:1093
void dataDynamic(T *p)
Set the data pointer to a value that should have delete [] called on it.
Definition: packet.hh:1072
void setBlockCached()
Definition: packet.hh:685
Request originated from a caching agent.
Definition: packet.hh:157
virtual ~SenderState()
Definition: packet.hh:401
bool isSecure() const
Definition: packet.hh:749
void copyError(Packet *pkt)
Definition: packet.hh:718
#define warn(...)
Definition: logging.hh:208
void setExpressSnoop()
The express snoop flag is used for two purposes.
Definition: packet.hh:627
Bitfield< 5 > t
Command
List of all commands associated with a packet.
Definition: packet.hh:78
bool isPrefetch() const
Definition: packet.hh:218
bool isWholeLineWrite(unsigned blk_size)
Definition: packet.hh:553
const std::string & cmdString() const
Return the string name of the cmd field (for debugging and tracing).
Definition: packet.hh:517
Packet(const PacketPtr pkt, bool clear_flags, bool alloc_data)
Alternate constructor for copying a packet.
Definition: packet.hh:834
const std::string str
String representation (for printing)
Definition: packet.hh:173
Bitfield< 0 > p
uint8_t _qosValue
Definition: packet.hh:349
const char data[]
bool isFlush() const
Definition: packet.hh:551
uint64_t PacketId
Definition: packet.hh:68
bool isInvalidate() const
Definition: packet.hh:198
void set(Type flags)
Definition: flags.hh:68
std::list< LabelStackEntry > LabelStack
Definition: packet.hh:422
Command cmd
Definition: packet.hh:181
bool isWriteback() const
Definition: packet.hh:541
bool operator!=(MemCmd c2) const
Definition: packet.hh:239
void allocate()
Allocate memory for the packet.
Definition: packet.hh:1226
void clearBlockCached()
Definition: packet.hh:687
bool noneSet() const
Definition: flags.hh:64
void clearWriteThrough()
Definition: packet.hh:667
void setCacheResponding()
Snoop flags.
Definition: packet.hh:579
void setWriteThrough()
A writeback/writeclean cmd gets propagated further downstream by the receiver when the flag is set...
Definition: packet.hh:661

Generated on Fri Jul 3 2020 15:53:03 for gem5 by doxygen 1.8.13