x86, cpu: corrects 270c9a75e91f, take over decoder on cpu switch
authorNilay Vaish <nilay@cs.wisc.edu>
Tue, 22 Jan 2013 06:10:10 +0000 (00:10 -0600)
committerNilay Vaish <nilay@cs.wisc.edu>
Tue, 22 Jan 2013 06:10:10 +0000 (00:10 -0600)
commitfc57ae640130c2d7610f4ff20a3d8816b88042bf
tree80da33f0f19a5e21cfeed4e94d8ea45d6db27076
parent62544f938a8a7387bd22b397d36c637a2656f34a
x86, cpu: corrects 270c9a75e91f, take over decoder on cpu switch
The changes made by the changeset 270c9a75e91f do not work well with switching
of cpus. The problem is that decoder for the old thread context holds state
that is not taken over by the new decoder.

This patch adds a takeOverFrom() function to Decoder class in each ISA. Except
for x86, functions in other ISAs are blank. For x86, the function copies state
from the old decoder to the new decoder.
src/arch/alpha/decoder.hh
src/arch/arm/decoder.hh
src/arch/mips/decoder.hh
src/arch/power/decoder.hh
src/arch/sparc/decoder.hh
src/arch/x86/decoder.hh
src/cpu/o3/thread_context_impl.hh
src/cpu/simple_thread.cc