62 #define SET1(a1) (1 << (a1)) 63 #define SET2(a1, a2) (SET1(a1) | SET1(a2)) 64 #define SET3(a1, a2, a3) (SET2(a1, a2) | SET1(a3)) 65 #define SET4(a1, a2, a3, a4) (SET3(a1, a2, a3) | SET1(a4)) 66 #define SET5(a1, a2, a3, a4, a5) (SET4(a1, a2, a3, a4) | SET1(a5)) 67 #define SET6(a1, a2, a3, a4, a5, a6) (SET5(a1, a2, a3, a4, a5) | SET1(a6)) 68 #define SET7(a1, a2, a3, a4, a5, a6, a7) (SET6(a1, a2, a3, a4, a5, a6) | \ 75 { 0, InvalidCmd,
"InvalidCmd" },
78 {
SET3(IsRead, IsRequest, NeedsResponse), ReadResp,
"ReadReq" },
80 {
SET3(IsRead, IsResponse, HasData), InvalidCmd,
"ReadResp" },
82 {
SET4(IsRead, IsResponse, HasData, IsInvalidate),
83 InvalidCmd,
"ReadRespWithInvalidate" },
85 {
SET5(IsWrite, NeedsWritable, IsRequest, NeedsResponse, HasData),
86 WriteResp,
"WriteReq" },
88 {
SET2(IsWrite, IsResponse), InvalidCmd,
"WriteResp" },
90 {
SET5(IsWrite, IsRequest, IsEviction, HasData, FromCache),
91 InvalidCmd,
"WritebackDirty" },
95 {
SET5(IsWrite, IsRequest, IsEviction, HasData, FromCache),
96 InvalidCmd,
"WritebackClean" },
99 {
SET4(IsWrite, IsRequest, HasData, FromCache), InvalidCmd,
"WriteClean" },
101 {
SET3(IsRequest, IsEviction, FromCache), InvalidCmd,
"CleanEvict" },
103 {
SET4(IsRead, IsRequest, IsSWPrefetch, NeedsResponse),
104 SoftPFResp,
"SoftPFReq" },
106 {
SET6(IsRead, NeedsWritable, IsInvalidate, IsRequest,
107 IsSWPrefetch, NeedsResponse), SoftPFResp,
"SoftPFExReq" },
109 {
SET5(IsRead, IsRequest, IsHWPrefetch, NeedsResponse, FromCache),
110 HardPFResp,
"HardPFReq" },
112 {
SET4(IsRead, IsResponse, IsSWPrefetch, HasData),
113 InvalidCmd,
"SoftPFResp" },
115 {
SET4(IsRead, IsResponse, IsHWPrefetch, HasData),
116 InvalidCmd,
"HardPFResp" },
118 {
SET5(IsWrite, NeedsWritable, IsRequest, NeedsResponse, HasData),
119 WriteResp,
"WriteLineReq" },
121 {
SET6(IsInvalidate, NeedsWritable, IsUpgrade, IsRequest, NeedsResponse,
123 UpgradeResp,
"UpgradeReq" },
125 {
SET7(IsInvalidate, NeedsWritable, IsUpgrade, IsLlsc,
126 IsRequest, NeedsResponse, FromCache),
127 UpgradeResp,
"SCUpgradeReq" },
129 {
SET2(IsUpgrade, IsResponse),
130 InvalidCmd,
"UpgradeResp" },
132 {
SET7(IsRead, NeedsWritable, IsInvalidate,
133 IsLlsc, IsRequest, NeedsResponse, FromCache),
134 UpgradeFailResp,
"SCUpgradeFailReq" },
137 {
SET3(IsRead, IsResponse, HasData),
138 InvalidCmd,
"UpgradeFailResp" },
142 {
SET6(IsRead, NeedsWritable, IsInvalidate, IsRequest, NeedsResponse,
144 ReadExResp,
"ReadExReq" },
147 {
SET3(IsRead, IsResponse, HasData),
148 InvalidCmd,
"ReadExResp" },
152 {
SET4(IsRead, IsRequest, NeedsResponse, FromCache),
153 ReadResp,
"ReadCleanReq" },
157 {
SET4(IsRead, IsRequest, NeedsResponse, FromCache),
158 ReadResp,
"ReadSharedReq" },
161 {
SET4(IsRead, IsLlsc, IsRequest, NeedsResponse),
162 ReadResp,
"LoadLockedReq" },
164 {
SET6(IsWrite, NeedsWritable, IsLlsc,
165 IsRequest, NeedsResponse, HasData),
166 StoreCondResp,
"StoreCondReq" },
168 {
SET6(IsWrite, NeedsWritable, IsLlsc,
169 IsRequest, NeedsResponse, HasData),
170 StoreCondResp,
"StoreCondFailReq" },
172 {
SET3(IsWrite, IsLlsc, IsResponse),
173 InvalidCmd,
"StoreCondResp" },
175 {
SET6(IsRead, IsWrite, NeedsWritable, IsRequest, HasData, NeedsResponse),
176 SwapResp,
"SwapReq" },
178 {
SET4(IsRead, IsWrite, IsResponse, HasData),
179 InvalidCmd,
"SwapResp" },
180 { 0, InvalidCmd,
"Deprecated_MessageReq" },
181 { 0, InvalidCmd,
"Deprecated_MessageResp" },
183 {
SET2(IsRequest, NeedsResponse), MemFenceResp,
"MemFenceReq"},
185 {
SET1(IsResponse), InvalidCmd,
"MemFenceResp"},
189 {
SET4(IsRequest, IsClean, NeedsResponse, FromCache),
190 CleanSharedResp,
"CleanSharedReq" },
194 {
SET2(IsResponse, IsClean), InvalidCmd,
"CleanSharedResp" },
197 {
SET5(IsRequest, IsInvalidate, IsClean, NeedsResponse, FromCache),
198 CleanInvalidResp,
"CleanInvalidReq" },
202 {
SET3(IsResponse, IsInvalidate, IsClean),
203 InvalidCmd,
"CleanInvalidResp" },
205 {
SET2(IsResponse, IsError), InvalidCmd,
"InvalidDestError" },
207 {
SET2(IsResponse, IsError), InvalidCmd,
"BadAddressError" },
209 {
SET3(IsRead, IsResponse, IsError), InvalidCmd,
"FunctionalReadError" },
211 {
SET3(IsWrite, IsResponse, IsError), InvalidCmd,
"FunctionalWriteError" },
213 {
SET2(IsRequest, IsPrint), InvalidCmd,
"PrintReq" },
215 {
SET3(IsRequest, IsFlush, NeedsWritable), InvalidCmd,
"FlushReq" },
217 {
SET5(IsInvalidate, IsRequest, NeedsWritable, NeedsResponse, FromCache),
218 InvalidateResp,
"InvalidateReq" },
220 {
SET2(IsInvalidate, IsResponse),
221 InvalidCmd,
"InvalidateResp" }
237 const Addr val_end = val_start + size - 1;
239 if (is_secure !=
_isSecure || func_start > val_end ||
240 val_start > func_end) {
258 const Addr val_offset = func_start > val_start ?
259 func_start - val_start : 0;
260 const Addr func_offset = func_start < val_start ?
261 val_start - func_start : 0;
262 const Addr overlap_size = std::min(val_end, func_end)+1 -
263 std::max(val_start, func_start);
266 std::memcpy(getPtr<uint8_t>() + func_offset,
276 bool all_bytes_valid =
true;
281 for (; all_bytes_valid && i < func_offset; ++
i)
285 for (i = func_offset; i < func_offset + overlap_size; ++
i)
289 for (; all_bytes_valid && i <
getSize(); ++
i)
292 return all_bytes_valid;
294 std::memcpy(_data + val_offset,
295 getConstPtr<uint8_t>() + func_offset,
318 assert(sender_state != NULL);
338 return (uint64_t)get<uint8_t>(endian);
340 return (uint64_t)get<uint16_t>(endian);
342 return (uint64_t)get<uint32_t>(endian);
344 return (uint64_t)get<uint64_t>(endian);
355 set<uint8_t>((uint8_t)w, endian);
358 set<uint16_t>((uint16_t)w, endian);
361 set<uint32_t>((uint32_t)w, endian);
364 set<uint64_t>((uint64_t)w, endian);
374 const std::string &prefix)
const 378 req->isSecure() ?
" (s)" :
"",
379 req->isInstFetch() ?
" IF" :
"",
380 req->isUncacheable() ?
" UC" :
"",
382 req->isToPOC() ?
" PoC" :
"",
383 req->isToPOU() ?
" PoU" :
"");
388 std::ostringstream str;
395 const int blk_size)
const 420 : curPrefixPtr(new
std::string(
"")),
os(_os), verbosity(_verbosity)
434 std::string *_prefix)
435 : label(_label), prefix(_prefix), labelPrinted(false)
441 const std::string &
prefix)
464 if (!i->labelPrinted) {
465 ccprintf(
os,
"%s%s\n", *(i->prefix), i->label);
466 i->labelPrinted =
true;
#define panic(...)
This implements a cprintf based panic() function.
void ccprintf(cp::Print &print)
AddrRange RangeSize(Addr start, Addr size)
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 ...
std::vector< bool > bytesValid
Track the bytes found that satisfy a functional read.
bool isExpressSnoop() const
Object used to maintain state of a PrintReq.
LabelStackEntry(const std::string &_label, std::string *_prefix)
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.
#define SET4(a1, a2, a3, a4)
bool cacheResponding() const
Overload hash function for BasicBlockRange type.
static const CommandInfo commandInfo[]
Array to map Command enum to associated info.
const std::string & curPrefix()
Returns the current line prefix.
void popLabel()
Pop a label off the label stack.
PrintReqState(std::ostream &os, int verbosity=0)
uint64_t getUintX(ByteOrder endian) const
Get the data in the packet byte swapped from the specified endianness and zero-extended to 64 bits...
Addr getBlockAddr(unsigned int blk_size) const
RequestPtr req
A pointer to the original request.
#define SET7(a1, a2, a3, a4, a5, a6, a7)
std::string print() const
A no-args wrapper of print(std::ostream...) meant to be invoked from DPRINTFs avoiding string overhea...
Structure that defines attributes and other data associated with a Command.
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.
SenderState * predecessor
bool trySatisfyFunctional(PacketPtr other)
Check a functional request against a memory value stored in another packet (i.e.
void printLabels()
Print all of the pending unprinted labels on the stack.
void copyResponderFlags(const PacketPtr pkt)
Copy the reponse flags from an input packet to this packet.
AddrRange getAddrRange() const
Get address range to which this packet belongs.
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.
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
std::string * curPrefixPtr
Abstract base class for objects which support being printed to a stream for debugging.
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.
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...
Declaration of the Packet class.
SenderState * senderState
This packet's sender state.
#define SET6(a1, a2, a3, a4, a5, a6)
#define SET5(a1, a2, a3, a4, a5)
virtual void print(std::ostream &os, int verbosity=0, const std::string &prefix="") const =0
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...
SenderState * popSenderState()
Pop the top of the state stack and return a pointer to it.
const std::string & cmdString() const
Return the string name of the cmd field (for debugging and tracing).
bool matchAddr(const Addr addr, const bool is_secure) const
Check if packet corresponds to a given address and address space.
void printObj(Printable *obj)
Print a Printable object to os, because it matched the address on a PrintReq.