summaryrefslogtreecommitdiff
path: root/src/mem/packet.hh
diff options
context:
space:
mode:
authorAndreas Hansson <andreas.hansson@arm.com>2014-12-02 06:07:50 -0500
committerAndreas Hansson <andreas.hansson@arm.com>2014-12-02 06:07:50 -0500
commita2ee51f631199f629f36baf2f59161e25be84bdc (patch)
treeaacd7da2e8084da4990d235bfc959271511d402f /src/mem/packet.hh
parentfa60d5cf272c86cc6819e89984eb94b05dcfb605 (diff)
downloadgem5-a2ee51f631199f629f36baf2f59161e25be84bdc.tar.xz
mem: Make the requests carried by packets const
This adds a basic level of sanity checking to the packet by ensuring that a request is not modified once the packet is created. The only issue that had to be worked around is the relaying of software-prefetches in the cache. The specific situation is now solved by first copying the request, and then creating a new packet accordingly.
Diffstat (limited to 'src/mem/packet.hh')
-rw-r--r--src/mem/packet.hh39
1 files changed, 6 insertions, 33 deletions
diff --git a/src/mem/packet.hh b/src/mem/packet.hh
index b212de7c8..357134c75 100644
--- a/src/mem/packet.hh
+++ b/src/mem/packet.hh
@@ -265,7 +265,7 @@ class Packet : public Printable
MemCmd cmd;
/// A pointer to the original request.
- RequestPtr req;
+ const RequestPtr req;
private:
/**
@@ -600,7 +600,7 @@ class Packet : public Printable
* first, but the Requests's physical address and size fields need
* not be valid. The command must be supplied.
*/
- Packet(Request *_req, MemCmd _cmd)
+ Packet(const RequestPtr _req, MemCmd _cmd)
: cmd(_cmd), req(_req), data(nullptr), addr(0), _isSecure(false),
size(0), src(InvalidPortID), dest(InvalidPortID),
bytesValidStart(0), bytesValidEnd(0),
@@ -623,7 +623,7 @@ class Packet : public Printable
* a request that is for a whole block, not the address from the
* req. this allows for overriding the size/addr of the req.
*/
- Packet(Request *_req, MemCmd _cmd, int _blkSize)
+ Packet(const RequestPtr _req, MemCmd _cmd, int _blkSize)
: cmd(_cmd), req(_req), data(nullptr), addr(0), _isSecure(false),
src(InvalidPortID), dest(InvalidPortID),
bytesValidStart(0), bytesValidEnd(0),
@@ -646,7 +646,7 @@ class Packet : public Printable
* less than that of the original packet. In this case the new
* packet should allocate its own data.
*/
- Packet(Packet *pkt, bool clearFlags = false)
+ Packet(PacketPtr pkt, bool clearFlags = false)
: cmd(pkt->cmd), req(pkt->req),
data(pkt->flags.isSet(STATIC_DATA) ? pkt->data : NULL),
addr(pkt->addr), _isSecure(pkt->_isSecure), size(pkt->size),
@@ -696,7 +696,7 @@ class Packet : public Printable
* vanilla read or write.
*/
static PacketPtr
- createRead(Request *req)
+ createRead(const RequestPtr req)
{
PacketPtr pkt = new Packet(req, MemCmd::ReadReq);
pkt->refineCommand();
@@ -704,7 +704,7 @@ class Packet : public Printable
}
static PacketPtr
- createWrite(Request *req)
+ createWrite(const RequestPtr req)
{
PacketPtr pkt = new Packet(req, MemCmd::WriteReq);
pkt->refineCommand();
@@ -725,33 +725,6 @@ class Packet : public Printable
}
/**
- * Reinitialize packet address and size from the associated
- * Request object, and reset other fields that may have been
- * modified by a previous transaction. Typically called when a
- * statically allocated Request/Packet pair is reused for multiple
- * transactions.
- */
- void
- reinitFromRequest()
- {
- assert(req->hasPaddr());
- flags = 0;
- addr = req->getPaddr();
- _isSecure = req->isSecure();
- size = req->getSize();
-
- src = InvalidPortID;
- dest = InvalidPortID;
- bytesValidStart = 0;
- bytesValidEnd = 0;
- firstWordDelay = 0;
- lastWordDelay = 0;
-
- flags.set(VALID_ADDR|VALID_SIZE);
- deleteData();
- }
-
- /**
* Take a request packet and modify it in place to be suitable for
* returning as a response to that request. The source field is
* turned into the destination, and subsequently cleared. Note