fetch_impl.hh (2986:99640058db70) fetch_impl.hh (3014:b4309193255a)
1/*
2 * Copyright (c) 2004-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;

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

667 memReq[tid] = NULL;
668 }
669
670 // Get rid of the retrying packet if it was from this thread.
671 if (retryTid == tid) {
672 assert(cacheBlocked);
673 cacheBlocked = false;
674 retryTid = -1;
1/*
2 * Copyright (c) 2004-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;

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

667 memReq[tid] = NULL;
668 }
669
670 // Get rid of the retrying packet if it was from this thread.
671 if (retryTid == tid) {
672 assert(cacheBlocked);
673 cacheBlocked = false;
674 retryTid = -1;
675 retryPkt = NULL;
676 delete retryPkt->req;
677 delete retryPkt;
675 delete retryPkt->req;
676 delete retryPkt;
677 retryPkt = NULL;
678 }
679
680 fetchStatus[tid] = Squashing;
681
682 ++fetchSquashCycles;
683}
684
685template<class Impl>

--- 759 unchanged lines hidden ---
678 }
679
680 fetchStatus[tid] = Squashing;
681
682 ++fetchSquashCycles;
683}
684
685template<class Impl>

--- 759 unchanged lines hidden ---