diff options
author | Jan Beulich <jbeulich@novell.com> | 2005-04-01 16:03:39 +0000 |
---|---|---|
committer | Jan Beulich <jbeulich@novell.com> | 2005-04-01 16:03:39 +0000 |
commit | 46390451a4422370f0a525b19d61a4d84ee6a009 (patch) | |
tree | 0ced362f2da446463b437a79142204424d72a575 /include | |
parent | c9f545e20fe2994d9266d463a184731505975e84 (diff) | |
download | cygnal-46390451a4422370f0a525b19d61a4d84ee6a009.tar.gz cygnal-46390451a4422370f0a525b19d61a4d84ee6a009.tar.bz2 cygnal-46390451a4422370f0a525b19d61a4d84ee6a009.zip |
include/opcode/
2005-04-01 Jan Beulich <jbeulich@novell.com>
* i386.h (i386_optab): Add rdtscp.
opcodes/
2005-04-01 Jan Beulich <jbeulich@novell.com>
* i386-dis.c (INVLPG_Fixup): Decode rdtscp; change code to allow for
easier future additions.
Diffstat (limited to 'include')
-rw-r--r-- | include/opcode/ChangeLog | 4 | ||||
-rw-r--r-- | include/opcode/i386.h | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/include/opcode/ChangeLog b/include/opcode/ChangeLog index fb5d25259..2d90e175b 100644 --- a/include/opcode/ChangeLog +++ b/include/opcode/ChangeLog @@ -1,3 +1,7 @@ +2005-04-01 Jan Beulich <jbeulich@novell.com> + + * i386.h (i386_optab): Add rdtscp. + 2005-03-29 H.J. Lu <hongjiu.lu@intel.com> * i386.h (i386_optab): Don't allow the `l' suffix for moving diff --git a/include/opcode/i386.h b/include/opcode/i386.h index 4de2771e2..ca80d0ab8 100644 --- a/include/opcode/i386.h +++ b/include/opcode/i386.h @@ -1375,6 +1375,7 @@ static const template i386_optab[] = {"syscall", 0, 0x0f05, X, CpuK6, NoSuf, { 0, 0, 0} }, {"sysret", 0, 0x0f07, X, CpuK6, lq_Suf|DefaultSize, { 0, 0, 0} }, {"swapgs", 0, 0x0f01, 0xf8, Cpu64, NoSuf|ImmExt, { 0, 0, 0} }, +{"rdtscp", 0, 0x0f01, 0xf9, CpuSledgehammer,NoSuf|ImmExt, { 0, 0, 0} }, /* VIA PadLock extensions. */ {"xstorerng", 0, 0x000fa7c0, X, Cpu686|CpuPadLock, NoSuf|IsString, { 0, 0, 0} }, |