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;

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

169 Tick nextProgressMessage; // access # for next progress report
170
171 unsigned percentSourceUnaligned;
172 unsigned percentDestUnaligned;
173
174 Tick noResponseCycles;
175
176 uint64_t numReads;
177 uint64_t numWrites;
178 uint64_t maxLoads;
179
180 bool atomic;
181 bool suppress_func_warnings;
182
183 Stats::Scalar numReadsStat;
184 Stats::Scalar numWritesStat;
185 Stats::Scalar numCopiesStat;
186
187 // called by MemCompleteEvent::process()
188 void completeRequest(PacketPtr pkt);
189
190 void sendPkt(PacketPtr pkt);
191
192 void doRetry();
193
194 friend class MemCompleteEvent;
195};
196
197#endif // __CPU_MEMTEST_MEMTEST_HH__
198
199
200