47 #ifndef __MEM_PACKET_HH__ 48 #define __MEM_PACKET_HH__ 259 COPY_FLAGS = 0x0000003F,
262 RESPONDER_FLAGS = 0x00000009,
266 HAS_SHARERS = 0x00000001,
270 EXPRESS_SNOOP = 0x00000002,
275 RESPONDER_HAD_WRITABLE = 0x00000004,
279 CACHE_RESPONDING = 0x00000008,
283 WRITE_THROUGH = 0x00000010,
287 SATISFIED = 0x00000020,
290 VALID_ADDR = 0x00000100,
291 VALID_SIZE = 0x00000200,
295 STATIC_DATA = 0x00001000,
299 DYNAMIC_DATA = 0x00002000,
303 SUPPRESS_FUNC_ERROR = 0x00008000,
307 BLOCK_CACHED = 0x00010000
437 const std::string &
curPrefix() {
return *curPrefixPtr; }
444 void pushLabel(
const std::string &lbl,
445 const std::string &prefix =
" ");
503 template <
typename T>
508 while (t == NULL && sender_state != NULL) {
509 t =
dynamic_cast<T*
>(sender_state);
556 getOffset(blk_size) == 0 && getSize() == blk_size;
582 assert(!flags.
isSet(CACHE_RESPONDING));
583 flags.
set(CACHE_RESPONDING);
641 assert(cacheResponding());
642 assert(!responderHadWritable());
643 flags.
set(RESPONDER_HAD_WRITABLE);
646 {
return flags.
isSet(RESPONDER_HAD_WRITABLE); }
655 void copyResponderFlags(
const PacketPtr pkt);
665 flags.
set(WRITE_THROUGH);
678 assert(!flags.
isSet(SATISFIED));
679 flags.
set(SATISFIED);
695 inline uint8_t
qosValue()
const {
return _qosValue; }
704 { _qosValue = qos_value; }
730 unsigned getSize()
const { assert(flags.
isSet(VALID_SIZE));
return size; }
741 return getAddr() &
Addr(blk_size - 1);
746 return getAddr() & ~(
Addr(blk_size - 1));
751 assert(flags.
isSet(VALID_ADDR));
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)
796 if (req->hasPaddr()) {
797 addr = req->getPaddr();
798 flags.
set(VALID_ADDR);
799 _isSecure = req->isSecure();
801 if (req->hasSize()) {
802 size = req->getSize();
803 flags.
set(VALID_SIZE);
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)
818 if (req->hasPaddr()) {
819 addr = req->getPaddr() & ~(_blkSize - 1);
820 flags.
set(VALID_ADDR);
821 _isSecure = req->isSecure();
824 flags.
set(VALID_SIZE);
835 : cmd(pkt->cmd), id(pkt->id), req(pkt->req),
837 addr(pkt->addr), _isSecure(pkt->_isSecure), size(pkt->size),
838 bytesValid(pkt->bytesValid),
839 _qosValue(pkt->qosValue()),
840 headerDelay(pkt->headerDelay),
842 payloadDelay(pkt->payloadDelay),
843 senderState(pkt->senderState)
848 flags.
set(pkt->
flags & (VALID_ADDR|VALID_SIZE));
860 flags.
set(STATIC_DATA);
875 else if (req->isPrefetchEx())
877 else if (req->isPrefetch())
891 else if (req->isSwap() || req->isAtomic())
893 else if (req->isCacheInvalidate()) {
896 }
else if (req->isCacheClean()) {
909 return new Packet(req, makeReadCmd(req));
915 return new Packet(req, makeWriteCmd(req));
939 flags.
clear(EXPRESS_SNOOP);
969 assert(!flags.
isSet(VALID_SIZE));
972 flags.
set(VALID_SIZE);
984 bool matchBlockAddr(
const Addr addr,
const bool is_secure,
985 const int blk_size)
const;
995 bool matchBlockAddr(
const PacketPtr pkt,
const int blk_size)
const;
1004 bool matchAddr(
const Addr addr,
const bool is_secure)
const;
1013 bool matchAddr(
const PacketPtr pkt)
const;
1032 template <
typename T>
1036 assert(flags.
noneSet(STATIC_DATA|DYNAMIC_DATA));
1038 flags.
set(STATIC_DATA);
1049 template <
typename T>
1053 assert(flags.
noneSet(STATIC_DATA|DYNAMIC_DATA));
1055 flags.
set(STATIC_DATA);
1070 template <
typename T>
1074 assert(flags.
noneSet(STATIC_DATA|DYNAMIC_DATA));
1076 flags.
set(DYNAMIC_DATA);
1082 template <
typename T>
1086 assert(flags.
isSet(STATIC_DATA|DYNAMIC_DATA));
1087 assert(!isMaskedWrite());
1091 template <
typename T>
1095 assert(flags.
isSet(STATIC_DATA|DYNAMIC_DATA));
1096 return (
const T*)
data;
1103 template <
typename T>
1110 template <
typename T>
1117 template <
typename T>
1121 template <
typename T>
1125 template <
typename T>
1132 template <
typename T>
1139 uint64_t getUintX(
ByteOrder endian)
const;
1157 assert(p != getPtr<uint8_t>() || flags.
isSet(STATIC_DATA));
1159 if (p != getPtr<uint8_t>()) {
1162 std::memcpy(getPtr<uint8_t>(), p, getSize());
1183 if (!isMaskedWrite()) {
1184 std::memcpy(p, getConstPtr<uint8_t>(), getSize());
1186 assert(req->getByteEnable().size() == getSize());
1188 const uint8_t *
base = getConstPtr<uint8_t>();
1189 for (
int i = 0;
i < getSize();
i++) {
1190 if (req->getByteEnable()[
i]) {
1207 writeData(blk_data +
getOffset(blkSize));
1217 if (flags.
isSet(DYNAMIC_DATA))
1220 flags.
clear(STATIC_DATA|DYNAMIC_DATA);
1230 if (
hasData() || hasRespData()) {
1231 assert(flags.
noneSet(STATIC_DATA|DYNAMIC_DATA));
1232 flags.
set(DYNAMIC_DATA);
1233 data =
new uint8_t[getSize()];
1240 template <
typename T>
1244 template <
typename T>
1262 if (_isSecure == other->
isSecure() &&
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(),
1273 return trySatisfyFunctional(other, other->
getAddr(), other->
isSecure(),
1276 other->
getPtr<uint8_t>() : NULL);
1336 void print(std::ostream &o,
int verbosity = 0,
1337 const std::string &prefix =
"")
const;
1345 std::string print()
const;
1348 #endif //__MEM_PACKET_HH Alpha/MIPS LL or SC access.
Requires writable copy to complete in-cache.
std::vector< bool > bytesValid
Track the bytes found that satisfy a functional read.
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.
bool isExpressSnoop() const
void setSize(unsigned size)
bool suppressFuncError() const
void setHasSharers()
On fills, the hasSharers flag is used by the caches in combination with the cacheResponding flag...
bool mustCheckAbove() const
Does the request need to check for cached copies of the same block in the memory hierarchy above...
Data flows from requester to responder.
T * findNextSenderState() const
Go through the sender state stack and return the first instance that is of type T (as determined by a...
There is an associated payload.
AtomicOpFunctor * getAtomicOp() const
Accessor function to atomic op.
bool testCmdAttrib(MemCmd::Attribute attrib) const
void setSuppressFuncError()
void qosValue(const uint8_t qos_value)
QoS Value setter Interface for setting QoS priority value of the packet.
Object used to maintain state of a PrintReq.
uint32_t snoopDelay
Keep track of the extra delay incurred by snooping upwards before sending a request down the memory s...
void makeTimingResponse()
Flush the address from caches.
bool isCleanEviction() const
Is this packet a clean eviction, including both actual clean evict packets, but also clean writebacks...
const std::string & toString() const
Return the string to a cmd given by idx.
Declaration of a request, the overall memory request consisting of the parts of the request that are ...
std::shared_ptr< Request > RequestPtr
::Flags< FlagsType > Flags
bool isSWPrefetch() const
static PacketPtr createWrite(const RequestPtr &req)
bool cacheResponding() const
Requester needs response from target.
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...
Cleans any existing dirty blocks.
static const CommandInfo commandInfo[]
Array to map Command enum to associated info.
const std::string & curPrefix()
Returns the current line prefix.
static MemCmd makeReadCmd(const RequestPtr &req)
Generate the appropriate read MemCmd based on the Request flags.
void pushLabel(const std::string &lbl)
Push label for PrintReq (safe to call unconditionally).
bool isInvalidate() const
T * getPtr()
get a pointer to the data ptr.
void setSatisfied()
Set when a request hits in a cache and the cache is not going to respond.
void dataStatic(T *p)
Set the data pointer to the following value that should not be freed.
bool needsWritable() const
Addr getBlockAddr(unsigned int blk_size) const
RequestPtr req
A pointer to the original request.
bool isBlockCached() const
void setFunctionalResponseStatus(bool success)
Structure that defines attributes and other data associated with a Command.
PacketDataPtr data
A pointer to the data being transferred.
The AddrRange class encapsulates an address range, and supports a number of tests to check if two ran...
An entry in the label stack.
unsigned size
The size of the request or transfer.
bool isWriteback() const
A writeback is an eviction that carries data.
void convertScToWrite()
It has been determined that the SC packet should successfully update memory.
bool needsResponse() const
uint32_t headerDelay
The extra delay from seeing the packet until the header is transmitted.
Addr getOffset(unsigned int blk_size) const
SenderState * predecessor
Attribute
List of command attributes.
void setData(const uint8_t *p)
Copy data into the packet from the provided pointer.
void makeAtomicResponse()
uint8_t qosValue() const
QoS Value getter Returns 0 if QoS value was never set (constructor default).
void deleteData()
delete the data pointed to in the data pointer.
bool trySatisfyFunctional(PacketPtr other)
Check a functional request against a memory value stored in another packet (i.e.
void popLabel()
Pop label for PrintReq (safe to call unconditionally).
bool needsWritable() const
bool writeThrough() const
bool isHWPrefetch() const
void dataStaticConst(const T *p)
Set the data pointer to the following value that should not be freed.
void writeData(uint8_t *p) const
Copy data from the packet to the memory at the provided pointer.
MasterID masterId() const
Addr getOffset(Addr addr)
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.
bool _isSecure
True if the request targets the secure memory space.
Addr addr
The address of the request.
friend class Packet
Packet probe point.
void convertLlToRead()
When ruby is in use, Ruby will monitor the cache line and the phys memory should treat LL ops as norm...
uint32_t payloadDelay
The extra pipelining delay from seeing the packet until the end of payload is transmitted by the comp...
static PacketPtr createRead(const RequestPtr &req)
Constructor-like methods that return Packets based on Request objects.
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
const std::bitset< NUM_COMMAND_ATTRIBUTES > attributes
Set of attribute flags.
Print state matching address (for debugging)
std::string * curPrefixPtr
Abstract base class for objects which support being printed to a stream for debugging.
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...
bool responderHadWritable() const
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.
static MemCmd makeWriteCmd(const RequestPtr &req)
Generate the appropriate write MemCmd based on the Request flags.
Command responseCommand() const
int cmdToIndex() const
Return the index of this command.
bool isMaskedWrite() const
void makeResponse()
Take a request packet and modify it in place to be suitable for returning as a response to that reque...
void setAddr(Addr _addr)
Update the address of this packet mid-transaction.
Packet(const RequestPtr &_req, MemCmd _cmd)
Constructor.
~Packet()
clean up packet variables
Data flows from responder to requester.
bool needsResponse() const
const Command response
Corresponding response for requests; InvalidCmd if no response is applicable.
bool hasData() const
Check if this particular packet type carries payload data.
SenderState * senderState
This packet's sender state.
MemCmd cmd
The command field of the 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...
std::list< PacketPtr > PacketList
bool operator==(MemCmd c2) const
const T * getConstPtr() const
void dataDynamic(T *p)
Set the data pointer to a value that should have delete [] called on it.
Request originated from a caching agent.
void copyError(Packet *pkt)
void setExpressSnoop()
The express snoop flag is used for two purposes.
Command
List of all commands associated with a packet.
bool isWholeLineWrite(unsigned blk_size)
const std::string & cmdString() const
Return the string name of the cmd field (for debugging and tracing).
Packet(const PacketPtr pkt, bool clear_flags, bool alloc_data)
Alternate constructor for copying a packet.
const std::string str
String representation (for printing)
bool isInvalidate() const
std::list< LabelStackEntry > LabelStack
bool operator!=(MemCmd c2) const
void allocate()
Allocate memory for the packet.
void setCacheResponding()
Snoop flags.
void setWriteThrough()
A writeback/writeclean cmd gets propagated further downstream by the receiver when the flag is set...