projects
/
gem5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4b3a20c
)
X86: Missed a file for adding a bit to indicate that an REX prefix was present.
author
Gabe Black
<gblack@eecs.umich.edu>
Mon, 30 Jul 2007 20:20:08 +0000
(13:20 -0700)
committer
Gabe Black
<gblack@eecs.umich.edu>
Mon, 30 Jul 2007 20:20:08 +0000
(13:20 -0700)
--HG--
extra : convert_revision :
f1bbd5165a7415d0daf27660575d30c41510f531
src/arch/x86/types.hh
patch
|
blob
|
history
diff --git
a/src/arch/x86/types.hh
b/src/arch/x86/types.hh
index a509ff57a219fc81be3fd9d7c21c9999f4be5595..f8a5dbe34678015eceb224b6cab044d36de728f5 100644
(file)
--- a/
src/arch/x86/types.hh
+++ b/
src/arch/x86/types.hh
@@
-110,6
+110,9
@@
namespace X86ISA
EndBitUnion(Sib)
BitUnion8(Rex)
+ //This bit doesn't mean anything according to the ISA, but in
+ //this implementation, it being set means an REX prefix was present.
+ Bitfield<6> present;
Bitfield<3> w;
Bitfield<2> r;
Bitfield<1> x;