Deleted Added
sdiff udiff text old ( 8229:78bf55f23338 ) new ( 8436:5648986156db )
full compact
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 maxLoads;
178
179 bool atomic;
180
181 Stats::Scalar numReadsStat;
182 Stats::Scalar numWritesStat;
183 Stats::Scalar numCopiesStat;
184
185 // called by MemCompleteEvent::process()
186 void completeRequest(PacketPtr pkt);
187
188 void sendPkt(PacketPtr pkt);
189
190 void doRetry();
191
192 friend class MemCompleteEvent;
193};
194
195#endif // __CPU_MEMTEST_MEMTEST_HH__
196
197
198