* linux-x86-low.c (x86_linux_prepare_to_resume): Clear DR6 if the
[external/binutils.git] / gdb / gdbserver / linux-x86-low.c
1 /* GNU/Linux/x86-64 specific low level interface, for the remote server
2    for GDB.
3    Copyright (C) 2002, 2004, 2005, 2006, 2007, 2008, 2009, 2010
4    Free Software Foundation, Inc.
5
6    This file is part of GDB.
7
8    This program is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 3 of the License, or
11    (at your option) any later version.
12
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17
18    You should have received a copy of the GNU General Public License
19    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
20
21 #include <stddef.h>
22 #include <signal.h>
23 #include "server.h"
24 #include "linux-low.h"
25 #include "i387-fp.h"
26 #include "i386-low.h"
27
28 #include "gdb_proc_service.h"
29
30 /* Defined in auto-generated file i386-linux.c.  */
31 void init_registers_i386_linux (void);
32 /* Defined in auto-generated file amd64-linux.c.  */
33 void init_registers_amd64_linux (void);
34
35 #include <sys/reg.h>
36 #include <sys/procfs.h>
37 #include <sys/ptrace.h>
38
39 #ifndef PTRACE_GET_THREAD_AREA
40 #define PTRACE_GET_THREAD_AREA 25
41 #endif
42
43 /* This definition comes from prctl.h, but some kernels may not have it.  */
44 #ifndef PTRACE_ARCH_PRCTL
45 #define PTRACE_ARCH_PRCTL      30
46 #endif
47
48 /* The following definitions come from prctl.h, but may be absent
49    for certain configurations.  */
50 #ifndef ARCH_GET_FS
51 #define ARCH_SET_GS 0x1001
52 #define ARCH_SET_FS 0x1002
53 #define ARCH_GET_FS 0x1003
54 #define ARCH_GET_GS 0x1004
55 #endif
56
57 /* Per-process arch-specific data we want to keep.  */
58
59 struct arch_process_info
60 {
61   struct i386_debug_reg_state debug_reg_state;
62 };
63
64 /* Per-thread arch-specific data we want to keep.  */
65
66 struct arch_lwp_info
67 {
68   /* Non-zero if our copy differs from what's recorded in the thread.  */
69   int debug_registers_changed;
70 };
71
72 #ifdef __x86_64__
73
74 /* Mapping between the general-purpose registers in `struct user'
75    format and GDB's register array layout.
76    Note that the transfer layout uses 64-bit regs.  */
77 static /*const*/ int i386_regmap[] = 
78 {
79   RAX * 8, RCX * 8, RDX * 8, RBX * 8,
80   RSP * 8, RBP * 8, RSI * 8, RDI * 8,
81   RIP * 8, EFLAGS * 8, CS * 8, SS * 8,
82   DS * 8, ES * 8, FS * 8, GS * 8
83 };
84
85 #define I386_NUM_REGS (sizeof (i386_regmap) / sizeof (i386_regmap[0]))
86
87 /* So code below doesn't have to care, i386 or amd64.  */
88 #define ORIG_EAX ORIG_RAX
89
90 static const int x86_64_regmap[] =
91 {
92   RAX * 8, RBX * 8, RCX * 8, RDX * 8,
93   RSI * 8, RDI * 8, RBP * 8, RSP * 8,
94   R8 * 8, R9 * 8, R10 * 8, R11 * 8,
95   R12 * 8, R13 * 8, R14 * 8, R15 * 8,
96   RIP * 8, EFLAGS * 8, CS * 8, SS * 8,
97   DS * 8, ES * 8, FS * 8, GS * 8,
98   -1, -1, -1, -1, -1, -1, -1, -1,
99   -1, -1, -1, -1, -1, -1, -1, -1,
100   -1, -1, -1, -1, -1, -1, -1, -1,
101   -1, -1, -1, -1, -1, -1, -1, -1, -1,
102   ORIG_RAX * 8
103 };
104
105 #define X86_64_NUM_REGS (sizeof (x86_64_regmap) / sizeof (x86_64_regmap[0]))
106
107 #else /* ! __x86_64__ */
108
109 /* Mapping between the general-purpose registers in `struct user'
110    format and GDB's register array layout.  */
111 static /*const*/ int i386_regmap[] = 
112 {
113   EAX * 4, ECX * 4, EDX * 4, EBX * 4,
114   UESP * 4, EBP * 4, ESI * 4, EDI * 4,
115   EIP * 4, EFL * 4, CS * 4, SS * 4,
116   DS * 4, ES * 4, FS * 4, GS * 4
117 };
118
119 #define I386_NUM_REGS (sizeof (i386_regmap) / sizeof (i386_regmap[0]))
120
121 #endif
122 \f
123 /* Called by libthread_db.  */
124
125 ps_err_e
126 ps_get_thread_area (const struct ps_prochandle *ph,
127                     lwpid_t lwpid, int idx, void **base)
128 {
129 #ifdef __x86_64__
130   int use_64bit = register_size (0) == 8;
131
132   if (use_64bit)
133     {
134       switch (idx)
135         {
136         case FS:
137           if (ptrace (PTRACE_ARCH_PRCTL, lwpid, base, ARCH_GET_FS) == 0)
138             return PS_OK;
139           break;
140         case GS:
141           if (ptrace (PTRACE_ARCH_PRCTL, lwpid, base, ARCH_GET_GS) == 0)
142             return PS_OK;
143           break;
144         default:
145           return PS_BADADDR;
146         }
147       return PS_ERR;
148     }
149 #endif
150
151   {
152     unsigned int desc[4];
153
154     if (ptrace (PTRACE_GET_THREAD_AREA, lwpid,
155                 (void *) (intptr_t) idx, (unsigned long) &desc) < 0)
156       return PS_ERR;
157
158     *(int *)base = desc[1];
159     return PS_OK;
160   }
161 }
162 \f
163 static int
164 i386_cannot_store_register (int regno)
165 {
166   return regno >= I386_NUM_REGS;
167 }
168
169 static int
170 i386_cannot_fetch_register (int regno)
171 {
172   return regno >= I386_NUM_REGS;
173 }
174
175 static void
176 x86_fill_gregset (struct regcache *regcache, void *buf)
177 {
178   int i;
179
180 #ifdef __x86_64__
181   if (register_size (0) == 8)
182     {
183       for (i = 0; i < X86_64_NUM_REGS; i++)
184         if (x86_64_regmap[i] != -1)
185           collect_register (regcache, i, ((char *) buf) + x86_64_regmap[i]);
186       return;
187     }
188 #endif
189
190   for (i = 0; i < I386_NUM_REGS; i++)
191     collect_register (regcache, i, ((char *) buf) + i386_regmap[i]);
192
193   collect_register_by_name (regcache, "orig_eax",
194                             ((char *) buf) + ORIG_EAX * 4);
195 }
196
197 static void
198 x86_store_gregset (struct regcache *regcache, const void *buf)
199 {
200   int i;
201
202 #ifdef __x86_64__
203   if (register_size (0) == 8)
204     {
205       for (i = 0; i < X86_64_NUM_REGS; i++)
206         if (x86_64_regmap[i] != -1)
207           supply_register (regcache, i, ((char *) buf) + x86_64_regmap[i]);
208       return;
209     }
210 #endif
211
212   for (i = 0; i < I386_NUM_REGS; i++)
213     supply_register (regcache, i, ((char *) buf) + i386_regmap[i]);
214
215   supply_register_by_name (regcache, "orig_eax",
216                            ((char *) buf) + ORIG_EAX * 4);
217 }
218
219 static void
220 x86_fill_fpregset (struct regcache *regcache, void *buf)
221 {
222 #ifdef __x86_64__
223   i387_cache_to_fxsave (regcache, buf);
224 #else
225   i387_cache_to_fsave (regcache, buf);
226 #endif
227 }
228
229 static void
230 x86_store_fpregset (struct regcache *regcache, const void *buf)
231 {
232 #ifdef __x86_64__
233   i387_fxsave_to_cache (regcache, buf);
234 #else
235   i387_fsave_to_cache (regcache, buf);
236 #endif
237 }
238
239 #ifndef __x86_64__
240
241 static void
242 x86_fill_fpxregset (struct regcache *regcache, void *buf)
243 {
244   i387_cache_to_fxsave (regcache, buf);
245 }
246
247 static void
248 x86_store_fpxregset (struct regcache *regcache, const void *buf)
249 {
250   i387_fxsave_to_cache (regcache, buf);
251 }
252
253 #endif
254
255 /* ??? The non-biarch i386 case stores all the i387 regs twice.
256    Once in i387_.*fsave.* and once in i387_.*fxsave.*.
257    This is, presumably, to handle the case where PTRACE_[GS]ETFPXREGS
258    doesn't work.  IWBN to avoid the duplication in the case where it
259    does work.  Maybe the arch_setup routine could check whether it works
260    and update target_regsets accordingly, maybe by moving target_regsets
261    to linux_target_ops and set the right one there, rather than having to
262    modify the target_regsets global.  */
263
264 struct regset_info target_regsets[] =
265 {
266 #ifdef HAVE_PTRACE_GETREGS
267   { PTRACE_GETREGS, PTRACE_SETREGS, sizeof (elf_gregset_t),
268     GENERAL_REGS,
269     x86_fill_gregset, x86_store_gregset },
270 # ifndef __x86_64__
271 #  ifdef HAVE_PTRACE_GETFPXREGS
272   { PTRACE_GETFPXREGS, PTRACE_SETFPXREGS, sizeof (elf_fpxregset_t),
273     EXTENDED_REGS,
274     x86_fill_fpxregset, x86_store_fpxregset },
275 #  endif
276 # endif
277   { PTRACE_GETFPREGS, PTRACE_SETFPREGS, sizeof (elf_fpregset_t),
278     FP_REGS,
279     x86_fill_fpregset, x86_store_fpregset },
280 #endif /* HAVE_PTRACE_GETREGS */
281   { 0, 0, -1, -1, NULL, NULL }
282 };
283
284 static CORE_ADDR
285 x86_get_pc (struct regcache *regcache)
286 {
287   int use_64bit = register_size (0) == 8;
288
289   if (use_64bit)
290     {
291       unsigned long pc;
292       collect_register_by_name (regcache, "rip", &pc);
293       return (CORE_ADDR) pc;
294     }
295   else
296     {
297       unsigned int pc;
298       collect_register_by_name (regcache, "eip", &pc);
299       return (CORE_ADDR) pc;
300     }
301 }
302
303 static void
304 x86_set_pc (struct regcache *regcache, CORE_ADDR pc)
305 {
306   int use_64bit = register_size (0) == 8;
307
308   if (use_64bit)
309     {
310       unsigned long newpc = pc;
311       supply_register_by_name (regcache, "rip", &newpc);
312     }
313   else
314     {
315       unsigned int newpc = pc;
316       supply_register_by_name (regcache, "eip", &newpc);
317     }
318 }
319 \f
320 static const unsigned char x86_breakpoint[] = { 0xCC };
321 #define x86_breakpoint_len 1
322
323 static int
324 x86_breakpoint_at (CORE_ADDR pc)
325 {
326   unsigned char c;
327
328   read_inferior_memory (pc, &c, 1);
329   if (c == 0xCC)
330     return 1;
331
332   return 0;
333 }
334 \f
335 /* Support for debug registers.  */
336
337 static unsigned long
338 x86_linux_dr_get (ptid_t ptid, int regnum)
339 {
340   int tid;
341   unsigned long value;
342
343   tid = ptid_get_lwp (ptid);
344
345   errno = 0;
346   value = ptrace (PTRACE_PEEKUSER, tid,
347                   offsetof (struct user, u_debugreg[regnum]), 0);
348   if (errno != 0)
349     error ("Couldn't read debug register");
350
351   return value;
352 }
353
354 static void
355 x86_linux_dr_set (ptid_t ptid, int regnum, unsigned long value)
356 {
357   int tid;
358
359   tid = ptid_get_lwp (ptid);
360
361   errno = 0;
362   ptrace (PTRACE_POKEUSER, tid,
363           offsetof (struct user, u_debugreg[regnum]), value);
364   if (errno != 0)
365     error ("Couldn't write debug register");
366 }
367
368 /* Update the inferior's debug register REGNUM from STATE.  */
369
370 void
371 i386_dr_low_set_addr (const struct i386_debug_reg_state *state, int regnum)
372 {
373   struct inferior_list_entry *lp;
374   CORE_ADDR addr;
375   /* Only need to update the threads of this process.  */
376   int pid = pid_of (get_thread_lwp (current_inferior));
377
378   if (! (regnum >= 0 && regnum <= DR_LASTADDR - DR_FIRSTADDR))
379     fatal ("Invalid debug register %d", regnum);
380
381   addr = state->dr_mirror[regnum];
382
383   for (lp = all_lwps.head; lp; lp = lp->next)
384     {
385       struct lwp_info *lwp = (struct lwp_info *) lp;
386
387       /* The actual update is done later, we just mark that the register
388          needs updating.  */
389       if (pid_of (lwp) == pid)
390         lwp->arch_private->debug_registers_changed = 1;
391     }
392 }
393
394 /* Update the inferior's DR7 debug control register from STATE.  */
395
396 void
397 i386_dr_low_set_control (const struct i386_debug_reg_state *state)
398 {
399   struct inferior_list_entry *lp;
400   /* Only need to update the threads of this process.  */
401   int pid = pid_of (get_thread_lwp (current_inferior));
402
403   for (lp = all_lwps.head; lp; lp = lp->next)
404     {
405       struct lwp_info *lwp = (struct lwp_info *) lp;
406
407       /* The actual update is done later, we just mark that the register
408          needs updating.  */
409       if (pid_of (lwp) == pid)
410         lwp->arch_private->debug_registers_changed = 1;
411     }
412 }
413
414 /* Get the value of the DR6 debug status register from the inferior
415    and record it in STATE.  */
416
417 void
418 i386_dr_low_get_status (struct i386_debug_reg_state *state)
419 {
420   struct lwp_info *lwp = get_thread_lwp (current_inferior);
421   ptid_t ptid = ptid_of (lwp);
422
423   state->dr_status_mirror = x86_linux_dr_get (ptid, DR_STATUS);
424 }
425 \f
426 /* Watchpoint support.  */
427
428 static int
429 x86_insert_point (char type, CORE_ADDR addr, int len)
430 {
431   struct process_info *proc = current_process ();
432   switch (type)
433     {
434     case '2':
435     case '3':
436     case '4':
437       return i386_low_insert_watchpoint (&proc->private->arch_private->debug_reg_state,
438                                          type, addr, len);
439     default:
440       /* Unsupported.  */
441       return 1;
442     }
443 }
444
445 static int
446 x86_remove_point (char type, CORE_ADDR addr, int len)
447 {
448   struct process_info *proc = current_process ();
449   switch (type)
450     {
451     case '2':
452     case '3':
453     case '4':
454       return i386_low_remove_watchpoint (&proc->private->arch_private->debug_reg_state,
455                                          type, addr, len);
456     default:
457       /* Unsupported.  */
458       return 1;
459     }
460 }
461
462 static int
463 x86_stopped_by_watchpoint (void)
464 {
465   struct process_info *proc = current_process ();
466   return i386_low_stopped_by_watchpoint (&proc->private->arch_private->debug_reg_state);
467 }
468
469 static CORE_ADDR
470 x86_stopped_data_address (void)
471 {
472   struct process_info *proc = current_process ();
473   CORE_ADDR addr;
474   if (i386_low_stopped_data_address (&proc->private->arch_private->debug_reg_state,
475                                      &addr))
476     return addr;
477   return 0;
478 }
479 \f
480 /* Called when a new process is created.  */
481
482 static struct arch_process_info *
483 x86_linux_new_process (void)
484 {
485   struct arch_process_info *info = xcalloc (1, sizeof (*info));
486
487   i386_low_init_dregs (&info->debug_reg_state);
488
489   return info;
490 }
491
492 /* Called when a new thread is detected.  */
493
494 static struct arch_lwp_info *
495 x86_linux_new_thread (void)
496 {
497   struct arch_lwp_info *info = xcalloc (1, sizeof (*info));
498
499   info->debug_registers_changed = 1;
500
501   return info;
502 }
503
504 /* Called when resuming a thread.
505    If the debug regs have changed, update the thread's copies.  */
506
507 static void
508 x86_linux_prepare_to_resume (struct lwp_info *lwp)
509 {
510   ptid_t ptid = ptid_of (lwp);
511
512   if (lwp->arch_private->debug_registers_changed)
513     {
514       int i;
515       int pid = ptid_get_pid (ptid);
516       struct process_info *proc = find_process_pid (pid);
517       struct i386_debug_reg_state *state = &proc->private->arch_private->debug_reg_state;
518
519       for (i = DR_FIRSTADDR; i <= DR_LASTADDR; i++)
520         x86_linux_dr_set (ptid, i, state->dr_mirror[i]);
521
522       x86_linux_dr_set (ptid, DR_CONTROL, state->dr_control_mirror);
523
524       lwp->arch_private->debug_registers_changed = 0;
525     }
526
527   if (lwp->stopped_by_watchpoint)
528     x86_linux_dr_set (ptid, DR_STATUS, 0);
529 }
530 \f
531 /* When GDBSERVER is built as a 64-bit application on linux, the
532    PTRACE_GETSIGINFO data is always presented in 64-bit layout.  Since
533    debugging a 32-bit inferior with a 64-bit GDBSERVER should look the same
534    as debugging it with a 32-bit GDBSERVER, we do the 32-bit <-> 64-bit
535    conversion in-place ourselves.  */
536
537 /* These types below (compat_*) define a siginfo type that is layout
538    compatible with the siginfo type exported by the 32-bit userspace
539    support.  */
540
541 #ifdef __x86_64__
542
543 typedef int compat_int_t;
544 typedef unsigned int compat_uptr_t;
545
546 typedef int compat_time_t;
547 typedef int compat_timer_t;
548 typedef int compat_clock_t;
549
550 struct compat_timeval
551 {
552   compat_time_t tv_sec;
553   int tv_usec;
554 };
555
556 typedef union compat_sigval
557 {
558   compat_int_t sival_int;
559   compat_uptr_t sival_ptr;
560 } compat_sigval_t;
561
562 typedef struct compat_siginfo
563 {
564   int si_signo;
565   int si_errno;
566   int si_code;
567
568   union
569   {
570     int _pad[((128 / sizeof (int)) - 3)];
571
572     /* kill() */
573     struct
574     {
575       unsigned int _pid;
576       unsigned int _uid;
577     } _kill;
578
579     /* POSIX.1b timers */
580     struct
581     {
582       compat_timer_t _tid;
583       int _overrun;
584       compat_sigval_t _sigval;
585     } _timer;
586
587     /* POSIX.1b signals */
588     struct
589     {
590       unsigned int _pid;
591       unsigned int _uid;
592       compat_sigval_t _sigval;
593     } _rt;
594
595     /* SIGCHLD */
596     struct
597     {
598       unsigned int _pid;
599       unsigned int _uid;
600       int _status;
601       compat_clock_t _utime;
602       compat_clock_t _stime;
603     } _sigchld;
604
605     /* SIGILL, SIGFPE, SIGSEGV, SIGBUS */
606     struct
607     {
608       unsigned int _addr;
609     } _sigfault;
610
611     /* SIGPOLL */
612     struct
613     {
614       int _band;
615       int _fd;
616     } _sigpoll;
617   } _sifields;
618 } compat_siginfo_t;
619
620 #define cpt_si_pid _sifields._kill._pid
621 #define cpt_si_uid _sifields._kill._uid
622 #define cpt_si_timerid _sifields._timer._tid
623 #define cpt_si_overrun _sifields._timer._overrun
624 #define cpt_si_status _sifields._sigchld._status
625 #define cpt_si_utime _sifields._sigchld._utime
626 #define cpt_si_stime _sifields._sigchld._stime
627 #define cpt_si_ptr _sifields._rt._sigval.sival_ptr
628 #define cpt_si_addr _sifields._sigfault._addr
629 #define cpt_si_band _sifields._sigpoll._band
630 #define cpt_si_fd _sifields._sigpoll._fd
631
632 /* glibc at least up to 2.3.2 doesn't have si_timerid, si_overrun.
633    In their place is si_timer1,si_timer2.  */
634 #ifndef si_timerid
635 #define si_timerid si_timer1
636 #endif
637 #ifndef si_overrun
638 #define si_overrun si_timer2
639 #endif
640
641 static void
642 compat_siginfo_from_siginfo (compat_siginfo_t *to, siginfo_t *from)
643 {
644   memset (to, 0, sizeof (*to));
645
646   to->si_signo = from->si_signo;
647   to->si_errno = from->si_errno;
648   to->si_code = from->si_code;
649
650   if (to->si_code < 0)
651     {
652       to->cpt_si_ptr = (intptr_t) from->si_ptr;
653     }
654   else if (to->si_code == SI_USER)
655     {
656       to->cpt_si_pid = from->si_pid;
657       to->cpt_si_uid = from->si_uid;
658     }
659   else if (to->si_code == SI_TIMER)
660     {
661       to->cpt_si_timerid = from->si_timerid;
662       to->cpt_si_overrun = from->si_overrun;
663       to->cpt_si_ptr = (intptr_t) from->si_ptr;
664     }
665   else
666     {
667       switch (to->si_signo)
668         {
669         case SIGCHLD:
670           to->cpt_si_pid = from->si_pid;
671           to->cpt_si_uid = from->si_uid;
672           to->cpt_si_status = from->si_status;
673           to->cpt_si_utime = from->si_utime;
674           to->cpt_si_stime = from->si_stime;
675           break;
676         case SIGILL:
677         case SIGFPE:
678         case SIGSEGV:
679         case SIGBUS:
680           to->cpt_si_addr = (intptr_t) from->si_addr;
681           break;
682         case SIGPOLL:
683           to->cpt_si_band = from->si_band;
684           to->cpt_si_fd = from->si_fd;
685           break;
686         default:
687           to->cpt_si_pid = from->si_pid;
688           to->cpt_si_uid = from->si_uid;
689           to->cpt_si_ptr = (intptr_t) from->si_ptr;
690           break;
691         }
692     }
693 }
694
695 static void
696 siginfo_from_compat_siginfo (siginfo_t *to, compat_siginfo_t *from)
697 {
698   memset (to, 0, sizeof (*to));
699
700   to->si_signo = from->si_signo;
701   to->si_errno = from->si_errno;
702   to->si_code = from->si_code;
703
704   if (to->si_code < 0)
705     {
706       to->si_ptr = (void *) (intptr_t) from->cpt_si_ptr;
707     }
708   else if (to->si_code == SI_USER)
709     {
710       to->si_pid = from->cpt_si_pid;
711       to->si_uid = from->cpt_si_uid;
712     }
713   else if (to->si_code == SI_TIMER)
714     {
715       to->si_timerid = from->cpt_si_timerid;
716       to->si_overrun = from->cpt_si_overrun;
717       to->si_ptr = (void *) (intptr_t) from->cpt_si_ptr;
718     }
719   else
720     {
721       switch (to->si_signo)
722         {
723         case SIGCHLD:
724           to->si_pid = from->cpt_si_pid;
725           to->si_uid = from->cpt_si_uid;
726           to->si_status = from->cpt_si_status;
727           to->si_utime = from->cpt_si_utime;
728           to->si_stime = from->cpt_si_stime;
729           break;
730         case SIGILL:
731         case SIGFPE:
732         case SIGSEGV:
733         case SIGBUS:
734           to->si_addr = (void *) (intptr_t) from->cpt_si_addr;
735           break;
736         case SIGPOLL:
737           to->si_band = from->cpt_si_band;
738           to->si_fd = from->cpt_si_fd;
739           break;
740         default:
741           to->si_pid = from->cpt_si_pid;
742           to->si_uid = from->cpt_si_uid;
743           to->si_ptr = (void* ) (intptr_t) from->cpt_si_ptr;
744           break;
745         }
746     }
747 }
748
749 #endif /* __x86_64__ */
750
751 /* Convert a native/host siginfo object, into/from the siginfo in the
752    layout of the inferiors' architecture.  Returns true if any
753    conversion was done; false otherwise.  If DIRECTION is 1, then copy
754    from INF to NATIVE.  If DIRECTION is 0, copy from NATIVE to
755    INF.  */
756
757 static int
758 x86_siginfo_fixup (struct siginfo *native, void *inf, int direction)
759 {
760 #ifdef __x86_64__
761   /* Is the inferior 32-bit?  If so, then fixup the siginfo object.  */
762   if (register_size (0) == 4)
763     {
764       if (sizeof (struct siginfo) != sizeof (compat_siginfo_t))
765         fatal ("unexpected difference in siginfo");
766
767       if (direction == 0)
768         compat_siginfo_from_siginfo ((struct compat_siginfo *) inf, native);
769       else
770         siginfo_from_compat_siginfo (native, (struct compat_siginfo *) inf);
771
772       return 1;
773     }
774 #endif
775
776   return 0;
777 }
778 \f
779 /* Initialize gdbserver for the architecture of the inferior.  */
780
781 static void
782 x86_arch_setup (void)
783 {
784 #ifdef __x86_64__
785   int pid = pid_of (get_thread_lwp (current_inferior));
786   char *file = linux_child_pid_to_exec_file (pid);
787   int use_64bit = elf_64_file_p (file);
788
789   free (file);
790
791   if (use_64bit < 0)
792     {
793       /* This can only happen if /proc/<pid>/exe is unreadable,
794          but "that can't happen" if we've gotten this far.
795          Fall through and assume this is a 32-bit program.  */
796     }
797   else if (use_64bit)
798     {
799       init_registers_amd64_linux ();
800
801       /* Amd64 doesn't have HAVE_LINUX_USRREGS.  */
802       the_low_target.num_regs = -1;
803       the_low_target.regmap = NULL;
804       the_low_target.cannot_fetch_register = NULL;
805       the_low_target.cannot_store_register = NULL;
806
807       /* Amd64 has 16 xmm regs.  */
808       num_xmm_registers = 16;
809
810       return;
811     }
812 #endif
813
814   /* Ok we have a 32-bit inferior.  */
815
816   init_registers_i386_linux ();
817
818   the_low_target.num_regs = I386_NUM_REGS;
819   the_low_target.regmap = i386_regmap;
820   the_low_target.cannot_fetch_register = i386_cannot_fetch_register;
821   the_low_target.cannot_store_register = i386_cannot_store_register;
822
823   /* I386 has 8 xmm regs.  */
824   num_xmm_registers = 8;
825 }
826
827 /* This is initialized assuming an amd64 target.
828    x86_arch_setup will correct it for i386 or amd64 targets.  */
829
830 struct linux_target_ops the_low_target =
831 {
832   x86_arch_setup,
833   -1,
834   NULL,
835   NULL,
836   NULL,
837   x86_get_pc,
838   x86_set_pc,
839   x86_breakpoint,
840   x86_breakpoint_len,
841   NULL,
842   1,
843   x86_breakpoint_at,
844   x86_insert_point,
845   x86_remove_point,
846   x86_stopped_by_watchpoint,
847   x86_stopped_data_address,
848   /* collect_ptrace_register/supply_ptrace_register are not needed in the
849      native i386 case (no registers smaller than an xfer unit), and are not
850      used in the biarch case (HAVE_LINUX_USRREGS is not defined).  */
851   NULL,
852   NULL,
853   /* need to fix up i386 siginfo if host is amd64 */
854   x86_siginfo_fixup,
855   x86_linux_new_process,
856   x86_linux_new_thread,
857   x86_linux_prepare_to_resume
858 };