diff options
author | Haochen Jiang <haochen.jiang@intel.com> | 2023-07-24 11:09:49 +0800 |
---|---|---|
committer | Haochen Jiang <haochen.jiang@intel.com> | 2023-07-27 20:52:25 +0800 |
commit | c55ba32b7a7a3cf2ba8a42310f1c3d0b090af3e2 (patch) | |
tree | 1036380164aeffdde1e76bea6b76161d69d64eb0 /opcodes/i386-gen.c | |
parent | 3ac2eb94812e229843d4c799fc6702250e950310 (diff) | |
download | fsf-binutils-gdb-c55ba32b7a7a3cf2ba8a42310f1c3d0b090af3e2.zip fsf-binutils-gdb-c55ba32b7a7a3cf2ba8a42310f1c3d0b090af3e2.tar.gz fsf-binutils-gdb-c55ba32b7a7a3cf2ba8a42310f1c3d0b090af3e2.tar.bz2 |
Support Intel SM3
gas/ChangeLog:
* NEWS: Support Intel SM3.
* config/tc-i386.c: Add sm3.
* doc/c-i386.texi: Document .sm3.
* testsuite/gas/i386/i386.exp: Run sm3 tests.
* testsuite/gas/i386/x86-64.exp: Ditto.
* testsuite/gas/i386/sm3-intel.d: New test.
* testsuite/gas/i386/sm3.d: Ditto.
* testsuite/gas/i386/sm3.s: Ditto.
* testsuite/gas/i386/x86-64-sm3-intel.d: Ditto.
* testsuite/gas/i386/x86-64-sm3.d: Ditto.
* testsuite/gas/i386/x86-64-sm3.s: Ditto.
opcodes/ChangeLog:
* i386-dis.c (PREFIX_VEX_0F38DA_W_0): New.
(VEX_LEN_0F38DA_W_0_P_0): Ditto.
(VEX_LEN_0F38DA_W_0_P_2): Ditto.
(VEX_LEN_0F3ADE_W_0): Ditto.
(VEX_W_0F38DA): Ditto.
(VEX_W_0F3ADE): Ditto.
(prefix_table): Add PREFIX_VEX_0F38DA_W_0.
(vex_len_table): Add VEX_LEN_0F38DA_W_0_P_0,
VEX_LEN_0F38DA_W_0_P_2, VEX_LEN_0F3ADE_W_0.
(vex_w_table): Add VEX_W_0F38DA, VEX_W_0F3ADE.
* i386-gen.c (isa_dependencies): Add SM3.
(cpu_flags): Ditto.
* i386-init.h: Regenerated.
* i386-mnem.h: Ditto.
* i386-opc.h (CpuSM3): New.
(i386_cpu_flags): Add cpusm3.
* i386-opc.tbl: Add SM3 instructions.
* i386-tbl.h: Regenerated.
Diffstat (limited to 'opcodes/i386-gen.c')
-rw-r--r-- | opcodes/i386-gen.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/opcodes/i386-gen.c b/opcodes/i386-gen.c index e252893..11af743 100644 --- a/opcodes/i386-gen.c +++ b/opcodes/i386-gen.c @@ -216,6 +216,8 @@ static const dependency isa_dependencies[] = "SSE2" }, { "SHA512", "AVX2" }, + { "SM3", + "AVX" }, { "XSAVES", "XSAVEC" }, { "XSAVEC", @@ -341,6 +343,7 @@ static bitfield cpu_flags[] = BITFIELD (SMAP), BITFIELD (SHA), BITFIELD (SHA512), + BITFIELD (SM3), BITFIELD (ClflushOpt), BITFIELD (XSAVES), BITFIELD (XSAVEC), |