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. dcf893b581c440902d68a0095967acd4ae7ae8d1


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  dcf893b581c440902d68a0095967acd4ae7ae8d1 (commit)
      from  c63528fc47c79721b55f32fe1649762ff9125ae0 (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=dcf893b581c440902d68a0095967acd4ae7ae8d1

commit dcf893b581c440902d68a0095967acd4ae7ae8d1
Author: Ilya Tocar <ilya.tocar@intel.com>
Date:   Thu Feb 20 18:57:31 2014 +0400

    Add support for CPUID PREFETCHWT1
    
    Latest AVX512 spec
    http://download-software.intel.com/sites/default/files/managed/50/1a/319433-018.pdf
    Has CPUID PREFETCHWT1 for prefetchwt1 instruction, which we list as AVX512PF.
    This patch introduces CPUID PREFETCHWT1.
    
    gas/
    
            * config/tc-i386.c (cpu_arch): Add .prefetchwt1.
            * doc/c-i386.texi: Document .prefetchwt1/prefetchwt1.
    
    opcodes/
    
            * i386-gen.c (cpu_flag_init): Add CPU_PREFETCHWT1_FLAGS/
            (cpu_flags): Add CpuPREFETCHWT1.
            * i386-init.h: Regenerate.
            * i386-opc.h (CpuPREFETCHWT1): New.
            (i386_cpu_flags): Add cpuprefetchwt1.
            * i386-opc.tbl: Cahnge CPU of prefetchwt1 from CpuAVX512PF to CpuPREFETCHWT1.
            * i386-tbl.h: Regenerate.
    
    gas/testsuite
    
            * gas/i386/avx512pf-intel.d: Remove prefetchwt1.
            * gas/i386/avx512pf.s: Ditto.
            * gas/i386/avx512pf.d: Ditto.
            * gas/i386/x86-64-avx512pf-intel.d: Ditto.
            * gas/i386/x86-64-avx512pf.s: Ditto.
            * gas/i386/x86-64-avx512pf.d: Ditto.
            * gas/i386/prefetchwt1-intel.d: New file.
            * gas/i386/prefetchwt1.s: Ditto.
            * gas/i386/prefetchwt1.d: Ditto.
            * gas/i386/x86-64-prefetchwt1-intel.d: Ditto.
            * gas/i386/x86-64-prefetchwt1.s: Ditto.
            * gas/i386/x86-64-prefetchwt1.d: Ditto.

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

Summary of changes:
 gas/ChangeLog                                     |    5 +
 gas/config/tc-i386.c                              |    2 +
 gas/doc/c-i386.texi                               |    1 +
 gas/testsuite/ChangeLog                           |   15 +
 gas/testsuite/gas/i386/avx512pf-intel.d           |    4 -
 gas/testsuite/gas/i386/avx512pf.d                 |    4 -
 gas/testsuite/gas/i386/avx512pf.s                 |    6 -
 gas/testsuite/gas/i386/i386.exp                   |    4 +
 gas/testsuite/gas/i386/prefetchwt1-intel.d        |   16 +
 gas/testsuite/gas/i386/prefetchwt1.d              |   15 +
 gas/testsuite/gas/i386/prefetchwt1.s              |   13 +
 gas/testsuite/gas/i386/x86-64-avx512pf-intel.d    |    4 -
 gas/testsuite/gas/i386/x86-64-avx512pf.d          |    4 -
 gas/testsuite/gas/i386/x86-64-avx512pf.s          |    6 -
 gas/testsuite/gas/i386/x86-64-prefetchwt1-intel.d |   16 +
 gas/testsuite/gas/i386/x86-64-prefetchwt1.d       |   15 +
 gas/testsuite/gas/i386/x86-64-prefetchwt1.s       |   13 +
 opcodes/ChangeLog                                 |   10 +
 opcodes/i386-gen.c                                |    3 +
 opcodes/i386-init.h                               |  192 +-
 opcodes/i386-opc.h                                |    3 +
 opcodes/i386-opc.tbl                              |    8 +-
 opcodes/i386-tbl.h                                | 7518 ++++++++++----------
 23 files changed, 3995 insertions(+), 3882 deletions(-)
 create mode 100644 gas/testsuite/gas/i386/prefetchwt1-intel.d
 create mode 100644 gas/testsuite/gas/i386/prefetchwt1.d
 create mode 100644 gas/testsuite/gas/i386/prefetchwt1.s
 create mode 100644 gas/testsuite/gas/i386/x86-64-prefetchwt1-intel.d
 create mode 100644 gas/testsuite/gas/i386/x86-64-prefetchwt1.d
 create mode 100644 gas/testsuite/gas/i386/x86-64-prefetchwt1.s


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]