lsq.hh (2907:7b0ababb4166) lsq.hh (3192:f3e215dda3f6)
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;

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

306 virtual void recvFunctional(PacketPtr pkt);
307
308 /** Receives status change. Other than range changing, panics. */
309 virtual void recvStatusChange(Status status);
310
311 /** Returns the address ranges of this device. */
312 virtual void getDeviceAddressRanges(AddrRangeList &resp,
313 AddrRangeList &snoop)
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;

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

306 virtual void recvFunctional(PacketPtr pkt);
307
308 /** Receives status change. Other than range changing, panics. */
309 virtual void recvStatusChange(Status status);
310
311 /** Returns the address ranges of this device. */
312 virtual void getDeviceAddressRanges(AddrRangeList &resp,
313 AddrRangeList &snoop)
314 { resp.clear(); snoop.clear(); }
314 { resp.clear(); snoop.clear(); snoop.push_back(RangeSize(0,-1)); }
315
316 /** Timing version of receive. Handles writing back and
317 * completing the load or store that has returned from
318 * memory. */
319 virtual bool recvTiming(PacketPtr pkt);
320
321 /** Handles doing a retry of the previous send. */
322 virtual void recvRetry();

--- 61 unchanged lines hidden ---
315
316 /** Timing version of receive. Handles writing back and
317 * completing the load or store that has returned from
318 * memory. */
319 virtual bool recvTiming(PacketPtr pkt);
320
321 /** Handles doing a retry of the previous send. */
322 virtual void recvRetry();

--- 61 unchanged lines hidden ---