packet.hh (10342:711eb0e64249) packet.hh (10343:a1eea45928e6)
1/*
2 * Copyright (c) 2012-2014 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 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 * Authors: Ron Dreslinski
42 * Steve Reinhardt
43 * Ali Saidi
44 * Andreas Hansson
45 */
46
47/**
48 * @file
49 * Declaration of the Packet class.
50 */
51
52#ifndef __MEM_PACKET_HH__
53#define __MEM_PACKET_HH__
54
55#include <bitset>
56#include <cassert>
57#include <list>
58
59#include "base/cast.hh"
60#include "base/compiler.hh"
61#include "base/flags.hh"
62#include "base/misc.hh"
63#include "base/printable.hh"
64#include "base/types.hh"
65#include "mem/request.hh"
66#include "sim/core.hh"
67
68class Packet;
69typedef Packet *PacketPtr;
70typedef uint8_t* PacketDataPtr;
71typedef std::list<PacketPtr> PacketList;
72
73class MemCmd
74{
75 friend class Packet;
76
77 public:
78 /**
79 * List of all commands associated with a packet.
80 */
81 enum Command
82 {
83 InvalidCmd,
84 ReadReq,
85 ReadResp,
86 ReadRespWithInvalidate,
87 WriteReq,
88 WriteResp,
89 Writeback,
90 SoftPFReq,
91 HardPFReq,
92 SoftPFResp,
93 HardPFResp,
94 // WriteInvalidateReq transactions used to be generated by the
95 // DMA ports when writing full blocks to memory, however, it
96 // is not used anymore since we put the I/O cache in place to
97 // deal with partial block writes. Hence, WriteInvalidateReq
98 // and WriteInvalidateResp are currently unused. The
99 // implication is that the I/O cache does read-exclusive
100 // operations on every full-cache-block DMA, and ultimately
101 // this needs to be fixed.
102 WriteInvalidateReq,
103 WriteInvalidateResp,
104 UpgradeReq,
105 SCUpgradeReq, // Special "weak" upgrade for StoreCond
106 UpgradeResp,
107 SCUpgradeFailReq, // Failed SCUpgradeReq in MSHR (never sent)
108 UpgradeFailResp, // Valid for SCUpgradeReq only
109 ReadExReq,
110 ReadExResp,
111 LoadLockedReq,
112 StoreCondReq,
113 StoreCondFailReq, // Failed StoreCondReq in MSHR (never sent)
114 StoreCondResp,
115 SwapReq,
116 SwapResp,
117 MessageReq,
118 MessageResp,
119 // Error responses
120 // @TODO these should be classified as responses rather than
121 // requests; coding them as requests initially for backwards
122 // compatibility
123 InvalidDestError, // packet dest field invalid
124 BadAddressError, // memory address invalid
125 FunctionalReadError, // unable to fulfill functional read
126 FunctionalWriteError, // unable to fulfill functional write
127 // Fake simulator-only commands
128 PrintReq, // Print state matching address
129 FlushReq, //request for a cache flush
130 InvalidationReq, // request for address to be invalidated from lsq
131 NUM_MEM_CMDS
132 };
133
134 private:
135 /**
136 * List of command attributes.
137 */
138 enum Attribute
139 {
140 IsRead, //!< Data flows from responder to requester
141 IsWrite, //!< Data flows from requester to responder
142 IsUpgrade,
143 IsInvalidate,
144 NeedsExclusive, //!< Requires exclusive copy to complete in-cache
145 IsRequest, //!< Issued by requester
146 IsResponse, //!< Issue by responder
147 NeedsResponse, //!< Requester needs response from target
148 IsSWPrefetch,
149 IsHWPrefetch,
150 IsLlsc, //!< Alpha/MIPS LL or SC access
151 HasData, //!< There is an associated payload
152 IsError, //!< Error response
153 IsPrint, //!< Print state matching address (for debugging)
154 IsFlush, //!< Flush the address from caches
155 NUM_COMMAND_ATTRIBUTES
156 };
157
158 /**
159 * Structure that defines attributes and other data associated
160 * with a Command.
161 */
162 struct CommandInfo
163 {
164 /// Set of attribute flags.
165 const std::bitset<NUM_COMMAND_ATTRIBUTES> attributes;
166 /// Corresponding response for requests; InvalidCmd if no
167 /// response is applicable.
168 const Command response;
169 /// String representation (for printing)
170 const std::string str;
171 };
172
173 /// Array to map Command enum to associated info.
174 static const CommandInfo commandInfo[];
175
176 private:
177
178 Command cmd;
179
180 bool
181 testCmdAttrib(MemCmd::Attribute attrib) const
182 {
183 return commandInfo[cmd].attributes[attrib] != 0;
184 }
185
186 public:
187
188 bool isRead() const { return testCmdAttrib(IsRead); }
189 bool isWrite() const { return testCmdAttrib(IsWrite); }
190 bool isUpgrade() const { return testCmdAttrib(IsUpgrade); }
191 bool isRequest() const { return testCmdAttrib(IsRequest); }
192 bool isResponse() const { return testCmdAttrib(IsResponse); }
193 bool needsExclusive() const { return testCmdAttrib(NeedsExclusive); }
194 bool needsResponse() const { return testCmdAttrib(NeedsResponse); }
195 bool isInvalidate() const { return testCmdAttrib(IsInvalidate); }
196 bool hasData() const { return testCmdAttrib(HasData); }
197 bool isReadWrite() const { return isRead() && isWrite(); }
198 bool isLLSC() const { return testCmdAttrib(IsLlsc); }
1/*
2 * Copyright (c) 2012-2014 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 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 * Authors: Ron Dreslinski
42 * Steve Reinhardt
43 * Ali Saidi
44 * Andreas Hansson
45 */
46
47/**
48 * @file
49 * Declaration of the Packet class.
50 */
51
52#ifndef __MEM_PACKET_HH__
53#define __MEM_PACKET_HH__
54
55#include <bitset>
56#include <cassert>
57#include <list>
58
59#include "base/cast.hh"
60#include "base/compiler.hh"
61#include "base/flags.hh"
62#include "base/misc.hh"
63#include "base/printable.hh"
64#include "base/types.hh"
65#include "mem/request.hh"
66#include "sim/core.hh"
67
68class Packet;
69typedef Packet *PacketPtr;
70typedef uint8_t* PacketDataPtr;
71typedef std::list<PacketPtr> PacketList;
72
73class MemCmd
74{
75 friend class Packet;
76
77 public:
78 /**
79 * List of all commands associated with a packet.
80 */
81 enum Command
82 {
83 InvalidCmd,
84 ReadReq,
85 ReadResp,
86 ReadRespWithInvalidate,
87 WriteReq,
88 WriteResp,
89 Writeback,
90 SoftPFReq,
91 HardPFReq,
92 SoftPFResp,
93 HardPFResp,
94 // WriteInvalidateReq transactions used to be generated by the
95 // DMA ports when writing full blocks to memory, however, it
96 // is not used anymore since we put the I/O cache in place to
97 // deal with partial block writes. Hence, WriteInvalidateReq
98 // and WriteInvalidateResp are currently unused. The
99 // implication is that the I/O cache does read-exclusive
100 // operations on every full-cache-block DMA, and ultimately
101 // this needs to be fixed.
102 WriteInvalidateReq,
103 WriteInvalidateResp,
104 UpgradeReq,
105 SCUpgradeReq, // Special "weak" upgrade for StoreCond
106 UpgradeResp,
107 SCUpgradeFailReq, // Failed SCUpgradeReq in MSHR (never sent)
108 UpgradeFailResp, // Valid for SCUpgradeReq only
109 ReadExReq,
110 ReadExResp,
111 LoadLockedReq,
112 StoreCondReq,
113 StoreCondFailReq, // Failed StoreCondReq in MSHR (never sent)
114 StoreCondResp,
115 SwapReq,
116 SwapResp,
117 MessageReq,
118 MessageResp,
119 // Error responses
120 // @TODO these should be classified as responses rather than
121 // requests; coding them as requests initially for backwards
122 // compatibility
123 InvalidDestError, // packet dest field invalid
124 BadAddressError, // memory address invalid
125 FunctionalReadError, // unable to fulfill functional read
126 FunctionalWriteError, // unable to fulfill functional write
127 // Fake simulator-only commands
128 PrintReq, // Print state matching address
129 FlushReq, //request for a cache flush
130 InvalidationReq, // request for address to be invalidated from lsq
131 NUM_MEM_CMDS
132 };
133
134 private:
135 /**
136 * List of command attributes.
137 */
138 enum Attribute
139 {
140 IsRead, //!< Data flows from responder to requester
141 IsWrite, //!< Data flows from requester to responder
142 IsUpgrade,
143 IsInvalidate,
144 NeedsExclusive, //!< Requires exclusive copy to complete in-cache
145 IsRequest, //!< Issued by requester
146 IsResponse, //!< Issue by responder
147 NeedsResponse, //!< Requester needs response from target
148 IsSWPrefetch,
149 IsHWPrefetch,
150 IsLlsc, //!< Alpha/MIPS LL or SC access
151 HasData, //!< There is an associated payload
152 IsError, //!< Error response
153 IsPrint, //!< Print state matching address (for debugging)
154 IsFlush, //!< Flush the address from caches
155 NUM_COMMAND_ATTRIBUTES
156 };
157
158 /**
159 * Structure that defines attributes and other data associated
160 * with a Command.
161 */
162 struct CommandInfo
163 {
164 /// Set of attribute flags.
165 const std::bitset<NUM_COMMAND_ATTRIBUTES> attributes;
166 /// Corresponding response for requests; InvalidCmd if no
167 /// response is applicable.
168 const Command response;
169 /// String representation (for printing)
170 const std::string str;
171 };
172
173 /// Array to map Command enum to associated info.
174 static const CommandInfo commandInfo[];
175
176 private:
177
178 Command cmd;
179
180 bool
181 testCmdAttrib(MemCmd::Attribute attrib) const
182 {
183 return commandInfo[cmd].attributes[attrib] != 0;
184 }
185
186 public:
187
188 bool isRead() const { return testCmdAttrib(IsRead); }
189 bool isWrite() const { return testCmdAttrib(IsWrite); }
190 bool isUpgrade() const { return testCmdAttrib(IsUpgrade); }
191 bool isRequest() const { return testCmdAttrib(IsRequest); }
192 bool isResponse() const { return testCmdAttrib(IsResponse); }
193 bool needsExclusive() const { return testCmdAttrib(NeedsExclusive); }
194 bool needsResponse() const { return testCmdAttrib(NeedsResponse); }
195 bool isInvalidate() const { return testCmdAttrib(IsInvalidate); }
196 bool hasData() const { return testCmdAttrib(HasData); }
197 bool isReadWrite() const { return isRead() && isWrite(); }
198 bool isLLSC() const { return testCmdAttrib(IsLlsc); }
199 bool isSWPrefetch() const { return testCmdAttrib(IsSWPrefetch); }
200 bool isHWPrefetch() const { return testCmdAttrib(IsHWPrefetch); }
201 bool isPrefetch() const { return testCmdAttrib(IsSWPrefetch) ||
202 testCmdAttrib(IsHWPrefetch); }
199 bool isError() const { return testCmdAttrib(IsError); }
200 bool isPrint() const { return testCmdAttrib(IsPrint); }
201 bool isFlush() const { return testCmdAttrib(IsFlush); }
202
203 const Command
204 responseCommand() const
205 {
206 return commandInfo[cmd].response;
207 }
208
209 /// Return the string to a cmd given by idx.
210 const std::string &toString() const { return commandInfo[cmd].str; }
211 int toInt() const { return (int)cmd; }
212
213 MemCmd(Command _cmd) : cmd(_cmd) { }
214 MemCmd(int _cmd) : cmd((Command)_cmd) { }
215 MemCmd() : cmd(InvalidCmd) { }
216
217 bool operator==(MemCmd c2) const { return (cmd == c2.cmd); }
218 bool operator!=(MemCmd c2) const { return (cmd != c2.cmd); }
219};
220
221/**
222 * A Packet is used to encapsulate a transfer between two objects in
223 * the memory system (e.g., the L1 and L2 cache). (In contrast, a
224 * single Request travels all the way from the requester to the
225 * ultimate destination and back, possibly being conveyed by several
226 * different Packets along the way.)
227 */
228class Packet : public Printable
229{
230 public:
231 typedef uint32_t FlagsType;
232 typedef ::Flags<FlagsType> Flags;
233
234 private:
235 static const FlagsType PUBLIC_FLAGS = 0x00000000;
236 static const FlagsType PRIVATE_FLAGS = 0x00007F0F;
237 static const FlagsType COPY_FLAGS = 0x0000000F;
238
239 static const FlagsType SHARED = 0x00000001;
240 // Special control flags
241 /// Special timing-mode atomic snoop for multi-level coherence.
242 static const FlagsType EXPRESS_SNOOP = 0x00000002;
243 /// Does supplier have exclusive copy?
244 /// Useful for multi-level coherence.
245 static const FlagsType SUPPLY_EXCLUSIVE = 0x00000004;
246 // Snoop response flags
247 static const FlagsType MEM_INHIBIT = 0x00000008;
248 /// Are the 'addr' and 'size' fields valid?
249 static const FlagsType VALID_ADDR = 0x00000100;
250 static const FlagsType VALID_SIZE = 0x00000200;
251 /// Is the data pointer set to a value that shouldn't be freed
252 /// when the packet is destroyed?
253 static const FlagsType STATIC_DATA = 0x00001000;
254 /// The data pointer points to a value that should be freed when
255 /// the packet is destroyed.
256 static const FlagsType DYNAMIC_DATA = 0x00002000;
257 /// the data pointer points to an array (thus delete []) needs to
258 /// be called on it rather than simply delete.
259 static const FlagsType ARRAY_DATA = 0x00004000;
260 /// suppress the error if this packet encounters a functional
261 /// access failure.
262 static const FlagsType SUPPRESS_FUNC_ERROR = 0x00008000;
263 // Signal prefetch squash through express snoop flag
264 static const FlagsType PREFETCH_SNOOP_SQUASH = 0x00010000;
265
266 Flags flags;
267
268 public:
269 typedef MemCmd::Command Command;
270
271 /// The command field of the packet.
272 MemCmd cmd;
273
274 /// A pointer to the original request.
275 RequestPtr req;
276
277 private:
278 /**
279 * A pointer to the data being transfered. It can be differnt
280 * sizes at each level of the heirarchy so it belongs in the
281 * packet, not request. This may or may not be populated when a
282 * responder recieves the packet. If not populated it memory should
283 * be allocated.
284 */
285 PacketDataPtr data;
286
287 /// The address of the request. This address could be virtual or
288 /// physical, depending on the system configuration.
289 Addr addr;
290
291 /// True if the request targets the secure memory space.
292 bool _isSecure;
293
294 /// The size of the request or transfer.
295 unsigned size;
296
297 /**
298 * Source port identifier set on a request packet to enable
299 * appropriate routing of the responses. The source port
300 * identifier is set by any multiplexing component, e.g. a bus, as
301 * the timing responses need this information to be routed back to
302 * the appropriate port at a later point in time. The field can be
303 * updated (over-written) as the request packet passes through
304 * additional multiplexing components, and it is their
305 * responsibility to remember the original source port identifier,
306 * for example by using an appropriate sender state. The latter is
307 * done in the cache and bridge.
308 */
309 PortID src;
310
311 /**
312 * Destination port identifier that is present on all response
313 * packets that passed through a multiplexing component as a
314 * request packet. The source port identifier is turned into a
315 * destination port identifier when the packet is turned into a
316 * response, and the destination is used, e.g. by the bus, to
317 * select the appropriate path through the interconnect.
318 */
319 PortID dest;
320
321 /**
322 * The original value of the command field. Only valid when the
323 * current command field is an error condition; in that case, the
324 * previous contents of the command field are copied here. This
325 * field is *not* set on non-error responses.
326 */
327 MemCmd origCmd;
328
329 /**
330 * These values specify the range of bytes found that satisfy a
331 * functional read.
332 */
333 uint16_t bytesValidStart;
334 uint16_t bytesValidEnd;
335
336 public:
337
338 /**
339 * The extra delay from seeing the packet until the first word is
340 * transmitted by the bus that provided it (if any). This delay is
341 * used to communicate the bus waiting time to the neighbouring
342 * object (e.g. a cache) that actually makes the packet wait. As
343 * the delay is relative, a 32-bit unsigned should be sufficient.
344 */
345 uint32_t busFirstWordDelay;
346
347 /**
348 * The extra delay from seeing the packet until the last word is
349 * transmitted by the bus that provided it (if any). Similar to
350 * the first word time, this is used to make up for the fact that
351 * the bus does not make the packet wait. As the delay is relative,
352 * a 32-bit unsigned should be sufficient.
353 */
354 uint32_t busLastWordDelay;
355
356 /**
357 * A virtual base opaque structure used to hold state associated
358 * with the packet (e.g., an MSHR), specific to a MemObject that
359 * sees the packet. A pointer to this state is returned in the
360 * packet's response so that the MemObject in question can quickly
361 * look up the state needed to process it. A specific subclass
362 * would be derived from this to carry state specific to a
363 * particular sending device.
364 *
365 * As multiple MemObjects may add their SenderState throughout the
366 * memory system, the SenderStates create a stack, where a
367 * MemObject can add a new Senderstate, as long as the
368 * predecessing SenderState is restored when the response comes
369 * back. For this reason, the predecessor should always be
370 * populated with the current SenderState of a packet before
371 * modifying the senderState field in the request packet.
372 */
373 struct SenderState
374 {
375 SenderState* predecessor;
376 SenderState() : predecessor(NULL) {}
377 virtual ~SenderState() {}
378 };
379
380 /**
381 * Object used to maintain state of a PrintReq. The senderState
382 * field of a PrintReq should always be of this type.
383 */
384 class PrintReqState : public SenderState
385 {
386 private:
387 /**
388 * An entry in the label stack.
389 */
390 struct LabelStackEntry
391 {
392 const std::string label;
393 std::string *prefix;
394 bool labelPrinted;
395 LabelStackEntry(const std::string &_label, std::string *_prefix);
396 };
397
398 typedef std::list<LabelStackEntry> LabelStack;
399 LabelStack labelStack;
400
401 std::string *curPrefixPtr;
402
403 public:
404 std::ostream &os;
405 const int verbosity;
406
407 PrintReqState(std::ostream &os, int verbosity = 0);
408 ~PrintReqState();
409
410 /**
411 * Returns the current line prefix.
412 */
413 const std::string &curPrefix() { return *curPrefixPtr; }
414
415 /**
416 * Push a label onto the label stack, and prepend the given
417 * prefix string onto the current prefix. Labels will only be
418 * printed if an object within the label's scope is printed.
419 */
420 void pushLabel(const std::string &lbl,
421 const std::string &prefix = " ");
422
423 /**
424 * Pop a label off the label stack.
425 */
426 void popLabel();
427
428 /**
429 * Print all of the pending unprinted labels on the
430 * stack. Called by printObj(), so normally not called by
431 * users unless bypassing printObj().
432 */
433 void printLabels();
434
435 /**
436 * Print a Printable object to os, because it matched the
437 * address on a PrintReq.
438 */
439 void printObj(Printable *obj);
440 };
441
442 /**
443 * This packet's sender state. Devices should use dynamic_cast<>
444 * to cast to the state appropriate to the sender. The intent of
445 * this variable is to allow a device to attach extra information
446 * to a request. A response packet must return the sender state
447 * that was attached to the original request (even if a new packet
448 * is created).
449 */
450 SenderState *senderState;
451
452 /**
453 * Push a new sender state to the packet and make the current
454 * sender state the predecessor of the new one. This should be
455 * prefered over direct manipulation of the senderState member
456 * variable.
457 *
458 * @param sender_state SenderState to push at the top of the stack
459 */
460 void pushSenderState(SenderState *sender_state);
461
462 /**
463 * Pop the top of the state stack and return a pointer to it. This
464 * assumes the current sender state is not NULL. This should be
465 * preferred over direct manipulation of the senderState member
466 * variable.
467 *
468 * @return The current top of the stack
469 */
470 SenderState *popSenderState();
471
472 /**
473 * Go through the sender state stack and return the first instance
474 * that is of type T (as determined by a dynamic_cast). If there
475 * is no sender state of type T, NULL is returned.
476 *
477 * @return The topmost state of type T
478 */
479 template <typename T>
480 T * findNextSenderState() const
481 {
482 T *t = NULL;
483 SenderState* sender_state = senderState;
484 while (t == NULL && sender_state != NULL) {
485 t = dynamic_cast<T*>(sender_state);
486 sender_state = sender_state->predecessor;
487 }
488 return t;
489 }
490
491 /// Return the string name of the cmd field (for debugging and
492 /// tracing).
493 const std::string &cmdString() const { return cmd.toString(); }
494
495 /// Return the index of this command.
496 inline int cmdToIndex() const { return cmd.toInt(); }
497
498 bool isRead() const { return cmd.isRead(); }
499 bool isWrite() const { return cmd.isWrite(); }
500 bool isUpgrade() const { return cmd.isUpgrade(); }
501 bool isRequest() const { return cmd.isRequest(); }
502 bool isResponse() const { return cmd.isResponse(); }
503 bool needsExclusive() const { return cmd.needsExclusive(); }
504 bool needsResponse() const { return cmd.needsResponse(); }
505 bool isInvalidate() const { return cmd.isInvalidate(); }
506 bool hasData() const { return cmd.hasData(); }
507 bool isReadWrite() const { return cmd.isReadWrite(); }
508 bool isLLSC() const { return cmd.isLLSC(); }
509 bool isError() const { return cmd.isError(); }
510 bool isPrint() const { return cmd.isPrint(); }
511 bool isFlush() const { return cmd.isFlush(); }
512
513 // Snoop flags
514 void assertMemInhibit() { flags.set(MEM_INHIBIT); }
515 bool memInhibitAsserted() const { return flags.isSet(MEM_INHIBIT); }
516 void assertShared() { flags.set(SHARED); }
517 bool sharedAsserted() const { return flags.isSet(SHARED); }
518
519 // Special control flags
520 void setExpressSnoop() { flags.set(EXPRESS_SNOOP); }
521 bool isExpressSnoop() const { return flags.isSet(EXPRESS_SNOOP); }
522 void setSupplyExclusive() { flags.set(SUPPLY_EXCLUSIVE); }
523 void clearSupplyExclusive() { flags.clear(SUPPLY_EXCLUSIVE); }
524 bool isSupplyExclusive() const { return flags.isSet(SUPPLY_EXCLUSIVE); }
525 void setSuppressFuncError() { flags.set(SUPPRESS_FUNC_ERROR); }
526 bool suppressFuncError() const { return flags.isSet(SUPPRESS_FUNC_ERROR); }
527 void setPrefetchSquashed() { flags.set(PREFETCH_SNOOP_SQUASH); }
528 bool prefetchSquashed() const { return flags.isSet(PREFETCH_SNOOP_SQUASH); }
529
530 // Network error conditions... encapsulate them as methods since
531 // their encoding keeps changing (from result field to command
532 // field, etc.)
533 void
534 setBadAddress()
535 {
536 assert(isResponse());
537 cmd = MemCmd::BadAddressError;
538 }
539
540 bool hadBadAddress() const { return cmd == MemCmd::BadAddressError; }
541 void copyError(Packet *pkt) { assert(pkt->isError()); cmd = pkt->cmd; }
542
543 bool isSrcValid() const { return src != InvalidPortID; }
544 /// Accessor function to get the source index of the packet.
545 PortID getSrc() const { assert(isSrcValid()); return src; }
546 /// Accessor function to set the source index of the packet.
547 void setSrc(PortID _src) { src = _src; }
548 /// Reset source field, e.g. to retransmit packet on different bus.
549 void clearSrc() { src = InvalidPortID; }
550
551 bool isDestValid() const { return dest != InvalidPortID; }
552 /// Accessor function for the destination index of the packet.
553 PortID getDest() const { assert(isDestValid()); return dest; }
554 /// Accessor function to set the destination index of the packet.
555 void setDest(PortID _dest) { dest = _dest; }
556 /// Reset destination field, e.g. to turn a response into a request again.
557 void clearDest() { dest = InvalidPortID; }
558
559 Addr getAddr() const { assert(flags.isSet(VALID_ADDR)); return addr; }
560 /**
561 * Update the address of this packet mid-transaction. This is used
562 * by the address mapper to change an already set address to a new
563 * one based on the system configuration. It is intended to remap
564 * an existing address, so it asserts that the current address is
565 * valid.
566 */
567 void setAddr(Addr _addr) { assert(flags.isSet(VALID_ADDR)); addr = _addr; }
568
569 unsigned getSize() const { assert(flags.isSet(VALID_SIZE)); return size; }
570 Addr getOffset(int blkSize) const { return getAddr() & (Addr)(blkSize - 1); }
571
572 bool isSecure() const
573 {
574 assert(flags.isSet(VALID_ADDR));
575 return _isSecure;
576 }
577
578 /**
579 * It has been determined that the SC packet should successfully update
580 * memory. Therefore, convert this SC packet to a normal write.
581 */
582 void
583 convertScToWrite()
584 {
585 assert(isLLSC());
586 assert(isWrite());
587 cmd = MemCmd::WriteReq;
588 }
589
590 /**
591 * When ruby is in use, Ruby will monitor the cache line and thus M5
592 * phys memory should treat LL ops as normal reads.
593 */
594 void
595 convertLlToRead()
596 {
597 assert(isLLSC());
598 assert(isRead());
599 cmd = MemCmd::ReadReq;
600 }
601
602 /**
603 * Constructor. Note that a Request object must be constructed
604 * first, but the Requests's physical address and size fields need
605 * not be valid. The command must be supplied.
606 */
607 Packet(Request *_req, MemCmd _cmd)
608 : cmd(_cmd), req(_req), data(NULL),
609 src(InvalidPortID), dest(InvalidPortID),
610 bytesValidStart(0), bytesValidEnd(0),
611 busFirstWordDelay(0), busLastWordDelay(0),
612 senderState(NULL)
613 {
614 if (req->hasPaddr()) {
615 addr = req->getPaddr();
616 flags.set(VALID_ADDR);
617 _isSecure = req->isSecure();
618 }
619 if (req->hasSize()) {
620 size = req->getSize();
621 flags.set(VALID_SIZE);
622 }
623 }
624
625 /**
626 * Alternate constructor if you are trying to create a packet with
627 * a request that is for a whole block, not the address from the
628 * req. this allows for overriding the size/addr of the req.
629 */
630 Packet(Request *_req, MemCmd _cmd, int _blkSize)
631 : cmd(_cmd), req(_req), data(NULL),
632 src(InvalidPortID), dest(InvalidPortID),
633 bytesValidStart(0), bytesValidEnd(0),
634 busFirstWordDelay(0), busLastWordDelay(0),
635 senderState(NULL)
636 {
637 if (req->hasPaddr()) {
638 addr = req->getPaddr() & ~(_blkSize - 1);
639 flags.set(VALID_ADDR);
640 _isSecure = req->isSecure();
641 }
642 size = _blkSize;
643 flags.set(VALID_SIZE);
644 }
645
646 /**
647 * Alternate constructor for copying a packet. Copy all fields
648 * *except* if the original packet's data was dynamic, don't copy
649 * that, as we can't guarantee that the new packet's lifetime is
650 * less than that of the original packet. In this case the new
651 * packet should allocate its own data.
652 */
653 Packet(Packet *pkt, bool clearFlags = false)
654 : cmd(pkt->cmd), req(pkt->req),
655 data(pkt->flags.isSet(STATIC_DATA) ? pkt->data : NULL),
656 addr(pkt->addr), _isSecure(pkt->_isSecure), size(pkt->size),
657 src(pkt->src), dest(pkt->dest),
658 bytesValidStart(pkt->bytesValidStart),
659 bytesValidEnd(pkt->bytesValidEnd),
660 busFirstWordDelay(pkt->busFirstWordDelay),
661 busLastWordDelay(pkt->busLastWordDelay),
662 senderState(pkt->senderState)
663 {
664 if (!clearFlags)
665 flags.set(pkt->flags & COPY_FLAGS);
666
667 flags.set(pkt->flags & (VALID_ADDR|VALID_SIZE));
668 flags.set(pkt->flags & STATIC_DATA);
669 }
670
671 /**
672 * Change the packet type based on request type.
673 */
674 void
675 refineCommand()
676 {
677 if (cmd == MemCmd::ReadReq) {
678 if (req->isLLSC()) {
679 cmd = MemCmd::LoadLockedReq;
203 bool isError() const { return testCmdAttrib(IsError); }
204 bool isPrint() const { return testCmdAttrib(IsPrint); }
205 bool isFlush() const { return testCmdAttrib(IsFlush); }
206
207 const Command
208 responseCommand() const
209 {
210 return commandInfo[cmd].response;
211 }
212
213 /// Return the string to a cmd given by idx.
214 const std::string &toString() const { return commandInfo[cmd].str; }
215 int toInt() const { return (int)cmd; }
216
217 MemCmd(Command _cmd) : cmd(_cmd) { }
218 MemCmd(int _cmd) : cmd((Command)_cmd) { }
219 MemCmd() : cmd(InvalidCmd) { }
220
221 bool operator==(MemCmd c2) const { return (cmd == c2.cmd); }
222 bool operator!=(MemCmd c2) const { return (cmd != c2.cmd); }
223};
224
225/**
226 * A Packet is used to encapsulate a transfer between two objects in
227 * the memory system (e.g., the L1 and L2 cache). (In contrast, a
228 * single Request travels all the way from the requester to the
229 * ultimate destination and back, possibly being conveyed by several
230 * different Packets along the way.)
231 */
232class Packet : public Printable
233{
234 public:
235 typedef uint32_t FlagsType;
236 typedef ::Flags<FlagsType> Flags;
237
238 private:
239 static const FlagsType PUBLIC_FLAGS = 0x00000000;
240 static const FlagsType PRIVATE_FLAGS = 0x00007F0F;
241 static const FlagsType COPY_FLAGS = 0x0000000F;
242
243 static const FlagsType SHARED = 0x00000001;
244 // Special control flags
245 /// Special timing-mode atomic snoop for multi-level coherence.
246 static const FlagsType EXPRESS_SNOOP = 0x00000002;
247 /// Does supplier have exclusive copy?
248 /// Useful for multi-level coherence.
249 static const FlagsType SUPPLY_EXCLUSIVE = 0x00000004;
250 // Snoop response flags
251 static const FlagsType MEM_INHIBIT = 0x00000008;
252 /// Are the 'addr' and 'size' fields valid?
253 static const FlagsType VALID_ADDR = 0x00000100;
254 static const FlagsType VALID_SIZE = 0x00000200;
255 /// Is the data pointer set to a value that shouldn't be freed
256 /// when the packet is destroyed?
257 static const FlagsType STATIC_DATA = 0x00001000;
258 /// The data pointer points to a value that should be freed when
259 /// the packet is destroyed.
260 static const FlagsType DYNAMIC_DATA = 0x00002000;
261 /// the data pointer points to an array (thus delete []) needs to
262 /// be called on it rather than simply delete.
263 static const FlagsType ARRAY_DATA = 0x00004000;
264 /// suppress the error if this packet encounters a functional
265 /// access failure.
266 static const FlagsType SUPPRESS_FUNC_ERROR = 0x00008000;
267 // Signal prefetch squash through express snoop flag
268 static const FlagsType PREFETCH_SNOOP_SQUASH = 0x00010000;
269
270 Flags flags;
271
272 public:
273 typedef MemCmd::Command Command;
274
275 /// The command field of the packet.
276 MemCmd cmd;
277
278 /// A pointer to the original request.
279 RequestPtr req;
280
281 private:
282 /**
283 * A pointer to the data being transfered. It can be differnt
284 * sizes at each level of the heirarchy so it belongs in the
285 * packet, not request. This may or may not be populated when a
286 * responder recieves the packet. If not populated it memory should
287 * be allocated.
288 */
289 PacketDataPtr data;
290
291 /// The address of the request. This address could be virtual or
292 /// physical, depending on the system configuration.
293 Addr addr;
294
295 /// True if the request targets the secure memory space.
296 bool _isSecure;
297
298 /// The size of the request or transfer.
299 unsigned size;
300
301 /**
302 * Source port identifier set on a request packet to enable
303 * appropriate routing of the responses. The source port
304 * identifier is set by any multiplexing component, e.g. a bus, as
305 * the timing responses need this information to be routed back to
306 * the appropriate port at a later point in time. The field can be
307 * updated (over-written) as the request packet passes through
308 * additional multiplexing components, and it is their
309 * responsibility to remember the original source port identifier,
310 * for example by using an appropriate sender state. The latter is
311 * done in the cache and bridge.
312 */
313 PortID src;
314
315 /**
316 * Destination port identifier that is present on all response
317 * packets that passed through a multiplexing component as a
318 * request packet. The source port identifier is turned into a
319 * destination port identifier when the packet is turned into a
320 * response, and the destination is used, e.g. by the bus, to
321 * select the appropriate path through the interconnect.
322 */
323 PortID dest;
324
325 /**
326 * The original value of the command field. Only valid when the
327 * current command field is an error condition; in that case, the
328 * previous contents of the command field are copied here. This
329 * field is *not* set on non-error responses.
330 */
331 MemCmd origCmd;
332
333 /**
334 * These values specify the range of bytes found that satisfy a
335 * functional read.
336 */
337 uint16_t bytesValidStart;
338 uint16_t bytesValidEnd;
339
340 public:
341
342 /**
343 * The extra delay from seeing the packet until the first word is
344 * transmitted by the bus that provided it (if any). This delay is
345 * used to communicate the bus waiting time to the neighbouring
346 * object (e.g. a cache) that actually makes the packet wait. As
347 * the delay is relative, a 32-bit unsigned should be sufficient.
348 */
349 uint32_t busFirstWordDelay;
350
351 /**
352 * The extra delay from seeing the packet until the last word is
353 * transmitted by the bus that provided it (if any). Similar to
354 * the first word time, this is used to make up for the fact that
355 * the bus does not make the packet wait. As the delay is relative,
356 * a 32-bit unsigned should be sufficient.
357 */
358 uint32_t busLastWordDelay;
359
360 /**
361 * A virtual base opaque structure used to hold state associated
362 * with the packet (e.g., an MSHR), specific to a MemObject that
363 * sees the packet. A pointer to this state is returned in the
364 * packet's response so that the MemObject in question can quickly
365 * look up the state needed to process it. A specific subclass
366 * would be derived from this to carry state specific to a
367 * particular sending device.
368 *
369 * As multiple MemObjects may add their SenderState throughout the
370 * memory system, the SenderStates create a stack, where a
371 * MemObject can add a new Senderstate, as long as the
372 * predecessing SenderState is restored when the response comes
373 * back. For this reason, the predecessor should always be
374 * populated with the current SenderState of a packet before
375 * modifying the senderState field in the request packet.
376 */
377 struct SenderState
378 {
379 SenderState* predecessor;
380 SenderState() : predecessor(NULL) {}
381 virtual ~SenderState() {}
382 };
383
384 /**
385 * Object used to maintain state of a PrintReq. The senderState
386 * field of a PrintReq should always be of this type.
387 */
388 class PrintReqState : public SenderState
389 {
390 private:
391 /**
392 * An entry in the label stack.
393 */
394 struct LabelStackEntry
395 {
396 const std::string label;
397 std::string *prefix;
398 bool labelPrinted;
399 LabelStackEntry(const std::string &_label, std::string *_prefix);
400 };
401
402 typedef std::list<LabelStackEntry> LabelStack;
403 LabelStack labelStack;
404
405 std::string *curPrefixPtr;
406
407 public:
408 std::ostream &os;
409 const int verbosity;
410
411 PrintReqState(std::ostream &os, int verbosity = 0);
412 ~PrintReqState();
413
414 /**
415 * Returns the current line prefix.
416 */
417 const std::string &curPrefix() { return *curPrefixPtr; }
418
419 /**
420 * Push a label onto the label stack, and prepend the given
421 * prefix string onto the current prefix. Labels will only be
422 * printed if an object within the label's scope is printed.
423 */
424 void pushLabel(const std::string &lbl,
425 const std::string &prefix = " ");
426
427 /**
428 * Pop a label off the label stack.
429 */
430 void popLabel();
431
432 /**
433 * Print all of the pending unprinted labels on the
434 * stack. Called by printObj(), so normally not called by
435 * users unless bypassing printObj().
436 */
437 void printLabels();
438
439 /**
440 * Print a Printable object to os, because it matched the
441 * address on a PrintReq.
442 */
443 void printObj(Printable *obj);
444 };
445
446 /**
447 * This packet's sender state. Devices should use dynamic_cast<>
448 * to cast to the state appropriate to the sender. The intent of
449 * this variable is to allow a device to attach extra information
450 * to a request. A response packet must return the sender state
451 * that was attached to the original request (even if a new packet
452 * is created).
453 */
454 SenderState *senderState;
455
456 /**
457 * Push a new sender state to the packet and make the current
458 * sender state the predecessor of the new one. This should be
459 * prefered over direct manipulation of the senderState member
460 * variable.
461 *
462 * @param sender_state SenderState to push at the top of the stack
463 */
464 void pushSenderState(SenderState *sender_state);
465
466 /**
467 * Pop the top of the state stack and return a pointer to it. This
468 * assumes the current sender state is not NULL. This should be
469 * preferred over direct manipulation of the senderState member
470 * variable.
471 *
472 * @return The current top of the stack
473 */
474 SenderState *popSenderState();
475
476 /**
477 * Go through the sender state stack and return the first instance
478 * that is of type T (as determined by a dynamic_cast). If there
479 * is no sender state of type T, NULL is returned.
480 *
481 * @return The topmost state of type T
482 */
483 template <typename T>
484 T * findNextSenderState() const
485 {
486 T *t = NULL;
487 SenderState* sender_state = senderState;
488 while (t == NULL && sender_state != NULL) {
489 t = dynamic_cast<T*>(sender_state);
490 sender_state = sender_state->predecessor;
491 }
492 return t;
493 }
494
495 /// Return the string name of the cmd field (for debugging and
496 /// tracing).
497 const std::string &cmdString() const { return cmd.toString(); }
498
499 /// Return the index of this command.
500 inline int cmdToIndex() const { return cmd.toInt(); }
501
502 bool isRead() const { return cmd.isRead(); }
503 bool isWrite() const { return cmd.isWrite(); }
504 bool isUpgrade() const { return cmd.isUpgrade(); }
505 bool isRequest() const { return cmd.isRequest(); }
506 bool isResponse() const { return cmd.isResponse(); }
507 bool needsExclusive() const { return cmd.needsExclusive(); }
508 bool needsResponse() const { return cmd.needsResponse(); }
509 bool isInvalidate() const { return cmd.isInvalidate(); }
510 bool hasData() const { return cmd.hasData(); }
511 bool isReadWrite() const { return cmd.isReadWrite(); }
512 bool isLLSC() const { return cmd.isLLSC(); }
513 bool isError() const { return cmd.isError(); }
514 bool isPrint() const { return cmd.isPrint(); }
515 bool isFlush() const { return cmd.isFlush(); }
516
517 // Snoop flags
518 void assertMemInhibit() { flags.set(MEM_INHIBIT); }
519 bool memInhibitAsserted() const { return flags.isSet(MEM_INHIBIT); }
520 void assertShared() { flags.set(SHARED); }
521 bool sharedAsserted() const { return flags.isSet(SHARED); }
522
523 // Special control flags
524 void setExpressSnoop() { flags.set(EXPRESS_SNOOP); }
525 bool isExpressSnoop() const { return flags.isSet(EXPRESS_SNOOP); }
526 void setSupplyExclusive() { flags.set(SUPPLY_EXCLUSIVE); }
527 void clearSupplyExclusive() { flags.clear(SUPPLY_EXCLUSIVE); }
528 bool isSupplyExclusive() const { return flags.isSet(SUPPLY_EXCLUSIVE); }
529 void setSuppressFuncError() { flags.set(SUPPRESS_FUNC_ERROR); }
530 bool suppressFuncError() const { return flags.isSet(SUPPRESS_FUNC_ERROR); }
531 void setPrefetchSquashed() { flags.set(PREFETCH_SNOOP_SQUASH); }
532 bool prefetchSquashed() const { return flags.isSet(PREFETCH_SNOOP_SQUASH); }
533
534 // Network error conditions... encapsulate them as methods since
535 // their encoding keeps changing (from result field to command
536 // field, etc.)
537 void
538 setBadAddress()
539 {
540 assert(isResponse());
541 cmd = MemCmd::BadAddressError;
542 }
543
544 bool hadBadAddress() const { return cmd == MemCmd::BadAddressError; }
545 void copyError(Packet *pkt) { assert(pkt->isError()); cmd = pkt->cmd; }
546
547 bool isSrcValid() const { return src != InvalidPortID; }
548 /// Accessor function to get the source index of the packet.
549 PortID getSrc() const { assert(isSrcValid()); return src; }
550 /// Accessor function to set the source index of the packet.
551 void setSrc(PortID _src) { src = _src; }
552 /// Reset source field, e.g. to retransmit packet on different bus.
553 void clearSrc() { src = InvalidPortID; }
554
555 bool isDestValid() const { return dest != InvalidPortID; }
556 /// Accessor function for the destination index of the packet.
557 PortID getDest() const { assert(isDestValid()); return dest; }
558 /// Accessor function to set the destination index of the packet.
559 void setDest(PortID _dest) { dest = _dest; }
560 /// Reset destination field, e.g. to turn a response into a request again.
561 void clearDest() { dest = InvalidPortID; }
562
563 Addr getAddr() const { assert(flags.isSet(VALID_ADDR)); return addr; }
564 /**
565 * Update the address of this packet mid-transaction. This is used
566 * by the address mapper to change an already set address to a new
567 * one based on the system configuration. It is intended to remap
568 * an existing address, so it asserts that the current address is
569 * valid.
570 */
571 void setAddr(Addr _addr) { assert(flags.isSet(VALID_ADDR)); addr = _addr; }
572
573 unsigned getSize() const { assert(flags.isSet(VALID_SIZE)); return size; }
574 Addr getOffset(int blkSize) const { return getAddr() & (Addr)(blkSize - 1); }
575
576 bool isSecure() const
577 {
578 assert(flags.isSet(VALID_ADDR));
579 return _isSecure;
580 }
581
582 /**
583 * It has been determined that the SC packet should successfully update
584 * memory. Therefore, convert this SC packet to a normal write.
585 */
586 void
587 convertScToWrite()
588 {
589 assert(isLLSC());
590 assert(isWrite());
591 cmd = MemCmd::WriteReq;
592 }
593
594 /**
595 * When ruby is in use, Ruby will monitor the cache line and thus M5
596 * phys memory should treat LL ops as normal reads.
597 */
598 void
599 convertLlToRead()
600 {
601 assert(isLLSC());
602 assert(isRead());
603 cmd = MemCmd::ReadReq;
604 }
605
606 /**
607 * Constructor. Note that a Request object must be constructed
608 * first, but the Requests's physical address and size fields need
609 * not be valid. The command must be supplied.
610 */
611 Packet(Request *_req, MemCmd _cmd)
612 : cmd(_cmd), req(_req), data(NULL),
613 src(InvalidPortID), dest(InvalidPortID),
614 bytesValidStart(0), bytesValidEnd(0),
615 busFirstWordDelay(0), busLastWordDelay(0),
616 senderState(NULL)
617 {
618 if (req->hasPaddr()) {
619 addr = req->getPaddr();
620 flags.set(VALID_ADDR);
621 _isSecure = req->isSecure();
622 }
623 if (req->hasSize()) {
624 size = req->getSize();
625 flags.set(VALID_SIZE);
626 }
627 }
628
629 /**
630 * Alternate constructor if you are trying to create a packet with
631 * a request that is for a whole block, not the address from the
632 * req. this allows for overriding the size/addr of the req.
633 */
634 Packet(Request *_req, MemCmd _cmd, int _blkSize)
635 : cmd(_cmd), req(_req), data(NULL),
636 src(InvalidPortID), dest(InvalidPortID),
637 bytesValidStart(0), bytesValidEnd(0),
638 busFirstWordDelay(0), busLastWordDelay(0),
639 senderState(NULL)
640 {
641 if (req->hasPaddr()) {
642 addr = req->getPaddr() & ~(_blkSize - 1);
643 flags.set(VALID_ADDR);
644 _isSecure = req->isSecure();
645 }
646 size = _blkSize;
647 flags.set(VALID_SIZE);
648 }
649
650 /**
651 * Alternate constructor for copying a packet. Copy all fields
652 * *except* if the original packet's data was dynamic, don't copy
653 * that, as we can't guarantee that the new packet's lifetime is
654 * less than that of the original packet. In this case the new
655 * packet should allocate its own data.
656 */
657 Packet(Packet *pkt, bool clearFlags = false)
658 : cmd(pkt->cmd), req(pkt->req),
659 data(pkt->flags.isSet(STATIC_DATA) ? pkt->data : NULL),
660 addr(pkt->addr), _isSecure(pkt->_isSecure), size(pkt->size),
661 src(pkt->src), dest(pkt->dest),
662 bytesValidStart(pkt->bytesValidStart),
663 bytesValidEnd(pkt->bytesValidEnd),
664 busFirstWordDelay(pkt->busFirstWordDelay),
665 busLastWordDelay(pkt->busLastWordDelay),
666 senderState(pkt->senderState)
667 {
668 if (!clearFlags)
669 flags.set(pkt->flags & COPY_FLAGS);
670
671 flags.set(pkt->flags & (VALID_ADDR|VALID_SIZE));
672 flags.set(pkt->flags & STATIC_DATA);
673 }
674
675 /**
676 * Change the packet type based on request type.
677 */
678 void
679 refineCommand()
680 {
681 if (cmd == MemCmd::ReadReq) {
682 if (req->isLLSC()) {
683 cmd = MemCmd::LoadLockedReq;
684 } else if (req->isPrefetch()) {
685 cmd = MemCmd::SoftPFReq;
680 }
681 } else if (cmd == MemCmd::WriteReq) {
682 if (req->isLLSC()) {
683 cmd = MemCmd::StoreCondReq;
684 } else if (req->isSwap()) {
685 cmd = MemCmd::SwapReq;
686 }
687 }
688 }
689
690 /**
691 * Constructor-like methods that return Packets based on Request objects.
692 * Will call refineCommand() to fine-tune the Packet type if it's not a
693 * vanilla read or write.
694 */
695 static PacketPtr
696 createRead(Request *req)
697 {
698 PacketPtr pkt = new Packet(req, MemCmd::ReadReq);
699 pkt->refineCommand();
700 return pkt;
701 }
702
703 static PacketPtr
704 createWrite(Request *req)
705 {
706 PacketPtr pkt = new Packet(req, MemCmd::WriteReq);
707 pkt->refineCommand();
708 return pkt;
709 }
710
711 /**
712 * clean up packet variables
713 */
714 ~Packet()
715 {
716 // If this is a request packet for which there's no response,
717 // delete the request object here, since the requester will
718 // never get the chance.
719 if (req && isRequest() && !needsResponse())
720 delete req;
721 deleteData();
722 }
723
724 /**
725 * Reinitialize packet address and size from the associated
726 * Request object, and reset other fields that may have been
727 * modified by a previous transaction. Typically called when a
728 * statically allocated Request/Packet pair is reused for multiple
729 * transactions.
730 */
731 void
732 reinitFromRequest()
733 {
734 assert(req->hasPaddr());
735 flags = 0;
736 addr = req->getPaddr();
737 _isSecure = req->isSecure();
738 size = req->getSize();
739
740 src = InvalidPortID;
741 dest = InvalidPortID;
742 bytesValidStart = 0;
743 bytesValidEnd = 0;
744 busFirstWordDelay = 0;
745 busLastWordDelay = 0;
746
747 flags.set(VALID_ADDR|VALID_SIZE);
748 deleteData();
749 }
750
751 /**
752 * Take a request packet and modify it in place to be suitable for
753 * returning as a response to that request. The source field is
754 * turned into the destination, and subsequently cleared. Note
755 * that the latter is not necessary for atomic requests, but
756 * causes no harm as neither field is valid.
757 */
758 void
759 makeResponse()
760 {
761 assert(needsResponse());
762 assert(isRequest());
763 origCmd = cmd;
764 cmd = cmd.responseCommand();
765
766 // responses are never express, even if the snoop that
767 // triggered them was
768 flags.clear(EXPRESS_SNOOP);
769
770 dest = src;
771 clearSrc();
772 }
773
774 void
775 makeAtomicResponse()
776 {
777 makeResponse();
778 }
779
780 void
781 makeTimingResponse()
782 {
783 makeResponse();
784 }
785
786 void
787 setFunctionalResponseStatus(bool success)
788 {
789 if (!success) {
790 if (isWrite()) {
791 cmd = MemCmd::FunctionalWriteError;
792 } else {
793 cmd = MemCmd::FunctionalReadError;
794 }
795 }
796 }
797
798 void
799 setSize(unsigned size)
800 {
801 assert(!flags.isSet(VALID_SIZE));
802
803 this->size = size;
804 flags.set(VALID_SIZE);
805 }
806
807
808 /**
809 * Set the data pointer to the following value that should not be
810 * freed.
811 */
812 template <typename T>
813 void
814 dataStatic(T *p)
815 {
816 assert(flags.noneSet(STATIC_DATA|DYNAMIC_DATA|ARRAY_DATA));
817 data = (PacketDataPtr)p;
818 flags.set(STATIC_DATA);
819 }
820
821 /**
822 * Set the data pointer to a value that should have delete []
823 * called on it.
824 */
825 template <typename T>
826 void
827 dataDynamicArray(T *p)
828 {
829 assert(flags.noneSet(STATIC_DATA|DYNAMIC_DATA|ARRAY_DATA));
830 data = (PacketDataPtr)p;
831 flags.set(DYNAMIC_DATA|ARRAY_DATA);
832 }
833
834 /**
835 * set the data pointer to a value that should have delete called
836 * on it.
837 */
838 template <typename T>
839 void
840 dataDynamic(T *p)
841 {
842 assert(flags.noneSet(STATIC_DATA|DYNAMIC_DATA|ARRAY_DATA));
843 data = (PacketDataPtr)p;
844 flags.set(DYNAMIC_DATA);
845 }
846
847 /**
848 * get a pointer to the data ptr.
849 */
850 template <typename T>
851 T*
852 getPtr(bool null_ok = false)
853 {
854 assert(null_ok || flags.isSet(STATIC_DATA|DYNAMIC_DATA));
855 return (T*)data;
856 }
857
858 /**
859 * return the value of what is pointed to in the packet.
860 */
861 template <typename T>
862 T get();
863
864 /**
865 * set the value in the data pointer to v.
866 */
867 template <typename T>
868 void set(T v);
869
870 /**
871 * Copy data into the packet from the provided pointer.
872 */
873 void
874 setData(uint8_t *p)
875 {
876 if (p != getPtr<uint8_t>())
877 std::memcpy(getPtr<uint8_t>(), p, getSize());
878 }
879
880 /**
881 * Copy data into the packet from the provided block pointer,
882 * which is aligned to the given block size.
883 */
884 void
885 setDataFromBlock(uint8_t *blk_data, int blkSize)
886 {
887 setData(blk_data + getOffset(blkSize));
888 }
889
890 /**
891 * Copy data from the packet to the provided block pointer, which
892 * is aligned to the given block size.
893 */
894 void
895 writeData(uint8_t *p)
896 {
897 std::memcpy(p, getPtr<uint8_t>(), getSize());
898 }
899
900 /**
901 * Copy data from the packet to the memory at the provided pointer.
902 */
903 void
904 writeDataToBlock(uint8_t *blk_data, int blkSize)
905 {
906 writeData(blk_data + getOffset(blkSize));
907 }
908
909 /**
910 * delete the data pointed to in the data pointer. Ok to call to
911 * matter how data was allocted.
912 */
913 void
914 deleteData()
915 {
916 if (flags.isSet(ARRAY_DATA))
917 delete [] data;
918 else if (flags.isSet(DYNAMIC_DATA))
919 delete data;
920
921 flags.clear(STATIC_DATA|DYNAMIC_DATA|ARRAY_DATA);
922 data = NULL;
923 }
924
925 /** If there isn't data in the packet, allocate some. */
926 void
927 allocate()
928 {
929 if (data) {
930 assert(flags.isSet(STATIC_DATA|DYNAMIC_DATA));
931 return;
932 }
933
934 assert(flags.noneSet(STATIC_DATA|DYNAMIC_DATA));
935 flags.set(DYNAMIC_DATA|ARRAY_DATA);
936 data = new uint8_t[getSize()];
937 }
938
939 /**
940 * Check a functional request against a memory value represented
941 * by a base/size pair and an associated data array. If the
942 * functional request is a read, it may be satisfied by the memory
943 * value. If the functional request is a write, it may update the
944 * memory value.
945 */
946 bool checkFunctional(Printable *obj, Addr base, bool is_secure, int size,
947 uint8_t *data);
948
949 /**
950 * Check a functional request against a memory value stored in
951 * another packet (i.e. an in-transit request or response).
952 */
953 bool
954 checkFunctional(PacketPtr other)
955 {
956 uint8_t *data = other->hasData() ? other->getPtr<uint8_t>() : NULL;
957 return checkFunctional(other, other->getAddr(), other->isSecure(),
958 other->getSize(), data);
959 }
960
961 /**
962 * Push label for PrintReq (safe to call unconditionally).
963 */
964 void
965 pushLabel(const std::string &lbl)
966 {
967 if (isPrint())
968 safe_cast<PrintReqState*>(senderState)->pushLabel(lbl);
969 }
970
971 /**
972 * Pop label for PrintReq (safe to call unconditionally).
973 */
974 void
975 popLabel()
976 {
977 if (isPrint())
978 safe_cast<PrintReqState*>(senderState)->popLabel();
979 }
980
981 void print(std::ostream &o, int verbosity = 0,
982 const std::string &prefix = "") const;
983
984 /**
985 * A no-args wrapper of print(std::ostream...)
986 * meant to be invoked from DPRINTFs
987 * avoiding string overheads in fast mode
988 * @return string with the request's type and start<->end addresses
989 */
990 std::string print() const;
991};
992
993#endif //__MEM_PACKET_HH
686 }
687 } else if (cmd == MemCmd::WriteReq) {
688 if (req->isLLSC()) {
689 cmd = MemCmd::StoreCondReq;
690 } else if (req->isSwap()) {
691 cmd = MemCmd::SwapReq;
692 }
693 }
694 }
695
696 /**
697 * Constructor-like methods that return Packets based on Request objects.
698 * Will call refineCommand() to fine-tune the Packet type if it's not a
699 * vanilla read or write.
700 */
701 static PacketPtr
702 createRead(Request *req)
703 {
704 PacketPtr pkt = new Packet(req, MemCmd::ReadReq);
705 pkt->refineCommand();
706 return pkt;
707 }
708
709 static PacketPtr
710 createWrite(Request *req)
711 {
712 PacketPtr pkt = new Packet(req, MemCmd::WriteReq);
713 pkt->refineCommand();
714 return pkt;
715 }
716
717 /**
718 * clean up packet variables
719 */
720 ~Packet()
721 {
722 // If this is a request packet for which there's no response,
723 // delete the request object here, since the requester will
724 // never get the chance.
725 if (req && isRequest() && !needsResponse())
726 delete req;
727 deleteData();
728 }
729
730 /**
731 * Reinitialize packet address and size from the associated
732 * Request object, and reset other fields that may have been
733 * modified by a previous transaction. Typically called when a
734 * statically allocated Request/Packet pair is reused for multiple
735 * transactions.
736 */
737 void
738 reinitFromRequest()
739 {
740 assert(req->hasPaddr());
741 flags = 0;
742 addr = req->getPaddr();
743 _isSecure = req->isSecure();
744 size = req->getSize();
745
746 src = InvalidPortID;
747 dest = InvalidPortID;
748 bytesValidStart = 0;
749 bytesValidEnd = 0;
750 busFirstWordDelay = 0;
751 busLastWordDelay = 0;
752
753 flags.set(VALID_ADDR|VALID_SIZE);
754 deleteData();
755 }
756
757 /**
758 * Take a request packet and modify it in place to be suitable for
759 * returning as a response to that request. The source field is
760 * turned into the destination, and subsequently cleared. Note
761 * that the latter is not necessary for atomic requests, but
762 * causes no harm as neither field is valid.
763 */
764 void
765 makeResponse()
766 {
767 assert(needsResponse());
768 assert(isRequest());
769 origCmd = cmd;
770 cmd = cmd.responseCommand();
771
772 // responses are never express, even if the snoop that
773 // triggered them was
774 flags.clear(EXPRESS_SNOOP);
775
776 dest = src;
777 clearSrc();
778 }
779
780 void
781 makeAtomicResponse()
782 {
783 makeResponse();
784 }
785
786 void
787 makeTimingResponse()
788 {
789 makeResponse();
790 }
791
792 void
793 setFunctionalResponseStatus(bool success)
794 {
795 if (!success) {
796 if (isWrite()) {
797 cmd = MemCmd::FunctionalWriteError;
798 } else {
799 cmd = MemCmd::FunctionalReadError;
800 }
801 }
802 }
803
804 void
805 setSize(unsigned size)
806 {
807 assert(!flags.isSet(VALID_SIZE));
808
809 this->size = size;
810 flags.set(VALID_SIZE);
811 }
812
813
814 /**
815 * Set the data pointer to the following value that should not be
816 * freed.
817 */
818 template <typename T>
819 void
820 dataStatic(T *p)
821 {
822 assert(flags.noneSet(STATIC_DATA|DYNAMIC_DATA|ARRAY_DATA));
823 data = (PacketDataPtr)p;
824 flags.set(STATIC_DATA);
825 }
826
827 /**
828 * Set the data pointer to a value that should have delete []
829 * called on it.
830 */
831 template <typename T>
832 void
833 dataDynamicArray(T *p)
834 {
835 assert(flags.noneSet(STATIC_DATA|DYNAMIC_DATA|ARRAY_DATA));
836 data = (PacketDataPtr)p;
837 flags.set(DYNAMIC_DATA|ARRAY_DATA);
838 }
839
840 /**
841 * set the data pointer to a value that should have delete called
842 * on it.
843 */
844 template <typename T>
845 void
846 dataDynamic(T *p)
847 {
848 assert(flags.noneSet(STATIC_DATA|DYNAMIC_DATA|ARRAY_DATA));
849 data = (PacketDataPtr)p;
850 flags.set(DYNAMIC_DATA);
851 }
852
853 /**
854 * get a pointer to the data ptr.
855 */
856 template <typename T>
857 T*
858 getPtr(bool null_ok = false)
859 {
860 assert(null_ok || flags.isSet(STATIC_DATA|DYNAMIC_DATA));
861 return (T*)data;
862 }
863
864 /**
865 * return the value of what is pointed to in the packet.
866 */
867 template <typename T>
868 T get();
869
870 /**
871 * set the value in the data pointer to v.
872 */
873 template <typename T>
874 void set(T v);
875
876 /**
877 * Copy data into the packet from the provided pointer.
878 */
879 void
880 setData(uint8_t *p)
881 {
882 if (p != getPtr<uint8_t>())
883 std::memcpy(getPtr<uint8_t>(), p, getSize());
884 }
885
886 /**
887 * Copy data into the packet from the provided block pointer,
888 * which is aligned to the given block size.
889 */
890 void
891 setDataFromBlock(uint8_t *blk_data, int blkSize)
892 {
893 setData(blk_data + getOffset(blkSize));
894 }
895
896 /**
897 * Copy data from the packet to the provided block pointer, which
898 * is aligned to the given block size.
899 */
900 void
901 writeData(uint8_t *p)
902 {
903 std::memcpy(p, getPtr<uint8_t>(), getSize());
904 }
905
906 /**
907 * Copy data from the packet to the memory at the provided pointer.
908 */
909 void
910 writeDataToBlock(uint8_t *blk_data, int blkSize)
911 {
912 writeData(blk_data + getOffset(blkSize));
913 }
914
915 /**
916 * delete the data pointed to in the data pointer. Ok to call to
917 * matter how data was allocted.
918 */
919 void
920 deleteData()
921 {
922 if (flags.isSet(ARRAY_DATA))
923 delete [] data;
924 else if (flags.isSet(DYNAMIC_DATA))
925 delete data;
926
927 flags.clear(STATIC_DATA|DYNAMIC_DATA|ARRAY_DATA);
928 data = NULL;
929 }
930
931 /** If there isn't data in the packet, allocate some. */
932 void
933 allocate()
934 {
935 if (data) {
936 assert(flags.isSet(STATIC_DATA|DYNAMIC_DATA));
937 return;
938 }
939
940 assert(flags.noneSet(STATIC_DATA|DYNAMIC_DATA));
941 flags.set(DYNAMIC_DATA|ARRAY_DATA);
942 data = new uint8_t[getSize()];
943 }
944
945 /**
946 * Check a functional request against a memory value represented
947 * by a base/size pair and an associated data array. If the
948 * functional request is a read, it may be satisfied by the memory
949 * value. If the functional request is a write, it may update the
950 * memory value.
951 */
952 bool checkFunctional(Printable *obj, Addr base, bool is_secure, int size,
953 uint8_t *data);
954
955 /**
956 * Check a functional request against a memory value stored in
957 * another packet (i.e. an in-transit request or response).
958 */
959 bool
960 checkFunctional(PacketPtr other)
961 {
962 uint8_t *data = other->hasData() ? other->getPtr<uint8_t>() : NULL;
963 return checkFunctional(other, other->getAddr(), other->isSecure(),
964 other->getSize(), data);
965 }
966
967 /**
968 * Push label for PrintReq (safe to call unconditionally).
969 */
970 void
971 pushLabel(const std::string &lbl)
972 {
973 if (isPrint())
974 safe_cast<PrintReqState*>(senderState)->pushLabel(lbl);
975 }
976
977 /**
978 * Pop label for PrintReq (safe to call unconditionally).
979 */
980 void
981 popLabel()
982 {
983 if (isPrint())
984 safe_cast<PrintReqState*>(senderState)->popLabel();
985 }
986
987 void print(std::ostream &o, int verbosity = 0,
988 const std::string &prefix = "") const;
989
990 /**
991 * A no-args wrapper of print(std::ostream...)
992 * meant to be invoked from DPRINTFs
993 * avoiding string overheads in fast mode
994 * @return string with the request's type and start<->end addresses
995 */
996 std::string print() const;
997};
998
999#endif //__MEM_PACKET_HH