lsq_unit_impl.hh (4909:f3b84a9b5c5a) lsq_unit_impl.hh (4985:9f577f468009)
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) {
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");
931 assert(retryPkt != NULL);
932
933 if (dcachePort->sendTiming(retryPkt)) {
934 storePostSend(retryPkt);
935 retryPkt = NULL;
936 isStoreBlocked = false;
937 lsq->setRetryTid(-1);
938 } else {

--- 73 unchanged lines hidden ---
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 ---