Deleted Added
sdiff udiff text old ( 3348:11f6ef023158 ) new ( 3349:fec4a86fa212 )
full compact
1/*
2 * Copyright (c) 2006 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

176 // The instruction is carrying an ITB fault. Handle
177 // the fault and see if our results match the CPU on
178 // the next tick().
179 fault = inst->getFault();
180 }
181 }
182
183 if (fault == NoFault) {
184 PacketPtr pkt = new Packet(memReq, Packet::ReadReq,
185 Packet::Broadcast);
186
187 pkt->dataStatic(&machInst);
188
189 icachePort->sendFunctional(pkt);
190
191 delete pkt;
192

--- 286 unchanged lines hidden ---