Go to the documentation of this file.
47 #ifndef __MEM_PACKET_HH__
48 #define __MEM_PACKET_HH__
52 #include <initializer_list>
180 static constexpr
unsigned long long
183 unsigned long long ret = 0;
184 for (
const auto &
attr: attrs)
185 ret |= (1ULL <<
attr);
204 Command _response,
const std::string &_str) :
513 const std::string &prefix =
" ");
571 template <
typename T>
576 while (
t == NULL && sender_state != NULL) {
577 t =
dynamic_cast<T*
>(sender_state);
870 if (
req->hasPaddr()) {
886 if (
req->isHTMCmd()) {
890 if (
req->hasSize()) {
911 if (
req->hasPaddr()) {
912 addr =
req->getPaddr() & ~(_blkSize - 1);
977 if (
req->isHTMCmd()) {
978 if (
req->isHTMAbort())
982 }
else if (
req->isLLSC())
984 else if (
req->isPrefetchEx())
986 else if (
req->isPrefetch())
988 else if (
req->isLockedRMW())
1002 else if (
req->isSwap() ||
req->isAtomic())
1004 else if (
req->isCacheInvalidate()) {
1007 }
else if (
req->isCacheClean()) {
1009 }
else if (
req->isLockedRMW()) {
1098 const int blk_size)
const;
1145 template <
typename T>
1162 template <
typename T>
1183 template <
typename T>
1195 template <
typename T>
1204 template <
typename T>
1209 return (
const T*)
data;
1216 template <
typename T>
1223 template <
typename T>
1230 template <
typename T>
1231 T
get(ByteOrder endian)
const;
1234 template <
typename T>
1238 template <
typename T>
1245 template <
typename T>
1246 void set(T
v, ByteOrder endian);
1252 uint64_t
getUintX(ByteOrder endian)
const;
1259 void setUintX(uint64_t
w, ByteOrder endian);
1272 if (
p != getPtr<uint8_t>()) {
1275 std::memcpy(getPtr<uint8_t>(),
p,
getSize());
1297 std::memcpy(
p, getConstPtr<uint8_t>(),
getSize());
1299 assert(
req->getByteEnable().size() ==
getSize());
1301 const uint8_t *
base = getConstPtr<uint8_t>();
1302 for (
unsigned int i = 0;
i <
getSize();
i++) {
1303 if (
req->getByteEnable()[
i]) {
1353 template <
typename T>
1357 template <
typename T>
1378 warn(
"Trying to check against a masked write, skipping."
1379 " (addr: 0x%x, other addr: 0x%x)",
getAddr(),
1389 other->
getPtr<uint8_t>() : NULL);
1436 safe_cast<PrintReqState*>(
senderState)->pushLabel(lbl);
1446 safe_cast<PrintReqState*>(
senderState)->popLabel();
1449 void print(std::ostream &o,
int verbosity = 0,
1450 const std::string &prefix =
"")
const;
1458 std::string
print()
const;
1515 #endif //__MEM_PACKET_HH
Addr getBlockAddr(unsigned int blk_size) const
static MemCmd makeWriteCmd(const RequestPtr &req)
Generate the appropriate write MemCmd based on the Request flags.
const std::string & cmdString() const
Return the string name of the cmd field (for debugging and tracing).
PrintReqState(std::ostream &os, int verbosity=0)
@ HasData
There is an associated payload.
void setFunctionalResponseStatus(bool success)
uint64_t getUintX(ByteOrder endian) const
Get the data in the packet byte swapped from the specified endianness and zero-extended to 64 bits.
void setRaw(T v)
Set the value in the data pointer to v without byte swapping.
Addr getOffset(unsigned int blk_size) const
@ STATIC_DATA
Is the data pointer set to a value that shouldn't be freed when the packet is destroyed?
unsigned size
The size of the request or transfer.
bool _isSecure
True if the request targets the secure memory space.
@ SUPPRESS_FUNC_ERROR
suppress the error if this packet encounters a functional access failure.
@ EXPRESS_SNOOP
Special timing-mode atomic snoop for multi-level coherence.
static const CommandInfo commandInfo[]
Array to map Command enum to associated info.
Attribute
List of command attributes.
bool isCleanEviction() const
Is this packet a clean eviction, including both actual clean evict packets, but also clean writebacks...
T * findNextSenderState() const
Go through the sender state stack and return the first instance that is of type T (as determined by a...
void setData(const uint8_t *p)
Copy data into the packet from the provided pointer.
bool hasData() const
Check if this particular packet type carries payload data.
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...
void set(Type mask)
Set all flag's bits matching the given mask.
RequestPtr req
A pointer to the original request.
Command responseCommand() const
void convertScToWrite()
It has been determined that the SC packet should successfully update memory.
@ IsFlush
Flush the address from caches.
void clear()
Clear all flag's bits.
PacketDataPtr data
A pointer to the data being transferred.
const std::string str
String representation (for printing)
bool writeThrough() const
uint64_t htmTransactionUid
A global unique identifier of the transaction.
static constexpr unsigned long long buildAttributes(std::initializer_list< Attribute > attrs)
uint8_t qosValue() const
QoS Value getter Returns 0 if QoS value was never set (constructor default).
void setCacheResponding()
Snoop flags.
bool needsResponse() const
bool isInvalidate() const
~Packet()
clean up packet variables
void setHtmTransactional(uint64_t val)
Stipulates that this packet/request originates in the CPU executing in transactional mode,...
bool cacheResponding() const
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.
Command
List of all commands associated with a packet.
void copyError(Packet *pkt)
void setWriteThrough()
A writeback/writeclean cmd gets propagated further downstream by the receiver when the flag is set.
static PacketPtr createWrite(const RequestPtr &req)
@ IsLlsc
Alpha/MIPS LL or SC access.
@ IsWrite
Data flows from requester to responder.
void makeAtomicResponse()
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.
@ IsRequest
Issued by requester.
bool operator==(MemCmd c2) const
uint32_t headerDelay
The extra delay from seeing the packet until the header is transmitted.
void setSatisfied()
Set when a request hits in a cache and the cache is not going to respond.
gem5::Flags< FlagsType > Flags
void printLabels()
Print all of the pending unprinted labels on the stack.
uint32_t snoopDelay
Keep track of the extra delay incurred by snooping upwards before sending a request down the memory s...
SenderState * predecessor
Packet(const RequestPtr &_req, MemCmd _cmd)
Constructor.
void convertLlToRead()
When ruby is in use, Ruby will monitor the cache line and the phys memory should treat LL ops as norm...
bool mustCheckAbove() const
Does the request need to check for cached copies of the same block in the memory hierarchy above.
Abstract base class for objects which support being printed to a stream for debugging.
AtomicOpFunctor * getAtomicOp() const
Accessor function to atomic op.
uint32_t payloadDelay
The extra pipelining delay from seeing the packet until the end of payload is transmitted by the comp...
std::string * curPrefixPtr
void dataStatic(T *p)
Set the data pointer to the following value that should not be freed.
const Command response
Corresponding response for requests; InvalidCmd if no response is applicable.
@ DYNAMIC_DATA
The data pointer points to a value that should be freed when the packet is destroyed.
bool needsWritable() const
@ NeedsWritable
Requires writable copy to complete in-cache.
T getRaw() const
Get the data in the packet without byte swapping.
RequestorID requestorId() const
bool isSet(Type mask) const
Verifies whether any bit matching the given mask is set.
T getBE() const
Get the data in the packet byte swapped from big endian to host endian.
std::list< PacketPtr > PacketList
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
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.
void setAddr(Addr _addr)
Update the address of this packet mid-transaction.
bool htmTransactionFailedInCache() const
Returns whether or not this packet/request has returned from the cache hierarchy in a failed transact...
ProbePointArg< PacketInfo > Packet
Packet probe point.
An entry in the label stack.
void qosValue(const uint8_t qos_value)
QoS Value setter Interface for setting QoS priority value of the packet.
HtmCacheFailure htmReturnReason
Holds the return status of the transaction.
std::shared_ptr< Request > RequestPtr
const T * getConstPtr() const
bool isHWPrefetch() const
void setBE(T v)
Set the value in the data pointer to v as big endian.
uint64_t getHtmTransactionUid() const
If a packet/request originates in a CPU executing in transactional mode, i.e.
bool testCmdAttrib(MemCmd::Attribute attrib) const
bool suppressFuncError() const
bool matchAddr(const Addr addr, const bool is_secure) const
Check if packet corresponds to a given address and address space.
std::list< LabelStackEntry > LabelStack
void setExpressSnoop()
The express snoop flag is used for two purposes.
const std::string & curPrefix()
Returns the current line prefix.
CommandInfo(std::initializer_list< Attribute > attrs, Command _response, const std::string &_str)
void makeHtmTransactionalReqResponse(const HtmCacheFailure ret_code)
Communicates to the core that a packet was processed by the memory subsystem while running in transac...
static MemCmd makeReadCmd(const RequestPtr &req)
Generate the appropriate read MemCmd based on the Request flags.
HtmCacheFailure getHtmTransactionFailedInCacheRC() const
If a packet/request has returned from the cache hierarchy in a failed transaction,...
void setResponderHadWritable()
On responding to a snoop request (which only happens for Modified or Owned lines),...
void pushLabel(const std::string &lbl)
Push label for PrintReq (safe to call unconditionally).
A virtual base opaque structure used to hold state associated with the packet (e.g....
MemCmd cmd
The command field of the packet.
@ IsPrint
Print state matching address (for debugging)
void deleteData()
delete the data pointed to in the data pointer.
void popLabel()
Pop label for PrintReq (safe to call unconditionally).
bool responderHadWritable() const
bool needsResponse() const
void writeData(uint8_t *p) const
Copy data from the packet to the memory at the provided pointer.
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
const std::bitset< NUM_COMMAND_ATTRIBUTES > attributes
Set of attribute flags.
SenderState * senderState
This packet's sender state.
SenderState * popSenderState()
Pop the top of the state stack and return a pointer to it.
const std::string & toString() const
Return the string to a cmd given by idx.
void printObj(Printable *obj)
Print a Printable object to os, because it matched the address on a PrintReq.
void dataStaticConst(const T *p)
Set the data pointer to the following value that should not be freed.
void setHasSharers()
On fills, the hasSharers flag is used by the caches in combination with the cacheResponding flag,...
LabelStackEntry(const std::string &_label, std::string *_prefix)
T get(ByteOrder endian) const
Get the data in the packet byte swapped from the specified endianness.
void makeTimingResponse()
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,...
void allocate()
Allocate memory for the packet.
bool isSWPrefetch() const
Packet(const PacketPtr pkt, bool clear_flags, bool alloc_data)
Alternate constructor for copying a packet.
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.
void makeResponse()
Take a request packet and modify it in place to be suitable for returning as a response to that reque...
void dataDynamic(T *p)
Set the data pointer to a value that should have delete [] called on it.
@ VALID_ADDR
Are the 'addr' and 'size' fields valid?
@ IsClean
Cleans any existing dirty blocks.
bool operator!=(MemCmd c2) const
@ IsResponse
Issue by responder.
T getLE() const
Get the data in the packet byte swapped from little endian to host endian.
Structure that defines attributes and other data associated with a Command.
bool trySatisfyFunctional(PacketPtr other)
Check a functional request against a memory value stored in another packet (i.e.
@ IsLockedRMW
x86 locked RMW access
bool isExpressSnoop() const
void setLE(T v)
Set the value in the data pointer to v as little endian.
void setHtmTransactionFailedInCache(const HtmCacheFailure ret_code)
Stipulates that this packet/request has returned from the cache hierarchy in a failed transaction.
bool isWriteback() const
A writeback is an eviction that carries data.
bool isMaskedWrite() const
void popLabel()
Pop a label off the label stack.
bool isHtmTransactional() const
Returns whether or not this packet/request originates in the CPU executing in transactional mode,...
The AddrRange class encapsulates an address range, and supports a number of tests to check if two ran...
void copyResponderFlags(const PacketPtr pkt)
Copy the reponse flags from an input packet to this packet.
std::vector< bool > bytesValid
Track the bytes found that satisfy a functional read.
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
@ FromCache
Request originated from a caching agent.
static PacketPtr createRead(const RequestPtr &req)
Constructor-like methods that return Packets based on Request objects.
AddrRange getAddrRange() const
Get address range to which this packet belongs.
void set(T v, ByteOrder endian)
Set the value in the data pointer to v using the specified endianness.
std::string print() const
A no-args wrapper of print(std::ostream...) meant to be invoked from DPRINTFs avoiding string overhea...
int cmdToIndex() const
Return the index of this command.
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 ...
@ NeedsResponse
Requester needs response from target.
void setSuppressFuncError()
bool isBlockCached() const
bool isWholeLineWrite(unsigned blk_size)
@ IsRead
Data flows from responder to requester.
bool needsWritable() const
bool noneSet(Type mask) const
Verifies whether no bits matching the given mask are set.
@ RESPONDER_HAD_WRITABLE
Allow a responding cache to inform the cache hierarchy that it had a writable copy before responding.
bool isInvalidate() const
Addr addr
The address of the request.
T * getPtr()
get a pointer to the data ptr.
Object used to maintain state of a PrintReq.
void setSize(unsigned size)
Generated on Wed Jul 13 2022 10:39:24 for gem5 by doxygen 1.8.17