atomic.hh (2926:48f2f450cbf6) atomic.hh (3192:f3e215dda3f6)
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;

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

99 virtual void recvFunctional(Packet *pkt);
100
101 virtual void recvStatusChange(Status status);
102
103 virtual void recvRetry();
104
105 virtual void getDeviceAddressRanges(AddrRangeList &resp,
106 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;

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

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

--- 27 unchanged lines hidden ---
110 CpuPort icachePort;
111 CpuPort dcachePort;
112
113 Request *ifetch_req;
114 Packet *ifetch_pkt;
115 Request *data_read_req;
116 Packet *data_read_pkt;
117 Request *data_write_req;

--- 27 unchanged lines hidden ---