fetch.hh (4329:52057dbec096) fetch.hh (4475:fb185cc1c845)
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;

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

95 /** Functional version of receive. Panics. */
96 virtual void recvFunctional(PacketPtr pkt);
97
98 /** Receives status change. Other than range changing, panics. */
99 virtual void recvStatusChange(Status status);
100
101 /** Returns the address ranges of this device. */
102 virtual void getDeviceAddressRanges(AddrRangeList &resp,
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;

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

95 /** Functional version of receive. Panics. */
96 virtual void recvFunctional(PacketPtr pkt);
97
98 /** Receives status change. Other than range changing, panics. */
99 virtual void recvStatusChange(Status status);
100
101 /** Returns the address ranges of this device. */
102 virtual void getDeviceAddressRanges(AddrRangeList &resp,
103 AddrRangeList &snoop)
104 { resp.clear(); snoop.clear(); snoop.push_back(RangeSize(0,0)); }
103 bool &snoop)
104 { resp.clear(); snoop = true; }
105
106 /** Timing version of receive. Handles setting fetch to the
107 * proper status to start fetching. */
108 virtual bool recvTiming(PacketPtr pkt);
109
110 /** Handles doing a retry of a failed fetch. */
111 virtual void recvRetry();
112 };

--- 375 unchanged lines hidden ---
105
106 /** Timing version of receive. Handles setting fetch to the
107 * proper status to start fetching. */
108 virtual bool recvTiming(PacketPtr pkt);
109
110 /** Handles doing a retry of a failed fetch. */
111 virtual void recvRetry();
112 };

--- 375 unchanged lines hidden ---