lsq_unit_impl.hh (9944:4ff1c5c6dcbc) lsq_unit_impl.hh (10020:2f33cb012383)
1
2/*
3 * Copyright (c) 2010-2012 ARM Limited
4 * All rights reserved
5 *
6 * The license below extends only to copyright in the software and shall
7 * not be construed as granting a license to any other intellectual
8 * property including but not limited to intellectual property relating

--- 115 unchanged lines hidden (view full) ---

124 completeStore(state->idx);
125 }
126 }
127
128 if (TheISA::HasUnalignedMemAcc && state->isSplit && state->isLoad) {
129 delete state->mainPkt->req;
130 delete state->mainPkt;
131 }
1
2/*
3 * Copyright (c) 2010-2012 ARM Limited
4 * All rights reserved
5 *
6 * The license below extends only to copyright in the software and shall
7 * not be construed as granting a license to any other intellectual
8 * property including but not limited to intellectual property relating

--- 115 unchanged lines hidden (view full) ---

124 completeStore(state->idx);
125 }
126 }
127
128 if (TheISA::HasUnalignedMemAcc && state->isSplit && state->isLoad) {
129 delete state->mainPkt->req;
130 delete state->mainPkt;
131 }
132
133 pkt->req->setAccessLatency();
132 delete state;
133 delete pkt->req;
134 delete pkt;
135}
136
137template <class Impl>
138LSQUnit<Impl>::LSQUnit()
139 : loads(0), stores(0), storesToWB(0), cacheBlockMask(0), stalled(false),

--- 1157 unchanged lines hidden ---
134 delete state;
135 delete pkt->req;
136 delete pkt;
137}
138
139template <class Impl>
140LSQUnit<Impl>::LSQUnit()
141 : loads(0), stores(0), storesToWB(0), cacheBlockMask(0), stalled(false),

--- 1157 unchanged lines hidden ---