diff options
author | Kong Lingling <lingling.kong@intel.com> | 2022-11-08 09:51:07 +0800 |
---|---|---|
committer | Cui,Lili <lili.cui@intel.com> | 2022-11-08 10:24:59 +0800 |
commit | b06311adb4bfd964b788c9c406815f1daabc1eb9 (patch) | |
tree | c7d73175ea4f5e720e7ecc0c967156cfd30386bb /gas/config | |
parent | 70f1d4d4848b26882711c3409ee19fd122fbb175 (diff) | |
download | gdb-b06311adb4bfd964b788c9c406815f1daabc1eb9.zip gdb-b06311adb4bfd964b788c9c406815f1daabc1eb9.tar.gz gdb-b06311adb4bfd964b788c9c406815f1daabc1eb9.tar.bz2 |
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 'gas/config')
-rw-r--r-- | gas/config/tc-i386.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gas/config/tc-i386.c b/gas/config/tc-i386.c index a846b9e..6dcf114 100644 --- a/gas/config/tc-i386.c +++ b/gas/config/tc-i386.c @@ -1102,6 +1102,7 @@ static const arch_entry cpu_arch[] = SUBARCH (wrmsrns, WRMSRNS, ANY_WRMSRNS, false), SUBARCH (msrlist, MSRLIST, ANY_MSRLIST, false), SUBARCH (avx_ne_convert, AVX_NE_CONVERT, ANY_AVX_NE_CONVERT, false), + SUBARCH (rao_int, RAO_INT, ANY_RAO_INT, false), }; #undef SUBARCH |