diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2007-06-13 20:09:03 +0000 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2007-06-13 20:09:03 +0000 |
commit | cd8f604cc9baa65bf59ecf26e3380595418bc046 (patch) | |
tree | 691976be5db4bf48337976efbae20b9c2625cc00 /src/arch/sparc/predecoder.hh | |
parent | 5fd567425d9c2624e46dde692d8973ee8008d669 (diff) | |
download | gem5-cd8f604cc9baa65bf59ecf26e3380595418bc046.tar.xz |
Seperate the pc-pc and the pc of the incoming bytes, and get rid of the "moreBytes" which just takes a MachInst.
src/arch/x86/predecoder.cc:
Seperate the pc-pc and the pc of the incoming bytes, and get rid of the "moreBytes" which just takes a MachInst. Also make the "opSize" field describe the number of bytes and not the log of the number of bytes.
--HG--
extra : convert_revision : 3a5ec7053ec69c5cba738a475d8b7fd9e6e6ccc0
Diffstat (limited to 'src/arch/sparc/predecoder.hh')
-rw-r--r-- | src/arch/sparc/predecoder.hh | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/src/arch/sparc/predecoder.hh b/src/arch/sparc/predecoder.hh index 4a8c9dc4a..38d8fd1a2 100644 --- a/src/arch/sparc/predecoder.hh +++ b/src/arch/sparc/predecoder.hh @@ -67,7 +67,7 @@ namespace SparcISA //Use this to give data to the predecoder. This should be used //when there is control flow. - void moreBytes(Addr currPC, Addr off, MachInst inst) + void moreBytes(Addr pc, Addr fetchPC, Addr off, MachInst inst) { assert(off == 0); @@ -85,13 +85,6 @@ namespace SparcISA << (sizeof(MachInst) * 8)); } - //Use this to give data to the predecoder. This should be used - //when instructions are executed in order. - void moreBytes(MachInst machInst) - { - moreBytes(0, 0, machInst); - } - bool needMoreBytes() { return true; |