----------------------------------------------------------- This is an automatically generated e-mail. To reply, visit: http://reviews.gem5.org/r/3235/ -----------------------------------------------------------
(Updated Jan. 6, 2016, 10:07 p.m.) Review request for Default. Changes ------- Here's an attempt at duplicating and splitting up the stats. I had trouble deciding what to call things or how to make it clear which stats were which, so if anyone has better ideas of how to do that, I'd be happy to hear them. Summary (updated) ----------------- stats: organize and clarify resettable stats Repository: gem5 Description (updated) ------- Changeset 11230:374d79447577 --------------------------- stats: organize and clarify resettable stats Some stats (e.g. sim_insts) were traditionally not reset, because they were intended for simulator-level measurement. However, some other stats (e.g. sim_ticks) WERE reset. In addition, some derived stats used both reset and unreset stats in the calculation, resulting in nonsense values. This patch creates two sets of overall stats: one set that respects reset, and is useful for measuring the simulated program, and one set that does not reset, useful for studying the simulator itself. The non-resettable stats are prefixed with "simulator_", as they behave different from other stats. Diffs (updated) ----- src/arch/null/cpu_dummy.hh 021524c21cbc src/cpu/BaseCPU.py 021524c21cbc src/cpu/base.hh 021524c21cbc src/cpu/checker/cpu.hh 021524c21cbc src/cpu/kvm/base.hh 021524c21cbc src/cpu/kvm/base.cc 021524c21cbc src/cpu/minor/cpu.cc 021524c21cbc src/cpu/o3/cpu.hh 021524c21cbc src/cpu/o3/cpu.cc 021524c21cbc src/cpu/simple/base.hh 021524c21cbc src/cpu/simple/base.cc 021524c21cbc src/sim/stat_control.hh 021524c21cbc src/sim/stat_control.cc 021524c21cbc Diff: http://reviews.gem5.org/r/3235/diff/ Testing ------- Thanks, Lena Olson _______________________________________________ gem5-dev mailing list [email protected] http://m5sim.org/mailman/listinfo/gem5-dev
