lsq.hh (3647:8121d4503cbc) lsq.hh (3846:a0fe3210ce53)
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;

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

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

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

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

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

--- 61 unchanged lines hidden ---