stat_control.hh (3125:febd811bccc6) stat_control.hh (4078:3f73f808bbd4)
1/*
2 * Copyright (c) 2004-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;

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

26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * Authors: Nathan Binkert
29 */
30
31#ifndef __SIM_STAT_CONTROL_HH__
32#define __SIM_STAT_CONTROL_HH__
33
1/*
2 * Copyright (c) 2004-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;

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

26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * Authors: Nathan Binkert
29 */
30
31#ifndef __SIM_STAT_CONTROL_HH__
32#define __SIM_STAT_CONTROL_HH__
33
34#include <fstream>
35#include <list>
36
37class EventQueue;
38
39namespace Stats {
40
34namespace Stats {
35
41enum {
42 Reset = 0x1,
43 Dump = 0x2
44};
36void initSimStats();
37void StatEvent(bool dump, bool reset, Tick when = curTick, Tick repeat = 0);
45
38
46class Output;
47extern std::list<Output *> OutputList;
48
49void DumpNow();
50void SetupEvent(int flags, Tick when, Tick repeat = 0, EventQueue *queue = NULL);
51
52void InitSimStats();
53
54/* namespace Stats */ }
55
56#endif // __SIM_STAT_CONTROL_HH__
39/* namespace Stats */ }
40
41#endif // __SIM_STAT_CONTROL_HH__