This is the mail archive of the binutils-cvs@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

gdb and binutils branch master updated. 5fc35d961bda7f8d40bfad9ca458a6b08de02bcb


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "gdb and binutils".

The branch, master has been updated
       via  5fc35d961bda7f8d40bfad9ca458a6b08de02bcb (commit)
      from  40acf43aadb4d5348cff0dd554ae97de4dd775af (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=5fc35d961bda7f8d40bfad9ca458a6b08de02bcb

commit 5fc35d961bda7f8d40bfad9ca458a6b08de02bcb
Author: Ilya Tocar <ilya.tocar@intel.com>
Date:   Thu Mar 20 13:12:16 2014 +0400

    Fix memory size for gather/scatter instructions
    
    For gathers with indices larger than elements (e. g.)
    
    vpgatherqd      ymm6{k1}, ZMMWORD PTR [ebp+zmm7*8-123]
    
    We currently treat memory size as a size of index register, while it is
    actually should be size of destination register:
    
    vpgatherqd      ymm6{k1}, YMMWORD PTR [ebp+zmm7*8-123]
    
    This patch fixes it.
    
    opcodes/
    
            * i386-opc.tbl: Change memory size for vgatherpf0qps, vgatherpf1qps,
            vscatterpf0qps, vscatterpf1qps, vgatherqps, vpgatherqd, vpscatterqd,
            vscatterqps.
            * i386-tbl.h: Regenerate.
    
    gas/testsuite/
    
            * gas/i386/avx512pf-intel.d: Change memory size for vgatherpf0qps,
            vgatherpf1qps, vscatterpf0qps, vscatterpf1qps.
            * gas/i386/avx512pf.s: Ditto.
            * gas/i386/x86-64-avx512pf-intel.d: Ditto.
            * gas/i386/x86-64-avx512pf.s: Ditto.
            * gas/i386/avx512f-intel.d: Change memory size for vgatherqps,
            vpgatherqd, vpscatterqd, vscatterqps.
            * gas/i386/avx512f.s: Ditto.
            * gas/i386/x86-64-avx512f-intel.d: Ditto.
            * gas/i386/x86-64-avx512f.s: Ditto.

-----------------------------------------------------------------------

Summary of changes:
 gas/testsuite/ChangeLog                        |   13 +++++
 gas/testsuite/gas/i386/avx512f-intel.d         |   64 ++++++++++++------------
 gas/testsuite/gas/i386/avx512f.s               |   32 ++++++------
 gas/testsuite/gas/i386/avx512pf-intel.d        |   64 ++++++++++++------------
 gas/testsuite/gas/i386/avx512pf.s              |   32 ++++++------
 gas/testsuite/gas/i386/x86-64-avx512f-intel.d  |   64 ++++++++++++------------
 gas/testsuite/gas/i386/x86-64-avx512f.s        |   32 ++++++------
 gas/testsuite/gas/i386/x86-64-avx512pf-intel.d |   64 ++++++++++++------------
 gas/testsuite/gas/i386/x86-64-avx512pf.s       |   32 ++++++------
 opcodes/ChangeLog                              |    7 +++
 opcodes/i386-dis-evex.h                        |   16 +++---
 opcodes/i386-dis.c                             |   32 +++++++++++-
 opcodes/i386-opc.tbl                           |   16 +++---
 opcodes/i386-tbl.h                             |   16 +++---
 14 files changed, 265 insertions(+), 219 deletions(-)


hooks/post-receive
-- 
gdb and binutils


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]