summaryrefslogtreecommitdiff
path: root/opcodes/i386-opc.h
diff options
context:
space:
mode:
authorKong Lingling <lingling.kong@intel.com>2022-11-08 09:51:07 +0800
committerCui,Lili <lili.cui@intel.com>2022-11-08 10:24:59 +0800
commitb06311adb4bfd964b788c9c406815f1daabc1eb9 (patch)
treec7d73175ea4f5e720e7ecc0c967156cfd30386bb /opcodes/i386-opc.h
parent70f1d4d4848b26882711c3409ee19fd122fbb175 (diff)
downloadbinutils-gdb-b06311adb4bfd964b788c9c406815f1daabc1eb9.tar.gz
Support Intel RAO-INT
gas/ChangeLog: * NEWS: Support Intel RAO-INT. * config/tc-i386.c: Add raoint. * doc/c-i386.texi: Document .raoint. * testsuite/gas/i386/i386.exp: Run RAO_INT tests. * testsuite/gas/i386/raoint-intel.d: New test. * testsuite/gas/i386/raoint.d: Ditto. * testsuite/gas/i386/raoint.s: Ditto. * testsuite/gas/i386/x86-64-raoint-intel.d: Ditto. * testsuite/gas/i386/x86-64-raoint.d: Ditto. * testsuite/gas/i386/x86-64-raoint.s: Ditto. opcodes/ChangeLog: * i386-dis.c (PREFIX_0F38FC): New. (prefix_table): Add PREFIX_0F38FC. * i386-gen.c: (cpu_flag_init): Add CPU_RAO_INT_FLAGS and CPU_ANY_RAO_INT_FLAGS. * i386-init.h: Regenerated. * i386-opc.h: (CpuRAO_INT): New. (i386_cpu_flags): Add cpuraoint. * i386-opc.tbl: Add RAO_INT instructions. * i386-tbl.h: Regenerated.
Diffstat (limited to 'opcodes/i386-opc.h')
-rw-r--r--opcodes/i386-opc.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/opcodes/i386-opc.h b/opcodes/i386-opc.h
index 78fc019c3c9..b93a402f9f7 100644
--- a/opcodes/i386-opc.h
+++ b/opcodes/i386-opc.h
@@ -223,6 +223,8 @@ enum
CpuMSRLIST,
/* Intel AVX NE CONVERT Instructions support required. */
CpuAVX_NE_CONVERT,
+ /* Intel RAO INT Instructions support required. */
+ CpuRAO_INT,
/* mwaitx instruction required */
CpuMWAITX,
/* Clzero instruction required */
@@ -411,6 +413,7 @@ typedef union i386_cpu_flags
unsigned int cpuwrmsrns:1;
unsigned int cpumsrlist:1;
unsigned int cpuavx_ne_convert:1;
+ unsigned int cpurao_int:1;
unsigned int cpumwaitx:1;
unsigned int cpuclzero:1;
unsigned int cpuospke:1;