diff options
author | Nathan Binkert <binkertn@umich.edu> | 2003-11-22 15:07:53 -0500 |
---|---|---|
committer | Nathan Binkert <binkertn@umich.edu> | 2003-11-22 15:07:53 -0500 |
commit | d1e12b57ce06990a0daf9c295c688795bf62f7cf (patch) | |
tree | cbc42c6e5efbef4688c7a87577d7c6e166afebf1 /sim/system.hh | |
parent | 92348c503ce04a34f2ed5f871f55fae995a71111 (diff) | |
download | gem5-d1e12b57ce06990a0daf9c295c688795bf62f7cf.tar.xz |
We only need to choose that we do want binning, or we don't.
no need for multiple bin classes. If multiple bins are needed, we
can always do it with ini type config instead.
kern/tru64/tru64_events.hh:
sim/system.cc:
sim/system.hh:
No more GenBin always use MainBin
--HG--
extra : convert_revision : 8c466f302324c33b59d47d0da04583b2517fc72c
Diffstat (limited to 'sim/system.hh')
-rw-r--r-- | sim/system.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sim/system.hh b/sim/system.hh index 741dea0db..8348a144e 100644 --- a/sim/system.hh +++ b/sim/system.hh @@ -52,7 +52,7 @@ class System : public SimObject { #ifdef FS_MEASURE protected: - std::map<const std::string, Statistics::GenBin *> fnBins; + std::map<const std::string, Statistics::MainBin *> fnBins; std::map<const Addr, SWContext *> swCtxMap; #endif //FS_MEASURE @@ -85,7 +85,7 @@ class System : public SimObject virtual bool breakpoint() = 0; #ifdef FS_MEASURE - Statistics::GenBin * getBin(const std::string &name); + Statistics::MainBin * getBin(const std::string &name); virtual bool findCaller(std::string, std::string) const = 0; SWContext *findContext(Addr pcb); |