kernel_stats.hh (12181:2150eff234c1) kernel_stats.hh (12182:acde8d31d970)
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;

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

43class Statistics : public Serializable
44{
45 protected:
46 std::string myname;
47
48 protected:
49 Stats::Scalar _arm;
50 Stats::Scalar _quiesce;
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;

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

43class Statistics : public Serializable
44{
45 protected:
46 std::string myname;
47
48 protected:
49 Stats::Scalar _arm;
50 Stats::Scalar _quiesce;
51 Stats::Scalar _hwrei;
52
51
53 Stats::Vector _iplCount;
54 Stats::Vector _iplGood;
55 Stats::Vector _iplTicks;
56 Stats::Formula _iplUsed;
57
58 private:
59 int iplLast;
60 Tick iplLastTick;
61
62 public:
52 public:
63 Statistics();
64 virtual ~Statistics() {}
65
66 const std::string name() const { return myname; }
67 void regStats(const std::string &name);
68
69 public:
70 void arm() { _arm++; }
71 void quiesce() { _quiesce++; }
53 virtual ~Statistics() {}
54
55 const std::string name() const { return myname; }
56 void regStats(const std::string &name);
57
58 public:
59 void arm() { _arm++; }
60 void quiesce() { _quiesce++; }
72 void swpipl(int ipl);
73
74 public:
61
62 public:
75 void serialize(CheckpointOut &cp) const override;
76 void unserialize(CheckpointIn &cp) override;
63 void serialize(CheckpointOut &cp) const override {}
64 void unserialize(CheckpointIn &cp) override {}
77};
78
79} // namespace Kernel
80
81#endif // __KERNEL_STATS_HH__
65};
66
67} // namespace Kernel
68
69#endif // __KERNEL_STATS_HH__