gdb and binutils branch master updated. 49eec19300ff80969c1e9a19e971b48ffa59ef16

yufeng@sourceware.org yufeng@sourceware.org
Tue Nov 5 20:55:00 GMT 2013


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  49eec19300ff80969c1e9a19e971b48ffa59ef16 (commit)
       via  68a642838267d9971f77f9eb487d32044a499c82 (commit)
       via  4e50d5f863090d22db5ce0ec1e7d9e075806fd91 (commit)
      from  62d887d4067efbc5b757e03b0fa54f2a4c81befa (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=49eec19300ff80969c1e9a19e971b48ffa59ef16

commit 49eec19300ff80969c1e9a19e971b48ffa59ef16
Author: Yufeng Zhang <yufeng.zhang@arm.com>
Date:   Tue Nov 5 20:54:22 2013 +0000

    gas/
    
    	* config/tc-aarch64.c (parse_sys_reg): Update to use aarch64_sys_reg;
    	call aarch64_sys_reg_deprecated_p and warn about the deprecated
    	system registers.
    
    gas/testsuite/
    
    	* gas/aarch64/deprecated.d: New file.
    	* gas/aarch64/deprecated.l: New file.
    	* gas/aarch64/deprecated.s: New file.
    	* gas/aarch64/sysreg-1.s: Add tests.
    	* gas/aarch64/sysreg-1.d: Add tests.
    
    include/opcode/
    
    	* aarch64.h (aarch64_sys_reg): New typedef.
    	(aarch64_sys_regs): Change to define with the new type.
    	(aarch64_sys_reg_deprecated_p): Declare.
    
    opcodes/
    
    	* aarch64-opc.c (F_DEPRECATED): New macro.
    	(aarch64_sys_regs): Update; flag "spsr_svc" and "spsr_hyp" with
    	F_DEPRECATED.
    	(aarch64_print_operand): Call aarch64_sys_reg_deprecated_p on
    	AARCH64_OPND_SYSREG.

https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=68a642838267d9971f77f9eb487d32044a499c82

commit 68a642838267d9971f77f9eb487d32044a499c82
Author: Yufeng Zhang <yufeng.zhang@arm.com>
Date:   Tue Nov 5 20:50:18 2013 +0000

    gas/
    
    	* config/tc-aarch64.c (parse_operands): Handle AARCH64_OPND_COND1.
    
    gas/testsuite/
    
    	* gas/aarch64/alias.s: Add tests.
    	* gas/aarch64/alias.d: Update.
    	* gas/aarch64/no-aliases.d: Update.
    	* gas/aarch64/diagnostic.s: Add tests.
    	* gas/aarch64/diagnostic.l: Update.
    	* gas/aarch64/illegal.s: Add tests.
    	* gas/aarch64/illegal.l: Update.
    
    include/opcode/
    
    	* aarch64.h (enum aarch64_operand_class): Add AARCH64_OPND_CLASS_COND.
    	(enum aarch64_opnd): Add AARCH64_OPND_COND1.
    
    opcodes/
    
    	* aarch64-dis.c (convert_ubfm_to_lsl): Check for cond != '111x'.
    	(convert_from_csel): Likewise.
    	* aarch64-opc.c (operand_general_constraint_met_p): Handle
    	AARCH64_OPND_CLASS_COND and AARCH64_OPND_COND1.
    	(aarch64_print_operand): Handle AARCH64_OPND_COND1.
    	* aarch64-tbl.h (aarch64_opcode_table): Use COND1 instead of
    	COND for cinc, cset, cinv, csetm and cneg.
    	(AARCH64_OPERANDS): Add entry for AARCH64_OPND_COND1.
    	* aarch64-asm-2.c: Re-generated.
    	* aarch64-dis-2.c: Ditto.
    	* aarch64-opc-2.c: Ditto.

https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=4e50d5f863090d22db5ce0ec1e7d9e075806fd91

commit 4e50d5f863090d22db5ce0ec1e7d9e075806fd91
Author: Yufeng Zhang <yufeng.zhang@arm.com>
Date:   Tue Nov 5 20:46:24 2013 +0000

    opcodes/
    
    	* aarch64-opc.c (set_syntax_error): New function.
    	(operand_general_constraint_met_p): Replace set_other_error
    	with set_syntax_error.
    
    gas/testsuite/
    
    	* gas/aarch64/diagnostic.s: Add tests of ldp/stp.
    	* gas/aarch64/diagnostic.l: Update.

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

Summary of changes:
 gas/ChangeLog                          |   10 +
 gas/config/tc-aarch64.c                |   17 +-
 gas/testsuite/ChangeLog                |   23 ++
 gas/testsuite/gas/aarch64/alias.d      |   10 +
 gas/testsuite/gas/aarch64/alias.s      |   11 +
 gas/testsuite/gas/aarch64/deprecated.d |    4 +
 gas/testsuite/gas/aarch64/deprecated.l |    3 +
 gas/testsuite/gas/aarch64/deprecated.s |    5 +
 gas/testsuite/gas/aarch64/diagnostic.l |   10 +
 gas/testsuite/gas/aarch64/diagnostic.s |   10 +
 gas/testsuite/gas/aarch64/illegal.l    |   12 +-
 gas/testsuite/gas/aarch64/illegal.s    |   12 +-
 gas/testsuite/gas/aarch64/no-aliases.d |   10 +
 gas/testsuite/gas/aarch64/sysreg-1.d   |    6 +
 gas/testsuite/gas/aarch64/sysreg-1.s   |    4 +
 include/opcode/ChangeLog               |   11 +
 include/opcode/aarch64.h               |   13 +-
 opcodes/ChangeLog                      |   28 ++
 opcodes/aarch64-asm-2.c                |   25 +-
 opcodes/aarch64-dis-2.c                |   25 +-
 opcodes/aarch64-dis.c                  |   12 +-
 opcodes/aarch64-opc-2.c                |    3 +-
 opcodes/aarch64-opc.c                  |  659 +++++++++++++++++---------------
 opcodes/aarch64-tbl.h                  |   14 +-
 24 files changed, 583 insertions(+), 354 deletions(-)
 create mode 100644 gas/testsuite/gas/aarch64/deprecated.d
 create mode 100644 gas/testsuite/gas/aarch64/deprecated.l
 create mode 100644 gas/testsuite/gas/aarch64/deprecated.s


hooks/post-receive
-- 
gdb and binutils



More information about the Src-cvs mailing list