diff options
author | Alexander Fomin <alexander.fomin@intel.com> | 2016-05-10 21:35:52 +0300 |
---|---|---|
committer | Alexander Fomin <alexander.fomin@intel.com> | 2016-05-10 21:38:39 +0300 |
commit | 8bc526963edde8cf8789ce82072d05fd2bcc90c4 (patch) | |
tree | 25c9322e513f282eeb724e0213b10bb27e1fddad /opcodes/i386-opc.h | |
parent | 4f4faa4d43aeaf5dd0a5fe0aff2fde89df3e5b8c (diff) | |
download | gdb-8bc526963edde8cf8789ce82072d05fd2bcc90c4.zip gdb-8bc526963edde8cf8789ce82072d05fd2bcc90c4.tar.gz gdb-8bc526963edde8cf8789ce82072d05fd2bcc90c4.tar.bz2 |
Enable Intel RDPID instruction.
This patch enables Intel RDPID instruction described in Intel64 and
IA-32 Architectures Software Developer's Manual, April 2016.
gas/
* config/tc-i386.c (cpu_arch): Add RDPID.
* doc/c-i386.texi: Document RDPID.
gas/testsuite/
* gas/i386/i386.exp: Run RDPID tests.
* gas/i386/prefix.d: Adjust.
* gas/i386/rdpid.s: New test.
* gas/i386/rdpid.d: Ditto.
* gas/i386/rdpid-intel.d: Ditto.
* gas/i386/x86-64-rdpid.s: Ditto.
* gas/i386/x86-64-rdpid.d: Ditto.
* gas/i386/x86-64-rdpid-intel.d: Ditto.
opcodes/
* i386-dis.c (prefix_table): Add RDPID instruction.
* i386-gen.c (cpu_flag_init): Add RDPID flag.
(cpu_flags): Add RDPID bitfield.
* i386-opc.h (enum): Add RDPID element.
(i386_cpu_flags): Add RDPID field.
* i386-opc.tbl: Add RDPID instruction.
* i386-init.h: Regenerate.
* i386-tbl.h: Regenerate.
Diffstat (limited to 'opcodes/i386-opc.h')
-rw-r--r-- | opcodes/i386-opc.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/opcodes/i386-opc.h b/opcodes/i386-opc.h index c5ca4c3..a93c1f3 100644 --- a/opcodes/i386-opc.h +++ b/opcodes/i386-opc.h @@ -200,6 +200,8 @@ enum CpuCLZERO, /* OSPKE instruction required */ CpuOSPKE, + /* RDPID instruction required */ + CpuRDPID, /* 64bit support required */ Cpu64, /* Not supported in the 64bit mode */ @@ -311,6 +313,7 @@ typedef union i386_cpu_flags unsigned int cpumwaitx:1; unsigned int cpuclzero:1; unsigned int cpuospke:1; + unsigned int cpurdpid:1; unsigned int cpu64:1; unsigned int cpuno64:1; unsigned int cpuamd64:1; |