gdb/
[external/binutils.git] / gdb / amd64-linux-nat.c
1 /* Native-dependent code for GNU/Linux x86-64.
2
3    Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
4    2011 Free Software Foundation, Inc.
5    Contributed by Jiri Smid, SuSE Labs.
6
7    This file is part of GDB.
8
9    This program is free software; you can redistribute it and/or modify
10    it under the terms of the GNU General Public License as published by
11    the Free Software Foundation; either version 3 of the License, or
12    (at your option) any later version.
13
14    This program is distributed in the hope that it will be useful,
15    but WITHOUT ANY WARRANTY; without even the implied warranty of
16    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17    GNU General Public License for more details.
18
19    You should have received a copy of the GNU General Public License
20    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
21
22 #include "defs.h"
23 #include "inferior.h"
24 #include "gdbcore.h"
25 #include "regcache.h"
26 #include "regset.h"
27 #include "linux-nat.h"
28 #include "amd64-linux-tdep.h"
29
30 #include "gdb_assert.h"
31 #include "gdb_string.h"
32 #include "elf/common.h"
33 #include <sys/uio.h>
34 #include <sys/ptrace.h>
35 #include <sys/debugreg.h>
36 #include <sys/syscall.h>
37 #include <sys/procfs.h>
38 #include <asm/prctl.h>
39 /* FIXME ezannoni-2003-07-09: we need <sys/reg.h> to be included after
40    <asm/ptrace.h> because the latter redefines FS and GS for no apparent
41    reason, and those definitions don't match the ones that libpthread_db
42    uses, which come from <sys/reg.h>.  */
43 /* ezannoni-2003-07-09: I think this is fixed.  The extraneous defs have
44    been removed from ptrace.h in the kernel.  However, better safe than
45    sorry.  */
46 #include <asm/ptrace.h>
47 #include <sys/reg.h>
48 #include "gdb_proc_service.h"
49
50 /* Prototypes for supply_gregset etc.  */
51 #include "gregset.h"
52
53 #include "amd64-tdep.h"
54 #include "i386-linux-tdep.h"
55 #include "amd64-nat.h"
56 #include "i386-nat.h"
57 #include "i386-xstate.h"
58
59 #ifndef PTRACE_GETREGSET
60 #define PTRACE_GETREGSET        0x4204
61 #endif
62
63 #ifndef PTRACE_SETREGSET
64 #define PTRACE_SETREGSET        0x4205
65 #endif
66
67 /* Per-thread arch-specific data we want to keep.  */
68
69 struct arch_lwp_info
70 {
71   /* Non-zero if our copy differs from what's recorded in the thread.  */
72   int debug_registers_changed;
73 };
74
75 /* Does the current host support PTRACE_GETREGSET?  */
76 static int have_ptrace_getregset = -1;
77
78 /* Mapping between the general-purpose registers in GNU/Linux x86-64
79    `struct user' format and GDB's register cache layout for GNU/Linux
80    i386.
81
82    Note that most GNU/Linux x86-64 registers are 64-bit, while the
83    GNU/Linux i386 registers are all 32-bit, but since we're
84    little-endian we get away with that.  */
85
86 /* From <sys/reg.h> on GNU/Linux i386.  */
87 static int amd64_linux_gregset32_reg_offset[] =
88 {
89   RAX * 8, RCX * 8,             /* %eax, %ecx */
90   RDX * 8, RBX * 8,             /* %edx, %ebx */
91   RSP * 8, RBP * 8,             /* %esp, %ebp */
92   RSI * 8, RDI * 8,             /* %esi, %edi */
93   RIP * 8, EFLAGS * 8,          /* %eip, %eflags */
94   CS * 8, SS * 8,               /* %cs, %ss */
95   DS * 8, ES * 8,               /* %ds, %es */
96   FS * 8, GS * 8,               /* %fs, %gs */
97   -1, -1, -1, -1, -1, -1, -1, -1,
98   -1, -1, -1, -1, -1, -1, -1, -1,
99   -1, -1, -1, -1, -1, -1, -1, -1, -1,
100   -1, -1, -1, -1, -1, -1, -1, -1,
101   ORIG_RAX * 8                  /* "orig_eax" */
102 };
103 \f
104
105 /* Transfering the general-purpose registers between GDB, inferiors
106    and core files.  */
107
108 /* Fill GDB's register cache with the general-purpose register values
109    in *GREGSETP.  */
110
111 void
112 supply_gregset (struct regcache *regcache, const elf_gregset_t *gregsetp)
113 {
114   amd64_supply_native_gregset (regcache, gregsetp, -1);
115 }
116
117 /* Fill register REGNUM (if it is a general-purpose register) in
118    *GREGSETP with the value in GDB's register cache.  If REGNUM is -1,
119    do this for all registers.  */
120
121 void
122 fill_gregset (const struct regcache *regcache,
123               elf_gregset_t *gregsetp, int regnum)
124 {
125   amd64_collect_native_gregset (regcache, gregsetp, regnum);
126 }
127
128 /* Transfering floating-point registers between GDB, inferiors and cores.  */
129
130 /* Fill GDB's register cache with the floating-point and SSE register
131    values in *FPREGSETP.  */
132
133 void
134 supply_fpregset (struct regcache *regcache, const elf_fpregset_t *fpregsetp)
135 {
136   amd64_supply_fxsave (regcache, -1, fpregsetp);
137 }
138
139 /* Fill register REGNUM (if it is a floating-point or SSE register) in
140    *FPREGSETP with the value in GDB's register cache.  If REGNUM is
141    -1, do this for all registers.  */
142
143 void
144 fill_fpregset (const struct regcache *regcache,
145                elf_fpregset_t *fpregsetp, int regnum)
146 {
147   amd64_collect_fxsave (regcache, regnum, fpregsetp);
148 }
149 \f
150
151 /* Transferring arbitrary registers between GDB and inferior.  */
152
153 /* Fetch register REGNUM from the child process.  If REGNUM is -1, do
154    this for all registers (including the floating point and SSE
155    registers).  */
156
157 static void
158 amd64_linux_fetch_inferior_registers (struct target_ops *ops,
159                                       struct regcache *regcache, int regnum)
160 {
161   struct gdbarch *gdbarch = get_regcache_arch (regcache);
162   int tid;
163
164   /* GNU/Linux LWP ID's are process ID's.  */
165   tid = TIDGET (inferior_ptid);
166   if (tid == 0)
167     tid = PIDGET (inferior_ptid); /* Not a threaded program.  */
168
169   if (regnum == -1 || amd64_native_gregset_supplies_p (gdbarch, regnum))
170     {
171       elf_gregset_t regs;
172
173       if (ptrace (PTRACE_GETREGS, tid, 0, (long) &regs) < 0)
174         perror_with_name (_("Couldn't get registers"));
175
176       amd64_supply_native_gregset (regcache, &regs, -1);
177       if (regnum != -1)
178         return;
179     }
180
181   if (regnum == -1 || !amd64_native_gregset_supplies_p (gdbarch, regnum))
182     {
183       elf_fpregset_t fpregs;
184
185       if (have_ptrace_getregset)
186         {
187           char xstateregs[I386_XSTATE_MAX_SIZE];
188           struct iovec iov;
189
190           iov.iov_base = xstateregs;
191           iov.iov_len = sizeof (xstateregs);
192           if (ptrace (PTRACE_GETREGSET, tid,
193                       (unsigned int) NT_X86_XSTATE, (long) &iov) < 0)
194             perror_with_name (_("Couldn't get extended state status"));
195
196           amd64_supply_xsave (regcache, -1, xstateregs);
197         }
198       else
199         {
200           if (ptrace (PTRACE_GETFPREGS, tid, 0, (long) &fpregs) < 0)
201             perror_with_name (_("Couldn't get floating point status"));
202
203           amd64_supply_fxsave (regcache, -1, &fpregs);
204         }
205     }
206 }
207
208 /* Store register REGNUM back into the child process.  If REGNUM is
209    -1, do this for all registers (including the floating-point and SSE
210    registers).  */
211
212 static void
213 amd64_linux_store_inferior_registers (struct target_ops *ops,
214                                       struct regcache *regcache, int regnum)
215 {
216   struct gdbarch *gdbarch = get_regcache_arch (regcache);
217   int tid;
218
219   /* GNU/Linux LWP ID's are process ID's.  */
220   tid = TIDGET (inferior_ptid);
221   if (tid == 0)
222     tid = PIDGET (inferior_ptid); /* Not a threaded program.  */
223
224   if (regnum == -1 || amd64_native_gregset_supplies_p (gdbarch, regnum))
225     {
226       elf_gregset_t regs;
227
228       if (ptrace (PTRACE_GETREGS, tid, 0, (long) &regs) < 0)
229         perror_with_name (_("Couldn't get registers"));
230
231       amd64_collect_native_gregset (regcache, &regs, regnum);
232
233       if (ptrace (PTRACE_SETREGS, tid, 0, (long) &regs) < 0)
234         perror_with_name (_("Couldn't write registers"));
235
236       if (regnum != -1)
237         return;
238     }
239
240   if (regnum == -1 || !amd64_native_gregset_supplies_p (gdbarch, regnum))
241     {
242       elf_fpregset_t fpregs;
243
244       if (have_ptrace_getregset)
245         {
246           char xstateregs[I386_XSTATE_MAX_SIZE];
247           struct iovec iov;
248
249           iov.iov_base = xstateregs;
250           iov.iov_len = sizeof (xstateregs);
251           if (ptrace (PTRACE_GETREGSET, tid,
252                       (unsigned int) NT_X86_XSTATE, (long) &iov) < 0)
253             perror_with_name (_("Couldn't get extended state status"));
254
255           amd64_collect_xsave (regcache, regnum, xstateregs, 0);
256
257           if (ptrace (PTRACE_SETREGSET, tid,
258                       (unsigned int) NT_X86_XSTATE, (long) &iov) < 0)
259             perror_with_name (_("Couldn't write extended state status"));
260         }
261       else
262         {
263           if (ptrace (PTRACE_GETFPREGS, tid, 0, (long) &fpregs) < 0)
264             perror_with_name (_("Couldn't get floating point status"));
265
266           amd64_collect_fxsave (regcache, regnum, &fpregs);
267
268           if (ptrace (PTRACE_SETFPREGS, tid, 0, (long) &fpregs) < 0)
269             perror_with_name (_("Couldn't write floating point status"));
270         }
271     }
272 }
273 \f
274 /* Support for debug registers.  */
275
276 static unsigned long
277 amd64_linux_dr_get (ptid_t ptid, int regnum)
278 {
279   int tid;
280   unsigned long value;
281
282   tid = TIDGET (ptid);
283   if (tid == 0)
284     tid = PIDGET (ptid);
285
286   errno = 0;
287   value = ptrace (PTRACE_PEEKUSER, tid,
288                   offsetof (struct user, u_debugreg[regnum]), 0);
289   if (errno != 0)
290     perror_with_name (_("Couldn't read debug register"));
291
292   return value;
293 }
294
295 /* Set debug register REGNUM to VALUE in only the one LWP of PTID.  */
296
297 static void
298 amd64_linux_dr_set (ptid_t ptid, int regnum, unsigned long value)
299 {
300   int tid;
301
302   tid = TIDGET (ptid);
303   if (tid == 0)
304     tid = PIDGET (ptid);
305
306   errno = 0;
307   ptrace (PTRACE_POKEUSER, tid,
308           offsetof (struct user, u_debugreg[regnum]), value);
309   if (errno != 0)
310     perror_with_name (_("Couldn't write debug register"));
311 }
312
313 /* Return the inferior's debug register REGNUM.  */
314
315 static CORE_ADDR
316 amd64_linux_dr_get_addr (int regnum)
317 {
318   /* DR6 and DR7 are retrieved with some other way.  */
319   gdb_assert (DR_FIRSTADDR <= regnum && regnum <= DR_LASTADDR);
320
321   return amd64_linux_dr_get (inferior_ptid, regnum);
322 }
323
324 /* Return the inferior's DR7 debug control register.  */
325
326 static unsigned long
327 amd64_linux_dr_get_control (void)
328 {
329   return amd64_linux_dr_get (inferior_ptid, DR_CONTROL);
330 }
331
332 /* Get DR_STATUS from only the one LWP of INFERIOR_PTID.  */
333
334 static unsigned long
335 amd64_linux_dr_get_status (void)
336 {
337   return amd64_linux_dr_get (inferior_ptid, DR_STATUS);
338 }
339
340 /* Callback for iterate_over_lwps.  Update the debug registers of
341    LWP.  */
342
343 static int
344 update_debug_registers_callback (struct lwp_info *lwp, void *arg)
345 {
346   if (lwp->arch_private == NULL)
347     lwp->arch_private = XCNEW (struct arch_lwp_info);
348
349   /* The actual update is done later just before resuming the lwp, we
350      just mark that the registers need updating.  */
351   lwp->arch_private->debug_registers_changed = 1;
352
353   /* If the lwp isn't stopped, force it to momentarily pause, so we
354      can update its debug registers.  */
355   if (!lwp->stopped)
356     linux_stop_lwp (lwp);
357
358   /* Continue the iteration.  */
359   return 0;
360 }
361
362 /* Set DR_CONTROL to CONTROL in all LWPs of the current inferior.  */
363
364 static void
365 amd64_linux_dr_set_control (unsigned long control)
366 {
367   ptid_t pid_ptid = pid_to_ptid (ptid_get_pid (inferior_ptid));
368
369   iterate_over_lwps (pid_ptid, update_debug_registers_callback, NULL);
370 }
371
372 /* Set address REGNUM (zero based) to ADDR in all LWPs of the current
373    inferior.  */
374
375 static void
376 amd64_linux_dr_set_addr (int regnum, CORE_ADDR addr)
377 {
378   ptid_t pid_ptid = pid_to_ptid (ptid_get_pid (inferior_ptid));
379
380   gdb_assert (regnum >= 0 && regnum <= DR_LASTADDR - DR_FIRSTADDR);
381
382   iterate_over_lwps (pid_ptid, update_debug_registers_callback, NULL);
383 }
384
385 /* Called when resuming a thread.
386    If the debug regs have changed, update the thread's copies.  */
387
388 static void
389 amd64_linux_prepare_to_resume (struct lwp_info *lwp)
390 {
391   int clear_status = 0;
392
393   /* NULL means this is the main thread still going through the shell,
394      or, no watchpoint has been set yet.  In that case, there's
395      nothing to do.  */
396   if (lwp->arch_private == NULL)
397     return;
398
399   if (lwp->arch_private->debug_registers_changed)
400     {
401       struct i386_debug_reg_state *state = i386_debug_reg_state ();
402       int i;
403
404       for (i = DR_FIRSTADDR; i <= DR_LASTADDR; i++)
405         if (state->dr_ref_count[i] > 0)
406           {
407             amd64_linux_dr_set (lwp->ptid, i, state->dr_mirror[i]);
408
409             /* If we're setting a watchpoint, any change the inferior
410                had done itself to the debug registers needs to be
411                discarded, otherwise, i386_stopped_data_address can get
412                confused.  */
413             clear_status = 1;
414           }
415
416       amd64_linux_dr_set (lwp->ptid, DR_CONTROL, state->dr_control_mirror);
417
418       lwp->arch_private->debug_registers_changed = 0;
419     }
420
421   if (clear_status || lwp->stopped_by_watchpoint)
422     amd64_linux_dr_set (lwp->ptid, DR_STATUS, 0);
423 }
424
425 static void
426 amd64_linux_new_thread (struct lwp_info *lp)
427 {
428   struct arch_lwp_info *info = XCNEW (struct arch_lwp_info);
429
430   info->debug_registers_changed = 1;
431
432   lp->arch_private = info;
433 }
434 \f
435
436 /* This function is called by libthread_db as part of its handling of
437    a request for a thread's local storage address.  */
438
439 ps_err_e
440 ps_get_thread_area (const struct ps_prochandle *ph,
441                     lwpid_t lwpid, int idx, void **base)
442 {
443   if (gdbarch_ptr_bit (target_gdbarch) == 32)
444     {
445       /* The full structure is found in <asm-i386/ldt.h>.  The second
446          integer is the LDT's base_address and that is used to locate
447          the thread's local storage.  See i386-linux-nat.c more
448          info.  */
449       unsigned int desc[4];
450
451       /* This code assumes that "int" is 32 bits and that
452          GET_THREAD_AREA returns no more than 4 int values.  */
453       gdb_assert (sizeof (int) == 4);   
454 #ifndef PTRACE_GET_THREAD_AREA
455 #define PTRACE_GET_THREAD_AREA 25
456 #endif
457       if  (ptrace (PTRACE_GET_THREAD_AREA, 
458                    lwpid, (void *) (long) idx, (unsigned long) &desc) < 0)
459         return PS_ERR;
460       
461       /* Extend the value to 64 bits.  Here it's assumed that a "long"
462          and a "void *" are the same.  */
463       (*base) = (void *) (long) desc[1];
464       return PS_OK;
465     }
466   else
467     {
468       /* This definition comes from prctl.h, but some kernels may not
469          have it.  */
470 #ifndef PTRACE_ARCH_PRCTL
471 #define PTRACE_ARCH_PRCTL      30
472 #endif
473       /* FIXME: ezannoni-2003-07-09 see comment above about include
474          file order.  We could be getting bogus values for these two.  */
475       gdb_assert (FS < ELF_NGREG);
476       gdb_assert (GS < ELF_NGREG);
477       switch (idx)
478         {
479         case FS:
480           if (ptrace (PTRACE_ARCH_PRCTL, lwpid, base, ARCH_GET_FS) == 0)
481             return PS_OK;
482           break;
483         case GS:
484           if (ptrace (PTRACE_ARCH_PRCTL, lwpid, base, ARCH_GET_GS) == 0)
485             return PS_OK;
486           break;
487         default:                   /* Should not happen.  */
488           return PS_BADADDR;
489         }
490     }
491   return PS_ERR;               /* ptrace failed.  */
492 }
493 \f
494
495 static void (*super_post_startup_inferior) (ptid_t ptid);
496
497 static void
498 amd64_linux_child_post_startup_inferior (ptid_t ptid)
499 {
500   i386_cleanup_dregs ();
501   super_post_startup_inferior (ptid);
502 }
503 \f
504
505 /* When GDB is built as a 64-bit application on linux, the
506    PTRACE_GETSIGINFO data is always presented in 64-bit layout.  Since
507    debugging a 32-bit inferior with a 64-bit GDB should look the same
508    as debugging it with a 32-bit GDB, we do the 32-bit <-> 64-bit
509    conversion in-place ourselves.  */
510
511 /* These types below (compat_*) define a siginfo type that is layout
512    compatible with the siginfo type exported by the 32-bit userspace
513    support.  */
514
515 typedef int compat_int_t;
516 typedef unsigned int compat_uptr_t;
517
518 typedef int compat_time_t;
519 typedef int compat_timer_t;
520 typedef int compat_clock_t;
521
522 struct compat_timeval
523 {
524   compat_time_t tv_sec;
525   int tv_usec;
526 };
527
528 typedef union compat_sigval
529 {
530   compat_int_t sival_int;
531   compat_uptr_t sival_ptr;
532 } compat_sigval_t;
533
534 typedef struct compat_siginfo
535 {
536   int si_signo;
537   int si_errno;
538   int si_code;
539
540   union
541   {
542     int _pad[((128 / sizeof (int)) - 3)];
543
544     /* kill() */
545     struct
546     {
547       unsigned int _pid;
548       unsigned int _uid;
549     } _kill;
550
551     /* POSIX.1b timers */
552     struct
553     {
554       compat_timer_t _tid;
555       int _overrun;
556       compat_sigval_t _sigval;
557     } _timer;
558
559     /* POSIX.1b signals */
560     struct
561     {
562       unsigned int _pid;
563       unsigned int _uid;
564       compat_sigval_t _sigval;
565     } _rt;
566
567     /* SIGCHLD */
568     struct
569     {
570       unsigned int _pid;
571       unsigned int _uid;
572       int _status;
573       compat_clock_t _utime;
574       compat_clock_t _stime;
575     } _sigchld;
576
577     /* SIGILL, SIGFPE, SIGSEGV, SIGBUS */
578     struct
579     {
580       unsigned int _addr;
581     } _sigfault;
582
583     /* SIGPOLL */
584     struct
585     {
586       int _band;
587       int _fd;
588     } _sigpoll;
589   } _sifields;
590 } compat_siginfo_t;
591
592 #define cpt_si_pid _sifields._kill._pid
593 #define cpt_si_uid _sifields._kill._uid
594 #define cpt_si_timerid _sifields._timer._tid
595 #define cpt_si_overrun _sifields._timer._overrun
596 #define cpt_si_status _sifields._sigchld._status
597 #define cpt_si_utime _sifields._sigchld._utime
598 #define cpt_si_stime _sifields._sigchld._stime
599 #define cpt_si_ptr _sifields._rt._sigval.sival_ptr
600 #define cpt_si_addr _sifields._sigfault._addr
601 #define cpt_si_band _sifields._sigpoll._band
602 #define cpt_si_fd _sifields._sigpoll._fd
603
604 /* glibc at least up to 2.3.2 doesn't have si_timerid, si_overrun.
605    In their place is si_timer1,si_timer2.  */
606 #ifndef si_timerid
607 #define si_timerid si_timer1
608 #endif
609 #ifndef si_overrun
610 #define si_overrun si_timer2
611 #endif
612
613 static void
614 compat_siginfo_from_siginfo (compat_siginfo_t *to, siginfo_t *from)
615 {
616   memset (to, 0, sizeof (*to));
617
618   to->si_signo = from->si_signo;
619   to->si_errno = from->si_errno;
620   to->si_code = from->si_code;
621
622   if (to->si_code == SI_TIMER)
623     {
624       to->cpt_si_timerid = from->si_timerid;
625       to->cpt_si_overrun = from->si_overrun;
626       to->cpt_si_ptr = (intptr_t) from->si_ptr;
627     }
628   else if (to->si_code == SI_USER)
629     {
630       to->cpt_si_pid = from->si_pid;
631       to->cpt_si_uid = from->si_uid;
632     }
633   else if (to->si_code < 0)
634     {
635       to->cpt_si_pid = from->si_pid;
636       to->cpt_si_uid = from->si_uid;
637       to->cpt_si_ptr = (intptr_t) from->si_ptr;
638     }
639   else
640     {
641       switch (to->si_signo)
642         {
643         case SIGCHLD:
644           to->cpt_si_pid = from->si_pid;
645           to->cpt_si_uid = from->si_uid;
646           to->cpt_si_status = from->si_status;
647           to->cpt_si_utime = from->si_utime;
648           to->cpt_si_stime = from->si_stime;
649           break;
650         case SIGILL:
651         case SIGFPE:
652         case SIGSEGV:
653         case SIGBUS:
654           to->cpt_si_addr = (intptr_t) from->si_addr;
655           break;
656         case SIGPOLL:
657           to->cpt_si_band = from->si_band;
658           to->cpt_si_fd = from->si_fd;
659           break;
660         default:
661           to->cpt_si_pid = from->si_pid;
662           to->cpt_si_uid = from->si_uid;
663           to->cpt_si_ptr = (intptr_t) from->si_ptr;
664           break;
665         }
666     }
667 }
668
669 static void
670 siginfo_from_compat_siginfo (siginfo_t *to, compat_siginfo_t *from)
671 {
672   memset (to, 0, sizeof (*to));
673
674   to->si_signo = from->si_signo;
675   to->si_errno = from->si_errno;
676   to->si_code = from->si_code;
677
678   if (to->si_code == SI_TIMER)
679     {
680       to->si_timerid = from->cpt_si_timerid;
681       to->si_overrun = from->cpt_si_overrun;
682       to->si_ptr = (void *) (intptr_t) from->cpt_si_ptr;
683     }
684   else if (to->si_code == SI_USER)
685     {
686       to->si_pid = from->cpt_si_pid;
687       to->si_uid = from->cpt_si_uid;
688     }
689   if (to->si_code < 0)
690     {
691       to->si_pid = from->cpt_si_pid;
692       to->si_uid = from->cpt_si_uid;
693       to->si_ptr = (void *) (intptr_t) from->cpt_si_ptr;
694     }
695   else
696     {
697       switch (to->si_signo)
698         {
699         case SIGCHLD:
700           to->si_pid = from->cpt_si_pid;
701           to->si_uid = from->cpt_si_uid;
702           to->si_status = from->cpt_si_status;
703           to->si_utime = from->cpt_si_utime;
704           to->si_stime = from->cpt_si_stime;
705           break;
706         case SIGILL:
707         case SIGFPE:
708         case SIGSEGV:
709         case SIGBUS:
710           to->si_addr = (void *) (intptr_t) from->cpt_si_addr;
711           break;
712         case SIGPOLL:
713           to->si_band = from->cpt_si_band;
714           to->si_fd = from->cpt_si_fd;
715           break;
716         default:
717           to->si_pid = from->cpt_si_pid;
718           to->si_uid = from->cpt_si_uid;
719           to->si_ptr = (void* ) (intptr_t) from->cpt_si_ptr;
720           break;
721         }
722     }
723 }
724
725 /* Convert a native/host siginfo object, into/from the siginfo in the
726    layout of the inferiors' architecture.  Returns true if any
727    conversion was done; false otherwise.  If DIRECTION is 1, then copy
728    from INF to NATIVE.  If DIRECTION is 0, copy from NATIVE to
729    INF.  */
730
731 static int
732 amd64_linux_siginfo_fixup (struct siginfo *native, gdb_byte *inf, int direction)
733 {
734   /* Is the inferior 32-bit?  If so, then do fixup the siginfo
735      object.  */
736   if (gdbarch_addr_bit (get_frame_arch (get_current_frame ())) == 32)
737     {
738       gdb_assert (sizeof (struct siginfo) == sizeof (compat_siginfo_t));
739
740       if (direction == 0)
741         compat_siginfo_from_siginfo ((struct compat_siginfo *) inf, native);
742       else
743         siginfo_from_compat_siginfo (native, (struct compat_siginfo *) inf);
744
745       return 1;
746     }
747   else
748     return 0;
749 }
750
751 /* Get Linux/x86 target description from running target.
752
753    Value of CS segment register:
754      1. 64bit process: 0x33.
755      2. 32bit process: 0x23.
756  */
757
758 #define AMD64_LINUX_USER64_CS   0x33
759
760 static const struct target_desc *
761 amd64_linux_read_description (struct target_ops *ops)
762 {
763   unsigned long cs;
764   int tid;
765   int is_64bit;
766   static uint64_t xcr0;
767
768   /* GNU/Linux LWP ID's are process ID's.  */
769   tid = TIDGET (inferior_ptid);
770   if (tid == 0)
771     tid = PIDGET (inferior_ptid); /* Not a threaded program.  */
772
773   /* Get CS register.  */
774   errno = 0;
775   cs = ptrace (PTRACE_PEEKUSER, tid,
776                offsetof (struct user_regs_struct, cs), 0);
777   if (errno != 0)
778     perror_with_name (_("Couldn't get CS register"));
779
780   is_64bit = cs == AMD64_LINUX_USER64_CS;
781
782   if (have_ptrace_getregset == -1)
783     {
784       uint64_t xstateregs[(I386_XSTATE_SSE_SIZE / sizeof (uint64_t))];
785       struct iovec iov;
786
787       iov.iov_base = xstateregs;
788       iov.iov_len = sizeof (xstateregs);
789
790       /* Check if PTRACE_GETREGSET works.  */
791       if (ptrace (PTRACE_GETREGSET, tid,
792                   (unsigned int) NT_X86_XSTATE, (long) &iov) < 0)
793         have_ptrace_getregset = 0;
794       else
795         {
796           have_ptrace_getregset = 1;
797
798           /* Get XCR0 from XSAVE extended state.  */
799           xcr0 = xstateregs[(I386_LINUX_XSAVE_XCR0_OFFSET
800                              / sizeof (uint64_t))];
801         }
802     }
803
804   /* Check the native XCR0 only if PTRACE_GETREGSET is available.  */
805   if (have_ptrace_getregset
806       && (xcr0 & I386_XSTATE_AVX_MASK) == I386_XSTATE_AVX_MASK)
807     {
808       if (is_64bit)
809         return tdesc_amd64_avx_linux;
810       else
811         return tdesc_i386_avx_linux;
812     }
813   else
814     {
815       if (is_64bit)
816         return tdesc_amd64_linux;
817       else
818         return tdesc_i386_linux;
819     }
820 }
821
822 /* Provide a prototype to silence -Wmissing-prototypes.  */
823 void _initialize_amd64_linux_nat (void);
824
825 void
826 _initialize_amd64_linux_nat (void)
827 {
828   struct target_ops *t;
829
830   amd64_native_gregset32_reg_offset = amd64_linux_gregset32_reg_offset;
831   amd64_native_gregset32_num_regs = I386_LINUX_NUM_REGS;
832   amd64_native_gregset64_reg_offset = amd64_linux_gregset_reg_offset;
833   amd64_native_gregset64_num_regs = AMD64_LINUX_NUM_REGS;
834
835   gdb_assert (ARRAY_SIZE (amd64_linux_gregset32_reg_offset)
836               == amd64_native_gregset32_num_regs);
837
838   /* Fill in the generic GNU/Linux methods.  */
839   t = linux_target ();
840
841   i386_use_watchpoints (t);
842
843   i386_dr_low.set_control = amd64_linux_dr_set_control;
844   i386_dr_low.set_addr = amd64_linux_dr_set_addr;
845   i386_dr_low.get_addr = amd64_linux_dr_get_addr;
846   i386_dr_low.get_status = amd64_linux_dr_get_status;
847   i386_dr_low.get_control = amd64_linux_dr_get_control;
848   i386_set_debug_register_length (8);
849
850   /* Override the GNU/Linux inferior startup hook.  */
851   super_post_startup_inferior = t->to_post_startup_inferior;
852   t->to_post_startup_inferior = amd64_linux_child_post_startup_inferior;
853
854   /* Add our register access methods.  */
855   t->to_fetch_registers = amd64_linux_fetch_inferior_registers;
856   t->to_store_registers = amd64_linux_store_inferior_registers;
857
858   t->to_read_description = amd64_linux_read_description;
859
860   /* Register the target.  */
861   linux_nat_add_target (t);
862   linux_nat_set_new_thread (t, amd64_linux_new_thread);
863   linux_nat_set_siginfo_fixup (t, amd64_linux_siginfo_fixup);
864   linux_nat_set_prepare_to_resume (t, amd64_linux_prepare_to_resume);
865 }