Clock: Rework clocks to avoid tick-to-cycle transformations
authorAndreas Hansson <andreas.hansson@arm.com>
Tue, 28 Aug 2012 18:30:31 +0000 (14:30 -0400)
committerAndreas Hansson <andreas.hansson@arm.com>
Tue, 28 Aug 2012 18:30:31 +0000 (14:30 -0400)
commitd53d04473e0d6ca1765f1117072eec59187a7f7b
treed336db3bfb308b14ec5bba88e8f4ddee1dde8899
parentd14e5857c7e1ee053fb4eb448c4776d7c985c5b2
Clock: Rework clocks to avoid tick-to-cycle transformations

This patch introduces the notion of a clock update function that aims
to avoid costly divisions when turning the current tick into a
cycle. Each clocked object advances a private (hidden) cycle member
and a tick member and uses these to implement functions for getting
the tick of the next cycle, or the tick of a cycle some time in the
future.

In the different modules using the clocks, changes are made to avoid
counting in ticks only to later translate to cycles. There are a few
oddities in how the O3 and inorder CPU count idle cycles, as seen by a
few locations where a cycle is subtracted in the calculation. This is
done such that the regression does not change any stats, but should be
revisited in a future patch.

Another, much needed, change that is not done as part of this patch is
to introduce a new typedef uint64_t Cycle to be able to at least hint
at the unit of the variables counting Ticks vs Cycles. This will be
done as a follow-up patch.

As an additional follow up, the thread context still uses ticks for
the book keeping of last activate and last suspend and this should
probably also be changed into cycles as well.
24 files changed:
src/arch/arm/table_walker.cc
src/arch/x86/mmapped_ipr.hh
src/cpu/base.cc
src/cpu/inorder/cpu.cc
src/cpu/inorder/cpu.hh
src/cpu/inorder/resource.cc
src/cpu/inorder/resource_pool.cc
src/cpu/o3/O3CPU.py
src/cpu/o3/commit.hh
src/cpu/o3/commit_impl.hh
src/cpu/o3/cpu.cc
src/cpu/o3/cpu.hh
src/cpu/o3/fetch_impl.hh
src/cpu/o3/inst_queue_impl.hh
src/cpu/o3/lsq_unit.hh
src/cpu/simple/atomic.cc
src/cpu/simple/timing.cc
src/cpu/simple/timing.hh
src/cpu/testers/memtest/memtest.cc
src/cpu/testers/networktest/networktest.cc
src/dev/arm/pl111.cc
src/dev/i8254xGBe.cc
src/dev/ns_gige.cc
src/sim/clocked_object.hh