This is the mail archive of the gdb-cvs@sourceware.org mailing list for the GDB 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. 42995dbda646ff0291a36f83a7f1a9f45e3fda8a


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  42995dbda646ff0291a36f83a7f1a9f45e3fda8a (commit)
      from  e1d2394b50c7b174f48e38efb398034d75e67c99 (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=42995dbda646ff0291a36f83a7f1a9f45e3fda8a

commit 42995dbda646ff0291a36f83a7f1a9f45e3fda8a
Author: Gary Benson <gbenson@redhat.com>
Date:   Thu Jun 19 11:55:26 2014 +0100

    Vectorize gdbserver x86 debug register accessors
    
    This commit makes gdbserver access the x86 debug register accessor
    functions via the same function vector as GDB proper.  This removes
    a chunk of conditional code that was previously in i386-{nat,low}.h
    and leaves a single macro as the only GDB/gdbserver difference in
    nat/i386-dregs.c.
    
    gdb/
    2014-06-20  Gary Benson  <gbenson@redhat.com>
    
    	* i386-nat.h (debug_hw_points): Moved to nat/i386-dregs.c.
    	(i386_dr_low_type): Moved to nat/i386-dregs.h.
    	(i386_dr_low): Likewise.
    	(i386_dr_low_can_set_addr): Moved to nat/i386-dregs.c.
    	(i386_dr_low_set_addr): Likewise.
    	(i386_dr_low_get_addr): Likewise.
    	(i386_dr_low_can_set_control): Likewise.
    	(i386_dr_low_set_control): Likewise.
    	(i386_dr_low_get_control): Likewise.
    	(i386_dr_low_get_status): Likewise.
    	(i386_get_debug_register_length): Likewise.
    	* nat/i386-dregs.h (i386_dr_low_type): Moved from i386-nat.h.
    	(i386_dr_low): Likewise.
    	* nat/i386-dregs.c (i386-low.h): Remove include.
    	(i386-nat.h): Likewise.
    	(nat/i386-dregs.h): New include.
    	(i386_dr_low_can_set_addr): Moved from i386-nat.h.
    	(i386_dr_low_set_addr): Likewise.
    	(i386_dr_low_get_addr): Likewise.
    	(i386_dr_low_can_set_control): Likewise.
    	(i386_dr_low_set_control): Likewise.
    	(i386_dr_low_get_control): Likewise.
    	(i386_dr_low_get_status): Likewise.
    	(i386_get_debug_register_length): Likewise.
    	(debug_hw_points): Likewise.
    
    gdb/gdbserver/
    2014-06-20  Gary Benson  <gbenson@redhat.com>
    
    	* i386-low.h (i386_dr_low_can_set_addr): Removed.
    	(i386_dr_low_set_addr): Likewise.
    	(i386_dr_low_get_addr): Likewise.
    	(i386_dr_low_can_set_control): Likewise.
    	(i386_dr_low_set_control): Likewise.
    	(i386_dr_low_get_control): Likewise.
    	(i386_dr_low_get_status): Likewise.
    	(i386_get_debug_register_length): Likewise.
    	* linux-x86-low.c (i386_dr_low_set_addr):
    	Changed signature.  Made static.
    	(i386_dr_low_get_addr): Likewise.
    	(i386_dr_low_set_control): Likewise.
    	(i386_dr_low_get_control): Likewise.
    	(i386_dr_low_get_status): Likewise.
    	(i386_dr_low): New global variable.
    	* win32-i386-low.c (i386_dr_low_set_addr):
    	Changed signature.  Made static.
    	(i386_dr_low_get_addr): Likewise.
    	(i386_dr_low_set_control): Likewise.
    	(i386_dr_low_get_control): Likewise.
    	(i386_dr_low_get_status): Likewise.
    	(i386_dr_low): New global variable.

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

Summary of changes:
 gdb/ChangeLog                  |   28 ++++++++++++++++
 gdb/gdbserver/ChangeLog        |   25 ++++++++++++++
 gdb/gdbserver/i386-low.h       |   41 -----------------------
 gdb/gdbserver/linux-x86-low.c  |   25 ++++++++++----
 gdb/gdbserver/win32-i386-low.c |   25 ++++++++++----
 gdb/i386-nat.h                 |   70 ----------------------------------------
 gdb/nat/i386-dregs.c           |   37 +++++++++++++++++++--
 gdb/nat/i386-dregs.h           |   31 +++++++++++++++++
 8 files changed, 154 insertions(+), 128 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]