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


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  df7e526582809b829ee8651a1315a17627cfea4d (commit)
      from  ed859da732b00d5928f0b311454fa6474c04c15b (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=df7e526582809b829ee8651a1315a17627cfea4d

commit df7e526582809b829ee8651a1315a17627cfea4d
Author: Gary Benson <gbenson@redhat.com>
Date:   Tue Aug 19 15:16:11 2014 +0100

    Rename 32- and 64-bit Intel files from "i386" to "x86"
    
    This commit renames nine files that contain code used by both 32- and
    64-bit Intel ports such that their names are prefixed with "x86"
    rather than "i386".  All types, functions and variables within these
    files are likewise renamed such that their names are prefixed with
    "x86" rather than "i386".  This makes GDB follow the convention used
    by gdbserver such that 32-bit Intel code lives in files called
    "i386-*", 64-bit Intel code lives in files called "amd64-*", and code
    for both 32- and 64-bit Intel lives in files called "x86-*".
    
    This commit only renames OS-independent files.  The Linux ports of
    both GDB and gdbserver now follow the i386/amd64/x86 convention fully.
    Some ports still use the old convention where "i386" in file/function/
    type/variable names can mean "32-bit only" or "32- and 64-bit" but I
    don't want to touch ports I can't fully test except where absolutely
    necessary.
    
    gdb/ChangeLog:
    
    	* i386-nat.h: Renamed as...
    	* x86-nat.h: New file.  All type, function and variable name
    	prefixes changed from "i386_" to "x86_".  All references updated.
    	* i386-nat.c: Renamed as...
    	* x86-nat.c: New file.  All type, function and variable name
    	prefixes changed from "i386_" to "x86_".  All references updated.
    	* common/i386-xstate.h: Renamed as...
    	* common/x86-xstate.h: New file.  All type, function and variable
    	name prefixes changed from "i386_" to "x86_".  All references
    	updated.
    	* nat/i386-cpuid.h: Renamed as...
    	* nat/x86-cpuid.h: New file.  All type, function and variable name
    	prefixes changed from "i386_" to "x86_".  All references updated.
    	* nat/i386-gcc-cpuid.h: Renamed as...
    	* nat/x86-gcc-cpuid.h: New file.  All type, function and variable
    	name prefixes changed from "i386_" to "x86_".  All references
    	updated.
    	* nat/i386-dregs.h: Renamed as...
    	* nat/x86-dregs.h: New file.  All type, function and variable name
    	prefixes changed from "i386_" to "x86_".  All references updated.
    	* nat/i386-dregs.c: Renamed as...
    	* nat/x86-dregs.c: New file.  All type, function and variable name
    	prefixes changed from "i386_" to "x86_".  All references updated.
    
    gdb/gdbserver/ChangeLog:
    
    	* i386-low.h: Renamed as...
    	* x86-low.h: New file.  All type, function and variable name
    	prefixes changed from "i386_" to "x86_".  All references updated.
    	* i386-low.c: Renamed as...
    	* x86-low.c: New file.  All type, function and variable name
    	prefixes changed from "i386_" to "x86_".  All references updated.

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

Summary of changes:
 gdb/ChangeLog                        |   26 ++
 gdb/Makefile.in                      |   14 +-
 gdb/amd64-linux-nat.c                |    6 +-
 gdb/amd64-linux-tdep.c               |   14 +-
 gdb/amd64-windows-nat.c              |    4 +-
 gdb/amd64fbsd-nat.c                  |   18 +-
 gdb/common/i386-xstate.h             |   67 ----
 gdb/common/x86-xstate.h              |   67 ++++
 gdb/config/i386/cygwin.mh            |    2 +-
 gdb/config/i386/cygwin64.mh          |    2 +-
 gdb/config/i386/darwin.mh            |    2 +-
 gdb/config/i386/fbsd.mh              |    2 +-
 gdb/config/i386/fbsd64.mh            |    2 +-
 gdb/config/i386/go32.mh              |    2 +-
 gdb/config/i386/linux.mh             |    2 +-
 gdb/config/i386/linux64.mh           |    2 +-
 gdb/config/i386/mingw.mh             |    2 +-
 gdb/config/i386/mingw64.mh           |    2 +-
 gdb/gdbserver/ChangeLog              |    9 +
 gdb/gdbserver/Makefile.in            |    4 +-
 gdb/gdbserver/configure.srv          |   14 +-
 gdb/gdbserver/i386-low.c             |   38 --
 gdb/gdbserver/i386-low.h             |   24 --
 gdb/gdbserver/i387-fp.c              |   92 +++---
 gdb/gdbserver/linux-x86-low.c        |   80 ++--
 gdb/gdbserver/win32-i386-low.c       |   54 ++--
 gdb/gdbserver/x86-low.c              |   38 ++
 gdb/gdbserver/x86-low.h              |   24 ++
 gdb/go32-nat.c                       |   26 +-
 gdb/i386-darwin-nat.c                |   18 +-
 gdb/i386-linux-nat.c                 |    6 +-
 gdb/i386-linux-tdep.c                |   22 +-
 gdb/i386-nat.c                       |  316 ----------------
 gdb/i386-nat.h                       |   57 ---
 gdb/i386-tdep.c                      |   30 +-
 gdb/i386-windows-nat.c               |    4 +-
 gdb/i386fbsd-nat.c                   |   16 +-
 gdb/i387-tdep.c                      |  122 +++---
 gdb/nat/i386-cpuid.h                 |   63 ----
 gdb/nat/i386-dregs.c                 |  664 ----------------------------------
 gdb/nat/i386-dregs.h                 |  126 -------
 gdb/nat/i386-gcc-cpuid.h             |  278 --------------
 gdb/nat/linux-btrace.c               |    6 +-
 gdb/nat/x86-cpuid.h                  |   63 ++++
 gdb/nat/x86-dregs.c                  |  664 ++++++++++++++++++++++++++++++++++
 gdb/nat/x86-dregs.h                  |  126 +++++++
 gdb/nat/x86-gcc-cpuid.h              |  278 ++++++++++++++
 gdb/testsuite/gdb.arch/i386-avx.c    |    4 +-
 gdb/testsuite/gdb.arch/i386-avx512.c |    2 +-
 gdb/testsuite/gdb.arch/i386-mpx.c    |    2 +-
 gdb/testsuite/gdb.arch/i386-sse.c    |    4 +-
 gdb/windows-nat.c                    |   22 +-
 gdb/x86-linux-nat.c                  |   56 ++--
 gdb/x86-nat.c                        |  316 ++++++++++++++++
 gdb/x86-nat.h                        |   57 +++
 55 files changed, 1998 insertions(+), 1963 deletions(-)
 delete mode 100644 gdb/common/i386-xstate.h
 create mode 100644 gdb/common/x86-xstate.h
 delete mode 100644 gdb/gdbserver/i386-low.c
 delete mode 100644 gdb/gdbserver/i386-low.h
 create mode 100644 gdb/gdbserver/x86-low.c
 create mode 100644 gdb/gdbserver/x86-low.h
 delete mode 100644 gdb/i386-nat.c
 delete mode 100644 gdb/i386-nat.h
 delete mode 100644 gdb/nat/i386-cpuid.h
 delete mode 100644 gdb/nat/i386-dregs.c
 delete mode 100644 gdb/nat/i386-dregs.h
 delete mode 100644 gdb/nat/i386-gcc-cpuid.h
 create mode 100644 gdb/nat/x86-cpuid.h
 create mode 100644 gdb/nat/x86-dregs.c
 create mode 100644 gdb/nat/x86-dregs.h
 create mode 100644 gdb/nat/x86-gcc-cpuid.h
 create mode 100644 gdb/x86-nat.c
 create mode 100644 gdb/x86-nat.h


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]