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

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

101 virtual void recvFunctional(PacketPtr pkt);
102
103 virtual void recvStatusChange(Status status);
104
105 virtual void recvRetry();
106
107 virtual void getDeviceAddressRanges(AddrRangeList &resp,
108 AddrRangeList &snoop)
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;

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

101 virtual void recvFunctional(PacketPtr pkt);
102
103 virtual void recvStatusChange(Status status);
104
105 virtual void recvRetry();
106
107 virtual void getDeviceAddressRanges(AddrRangeList &resp,
108 AddrRangeList &snoop)
109 { resp.clear(); snoop.clear(); snoop.push_back(RangeSize(0,-1)); }
109 { resp.clear(); snoop.clear(); snoop.push_back(RangeSize(0,0)); }
110
111 };
112 CpuPort icachePort;
113 CpuPort dcachePort;
114
115 Request *ifetch_req;
116 PacketPtr ifetch_pkt;
117 Request *data_read_req;

--- 29 unchanged lines hidden ---
110
111 };
112 CpuPort icachePort;
113 CpuPort dcachePort;
114
115 Request *ifetch_req;
116 PacketPtr ifetch_pkt;
117 Request *data_read_req;

--- 29 unchanged lines hidden ---