cache.hh (3208:97d9cc1e626f) cache.hh (3293:4ac3d9486d6e)
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;

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

174 /**
175 * Was the request was sent successfully?
176 * @param pkt The request.
177 * @param success True if the request was sent successfully.
178 */
179 virtual void sendResult(Packet * &pkt, MSHR* mshr, bool success);
180
181 /**
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;

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

174 /**
175 * Was the request was sent successfully?
176 * @param pkt The request.
177 * @param success True if the request was sent successfully.
178 */
179 virtual void sendResult(Packet * &pkt, MSHR* mshr, bool success);
180
181 /**
182 * Was the CSHR request was sent successfully?
183 * @param pkt The request.
184 * @param success True if the request was sent successfully.
185 */
186 virtual void sendCoherenceResult(Packet * &pkt, MSHR* cshr, bool success);
187
188 /**
182 * Handles a response (cache line fill/write ack) from the bus.
183 * @param pkt The request being responded to.
184 */
185 void handleResponse(Packet * &pkt);
186
187 /**
188 * Start handling a copy transaction.
189 * @param pkt The copy request to perform.

--- 80 unchanged lines hidden ---
189 * Handles a response (cache line fill/write ack) from the bus.
190 * @param pkt The request being responded to.
191 */
192 void handleResponse(Packet * &pkt);
193
194 /**
195 * Start handling a copy transaction.
196 * @param pkt The copy request to perform.

--- 80 unchanged lines hidden ---