diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2015-12-09 08:01:57 -0800 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2015-12-09 08:01:57 -0800 |
commit | 8eab413676a0222a863f45ff606f3db69bb7afc4 (patch) | |
tree | 8fffeb4186f33ac88d0538ac9ab3cdc07d62d136 /opcodes/i386-opc.h | |
parent | fa7cc15f24f9cd8e3cc07c7552c3fad1b756eed8 (diff) | |
download | gdb-8eab413676a0222a863f45ff606f3db69bb7afc4.zip gdb-8eab413676a0222a863f45ff606f3db69bb7afc4.tar.gz gdb-8eab413676a0222a863f45ff606f3db69bb7afc4.tar.bz2 |
Implement Intel OSPKE instructions
This patch implements Intel OSPKE instructions documented in Intel64
and IA-32 Architectures Software Developer’s Manual Volume 2, September
2015.
gas/testsuite/
* gas/i386/i386.exp: Run ospke and x86-64-ospke.
* gas/i386/ospke.d: New file.
* gas/i386/ospke.s: Likewise.
* gas/i386/x86-64-ospke.d: Likewise.
opcodes/
* i386-dis.c (MOD_0F01_REG_5): New.
(RM_0F01_REG_5): Likewise.
(reg_table): Use MOD_0F01_REG_5.
(mod_table): Add MOD_0F01_REG_5.
(rm_table): Add RM_0F01_REG_5.
* i386-gen.c (cpu_flag_init): Add CPU_OSPKE_FLAGS.
(cpu_flags): Add CpuOSPKE.
* i386-opc.h (CpuOSPKE): New.
(i386_cpu_flags): Add cpuospke.
* i386-opc.tbl: Add rdpkru and wrpkru instructions.
* i386-init.h: Regenerated.
* i386-tbl.h: Likewise.
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 0dbf296..6a77dab 100644 --- a/opcodes/i386-opc.h +++ b/opcodes/i386-opc.h @@ -198,6 +198,8 @@ enum CpuMWAITX, /* Clzero instruction required */ CpuCLZERO, + /* OSPKE instruction required */ + CpuOSPKE, /* 64bit support required */ Cpu64, /* Not supported in the 64bit mode */ @@ -308,6 +310,7 @@ typedef union i386_cpu_flags unsigned int cpuavx512vbmi:1; unsigned int cpumwaitx:1; unsigned int cpuclzero:1; + unsigned int cpuospke:1; unsigned int cpu64:1; unsigned int cpuno64:1; unsigned int cpuamd64:1; |