diff options
author | Jan Beulich <jbeulich@novell.com> | 2018-09-13 11:07:07 +0200 |
---|---|---|
committer | Jan Beulich <jbeulich@suse.com> | 2018-09-13 11:07:07 +0200 |
commit | dbbc8b7e629fa666affd9a3f475d0bf6e5264677 (patch) | |
tree | 316472083e52276cc78cdaf84062a83c2cb8489e /opcodes/ChangeLog | |
parent | efb192033ad82855bcfab207f8494e8b1f3e243b (diff) | |
download | gdb-dbbc8b7e629fa666affd9a3f475d0bf6e5264677.zip gdb-dbbc8b7e629fa666affd9a3f475d0bf6e5264677.tar.gz gdb-dbbc8b7e629fa666affd9a3f475d0bf6e5264677.tar.bz2 |
x86: use D attribute also for SIMD templates
Various moves come in load and store forms, and just like on the GPR
and FPU sides there would better be only one pattern. In some cases this
is not feasible because the opcodes are too different, but quite a few
cases follow a similar standard scheme. Introduce Opcode_SIMD_FloatD and
Opcode_SIMD_IntD, generalize handling in operand_size_match() (reverse
operand handling there simply needs to match "straight" operand one),
and fix a long standing, but so far only latent bug with when to zap
found_reverse_match.
Also once again drop IgnoreSize where pointlessly applied to templates
touched anyway as well as *word when redundant with Reg*.
Diffstat (limited to 'opcodes/ChangeLog')
-rw-r--r-- | opcodes/ChangeLog | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 870e8fc..cf63bd5 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,5 +1,17 @@ 2018-09-13 Jan Beulich <jbeulich@suse.com> + * i386-opc.tbl (bndmov, kmovb, kmovd, kmovq, kmovw, movapd, + movaps, movd, movdqa, movdqu, movhpd, movhps, movlpd, movlps, + movq, movsd, movss, movupd, movups, vmovapd, vmovaps, vmovd, + vmovdqa, vmovdqa32, vmovdqa64, vmovdqu, vmovdqu16, vmovdqu32, + vmovdqu64, vmovdqu8, vmovq, vmovsd, vmovss, vmovupd, vmovups): + Fold load and store templates where possible, adding D. Drop + IgnoreSize where it was pointlessly present. Drop redundant + *word. + * i386-tbl.h: Re-generate. + +2018-09-13 Jan Beulich <jbeulich@suse.com> + * i386-dis.c (Mv_bnd, v_bndmk_mode): New. (mod_table): Use Mv_bnd for bndldx, bndstx, and bndmk. (intel_operand_size): Handle v_bndmk_mode. |