Decode: Pull instruction decoding out of the StaticInst class into its own.
authorGabe Black <gblack@eecs.umich.edu>
Fri, 9 Sep 2011 09:30:01 +0000 (02:30 -0700)
committerGabe Black <gblack@eecs.umich.edu>
Fri, 9 Sep 2011 09:30:01 +0000 (02:30 -0700)
commitb7b545bc38bcd9ee54f1b8e45064cd8b7a3070b0
treee81962e78194fa13c768e6a841f367bd71dd5c83
parentc5fd6f4fec147dbdbbd46794bdbbf5782ea7a57d
Decode: Pull instruction decoding out of the StaticInst class into its own.

This change pulls the instruction decoding machinery (including caches) out of
the StaticInst class and puts it into its own class. This has a few intrinsic
benefits. First, the StaticInst code, which has gotten to be quite large, gets
simpler. Second, the code that handles decode caching is now separated out
into its own component and can be looked at in isolation, making it easier to
understand. I took the opportunity to restructure the code a bit which will
hopefully also help.

Beyond that, this change also lays some ground work for each ISA to have its
own, potentially stateful decode object. We'd be able to include less
contextualizing information in the ExtMachInst objects since that context
would be applied at the decoder. Also, the decoder could "know" ahead of time
that all the instructions it's going to see are going to be, for instance, 64
bit mode, and it will have one less thing to check when it decodes them.
Because the decode caching mechanism has been separated out, it's now possible
to have multiple caches which correspond to different types of decoding
context. Having one cache for each element of the cross product of different
configurations may become prohibitive, so it may be desirable to clear out the
cache when relatively static state changes and not to have one for each
setting.

Because the decode function is no longer universally accessible as a static
member of the StaticInst class, a new function was added to the ThreadContexts
that returns the applicable decode object.
23 files changed:
src/arch/alpha/remote_gdb.cc
src/arch/arm/remote_gdb.cc
src/cpu/SConscript
src/cpu/decode.cc [new file with mode: 0644]
src/cpu/decode.hh [new file with mode: 0644]
src/cpu/decode_cache.hh [new file with mode: 0644]
src/cpu/inorder/cpu.cc
src/cpu/inorder/cpu.hh
src/cpu/inorder/inorder_dyn_inst.cc
src/cpu/inorder/inorder_dyn_inst.hh
src/cpu/inorder/resources/fetch_unit.cc
src/cpu/inorder/resources/fetch_unit.hh
src/cpu/inorder/thread_context.hh
src/cpu/legiontrace.cc
src/cpu/o3/fetch.hh
src/cpu/o3/fetch_impl.hh
src/cpu/o3/thread_context.hh
src/cpu/simple/base.cc
src/cpu/simple/base.hh
src/cpu/simple_thread.hh
src/cpu/static_inst.cc
src/cpu/static_inst.hh
src/cpu/thread_context.hh