memtest.hh (8229:78bf55f23338) memtest.hh (8436:5648986156db)
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;
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;
177 uint64_t maxLoads;
178
179 bool atomic;
178 uint64_t maxLoads;
179
180 bool atomic;
181 bool suppress_func_warnings;
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
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