Deleted Added
sdiff udiff text old ( 7725:00ea9430643b ) new ( 7745:434b5dfb87d9 )
full compact
1/*
2 * Copyright (c) 2010 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

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

994{
995 if (pkt->isResponse() && !pkt->wasNacked()) {
996 // delay processing of returned data until next CPU clock edge
997 Tick next_tick = cpu->nextCycle(curTick);
998
999 if (next_tick == curTick) {
1000 cpu->completeDataAccess(pkt);
1001 } else {
1002 tickEvent.schedule(pkt, next_tick);
1003 }
1004
1005 return true;
1006 }
1007 else if (pkt->wasNacked()) {
1008 assert(cpu->_status == DcacheWaitResponse);
1009 pkt->reinitNacked();
1010 if (!sendTiming(pkt)) {

--- 99 unchanged lines hidden ---