2c2
< * Copyright (c) 2012-2013, 2015 ARM Limited
---
> * Copyright (c) 2012-2013, 2015-2016 ARM Limited
64c64
< MSHR::MSHR() : readyTime(0), _isUncacheable(false), downstreamPending(false),
---
> MSHR::MSHR() : downstreamPending(false),
67,70c67
< queue(NULL), order(0), blkAddr(0),
< blkSize(0), isSecure(false), inService(false),
< isForward(false), allocOnFill(false),
< data(NULL)
---
> isForward(false), allocOnFill(false)
74d70
<
242d237
< data = NULL;
256c251
< bool
---
> void
260,266d254
< if (isForwardNoResponse()) {
< // we just forwarded the request packet & don't expect a
< // response, so get rid of it
< assert(getNumTargets() == 1);
< popTarget();
< return true;
< }
277d264
< return false;
514a502,506
> bool
> MSHR::sendPacket(Cache &cache)
> {
> return cache.sendMSHRQueuePacket(this);
> }
524d515
< isForwardNoResponse() ? "ForwNoResp" : "",