1/*
2 * Copyright (c) 2004-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;

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

923#endif
924}
925
926template <class Impl>
927void
928LSQUnit<Impl>::recvRetry()
929{
930 if (isStoreBlocked) {
931 DPRINTF(LSQUnit, "Receiving retry: store blocked\n");
932 assert(retryPkt != NULL);
933
934 if (dcachePort->sendTiming(retryPkt)) {
935 storePostSend(retryPkt);
936 retryPkt = NULL;
937 isStoreBlocked = false;
938 lsq->setRetryTid(-1);
939 } else {

--- 73 unchanged lines hidden ---