diff options
author | Cui,Lili <lili.cui@intel.com> | 2020-04-07 13:59:50 +0800 |
---|---|---|
committer | Cui,Lili <lili.cui@intel.com> | 2020-04-07 13:59:50 +0800 |
commit | bb651e8b7fc7904b06031a665138e9e6ae79adf3 (patch) | |
tree | a13f7b941e7a5a9e4a81aaae09008a3ff53e8a01 /gas/doc | |
parent | f4a220077b03af3a1f905b7dc6dc84c0a06d582f (diff) | |
download | gdb-bb651e8b7fc7904b06031a665138e9e6ae79adf3.zip gdb-bb651e8b7fc7904b06031a665138e9e6ae79adf3.tar.gz gdb-bb651e8b7fc7904b06031a665138e9e6ae79adf3.tar.bz2 |
Add support for intel TSXLDTRK instructions$
gas/
* config/tc-i386.c (cpu_arch): Add .TSXLDTRK.
(cpu_noarch): Likewise.
* doc/c-i386.texi: Document TSXLDTRK.
* testsuite/gas/i386/i386.exp: Run TSXLDTRK tests.
* testsuite/gas/i386/tsxldtrk.d: Likewise.
* testsuite/gas/i386/tsxldtrk.s: Likewise.
* testsuite/gas/i386/x86-64-tsxldtrk.d: Likewise.
opcodes/
* i386-dis.c (enum): Add PREFIX_0F01_REG_5_MOD_3_RM_1,
(prefix_table): New instructions (see prefixes above).
(rm_table): Likewise.
* i386-gen.c (cpu_flag_init): Add CPU_TSXLDTRK_FLAGS,
CPU_ANY_TSXLDTRK_FLAGS.
(cpu_flags): Add CpuTSXLDTRK.
* i386-opc.h (enum): Add CpuTSXLDTRK.
(i386_cpu_flags): Add cputsxldtrk.
* i386-opc.tbl: Add XSUSPLDTRK insns.
* i386-init.h: Regenerate.
* i386-tbl.h: Likewise.
Diffstat (limited to 'gas/doc')
-rw-r--r-- | gas/doc/c-i386.texi | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gas/doc/c-i386.texi b/gas/doc/c-i386.texi index d42148e..8141a84 100644 --- a/gas/doc/c-i386.texi +++ b/gas/doc/c-i386.texi @@ -188,6 +188,7 @@ accept various extension mnemonics. For example, @code{movdir64b}, @code{enqcmd}, @code{serialize}, +@code{tsxldtrk}, @code{avx512f}, @code{avx512cd}, @code{avx512er}, @@ -223,6 +224,7 @@ accept various extension mnemonics. For example, @code{noavx512_bf16}, @code{noenqcmd}, @code{noserialize}, +@code{notsxldtrk}, @code{vmx}, @code{vmfunc}, @code{smx}, @@ -1495,7 +1497,7 @@ supported on the CPU specified. The choices for @var{cpu_type} are: @item @samp{.clwb} @tab @samp{.rdpid} @tab @samp{.ptwrite} @tab @item @samp{.ibt} @item @samp{.wbnoinvd} @tab @samp{.pconfig} @tab @samp{.waitpkg} @tab @samp{.cldemote} @item @samp{.shstk} @tab @samp{.gfni} @tab @samp{.vaes} @tab @samp{.vpclmulqdq} -@item @samp{.movdiri} @tab @samp{.movdir64b} @tab @samp{.enqcmd} +@item @samp{.movdiri} @tab @samp{.movdir64b} @tab @samp{.enqcmd} @tab @samp{.tsxldtrk} @item @samp{.3dnow} @tab @samp{.3dnowa} @tab @samp{.sse4a} @tab @samp{.sse5} @item @samp{.syscall} @tab @samp{.rdtscp} @tab @samp{.svme} @item @samp{.lwp} @tab @samp{.fma4} @tab @samp{.xop} @tab @samp{.cx16} |