lsq.cc (11793:ef606668d247) lsq.cc (12127:4207df055b0d)
1/*
2 * Copyright (c) 2013-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

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

316 assert(!translationEvent.scheduled());
317 port.cpu.schedule(translationEvent, curTick());
318 }
319}
320
321LSQ::SplitDataRequest::SplitDataRequest(LSQ &port_, MinorDynInstPtr inst_,
322 bool isLoad_, PacketDataPtr data_, uint64_t *res_) :
323 LSQRequest(port_, inst_, isLoad_, data_, res_),
1/*
2 * Copyright (c) 2013-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

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

316 assert(!translationEvent.scheduled());
317 port.cpu.schedule(translationEvent, curTick());
318 }
319}
320
321LSQ::SplitDataRequest::SplitDataRequest(LSQ &port_, MinorDynInstPtr inst_,
322 bool isLoad_, PacketDataPtr data_, uint64_t *res_) :
323 LSQRequest(port_, inst_, isLoad_, data_, res_),
324 translationEvent(*this),
324 translationEvent([this]{ sendNextFragmentToTranslation(); },
325 "translationEvent"),
325 numFragments(0),
326 numInTranslationFragments(0),
327 numTranslatedFragments(0),
328 numIssuedFragments(0),
329 numRetiredFragments(0),
330 fragmentRequests(),
331 fragmentPackets()
332{

--- 1332 unchanged lines hidden ---
326 numFragments(0),
327 numInTranslationFragments(0),
328 numTranslatedFragments(0),
329 numIssuedFragments(0),
330 numRetiredFragments(0),
331 fragmentRequests(),
332 fragmentPackets()
333{

--- 1332 unchanged lines hidden ---