This is the mail archive of the gdb-patches@sources.redhat.com 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]

[RFA] Crossdebugging compilation fix for x86-64


Index: ChangeLog
from Michal Ludvig <mludvig@suse.cz>

       * MAINTAINERS (x86-64): Target is not broken anymore.
       * x86-64-tdep.h (sys/reg.h): Delete
       (R15, R14, R13, R12, RBP, RBX, R11, R10, R9, R8, RAX, RCX, RDX,
       RSI, RDI, ORIG, RIP, CS, EFLAGS, RSP, SS): Define. These can't be
       included from sys/reg.h when compiling for cross-debuging.

Index: x86-64-tdep.h
===================================================================
RCS file: /cvs/src/src/gdb/x86-64-tdep.h,v
retrieving revision 1.1
diff -c -3 -p -r1.1 x86-64-tdep.h
*** x86-64-tdep.h       2001/09/21 12:19:15     1.1
--- x86-64-tdep.h       2002/03/04 12:26:44
***************
*** 24,30 ****
   #define X86_64_TDEP_H

   #include "i386-tdep.h"
! #include <sys/reg.h>

   /* Mapping between the general-purpose registers in `struct user'
      format and GDB's register array layout.  */
--- 24,55 ----
   #define X86_64_TDEP_H

   #include "i386-tdep.h"
!
! /* Because of cross-debugging we can't include glibc's sys/reg.h  */
!
! /* Index into an array of 8 byte longs returned from ptrace for
!    location of the users' stored general purpose registers.  */
!
! #define R14   1
! #define R13   2
! #define R12   3
! #define RBP   4
! #define RBX   5
! #define R11   6
! #define R10   7
! #define R9    8
! #define R8    9
! #define RAX   10
! #define RCX   11
! #define RDX   12
! #define RSI   13
! #define RDI   14
! #define ORIG_RAX 15
! #define RIP   16
! #define CS    17
! #define EFLAGS        18
! #define RSP   19
! #define SS    20

   /* Mapping between the general-purpose registers in `struct user'
      format and GDB's register array layout.  */


Michal Ludvig
-- 
* SuSE CR, s.r.o     * mludvig@suse.cz
* +420 2 9654 5373   * http://www.suse.cz


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]