BaseDynInst: Make the TLB translation timing instead of atomic.
authorTimothy M. Jones <tjones1@inf.ed.ac.uk>
Fri, 12 Feb 2010 19:53:19 +0000 (19:53 +0000)
committerTimothy M. Jones <tjones1@inf.ed.ac.uk>
Fri, 12 Feb 2010 19:53:19 +0000 (19:53 +0000)
commit7fe9f92cfc73147a1a024c1632c9a7619c1779d1
treeb24813482ae150b76c8ba095774f525ee0413e3c
parentdd60902152321a698682e4f53e29e4043ff321e5
BaseDynInst: Make the TLB translation timing instead of atomic.

This initiates a timing translation and passes the read or write on to the
processor before waiting for it to finish. Once the translation is finished,
the instruction's state is updated via the 'finish' function. A new
DataTranslation class is created to handle this.

The idea is taken from the implementation of timing translations in
TimingSimpleCPU by Gabe Black. This patch also separates out the timing
translations from this CPU and uses the new DataTranslation class.
src/cpu/base_dyn_inst.hh
src/cpu/exec_context.hh
src/cpu/simple/timing.cc
src/cpu/simple/timing.hh
src/cpu/translation.hh [new file with mode: 0644]