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. 963f35869dd021f4a2a236ca6fa1242efc860d86


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  963f35869dd021f4a2a236ca6fa1242efc860d86 (commit)
      from  0548b5db301937e52a34dd6991ae571e21e75b40 (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=963f35869dd021f4a2a236ca6fa1242efc860d86

commit 963f35869dd021f4a2a236ca6fa1242efc860d86
Author: Ilya Tocar <ilya.tocar@intel.com>
Date:   Mon Nov 25 16:35:42 2013 +0400

    Add clflushopt, xsaves, xsavec, xrstors
    
    gas/
    
    2014-02-12  Ilya Tocar  <ilya.tocar@intel.com>
    
    	* config/tc-i386.c (cpu_arch): Add .clflushopt, .xsavec, .xsaves.
    	* doc/c-i386.texi: Document .xsavec/xsavec/.xsaves/xsaves/
    	clflushopt/.clfushopt.
    
    gas/testsuite/
    
    2014-02-12  Ilya Tocar  <ilya.tocar@intel.com>
    
    	* gas/i386/clflushopt-intel.d: New.
    	* gas/i386/clflushopt.d: Ditto.
    	* gas/i386/clflushopt.s: Ditto.
    	* gas/i386/i386.exp: Run new tests.
    	* gas/i386/x86-64-clflushopt-intel.d: New.
    	* gas/i386/x86-64-clflushopt.d: Ditto.
    	* gas/i386/x86-64-clflushopt.s: Ditto.
    	* gas/i386/x86-64-xsavec-intel.d: Ditto.
    	* gas/i386/x86-64-xsavec.d: Ditto.
    	* gas/i386/x86-64-xsavec.s: Ditto.
    	* gas/i386/x86-64-xsaves-intel.d: Ditto.
    	* gas/i386/x86-64-xsaves.d: Ditto.
    	* gas/i386/x86-64-xsaves.s: Ditto.
    	* gas/i386/xsavec-intel.d: Ditto.
    	* gas/i386/xsavec.d: Ditto.
    	* gas/i386/xsavec.s: Ditto.
    	* gas/i386/xsaves-intel.d: Ditto.
    	* gas/i386/xsaves.d: Ditto.
    	* gas/i386/xsaves.s: Ditto.
    
    opcodes/
    
    2014-02-12  Ilya Tocar  <ilya.tocar@intel.com>
    
    	* i386-dis.c (MOD enum): Add MOD_0FC7_REG_3, MOD_0FC7_REG_4,
    	MOD_0FC7_REG_5.
    	(PREFIX enum): Add PREFIX_0FAE_REG_7.
    	(reg_table): Add MOD_0FC7_REG_3, MOD_0FC7_REG_4 MOD_0FC7_REG_5.
    	(prefix_table): Add clflusopt.
    	(mod_table): Add xrstors, xsavec, xsaves.
    	* i386-gen.c (cpu_flag_init): Add CPU_CLFLUSHOPT_FLAGS,
    	CPU_XSAVES_FLAGS, CPU_XSAVEC_FLAGS.
    	(cpu_flags): Add CpuClflushOpt, CpuXSAVES, CpuXSAVEC.
    	* i386-init.h: Regenerate.
    	* i386-opc.tbl: Add clflushopt, xrstors, xrstors64, xsaves,
    	xsaves64, xsavec, xsavec64.
    	* i386-tbl.h: Regenerate.

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

Summary of changes:
 gas/ChangeLog                                    |    6 +
 gas/config/tc-i386.c                             |    6 +
 gas/doc/c-i386.texi                              |    1 +
 gas/testsuite/ChangeLog                          |   22 +
 gas/testsuite/gas/i386/clflushopt-intel.d        |   16 +
 gas/testsuite/gas/i386/clflushopt.d              |   16 +
 gas/testsuite/gas/i386/clflushopt.s              |   12 +
 gas/testsuite/gas/i386/i386.exp                  |   12 +
 gas/testsuite/gas/i386/x86-64-clflushopt-intel.d |   16 +
 gas/testsuite/gas/i386/x86-64-clflushopt.d       |   16 +
 gas/testsuite/gas/i386/x86-64-clflushopt.s       |   12 +
 gas/testsuite/gas/i386/x86-64-xsavec-intel.d     |   16 +
 gas/testsuite/gas/i386/x86-64-xsavec.d           |   16 +
 gas/testsuite/gas/i386/x86-64-xsavec.s           |   12 +
 gas/testsuite/gas/i386/x86-64-xsaves-intel.d     |   20 +
 gas/testsuite/gas/i386/x86-64-xsaves.d           |   20 +
 gas/testsuite/gas/i386/x86-64-xsaves.s           |   16 +
 gas/testsuite/gas/i386/xsavec-intel.d            |   16 +
 gas/testsuite/gas/i386/xsavec.d                  |   16 +
 gas/testsuite/gas/i386/xsavec.s                  |   12 +
 gas/testsuite/gas/i386/xsaves-intel.d            |   20 +
 gas/testsuite/gas/i386/xsaves.d                  |   20 +
 gas/testsuite/gas/i386/xsaves.s                  |   16 +
 opcodes/ChangeLog                                |   16 +
 opcodes/i386-dis.c                               |   31 +-
 opcodes/i386-gen.c                               |    9 +
 opcodes/i386-init.h                              |  200 +-
 opcodes/i386-opc.h                               |    9 +
 opcodes/i386-opc.tbl                             |   22 +
 opcodes/i386-tbl.h                               | 7588 +++++++++++-----------
 30 files changed, 4363 insertions(+), 3847 deletions(-)
 create mode 100644 gas/testsuite/gas/i386/clflushopt-intel.d
 create mode 100644 gas/testsuite/gas/i386/clflushopt.d
 create mode 100644 gas/testsuite/gas/i386/clflushopt.s
 create mode 100644 gas/testsuite/gas/i386/x86-64-clflushopt-intel.d
 create mode 100644 gas/testsuite/gas/i386/x86-64-clflushopt.d
 create mode 100644 gas/testsuite/gas/i386/x86-64-clflushopt.s
 create mode 100644 gas/testsuite/gas/i386/x86-64-xsavec-intel.d
 create mode 100644 gas/testsuite/gas/i386/x86-64-xsavec.d
 create mode 100644 gas/testsuite/gas/i386/x86-64-xsavec.s
 create mode 100644 gas/testsuite/gas/i386/x86-64-xsaves-intel.d
 create mode 100644 gas/testsuite/gas/i386/x86-64-xsaves.d
 create mode 100644 gas/testsuite/gas/i386/x86-64-xsaves.s
 create mode 100644 gas/testsuite/gas/i386/xsavec-intel.d
 create mode 100644 gas/testsuite/gas/i386/xsavec.d
 create mode 100644 gas/testsuite/gas/i386/xsavec.s
 create mode 100644 gas/testsuite/gas/i386/xsaves-intel.d
 create mode 100644 gas/testsuite/gas/i386/xsaves.d
 create mode 100644 gas/testsuite/gas/i386/xsaves.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]