mem: Consistently use ISO prefixes
[gem5.git] / src / mem / packet.hh
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
42 /**
43 * @file
44 * Declaration of the Packet class.
45 */
46
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/core.hh"
64
65 class Packet;
66 typedef Packet *PacketPtr;
67 typedef uint8_t* PacketDataPtr;
68 typedef std::list<PacketPtr> PacketList;
69 typedef uint64_t PacketId;
70
71 class MemCmd
72 {
73 friend class Packet;
74
75 public:
76 /**
77 * List of all commands associated with a packet.
78 */
79 enum Command
80 {
81 InvalidCmd,
82 ReadReq,
83 ReadResp,
84 ReadRespWithInvalidate,
85 WriteReq,
86 WriteResp,
87 WriteCompleteResp,
88 WritebackDirty,
89 WritebackClean,
90 WriteClean, // writes dirty data below without evicting
91 CleanEvict,
92 SoftPFReq,
93 SoftPFExReq,
94 HardPFReq,
95 SoftPFResp,
96 HardPFResp,
97 WriteLineReq,
98 UpgradeReq,
99 SCUpgradeReq, // Special "weak" upgrade for StoreCond
100 UpgradeResp,
101 SCUpgradeFailReq, // Failed SCUpgradeReq in MSHR (never sent)
102 UpgradeFailResp, // Valid for SCUpgradeReq only
103 ReadExReq,
104 ReadExResp,
105 ReadCleanReq,
106 ReadSharedReq,
107 LoadLockedReq,
108 StoreCondReq,
109 StoreCondFailReq, // Failed StoreCondReq in MSHR (never sent)
110 StoreCondResp,
111 SwapReq,
112 SwapResp,
113 // MessageReq and MessageResp are deprecated.
114 MemFenceReq = SwapResp + 3,
115 MemSyncReq, // memory synchronization request (e.g., cache invalidate)
116 MemSyncResp, // memory synchronization response
117 MemFenceResp,
118 CleanSharedReq,
119 CleanSharedResp,
120 CleanInvalidReq,
121 CleanInvalidResp,
122 // Error responses
123 // @TODO these should be classified as responses rather than
124 // requests; coding them as requests initially for backwards
125 // compatibility
126 InvalidDestError, // packet dest field invalid
127 BadAddressError, // memory address invalid
128 FunctionalReadError, // unable to fulfill functional read
129 FunctionalWriteError, // unable to fulfill functional write
130 // Fake simulator-only commands
131 PrintReq, // Print state matching address
132 FlushReq, //request for a cache flush
133 InvalidateReq, // request for address to be invalidated
134 InvalidateResp,
135 // hardware transactional memory
136 HTMReq,
137 HTMReqResp,
138 HTMAbort,
139 NUM_MEM_CMDS
140 };
141
142 private:
143 /**
144 * List of command attributes.
145 */
146 enum Attribute
147 {
148 IsRead, //!< Data flows from responder to requester
149 IsWrite, //!< Data flows from requester to responder
150 IsUpgrade,
151 IsInvalidate,
152 IsClean, //!< Cleans any existing dirty blocks
153 NeedsWritable, //!< Requires writable copy to complete in-cache
154 IsRequest, //!< Issued by requester
155 IsResponse, //!< Issue by responder
156 NeedsResponse, //!< Requester needs response from target
157 IsEviction,
158 IsSWPrefetch,
159 IsHWPrefetch,
160 IsLlsc, //!< Alpha/MIPS LL or SC access
161 HasData, //!< There is an associated payload
162 IsError, //!< Error response
163 IsPrint, //!< Print state matching address (for debugging)
164 IsFlush, //!< Flush the address from caches
165 FromCache, //!< Request originated from a caching agent
166 NUM_COMMAND_ATTRIBUTES
167 };
168
169 /**
170 * Structure that defines attributes and other data associated
171 * with a Command.
172 */
173 struct CommandInfo
174 {
175 /// Set of attribute flags.
176 const std::bitset<NUM_COMMAND_ATTRIBUTES> attributes;
177 /// Corresponding response for requests; InvalidCmd if no
178 /// response is applicable.
179 const Command response;
180 /// String representation (for printing)
181 const std::string str;
182 };
183
184 /// Array to map Command enum to associated info.
185 static const CommandInfo commandInfo[];
186
187 private:
188
189 Command cmd;
190
191 bool
192 testCmdAttrib(MemCmd::Attribute attrib) const
193 {
194 return commandInfo[cmd].attributes[attrib] != 0;
195 }
196
197 public:
198
199 bool isRead() const { return testCmdAttrib(IsRead); }
200 bool isWrite() const { return testCmdAttrib(IsWrite); }
201 bool isUpgrade() const { return testCmdAttrib(IsUpgrade); }
202 bool isRequest() const { return testCmdAttrib(IsRequest); }
203 bool isResponse() const { return testCmdAttrib(IsResponse); }
204 bool needsWritable() const { return testCmdAttrib(NeedsWritable); }
205 bool needsResponse() const { return testCmdAttrib(NeedsResponse); }
206 bool isInvalidate() const { return testCmdAttrib(IsInvalidate); }
207 bool isEviction() const { return testCmdAttrib(IsEviction); }
208 bool isClean() const { return testCmdAttrib(IsClean); }
209 bool fromCache() const { return testCmdAttrib(FromCache); }
210
211 /**
212 * A writeback is an eviction that carries data.
213 */
214 bool isWriteback() const { return testCmdAttrib(IsEviction) &&
215 testCmdAttrib(HasData); }
216
217 /**
218 * Check if this particular packet type carries payload data. Note
219 * that this does not reflect if the data pointer of the packet is
220 * valid or not.
221 */
222 bool hasData() const { return testCmdAttrib(HasData); }
223 bool isLLSC() const { return testCmdAttrib(IsLlsc); }
224 bool isSWPrefetch() const { return testCmdAttrib(IsSWPrefetch); }
225 bool isHWPrefetch() const { return testCmdAttrib(IsHWPrefetch); }
226 bool isPrefetch() const { return testCmdAttrib(IsSWPrefetch) ||
227 testCmdAttrib(IsHWPrefetch); }
228 bool isError() const { return testCmdAttrib(IsError); }
229 bool isPrint() const { return testCmdAttrib(IsPrint); }
230 bool isFlush() const { return testCmdAttrib(IsFlush); }
231
232 Command
233 responseCommand() const
234 {
235 return commandInfo[cmd].response;
236 }
237
238 /// Return the string to a cmd given by idx.
239 const std::string &toString() const { return commandInfo[cmd].str; }
240 int toInt() const { return (int)cmd; }
241
242 MemCmd(Command _cmd) : cmd(_cmd) { }
243 MemCmd(int _cmd) : cmd((Command)_cmd) { }
244 MemCmd() : cmd(InvalidCmd) { }
245
246 bool operator==(MemCmd c2) const { return (cmd == c2.cmd); }
247 bool operator!=(MemCmd c2) const { return (cmd != c2.cmd); }
248 };
249
250 /**
251 * A Packet is used to encapsulate a transfer between two objects in
252 * the memory system (e.g., the L1 and L2 cache). (In contrast, a
253 * single Request travels all the way from the requestor to the
254 * ultimate destination and back, possibly being conveyed by several
255 * different Packets along the way.)
256 */
257 class Packet : public Printable
258 {
259 public:
260 typedef uint32_t FlagsType;
261 typedef ::Flags<FlagsType> Flags;
262
263 private:
264
265 enum : FlagsType {
266 // Flags to transfer across when copying a packet
267 COPY_FLAGS = 0x000000FF,
268
269 // Flags that are used to create reponse packets
270 RESPONDER_FLAGS = 0x00000009,
271
272 // Does this packet have sharers (which means it should not be
273 // considered writable) or not. See setHasSharers below.
274 HAS_SHARERS = 0x00000001,
275
276 // Special control flags
277 /// Special timing-mode atomic snoop for multi-level coherence.
278 EXPRESS_SNOOP = 0x00000002,
279
280 /// Allow a responding cache to inform the cache hierarchy
281 /// that it had a writable copy before responding. See
282 /// setResponderHadWritable below.
283 RESPONDER_HAD_WRITABLE = 0x00000004,
284
285 // Snoop co-ordination flag to indicate that a cache is
286 // responding to a snoop. See setCacheResponding below.
287 CACHE_RESPONDING = 0x00000008,
288
289 // The writeback/writeclean should be propagated further
290 // downstream by the receiver
291 WRITE_THROUGH = 0x00000010,
292
293 // Response co-ordination flag for cache maintenance
294 // operations
295 SATISFIED = 0x00000020,
296
297 // hardware transactional memory
298
299 // Indicates that this packet/request has returned from the
300 // cache hierarchy in a failed transaction. The core is
301 // notified like this.
302 FAILS_TRANSACTION = 0x00000040,
303
304 // Indicates that this packet/request originates in the CPU executing
305 // in transactional mode, i.e. in a transaction.
306 FROM_TRANSACTION = 0x00000080,
307
308 /// Are the 'addr' and 'size' fields valid?
309 VALID_ADDR = 0x00000100,
310 VALID_SIZE = 0x00000200,
311
312 /// Is the data pointer set to a value that shouldn't be freed
313 /// when the packet is destroyed?
314 STATIC_DATA = 0x00001000,
315 /// The data pointer points to a value that should be freed when
316 /// the packet is destroyed. The pointer is assumed to be pointing
317 /// to an array, and delete [] is consequently called
318 DYNAMIC_DATA = 0x00002000,
319
320 /// suppress the error if this packet encounters a functional
321 /// access failure.
322 SUPPRESS_FUNC_ERROR = 0x00008000,
323
324 // Signal block present to squash prefetch and cache evict packets
325 // through express snoop flag
326 BLOCK_CACHED = 0x00010000
327 };
328
329 Flags flags;
330
331 public:
332 typedef MemCmd::Command Command;
333
334 /// The command field of the packet.
335 MemCmd cmd;
336
337 const PacketId id;
338
339 /// A pointer to the original request.
340 RequestPtr req;
341
342 private:
343 /**
344 * A pointer to the data being transferred. It can be different
345 * sizes at each level of the hierarchy so it belongs to the
346 * packet, not request. This may or may not be populated when a
347 * responder receives the packet. If not populated memory should
348 * be allocated.
349 */
350 PacketDataPtr data;
351
352 /// The address of the request. This address could be virtual or
353 /// physical, depending on the system configuration.
354 Addr addr;
355
356 /// True if the request targets the secure memory space.
357 bool _isSecure;
358
359 /// The size of the request or transfer.
360 unsigned size;
361
362 /**
363 * Track the bytes found that satisfy a functional read.
364 */
365 std::vector<bool> bytesValid;
366
367 // Quality of Service priority value
368 uint8_t _qosValue;
369
370 // hardware transactional memory
371
372 /**
373 * Holds the return status of the transaction.
374 * The default case will be NO_FAIL, otherwise this will specify the
375 * reason for the transaction's failure in the memory subsystem.
376 */
377 HtmCacheFailure htmReturnReason;
378
379 /**
380 * A global unique identifier of the transaction.
381 * This is used for correctness/debugging only.
382 */
383 uint64_t htmTransactionUid;
384
385 public:
386
387 /**
388 * The extra delay from seeing the packet until the header is
389 * transmitted. This delay is used to communicate the crossbar
390 * forwarding latency to the neighbouring object (e.g. a cache)
391 * that actually makes the packet wait. As the delay is relative,
392 * a 32-bit unsigned should be sufficient.
393 */
394 uint32_t headerDelay;
395
396 /**
397 * Keep track of the extra delay incurred by snooping upwards
398 * before sending a request down the memory system. This is used
399 * by the coherent crossbar to account for the additional request
400 * delay.
401 */
402 uint32_t snoopDelay;
403
404 /**
405 * The extra pipelining delay from seeing the packet until the end of
406 * payload is transmitted by the component that provided it (if
407 * any). This includes the header delay. Similar to the header
408 * delay, this is used to make up for the fact that the
409 * crossbar does not make the packet wait. As the delay is
410 * relative, a 32-bit unsigned should be sufficient.
411 */
412 uint32_t payloadDelay;
413
414 /**
415 * A virtual base opaque structure used to hold state associated
416 * with the packet (e.g., an MSHR), specific to a SimObject that
417 * sees the packet. A pointer to this state is returned in the
418 * packet's response so that the SimObject in question can quickly
419 * look up the state needed to process it. A specific subclass
420 * would be derived from this to carry state specific to a
421 * particular sending device.
422 *
423 * As multiple SimObjects may add their SenderState throughout the
424 * memory system, the SenderStates create a stack, where a
425 * SimObject can add a new Senderstate, as long as the
426 * predecessing SenderState is restored when the response comes
427 * back. For this reason, the predecessor should always be
428 * populated with the current SenderState of a packet before
429 * modifying the senderState field in the request packet.
430 */
431 struct SenderState
432 {
433 SenderState* predecessor;
434 SenderState() : predecessor(NULL) {}
435 virtual ~SenderState() {}
436 };
437
438 /**
439 * Object used to maintain state of a PrintReq. The senderState
440 * field of a PrintReq should always be of this type.
441 */
442 class PrintReqState : public SenderState
443 {
444 private:
445 /**
446 * An entry in the label stack.
447 */
448 struct LabelStackEntry
449 {
450 const std::string label;
451 std::string *prefix;
452 bool labelPrinted;
453 LabelStackEntry(const std::string &_label, std::string *_prefix);
454 };
455
456 typedef std::list<LabelStackEntry> LabelStack;
457 LabelStack labelStack;
458
459 std::string *curPrefixPtr;
460
461 public:
462 std::ostream &os;
463 const int verbosity;
464
465 PrintReqState(std::ostream &os, int verbosity = 0);
466 ~PrintReqState();
467
468 /**
469 * Returns the current line prefix.
470 */
471 const std::string &curPrefix() { return *curPrefixPtr; }
472
473 /**
474 * Push a label onto the label stack, and prepend the given
475 * prefix string onto the current prefix. Labels will only be
476 * printed if an object within the label's scope is printed.
477 */
478 void pushLabel(const std::string &lbl,
479 const std::string &prefix = " ");
480
481 /**
482 * Pop a label off the label stack.
483 */
484 void popLabel();
485
486 /**
487 * Print all of the pending unprinted labels on the
488 * stack. Called by printObj(), so normally not called by
489 * users unless bypassing printObj().
490 */
491 void printLabels();
492
493 /**
494 * Print a Printable object to os, because it matched the
495 * address on a PrintReq.
496 */
497 void printObj(Printable *obj);
498 };
499
500 /**
501 * This packet's sender state. Devices should use dynamic_cast<>
502 * to cast to the state appropriate to the sender. The intent of
503 * this variable is to allow a device to attach extra information
504 * to a request. A response packet must return the sender state
505 * that was attached to the original request (even if a new packet
506 * is created).
507 */
508 SenderState *senderState;
509
510 /**
511 * Push a new sender state to the packet and make the current
512 * sender state the predecessor of the new one. This should be
513 * prefered over direct manipulation of the senderState member
514 * variable.
515 *
516 * @param sender_state SenderState to push at the top of the stack
517 */
518 void pushSenderState(SenderState *sender_state);
519
520 /**
521 * Pop the top of the state stack and return a pointer to it. This
522 * assumes the current sender state is not NULL. This should be
523 * preferred over direct manipulation of the senderState member
524 * variable.
525 *
526 * @return The current top of the stack
527 */
528 SenderState *popSenderState();
529
530 /**
531 * Go through the sender state stack and return the first instance
532 * that is of type T (as determined by a dynamic_cast). If there
533 * is no sender state of type T, NULL is returned.
534 *
535 * @return The topmost state of type T
536 */
537 template <typename T>
538 T * findNextSenderState() const
539 {
540 T *t = NULL;
541 SenderState* sender_state = senderState;
542 while (t == NULL && sender_state != NULL) {
543 t = dynamic_cast<T*>(sender_state);
544 sender_state = sender_state->predecessor;
545 }
546 return t;
547 }
548
549 /// Return the string name of the cmd field (for debugging and
550 /// tracing).
551 const std::string &cmdString() const { return cmd.toString(); }
552
553 /// Return the index of this command.
554 inline int cmdToIndex() const { return cmd.toInt(); }
555
556 bool isRead() const { return cmd.isRead(); }
557 bool isWrite() const { return cmd.isWrite(); }
558 bool isUpgrade() const { return cmd.isUpgrade(); }
559 bool isRequest() const { return cmd.isRequest(); }
560 bool isResponse() const { return cmd.isResponse(); }
561 bool needsWritable() const
562 {
563 // we should never check if a response needsWritable, the
564 // request has this flag, and for a response we should rather
565 // look at the hasSharers flag (if not set, the response is to
566 // be considered writable)
567 assert(isRequest());
568 return cmd.needsWritable();
569 }
570 bool needsResponse() const { return cmd.needsResponse(); }
571 bool isInvalidate() const { return cmd.isInvalidate(); }
572 bool isEviction() const { return cmd.isEviction(); }
573 bool isClean() const { return cmd.isClean(); }
574 bool fromCache() const { return cmd.fromCache(); }
575 bool isWriteback() const { return cmd.isWriteback(); }
576 bool hasData() const { return cmd.hasData(); }
577 bool hasRespData() const
578 {
579 MemCmd resp_cmd = cmd.responseCommand();
580 return resp_cmd.hasData();
581 }
582 bool isLLSC() const { return cmd.isLLSC(); }
583 bool isError() const { return cmd.isError(); }
584 bool isPrint() const { return cmd.isPrint(); }
585 bool isFlush() const { return cmd.isFlush(); }
586
587 bool isWholeLineWrite(unsigned blk_size)
588 {
589 return (cmd == MemCmd::WriteReq || cmd == MemCmd::WriteLineReq) &&
590 getOffset(blk_size) == 0 && getSize() == blk_size;
591 }
592
593 //@{
594 /// Snoop flags
595 /**
596 * Set the cacheResponding flag. This is used by the caches to
597 * signal another cache that they are responding to a request. A
598 * cache will only respond to snoops if it has the line in either
599 * Modified or Owned state. Note that on snoop hits we always pass
600 * the line as Modified and never Owned. In the case of an Owned
601 * line we proceed to invalidate all other copies.
602 *
603 * On a cache fill (see Cache::handleFill), we check hasSharers
604 * first, ignoring the cacheResponding flag if hasSharers is set.
605 * A line is consequently allocated as:
606 *
607 * hasSharers cacheResponding state
608 * true false Shared
609 * true true Shared
610 * false false Exclusive
611 * false true Modified
612 */
613 void setCacheResponding()
614 {
615 assert(isRequest());
616 assert(!flags.isSet(CACHE_RESPONDING));
617 flags.set(CACHE_RESPONDING);
618 }
619 bool cacheResponding() const { return flags.isSet(CACHE_RESPONDING); }
620 /**
621 * On fills, the hasSharers flag is used by the caches in
622 * combination with the cacheResponding flag, as clarified
623 * above. If the hasSharers flag is not set, the packet is passing
624 * writable. Thus, a response from a memory passes the line as
625 * writable by default.
626 *
627 * The hasSharers flag is also used by upstream caches to inform a
628 * downstream cache that they have the block (by calling
629 * setHasSharers on snoop request packets that hit in upstream
630 * cachs tags or MSHRs). If the snoop packet has sharers, a
631 * downstream cache is prevented from passing a dirty line upwards
632 * if it was not explicitly asked for a writable copy. See
633 * Cache::satisfyCpuSideRequest.
634 *
635 * The hasSharers flag is also used on writebacks, in
636 * combination with the WritbackClean or WritebackDirty commands,
637 * to allocate the block downstream either as:
638 *
639 * command hasSharers state
640 * WritebackDirty false Modified
641 * WritebackDirty true Owned
642 * WritebackClean false Exclusive
643 * WritebackClean true Shared
644 */
645 void setHasSharers() { flags.set(HAS_SHARERS); }
646 bool hasSharers() const { return flags.isSet(HAS_SHARERS); }
647 //@}
648
649 /**
650 * The express snoop flag is used for two purposes. Firstly, it is
651 * used to bypass flow control for normal (non-snoop) requests
652 * going downstream in the memory system. In cases where a cache
653 * is responding to a snoop from another cache (it had a dirty
654 * line), but the line is not writable (and there are possibly
655 * other copies), the express snoop flag is set by the downstream
656 * cache to invalidate all other copies in zero time. Secondly,
657 * the express snoop flag is also set to be able to distinguish
658 * snoop packets that came from a downstream cache, rather than
659 * snoop packets from neighbouring caches.
660 */
661 void setExpressSnoop() { flags.set(EXPRESS_SNOOP); }
662 bool isExpressSnoop() const { return flags.isSet(EXPRESS_SNOOP); }
663
664 /**
665 * On responding to a snoop request (which only happens for
666 * Modified or Owned lines), make sure that we can transform an
667 * Owned response to a Modified one. If this flag is not set, the
668 * responding cache had the line in the Owned state, and there are
669 * possibly other Shared copies in the memory system. A downstream
670 * cache helps in orchestrating the invalidation of these copies
671 * by sending out the appropriate express snoops.
672 */
673 void setResponderHadWritable()
674 {
675 assert(cacheResponding());
676 assert(!responderHadWritable());
677 flags.set(RESPONDER_HAD_WRITABLE);
678 }
679 bool responderHadWritable() const
680 { return flags.isSet(RESPONDER_HAD_WRITABLE); }
681
682 /**
683 * Copy the reponse flags from an input packet to this packet. The
684 * reponse flags determine whether a responder has been found and
685 * the state at which the block will be at the destination.
686 *
687 * @pkt The packet that we will copy flags from
688 */
689 void copyResponderFlags(const PacketPtr pkt);
690
691 /**
692 * A writeback/writeclean cmd gets propagated further downstream
693 * by the receiver when the flag is set.
694 */
695 void setWriteThrough()
696 {
697 assert(cmd.isWrite() &&
698 (cmd.isEviction() || cmd == MemCmd::WriteClean));
699 flags.set(WRITE_THROUGH);
700 }
701 void clearWriteThrough() { flags.clear(WRITE_THROUGH); }
702 bool writeThrough() const { return flags.isSet(WRITE_THROUGH); }
703
704 /**
705 * Set when a request hits in a cache and the cache is not going
706 * to respond. This is used by the crossbar to coordinate
707 * responses for cache maintenance operations.
708 */
709 void setSatisfied()
710 {
711 assert(cmd.isClean());
712 assert(!flags.isSet(SATISFIED));
713 flags.set(SATISFIED);
714 }
715 bool satisfied() const { return flags.isSet(SATISFIED); }
716
717 void setSuppressFuncError() { flags.set(SUPPRESS_FUNC_ERROR); }
718 bool suppressFuncError() const { return flags.isSet(SUPPRESS_FUNC_ERROR); }
719 void setBlockCached() { flags.set(BLOCK_CACHED); }
720 bool isBlockCached() const { return flags.isSet(BLOCK_CACHED); }
721 void clearBlockCached() { flags.clear(BLOCK_CACHED); }
722
723 /**
724 * QoS Value getter
725 * Returns 0 if QoS value was never set (constructor default).
726 *
727 * @return QoS priority value of the packet
728 */
729 inline uint8_t qosValue() const { return _qosValue; }
730
731 /**
732 * QoS Value setter
733 * Interface for setting QoS priority value of the packet.
734 *
735 * @param qos_value QoS priority value
736 */
737 inline void qosValue(const uint8_t qos_value)
738 { _qosValue = qos_value; }
739
740 inline RequestorID requestorId() const { return req->requestorId(); }
741
742 // Network error conditions... encapsulate them as methods since
743 // their encoding keeps changing (from result field to command
744 // field, etc.)
745 void
746 setBadAddress()
747 {
748 assert(isResponse());
749 cmd = MemCmd::BadAddressError;
750 }
751
752 void copyError(Packet *pkt) { assert(pkt->isError()); cmd = pkt->cmd; }
753
754 Addr getAddr() const { assert(flags.isSet(VALID_ADDR)); return addr; }
755 /**
756 * Update the address of this packet mid-transaction. This is used
757 * by the address mapper to change an already set address to a new
758 * one based on the system configuration. It is intended to remap
759 * an existing address, so it asserts that the current address is
760 * valid.
761 */
762 void setAddr(Addr _addr) { assert(flags.isSet(VALID_ADDR)); addr = _addr; }
763
764 unsigned getSize() const { assert(flags.isSet(VALID_SIZE)); return size; }
765
766 /**
767 * Get address range to which this packet belongs.
768 *
769 * @return Address range of this packet.
770 */
771 AddrRange getAddrRange() const;
772
773 Addr getOffset(unsigned int blk_size) const
774 {
775 return getAddr() & Addr(blk_size - 1);
776 }
777
778 Addr getBlockAddr(unsigned int blk_size) const
779 {
780 return getAddr() & ~(Addr(blk_size - 1));
781 }
782
783 bool isSecure() const
784 {
785 assert(flags.isSet(VALID_ADDR));
786 return _isSecure;
787 }
788
789 /**
790 * Accessor function to atomic op.
791 */
792 AtomicOpFunctor *getAtomicOp() const { return req->getAtomicOpFunctor(); }
793 bool isAtomicOp() const { return req->isAtomic(); }
794
795 /**
796 * It has been determined that the SC packet should successfully update
797 * memory. Therefore, convert this SC packet to a normal write.
798 */
799 void
800 convertScToWrite()
801 {
802 assert(isLLSC());
803 assert(isWrite());
804 cmd = MemCmd::WriteReq;
805 }
806
807 /**
808 * When ruby is in use, Ruby will monitor the cache line and the
809 * phys memory should treat LL ops as normal reads.
810 */
811 void
812 convertLlToRead()
813 {
814 assert(isLLSC());
815 assert(isRead());
816 cmd = MemCmd::ReadReq;
817 }
818
819 /**
820 * Constructor. Note that a Request object must be constructed
821 * first, but the Requests's physical address and size fields need
822 * not be valid. The command must be supplied.
823 */
824 Packet(const RequestPtr &_req, MemCmd _cmd)
825 : cmd(_cmd), id((PacketId)_req.get()), req(_req),
826 data(nullptr), addr(0), _isSecure(false), size(0),
827 _qosValue(0),
828 htmReturnReason(HtmCacheFailure::NO_FAIL),
829 htmTransactionUid(0),
830 headerDelay(0), snoopDelay(0),
831 payloadDelay(0), senderState(NULL)
832 {
833 flags.clear();
834 if (req->hasPaddr()) {
835 addr = req->getPaddr();
836 flags.set(VALID_ADDR);
837 _isSecure = req->isSecure();
838 }
839
840 /**
841 * hardware transactional memory
842 *
843 * This is a bit of a hack!
844 * Technically the address of a HTM command is set to zero
845 * but is not valid. The reason that we pretend it's valid is
846 * to void the getAddr() function from failing. It would be
847 * cumbersome to add control flow in many places to check if the
848 * packet represents a HTM command before calling getAddr().
849 */
850 if (req->isHTMCmd()) {
851 flags.set(VALID_ADDR);
852 assert(addr == 0x0);
853 }
854 if (req->hasSize()) {
855 size = req->getSize();
856 flags.set(VALID_SIZE);
857 }
858 }
859
860 /**
861 * Alternate constructor if you are trying to create a packet with
862 * a request that is for a whole block, not the address from the
863 * req. this allows for overriding the size/addr of the req.
864 */
865 Packet(const RequestPtr &_req, MemCmd _cmd, int _blkSize, PacketId _id = 0)
866 : cmd(_cmd), id(_id ? _id : (PacketId)_req.get()), req(_req),
867 data(nullptr), addr(0), _isSecure(false),
868 _qosValue(0),
869 htmReturnReason(HtmCacheFailure::NO_FAIL),
870 htmTransactionUid(0),
871 headerDelay(0),
872 snoopDelay(0), payloadDelay(0), senderState(NULL)
873 {
874 flags.clear();
875 if (req->hasPaddr()) {
876 addr = req->getPaddr() & ~(_blkSize - 1);
877 flags.set(VALID_ADDR);
878 _isSecure = req->isSecure();
879 }
880 size = _blkSize;
881 flags.set(VALID_SIZE);
882 }
883
884 /**
885 * Alternate constructor for copying a packet. Copy all fields
886 * *except* if the original packet's data was dynamic, don't copy
887 * that, as we can't guarantee that the new packet's lifetime is
888 * less than that of the original packet. In this case the new
889 * packet should allocate its own data.
890 */
891 Packet(const PacketPtr pkt, bool clear_flags, bool alloc_data)
892 : cmd(pkt->cmd), id(pkt->id), req(pkt->req),
893 data(nullptr),
894 addr(pkt->addr), _isSecure(pkt->_isSecure), size(pkt->size),
895 bytesValid(pkt->bytesValid),
896 _qosValue(pkt->qosValue()),
897 htmReturnReason(HtmCacheFailure::NO_FAIL),
898 htmTransactionUid(0),
899 headerDelay(pkt->headerDelay),
900 snoopDelay(0),
901 payloadDelay(pkt->payloadDelay),
902 senderState(pkt->senderState)
903 {
904 if (!clear_flags)
905 flags.set(pkt->flags & COPY_FLAGS);
906
907 flags.set(pkt->flags & (VALID_ADDR|VALID_SIZE));
908
909 if (pkt->isHtmTransactional())
910 setHtmTransactional(pkt->getHtmTransactionUid());
911
912 if (pkt->htmTransactionFailedInCache()) {
913 setHtmTransactionFailedInCache(
914 pkt->getHtmTransactionFailedInCacheRC()
915 );
916 }
917
918 // should we allocate space for data, or not, the express
919 // snoops do not need to carry any data as they only serve to
920 // co-ordinate state changes
921 if (alloc_data) {
922 // even if asked to allocate data, if the original packet
923 // holds static data, then the sender will not be doing
924 // any memcpy on receiving the response, thus we simply
925 // carry the pointer forward
926 if (pkt->flags.isSet(STATIC_DATA)) {
927 data = pkt->data;
928 flags.set(STATIC_DATA);
929 } else {
930 allocate();
931 }
932 }
933 }
934
935 /**
936 * Generate the appropriate read MemCmd based on the Request flags.
937 */
938 static MemCmd
939 makeReadCmd(const RequestPtr &req)
940 {
941 if (req->isHTMCmd()) {
942 if (req->isHTMAbort())
943 return MemCmd::HTMAbort;
944 else
945 return MemCmd::HTMReq;
946 } else if (req->isLLSC())
947 return MemCmd::LoadLockedReq;
948 else if (req->isPrefetchEx())
949 return MemCmd::SoftPFExReq;
950 else if (req->isPrefetch())
951 return MemCmd::SoftPFReq;
952 else
953 return MemCmd::ReadReq;
954 }
955
956 /**
957 * Generate the appropriate write MemCmd based on the Request flags.
958 */
959 static MemCmd
960 makeWriteCmd(const RequestPtr &req)
961 {
962 if (req->isLLSC())
963 return MemCmd::StoreCondReq;
964 else if (req->isSwap() || req->isAtomic())
965 return MemCmd::SwapReq;
966 else if (req->isCacheInvalidate()) {
967 return req->isCacheClean() ? MemCmd::CleanInvalidReq :
968 MemCmd::InvalidateReq;
969 } else if (req->isCacheClean()) {
970 return MemCmd::CleanSharedReq;
971 } else
972 return MemCmd::WriteReq;
973 }
974
975 /**
976 * Constructor-like methods that return Packets based on Request objects.
977 * Fine-tune the MemCmd type if it's not a vanilla read or write.
978 */
979 static PacketPtr
980 createRead(const RequestPtr &req)
981 {
982 return new Packet(req, makeReadCmd(req));
983 }
984
985 static PacketPtr
986 createWrite(const RequestPtr &req)
987 {
988 return new Packet(req, makeWriteCmd(req));
989 }
990
991 /**
992 * clean up packet variables
993 */
994 ~Packet()
995 {
996 deleteData();
997 }
998
999 /**
1000 * Take a request packet and modify it in place to be suitable for
1001 * returning as a response to that request.
1002 */
1003 void
1004 makeResponse()
1005 {
1006 assert(needsResponse());
1007 assert(isRequest());
1008 cmd = cmd.responseCommand();
1009
1010 // responses are never express, even if the snoop that
1011 // triggered them was
1012 flags.clear(EXPRESS_SNOOP);
1013 }
1014
1015 void
1016 makeAtomicResponse()
1017 {
1018 makeResponse();
1019 }
1020
1021 void
1022 makeTimingResponse()
1023 {
1024 makeResponse();
1025 }
1026
1027 void
1028 setFunctionalResponseStatus(bool success)
1029 {
1030 if (!success) {
1031 if (isWrite()) {
1032 cmd = MemCmd::FunctionalWriteError;
1033 } else {
1034 cmd = MemCmd::FunctionalReadError;
1035 }
1036 }
1037 }
1038
1039 void
1040 setSize(unsigned size)
1041 {
1042 assert(!flags.isSet(VALID_SIZE));
1043
1044 this->size = size;
1045 flags.set(VALID_SIZE);
1046 }
1047
1048 /**
1049 * Check if packet corresponds to a given block-aligned address and
1050 * address space.
1051 *
1052 * @param addr The address to compare against.
1053 * @param is_secure Whether addr belongs to the secure address space.
1054 * @param blk_size Block size in bytes.
1055 * @return Whether packet matches description.
1056 */
1057 bool matchBlockAddr(const Addr addr, const bool is_secure,
1058 const int blk_size) const;
1059
1060 /**
1061 * Check if this packet refers to the same block-aligned address and
1062 * address space as another packet.
1063 *
1064 * @param pkt The packet to compare against.
1065 * @param blk_size Block size in bytes.
1066 * @return Whether packet matches description.
1067 */
1068 bool matchBlockAddr(const PacketPtr pkt, const int blk_size) const;
1069
1070 /**
1071 * Check if packet corresponds to a given address and address space.
1072 *
1073 * @param addr The address to compare against.
1074 * @param is_secure Whether addr belongs to the secure address space.
1075 * @return Whether packet matches description.
1076 */
1077 bool matchAddr(const Addr addr, const bool is_secure) const;
1078
1079 /**
1080 * Check if this packet refers to the same address and address space as
1081 * another packet.
1082 *
1083 * @param pkt The packet to compare against.
1084 * @return Whether packet matches description.
1085 */
1086 bool matchAddr(const PacketPtr pkt) const;
1087
1088 public:
1089 /**
1090 * @{
1091 * @name Data accessor mehtods
1092 */
1093
1094 /**
1095 * Set the data pointer to the following value that should not be
1096 * freed. Static data allows us to do a single memcpy even if
1097 * multiple packets are required to get from source to destination
1098 * and back. In essence the pointer is set calling dataStatic on
1099 * the original packet, and whenever this packet is copied and
1100 * forwarded the same pointer is passed on. When a packet
1101 * eventually reaches the destination holding the data, it is
1102 * copied once into the location originally set. On the way back
1103 * to the source, no copies are necessary.
1104 */
1105 template <typename T>
1106 void
1107 dataStatic(T *p)
1108 {
1109 assert(flags.noneSet(STATIC_DATA|DYNAMIC_DATA));
1110 data = (PacketDataPtr)p;
1111 flags.set(STATIC_DATA);
1112 }
1113
1114 /**
1115 * Set the data pointer to the following value that should not be
1116 * freed. This version of the function allows the pointer passed
1117 * to us to be const. To avoid issues down the line we cast the
1118 * constness away, the alternative would be to keep both a const
1119 * and non-const data pointer and cleverly choose between
1120 * them. Note that this is only allowed for static data.
1121 */
1122 template <typename T>
1123 void
1124 dataStaticConst(const T *p)
1125 {
1126 assert(flags.noneSet(STATIC_DATA|DYNAMIC_DATA));
1127 data = const_cast<PacketDataPtr>(p);
1128 flags.set(STATIC_DATA);
1129 }
1130
1131 /**
1132 * Set the data pointer to a value that should have delete []
1133 * called on it. Dynamic data is local to this packet, and as the
1134 * packet travels from source to destination, forwarded packets
1135 * will allocate their own data. When a packet reaches the final
1136 * destination it will populate the dynamic data of that specific
1137 * packet, and on the way back towards the source, memcpy will be
1138 * invoked in every step where a new packet was created e.g. in
1139 * the caches. Ultimately when the response reaches the source a
1140 * final memcpy is needed to extract the data from the packet
1141 * before it is deallocated.
1142 */
1143 template <typename T>
1144 void
1145 dataDynamic(T *p)
1146 {
1147 assert(flags.noneSet(STATIC_DATA|DYNAMIC_DATA));
1148 data = (PacketDataPtr)p;
1149 flags.set(DYNAMIC_DATA);
1150 }
1151
1152 /**
1153 * get a pointer to the data ptr.
1154 */
1155 template <typename T>
1156 T*
1157 getPtr()
1158 {
1159 assert(flags.isSet(STATIC_DATA|DYNAMIC_DATA));
1160 assert(!isMaskedWrite());
1161 return (T*)data;
1162 }
1163
1164 template <typename T>
1165 const T*
1166 getConstPtr() const
1167 {
1168 assert(flags.isSet(STATIC_DATA|DYNAMIC_DATA));
1169 return (const T*)data;
1170 }
1171
1172 /**
1173 * Get the data in the packet byte swapped from big endian to
1174 * host endian.
1175 */
1176 template <typename T>
1177 T getBE() const;
1178
1179 /**
1180 * Get the data in the packet byte swapped from little endian to
1181 * host endian.
1182 */
1183 template <typename T>
1184 T getLE() const;
1185
1186 /**
1187 * Get the data in the packet byte swapped from the specified
1188 * endianness.
1189 */
1190 template <typename T>
1191 T get(ByteOrder endian) const;
1192
1193 /** Set the value in the data pointer to v as big endian. */
1194 template <typename T>
1195 void setBE(T v);
1196
1197 /** Set the value in the data pointer to v as little endian. */
1198 template <typename T>
1199 void setLE(T v);
1200
1201 /**
1202 * Set the value in the data pointer to v using the specified
1203 * endianness.
1204 */
1205 template <typename T>
1206 void set(T v, ByteOrder endian);
1207
1208 /**
1209 * Get the data in the packet byte swapped from the specified
1210 * endianness and zero-extended to 64 bits.
1211 */
1212 uint64_t getUintX(ByteOrder endian) const;
1213
1214 /**
1215 * Set the value in the word w after truncating it to the length
1216 * of the packet and then byteswapping it to the desired
1217 * endianness.
1218 */
1219 void setUintX(uint64_t w, ByteOrder endian);
1220
1221 /**
1222 * Copy data into the packet from the provided pointer.
1223 */
1224 void
1225 setData(const uint8_t *p)
1226 {
1227 // we should never be copying data onto itself, which means we
1228 // must idenfity packets with static data, as they carry the
1229 // same pointer from source to destination and back
1230 assert(p != getPtr<uint8_t>() || flags.isSet(STATIC_DATA));
1231
1232 if (p != getPtr<uint8_t>()) {
1233 // for packet with allocated dynamic data, we copy data from
1234 // one to the other, e.g. a forwarded response to a response
1235 std::memcpy(getPtr<uint8_t>(), p, getSize());
1236 }
1237 }
1238
1239 /**
1240 * Copy data into the packet from the provided block pointer,
1241 * which is aligned to the given block size.
1242 */
1243 void
1244 setDataFromBlock(const uint8_t *blk_data, int blkSize)
1245 {
1246 setData(blk_data + getOffset(blkSize));
1247 }
1248
1249 /**
1250 * Copy data from the packet to the memory at the provided pointer.
1251 * @param p Pointer to which data will be copied.
1252 */
1253 void
1254 writeData(uint8_t *p) const
1255 {
1256 if (!isMaskedWrite()) {
1257 std::memcpy(p, getConstPtr<uint8_t>(), getSize());
1258 } else {
1259 assert(req->getByteEnable().size() == getSize());
1260 // Write only the enabled bytes
1261 const uint8_t *base = getConstPtr<uint8_t>();
1262 for (int i = 0; i < getSize(); i++) {
1263 if (req->getByteEnable()[i]) {
1264 p[i] = *(base + i);
1265 }
1266 // Disabled bytes stay untouched
1267 }
1268 }
1269 }
1270
1271 /**
1272 * Copy data from the packet to the provided block pointer, which
1273 * is aligned to the given block size.
1274 * @param blk_data Pointer to block to which data will be copied.
1275 * @param blkSize Block size in bytes.
1276 */
1277 void
1278 writeDataToBlock(uint8_t *blk_data, int blkSize) const
1279 {
1280 writeData(blk_data + getOffset(blkSize));
1281 }
1282
1283 /**
1284 * delete the data pointed to in the data pointer. Ok to call to
1285 * matter how data was allocted.
1286 */
1287 void
1288 deleteData()
1289 {
1290 if (flags.isSet(DYNAMIC_DATA))
1291 delete [] data;
1292
1293 flags.clear(STATIC_DATA|DYNAMIC_DATA);
1294 data = NULL;
1295 }
1296
1297 /** Allocate memory for the packet. */
1298 void
1299 allocate()
1300 {
1301 // if either this command or the response command has a data
1302 // payload, actually allocate space
1303 if (hasData() || hasRespData()) {
1304 assert(flags.noneSet(STATIC_DATA|DYNAMIC_DATA));
1305 flags.set(DYNAMIC_DATA);
1306 data = new uint8_t[getSize()];
1307 }
1308 }
1309
1310 /** @} */
1311
1312 /** Get the data in the packet without byte swapping. */
1313 template <typename T>
1314 T getRaw() const;
1315
1316 /** Set the value in the data pointer to v without byte swapping. */
1317 template <typename T>
1318 void setRaw(T v);
1319
1320 public:
1321 /**
1322 * Check a functional request against a memory value stored in
1323 * another packet (i.e. an in-transit request or
1324 * response). Returns true if the current packet is a read, and
1325 * the other packet provides the data, which is then copied to the
1326 * current packet. If the current packet is a write, and the other
1327 * packet intersects this one, then we update the data
1328 * accordingly.
1329 */
1330 bool
1331 trySatisfyFunctional(PacketPtr other)
1332 {
1333 if (other->isMaskedWrite()) {
1334 // Do not forward data if overlapping with a masked write
1335 if (_isSecure == other->isSecure() &&
1336 getAddr() <= (other->getAddr() + other->getSize() - 1) &&
1337 other->getAddr() <= (getAddr() + getSize() - 1)) {
1338 warn("Trying to check against a masked write, skipping."
1339 " (addr: 0x%x, other addr: 0x%x)", getAddr(),
1340 other->getAddr());
1341 }
1342 return false;
1343 }
1344 // all packets that are carrying a payload should have a valid
1345 // data pointer
1346 return trySatisfyFunctional(other, other->getAddr(), other->isSecure(),
1347 other->getSize(),
1348 other->hasData() ?
1349 other->getPtr<uint8_t>() : NULL);
1350 }
1351
1352 /**
1353 * Does the request need to check for cached copies of the same block
1354 * in the memory hierarchy above.
1355 **/
1356 bool
1357 mustCheckAbove() const
1358 {
1359 return cmd == MemCmd::HardPFReq || isEviction();
1360 }
1361
1362 /**
1363 * Is this packet a clean eviction, including both actual clean
1364 * evict packets, but also clean writebacks.
1365 */
1366 bool
1367 isCleanEviction() const
1368 {
1369 return cmd == MemCmd::CleanEvict || cmd == MemCmd::WritebackClean;
1370 }
1371
1372 bool
1373 isMaskedWrite() const
1374 {
1375 return (cmd == MemCmd::WriteReq && req->isMasked());
1376 }
1377
1378 /**
1379 * Check a functional request against a memory value represented
1380 * by a base/size pair and an associated data array. If the
1381 * current packet is a read, it may be satisfied by the memory
1382 * value. If the current packet is a write, it may update the
1383 * memory value.
1384 */
1385 bool
1386 trySatisfyFunctional(Printable *obj, Addr base, bool is_secure, int size,
1387 uint8_t *_data);
1388
1389 /**
1390 * Push label for PrintReq (safe to call unconditionally).
1391 */
1392 void
1393 pushLabel(const std::string &lbl)
1394 {
1395 if (isPrint())
1396 safe_cast<PrintReqState*>(senderState)->pushLabel(lbl);
1397 }
1398
1399 /**
1400 * Pop label for PrintReq (safe to call unconditionally).
1401 */
1402 void
1403 popLabel()
1404 {
1405 if (isPrint())
1406 safe_cast<PrintReqState*>(senderState)->popLabel();
1407 }
1408
1409 void print(std::ostream &o, int verbosity = 0,
1410 const std::string &prefix = "") const;
1411
1412 /**
1413 * A no-args wrapper of print(std::ostream...)
1414 * meant to be invoked from DPRINTFs
1415 * avoiding string overheads in fast mode
1416 * @return string with the request's type and start<->end addresses
1417 */
1418 std::string print() const;
1419
1420 // hardware transactional memory
1421
1422 /**
1423 * Communicates to the core that a packet was processed by the memory
1424 * subsystem while running in transactional mode.
1425 * It may happen that the transaction has failed at the memory subsystem
1426 * and this needs to be communicated to the core somehow.
1427 * This function decorates the response packet with flags to indicate
1428 * such a situation has occurred.
1429 */
1430 void makeHtmTransactionalReqResponse(const HtmCacheFailure ret_code);
1431
1432 /**
1433 * Stipulates that this packet/request originates in the CPU executing
1434 * in transactional mode, i.e. within a transaction.
1435 */
1436 void setHtmTransactional(uint64_t val);
1437
1438 /**
1439 * Returns whether or not this packet/request originates in the CPU
1440 * executing in transactional mode, i.e. within a transaction.
1441 */
1442 bool isHtmTransactional() const;
1443
1444 /**
1445 * If a packet/request originates in a CPU executing in transactional
1446 * mode, i.e. within a transaction, this function returns the unique ID
1447 * of the transaction. This is used for verifying correctness
1448 * and debugging.
1449 */
1450 uint64_t getHtmTransactionUid() const;
1451
1452 /**
1453 * Stipulates that this packet/request has returned from the
1454 * cache hierarchy in a failed transaction. The core is
1455 * notified like this.
1456 */
1457 void setHtmTransactionFailedInCache(const HtmCacheFailure ret_code);
1458
1459 /**
1460 * Returns whether or not this packet/request has returned from the
1461 * cache hierarchy in a failed transaction. The core is
1462 * notified liked this.
1463 */
1464 bool htmTransactionFailedInCache() const;
1465
1466 /**
1467 * If a packet/request has returned from the cache hierarchy in a
1468 * failed transaction, this function returns the failure reason.
1469 */
1470 HtmCacheFailure getHtmTransactionFailedInCacheRC() const;
1471 };
1472
1473 #endif //__MEM_PACKET_HH