timing.cc (5497:89a6483d7047) timing.cc (5507:52bcc301b467)
1/*
2 * Copyright (c) 2002-2005 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;

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

725 if (fault == NoFault)
726 countInst();
727 else if (traceData) {
728 // If there was a fault, we shouldn't trace this instruction.
729 delete traceData;
730 traceData = NULL;
731 }
732
1/*
2 * Copyright (c) 2002-2005 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;

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

725 if (fault == NoFault)
726 countInst();
727 else if (traceData) {
728 // If there was a fault, we shouldn't trace this instruction.
729 delete traceData;
730 traceData = NULL;
731 }
732
733 if (pkt->isRead() && pkt->isLocked()) {
733 // the locked flag may be cleared on the response packet, so check
734 // pkt->req and not pkt to see if it was a load-locked
735 if (pkt->isRead() && pkt->req->isLocked()) {
734 TheISA::handleLockedRead(thread, pkt->req);
735 }
736
737 delete pkt->req;
738 delete pkt;
739
740 postExecute();
741

--- 144 unchanged lines hidden ---
736 TheISA::handleLockedRead(thread, pkt->req);
737 }
738
739 delete pkt->req;
740 delete pkt;
741
742 postExecute();
743

--- 144 unchanged lines hidden ---