don't keep a gdb-specific date
[external/binutils.git] / gdb / gdbserver / linux-arm-low.c
1 /* GNU/Linux/ARM specific low level interface, for the remote server for GDB.
2    Copyright (C) 1995-2013 Free Software Foundation, Inc.
3
4    This file is part of GDB.
5
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 3 of the License, or
9    (at your option) any later version.
10
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
18
19 #include "server.h"
20 #include "linux-low.h"
21
22 /* Don't include elf.h if linux/elf.h got included by gdb_proc_service.h.
23    On Bionic elf.h and linux/elf.h have conflicting definitions.  */
24 #ifndef ELFMAG0
25 #include <elf.h>
26 #endif
27 #include <sys/ptrace.h>
28 #include <signal.h>
29
30 /* Defined in auto-generated files.  */
31 void init_registers_arm (void);
32 extern const struct target_desc *tdesc_arm;
33
34 void init_registers_arm_with_iwmmxt (void);
35 extern const struct target_desc *tdesc_arm_with_iwmmxt;
36
37 void init_registers_arm_with_vfpv2 (void);
38 extern const struct target_desc *tdesc_arm_with_vfpv2;
39
40 void init_registers_arm_with_vfpv3 (void);
41 extern const struct target_desc *tdesc_arm_with_vfpv3;
42
43 void init_registers_arm_with_neon (void);
44 extern const struct target_desc *tdesc_arm_with_neon;
45
46 #ifndef PTRACE_GET_THREAD_AREA
47 #define PTRACE_GET_THREAD_AREA 22
48 #endif
49
50 #ifndef PTRACE_GETWMMXREGS
51 # define PTRACE_GETWMMXREGS 18
52 # define PTRACE_SETWMMXREGS 19
53 #endif
54
55 #ifndef PTRACE_GETVFPREGS
56 # define PTRACE_GETVFPREGS 27
57 # define PTRACE_SETVFPREGS 28
58 #endif
59
60 #ifndef PTRACE_GETHBPREGS
61 #define PTRACE_GETHBPREGS 29
62 #define PTRACE_SETHBPREGS 30
63 #endif
64
65 /* Information describing the hardware breakpoint capabilities.  */
66 static struct
67 {
68   unsigned char arch;
69   unsigned char max_wp_length;
70   unsigned char wp_count;
71   unsigned char bp_count;
72 } arm_linux_hwbp_cap;
73
74 /* Enum describing the different types of ARM hardware break-/watch-points.  */
75 typedef enum
76 {
77   arm_hwbp_break = 0,
78   arm_hwbp_load = 1,
79   arm_hwbp_store = 2,
80   arm_hwbp_access = 3
81 } arm_hwbp_type;
82
83 /* Type describing an ARM Hardware Breakpoint Control register value.  */
84 typedef unsigned int arm_hwbp_control_t;
85
86 /* Structure used to keep track of hardware break-/watch-points.  */
87 struct arm_linux_hw_breakpoint
88 {
89   /* Address to break on, or being watched.  */
90   unsigned int address;
91   /* Control register for break-/watch- point.  */
92   arm_hwbp_control_t control;
93 };
94
95 /* Since we cannot dynamically allocate subfields of arch_process_info,
96    assume a maximum number of supported break-/watchpoints.  */
97 #define MAX_BPTS 32
98 #define MAX_WPTS 32
99
100 /* Per-process arch-specific data we want to keep.  */
101 struct arch_process_info
102 {
103   /* Hardware breakpoints for this process.  */
104   struct arm_linux_hw_breakpoint bpts[MAX_BPTS];
105   /* Hardware watchpoints for this process.  */
106   struct arm_linux_hw_breakpoint wpts[MAX_WPTS];
107 };
108
109 /* Per-thread arch-specific data we want to keep.  */
110 struct arch_lwp_info
111 {
112   /* Non-zero if our copy differs from what's recorded in the thread.  */
113   char bpts_changed[MAX_BPTS];
114   char wpts_changed[MAX_WPTS];
115   /* Cached stopped data address.  */
116   CORE_ADDR stopped_data_address;
117 };
118
119 static unsigned long arm_hwcap;
120
121 /* These are in <asm/elf.h> in current kernels.  */
122 #define HWCAP_VFP       64
123 #define HWCAP_IWMMXT    512
124 #define HWCAP_NEON      4096
125 #define HWCAP_VFPv3     8192
126 #define HWCAP_VFPv3D16  16384
127
128 #ifdef HAVE_SYS_REG_H
129 #include <sys/reg.h>
130 #endif
131
132 #define arm_num_regs 26
133
134 static int arm_regmap[] = {
135   0, 4, 8, 12, 16, 20, 24, 28,
136   32, 36, 40, 44, 48, 52, 56, 60,
137   -1, -1, -1, -1, -1, -1, -1, -1, -1,
138   64
139 };
140
141 static int
142 arm_cannot_store_register (int regno)
143 {
144   return (regno >= arm_num_regs);
145 }
146
147 static int
148 arm_cannot_fetch_register (int regno)
149 {
150   return (regno >= arm_num_regs);
151 }
152
153 static void
154 arm_fill_gregset (struct regcache *regcache, void *buf)
155 {
156   int i;
157
158   for (i = 0; i < arm_num_regs; i++)
159     if (arm_regmap[i] != -1)
160       collect_register (regcache, i, ((char *) buf) + arm_regmap[i]);
161 }
162
163 static void
164 arm_store_gregset (struct regcache *regcache, const void *buf)
165 {
166   int i;
167   char zerobuf[8];
168
169   memset (zerobuf, 0, 8);
170   for (i = 0; i < arm_num_regs; i++)
171     if (arm_regmap[i] != -1)
172       supply_register (regcache, i, ((char *) buf) + arm_regmap[i]);
173     else
174       supply_register (regcache, i, zerobuf);
175 }
176
177 static void
178 arm_fill_wmmxregset (struct regcache *regcache, void *buf)
179 {
180   int i;
181
182   if (!(arm_hwcap & HWCAP_IWMMXT))
183     return;
184
185   for (i = 0; i < 16; i++)
186     collect_register (regcache, arm_num_regs + i, (char *) buf + i * 8);
187
188   /* We only have access to wcssf, wcasf, and wcgr0-wcgr3.  */
189   for (i = 0; i < 6; i++)
190     collect_register (regcache, arm_num_regs + i + 16,
191                       (char *) buf + 16 * 8 + i * 4);
192 }
193
194 static void
195 arm_store_wmmxregset (struct regcache *regcache, const void *buf)
196 {
197   int i;
198
199   if (!(arm_hwcap & HWCAP_IWMMXT))
200     return;
201
202   for (i = 0; i < 16; i++)
203     supply_register (regcache, arm_num_regs + i, (char *) buf + i * 8);
204
205   /* We only have access to wcssf, wcasf, and wcgr0-wcgr3.  */
206   for (i = 0; i < 6; i++)
207     supply_register (regcache, arm_num_regs + i + 16,
208                      (char *) buf + 16 * 8 + i * 4);
209 }
210
211 static void
212 arm_fill_vfpregset (struct regcache *regcache, void *buf)
213 {
214   int i, num, base;
215
216   if (!(arm_hwcap & HWCAP_VFP))
217     return;
218
219   if ((arm_hwcap & (HWCAP_VFPv3 | HWCAP_VFPv3D16)) == HWCAP_VFPv3)
220     num = 32;
221   else
222     num = 16;
223
224   base = find_regno (regcache->tdesc, "d0");
225   for (i = 0; i < num; i++)
226     collect_register (regcache, base + i, (char *) buf + i * 8);
227
228   collect_register_by_name (regcache, "fpscr", (char *) buf + 32 * 8);
229 }
230
231 static void
232 arm_store_vfpregset (struct regcache *regcache, const void *buf)
233 {
234   int i, num, base;
235
236   if (!(arm_hwcap & HWCAP_VFP))
237     return;
238
239   if ((arm_hwcap & (HWCAP_VFPv3 | HWCAP_VFPv3D16)) == HWCAP_VFPv3)
240     num = 32;
241   else
242     num = 16;
243
244   base = find_regno (regcache->tdesc, "d0");
245   for (i = 0; i < num; i++)
246     supply_register (regcache, base + i, (char *) buf + i * 8);
247
248   supply_register_by_name (regcache, "fpscr", (char *) buf + 32 * 8);
249 }
250
251 extern int debug_threads;
252
253 static CORE_ADDR
254 arm_get_pc (struct regcache *regcache)
255 {
256   unsigned long pc;
257   collect_register_by_name (regcache, "pc", &pc);
258   if (debug_threads)
259     fprintf (stderr, "stop pc is %08lx\n", pc);
260   return pc;
261 }
262
263 static void
264 arm_set_pc (struct regcache *regcache, CORE_ADDR pc)
265 {
266   unsigned long newpc = pc;
267   supply_register_by_name (regcache, "pc", &newpc);
268 }
269
270 /* Correct in either endianness.  */
271 static const unsigned long arm_breakpoint = 0xef9f0001;
272 #define arm_breakpoint_len 4
273 static const unsigned short thumb_breakpoint = 0xde01;
274 static const unsigned short thumb2_breakpoint[] = { 0xf7f0, 0xa000 };
275
276 /* For new EABI binaries.  We recognize it regardless of which ABI
277    is used for gdbserver, so single threaded debugging should work
278    OK, but for multi-threaded debugging we only insert the current
279    ABI's breakpoint instruction.  For now at least.  */
280 static const unsigned long arm_eabi_breakpoint = 0xe7f001f0;
281
282 static int
283 arm_breakpoint_at (CORE_ADDR where)
284 {
285   struct regcache *regcache = get_thread_regcache (current_inferior, 1);
286   unsigned long cpsr;
287
288   collect_register_by_name (regcache, "cpsr", &cpsr);
289
290   if (cpsr & 0x20)
291     {
292       /* Thumb mode.  */
293       unsigned short insn;
294
295       (*the_target->read_memory) (where, (unsigned char *) &insn, 2);
296       if (insn == thumb_breakpoint)
297         return 1;
298
299       if (insn == thumb2_breakpoint[0])
300         {
301           (*the_target->read_memory) (where + 2, (unsigned char *) &insn, 2);
302           if (insn == thumb2_breakpoint[1])
303             return 1;
304         }
305     }
306   else
307     {
308       /* ARM mode.  */
309       unsigned long insn;
310
311       (*the_target->read_memory) (where, (unsigned char *) &insn, 4);
312       if (insn == arm_breakpoint)
313         return 1;
314
315       if (insn == arm_eabi_breakpoint)
316         return 1;
317     }
318
319   return 0;
320 }
321
322 /* We only place breakpoints in empty marker functions, and thread locking
323    is outside of the function.  So rather than importing software single-step,
324    we can just run until exit.  */
325 static CORE_ADDR
326 arm_reinsert_addr (void)
327 {
328   struct regcache *regcache = get_thread_regcache (current_inferior, 1);
329   unsigned long pc;
330   collect_register_by_name (regcache, "lr", &pc);
331   return pc;
332 }
333
334 /* Fetch the thread-local storage pointer for libthread_db.  */
335
336 ps_err_e
337 ps_get_thread_area (const struct ps_prochandle *ph,
338                     lwpid_t lwpid, int idx, void **base)
339 {
340   if (ptrace (PTRACE_GET_THREAD_AREA, lwpid, NULL, base) != 0)
341     return PS_ERR;
342
343   /* IDX is the bias from the thread pointer to the beginning of the
344      thread descriptor.  It has to be subtracted due to implementation
345      quirks in libthread_db.  */
346   *base = (void *) ((char *)*base - idx);
347
348   return PS_OK;
349 }
350
351
352 /* Query Hardware Breakpoint information for the target we are attached to
353    (using PID as ptrace argument) and set up arm_linux_hwbp_cap.  */
354 static void
355 arm_linux_init_hwbp_cap (int pid)
356 {
357   unsigned int val;
358
359   if (ptrace (PTRACE_GETHBPREGS, pid, 0, &val) < 0)
360     return;
361
362   arm_linux_hwbp_cap.arch = (unsigned char)((val >> 24) & 0xff);
363   if (arm_linux_hwbp_cap.arch == 0)
364     return;
365
366   arm_linux_hwbp_cap.max_wp_length = (unsigned char)((val >> 16) & 0xff);
367   arm_linux_hwbp_cap.wp_count = (unsigned char)((val >> 8) & 0xff);
368   arm_linux_hwbp_cap.bp_count = (unsigned char)(val & 0xff);
369
370   if (arm_linux_hwbp_cap.wp_count > MAX_WPTS)
371     internal_error (__FILE__, __LINE__, "Unsupported number of watchpoints");
372   if (arm_linux_hwbp_cap.bp_count > MAX_BPTS)
373     internal_error (__FILE__, __LINE__, "Unsupported number of breakpoints");
374 }
375
376 /* How many hardware breakpoints are available?  */
377 static int
378 arm_linux_get_hw_breakpoint_count (void)
379 {
380   return arm_linux_hwbp_cap.bp_count;
381 }
382
383 /* How many hardware watchpoints are available?  */
384 static int
385 arm_linux_get_hw_watchpoint_count (void)
386 {
387   return arm_linux_hwbp_cap.wp_count;
388 }
389
390 /* Maximum length of area watched by hardware watchpoint.  */
391 static int
392 arm_linux_get_hw_watchpoint_max_length (void)
393 {
394   return arm_linux_hwbp_cap.max_wp_length;
395 }
396
397 /* Initialize an ARM hardware break-/watch-point control register value.
398    BYTE_ADDRESS_SELECT is the mask of bytes to trigger on; HWBP_TYPE is the
399    type of break-/watch-point; ENABLE indicates whether the point is enabled.
400    */
401 static arm_hwbp_control_t
402 arm_hwbp_control_initialize (unsigned byte_address_select,
403                              arm_hwbp_type hwbp_type,
404                              int enable)
405 {
406   gdb_assert ((byte_address_select & ~0xffU) == 0);
407   gdb_assert (hwbp_type != arm_hwbp_break
408               || ((byte_address_select & 0xfU) != 0));
409
410   return (byte_address_select << 5) | (hwbp_type << 3) | (3 << 1) | enable;
411 }
412
413 /* Does the breakpoint control value CONTROL have the enable bit set?  */
414 static int
415 arm_hwbp_control_is_enabled (arm_hwbp_control_t control)
416 {
417   return control & 0x1;
418 }
419
420 /* Is the breakpoint control value CONTROL initialized?  */
421 static int
422 arm_hwbp_control_is_initialized (arm_hwbp_control_t control)
423 {
424   return control != 0;
425 }
426
427 /* Change a breakpoint control word so that it is in the disabled state.  */
428 static arm_hwbp_control_t
429 arm_hwbp_control_disable (arm_hwbp_control_t control)
430 {
431   return control & ~0x1;
432 }
433
434 /* Are two break-/watch-points equal?  */
435 static int
436 arm_linux_hw_breakpoint_equal (const struct arm_linux_hw_breakpoint *p1,
437                                const struct arm_linux_hw_breakpoint *p2)
438 {
439   return p1->address == p2->address && p1->control == p2->control;
440 }
441
442 /* Initialize the hardware breakpoint structure P for a breakpoint or
443    watchpoint at ADDR to LEN.  The type of watchpoint is given in TYPE.
444    Returns -1 if TYPE is unsupported, or -2 if the particular combination
445    of ADDR and LEN cannot be implemented.  Otherwise, returns 0 if TYPE
446    represents a breakpoint and 1 if type represents a watchpoint.  */
447 static int
448 arm_linux_hw_point_initialize (char type, CORE_ADDR addr, int len,
449                                struct arm_linux_hw_breakpoint *p)
450 {
451   arm_hwbp_type hwbp_type;
452   unsigned mask;
453
454   /* Breakpoint/watchpoint types (GDB terminology):
455      0 = memory breakpoint for instructions
456      (not supported; done via memory write instead)
457      1 = hardware breakpoint for instructions (supported)
458      2 = write watchpoint (supported)
459      3 = read watchpoint (supported)
460      4 = access watchpoint (supported).  */
461   switch (type)
462     {
463     case '1':
464       hwbp_type = arm_hwbp_break;
465       break;
466     case '2':
467       hwbp_type = arm_hwbp_store;
468       break;
469     case '3':
470       hwbp_type = arm_hwbp_load;
471       break;
472     case '4':
473       hwbp_type = arm_hwbp_access;
474       break;
475     default:
476       /* Unsupported.  */
477       return -1;
478     }
479
480   if (hwbp_type == arm_hwbp_break)
481     {
482       /* For breakpoints, the length field encodes the mode.  */
483       switch (len)
484         {
485         case 2:  /* 16-bit Thumb mode breakpoint */
486         case 3:  /* 32-bit Thumb mode breakpoint */
487           mask = 0x3;
488           addr &= ~1;
489           break;
490         case 4:  /* 32-bit ARM mode breakpoint */
491           mask = 0xf;
492           addr &= ~3;
493           break;
494         default:
495           /* Unsupported. */
496           return -2;
497         }
498     }
499   else
500     {
501       CORE_ADDR max_wp_length = arm_linux_get_hw_watchpoint_max_length ();
502       CORE_ADDR aligned_addr;
503
504       /* Can not set watchpoints for zero or negative lengths.  */
505       if (len <= 0)
506         return -2;
507       /* The current ptrace interface can only handle watchpoints that are a
508          power of 2.  */
509       if ((len & (len - 1)) != 0)
510         return -2;
511
512       /* Test that the range [ADDR, ADDR + LEN) fits into the largest address
513          range covered by a watchpoint.  */
514       aligned_addr = addr & ~(max_wp_length - 1);
515       if (aligned_addr + max_wp_length < addr + len)
516         return -2;
517
518       mask = (1 << len) - 1;
519     }
520
521   p->address = (unsigned int) addr;
522   p->control = arm_hwbp_control_initialize (mask, hwbp_type, 1);
523
524   return hwbp_type != arm_hwbp_break;
525 }
526
527 /* Callback to mark a watch-/breakpoint to be updated in all threads of
528    the current process.  */
529
530 struct update_registers_data
531 {
532   int watch;
533   int i;
534 };
535
536 static int
537 update_registers_callback (struct inferior_list_entry *entry, void *arg)
538 {
539   struct lwp_info *lwp = (struct lwp_info *) entry;
540   struct update_registers_data *data = (struct update_registers_data *) arg;
541
542   /* Only update the threads of the current process.  */
543   if (pid_of (lwp) == pid_of (get_thread_lwp (current_inferior)))
544     {
545       /* The actual update is done later just before resuming the lwp,
546          we just mark that the registers need updating.  */
547       if (data->watch)
548         lwp->arch_private->wpts_changed[data->i] = 1;
549       else
550         lwp->arch_private->bpts_changed[data->i] = 1;
551
552       /* If the lwp isn't stopped, force it to momentarily pause, so
553          we can update its breakpoint registers.  */
554       if (!lwp->stopped)
555         linux_stop_lwp (lwp);
556     }
557
558   return 0;
559 }
560
561 /* Insert hardware break-/watchpoint.  */
562 static int
563 arm_insert_point (char type, CORE_ADDR addr, int len)
564 {
565   struct process_info *proc = current_process ();
566   struct arm_linux_hw_breakpoint p, *pts;
567   int watch, i, count;
568
569   watch = arm_linux_hw_point_initialize (type, addr, len, &p);
570   if (watch < 0)
571     {
572       /* Unsupported.  */
573       return watch == -1 ? 1 : -1;
574     }
575
576   if (watch)
577     {
578       count = arm_linux_get_hw_watchpoint_count ();
579       pts = proc->private->arch_private->wpts;
580     }
581   else
582     {
583       count = arm_linux_get_hw_breakpoint_count ();
584       pts = proc->private->arch_private->bpts;
585     }
586
587   for (i = 0; i < count; i++)
588     if (!arm_hwbp_control_is_enabled (pts[i].control))
589       {
590         struct update_registers_data data = { watch, i };
591         pts[i] = p;
592         find_inferior (&all_lwps, update_registers_callback, &data);
593         return 0;
594       }
595
596   /* We're out of watchpoints.  */
597   return -1;
598 }
599
600 /* Remove hardware break-/watchpoint.  */
601 static int
602 arm_remove_point (char type, CORE_ADDR addr, int len)
603 {
604   struct process_info *proc = current_process ();
605   struct arm_linux_hw_breakpoint p, *pts;
606   int watch, i, count;
607
608   watch = arm_linux_hw_point_initialize (type, addr, len, &p);
609   if (watch < 0)
610     {
611       /* Unsupported.  */
612       return -1;
613     }
614
615   if (watch)
616     {
617       count = arm_linux_get_hw_watchpoint_count ();
618       pts = proc->private->arch_private->wpts;
619     }
620   else
621     {
622       count = arm_linux_get_hw_breakpoint_count ();
623       pts = proc->private->arch_private->bpts;
624     }
625
626   for (i = 0; i < count; i++)
627     if (arm_linux_hw_breakpoint_equal (&p, pts + i))
628       {
629         struct update_registers_data data = { watch, i };
630         pts[i].control = arm_hwbp_control_disable (pts[i].control);
631         find_inferior (&all_lwps, update_registers_callback, &data);
632         return 0;
633       }
634
635   /* No watchpoint matched.  */
636   return -1;
637 }
638
639 /* Return whether current thread is stopped due to a watchpoint.  */
640 static int
641 arm_stopped_by_watchpoint (void)
642 {
643   struct lwp_info *lwp = get_thread_lwp (current_inferior);
644   siginfo_t siginfo;
645
646   /* We must be able to set hardware watchpoints.  */
647   if (arm_linux_get_hw_watchpoint_count () == 0)
648     return 0;
649
650   /* Retrieve siginfo.  */
651   errno = 0;
652   ptrace (PTRACE_GETSIGINFO, lwpid_of (lwp), 0, &siginfo);
653   if (errno != 0)
654     return 0;
655
656   /* This must be a hardware breakpoint.  */
657   if (siginfo.si_signo != SIGTRAP
658       || (siginfo.si_code & 0xffff) != 0x0004 /* TRAP_HWBKPT */)
659     return 0;
660
661   /* If we are in a positive slot then we're looking at a breakpoint and not
662      a watchpoint.  */
663   if (siginfo.si_errno >= 0)
664     return 0;
665
666   /* Cache stopped data address for use by arm_stopped_data_address.  */
667   lwp->arch_private->stopped_data_address
668     = (CORE_ADDR) (uintptr_t) siginfo.si_addr;
669
670   return 1;
671 }
672
673 /* Return data address that triggered watchpoint.  Called only if
674    arm_stopped_by_watchpoint returned true.  */
675 static CORE_ADDR
676 arm_stopped_data_address (void)
677 {
678   struct lwp_info *lwp = get_thread_lwp (current_inferior);
679   return lwp->arch_private->stopped_data_address;
680 }
681
682 /* Called when a new process is created.  */
683 static struct arch_process_info *
684 arm_new_process (void)
685 {
686   struct arch_process_info *info = xcalloc (1, sizeof (*info));
687   return info;
688 }
689
690 /* Called when a new thread is detected.  */
691 static struct arch_lwp_info *
692 arm_new_thread (void)
693 {
694   struct arch_lwp_info *info = xcalloc (1, sizeof (*info));
695   int i;
696
697   for (i = 0; i < MAX_BPTS; i++)
698     info->bpts_changed[i] = 1;
699   for (i = 0; i < MAX_WPTS; i++)
700     info->wpts_changed[i] = 1;
701
702   return info;
703 }
704
705 /* Called when resuming a thread.
706    If the debug regs have changed, update the thread's copies.  */
707 static void
708 arm_prepare_to_resume (struct lwp_info *lwp)
709 {
710   int pid = lwpid_of (lwp);
711   struct process_info *proc = find_process_pid (pid_of (lwp));
712   struct arch_process_info *proc_info = proc->private->arch_private;
713   struct arch_lwp_info *lwp_info = lwp->arch_private;
714   int i;
715
716   for (i = 0; i < arm_linux_get_hw_breakpoint_count (); i++)
717     if (lwp_info->bpts_changed[i])
718       {
719         errno = 0;
720
721         if (arm_hwbp_control_is_enabled (proc_info->bpts[i].control))
722           if (ptrace (PTRACE_SETHBPREGS, pid,
723                       (PTRACE_ARG3_TYPE) ((i << 1) + 1),
724                       &proc_info->bpts[i].address) < 0)
725             perror_with_name ("Unexpected error setting breakpoint address");
726
727         if (arm_hwbp_control_is_initialized (proc_info->bpts[i].control))
728           if (ptrace (PTRACE_SETHBPREGS, pid,
729                       (PTRACE_ARG3_TYPE) ((i << 1) + 2),
730                       &proc_info->bpts[i].control) < 0)
731             perror_with_name ("Unexpected error setting breakpoint");
732
733         lwp_info->bpts_changed[i] = 0;
734       }
735
736   for (i = 0; i < arm_linux_get_hw_watchpoint_count (); i++)
737     if (lwp_info->wpts_changed[i])
738       {
739         errno = 0;
740
741         if (arm_hwbp_control_is_enabled (proc_info->wpts[i].control))
742           if (ptrace (PTRACE_SETHBPREGS, pid,
743                       (PTRACE_ARG3_TYPE) -((i << 1) + 1),
744                       &proc_info->wpts[i].address) < 0)
745             perror_with_name ("Unexpected error setting watchpoint address");
746
747         if (arm_hwbp_control_is_initialized (proc_info->wpts[i].control))
748           if (ptrace (PTRACE_SETHBPREGS, pid,
749                       (PTRACE_ARG3_TYPE) -((i << 1) + 2),
750                       &proc_info->wpts[i].control) < 0)
751             perror_with_name ("Unexpected error setting watchpoint");
752
753         lwp_info->wpts_changed[i] = 0;
754       }
755 }
756
757
758 static int
759 arm_get_hwcap (unsigned long *valp)
760 {
761   unsigned char *data = alloca (8);
762   int offset = 0;
763
764   while ((*the_target->read_auxv) (offset, data, 8) == 8)
765     {
766       unsigned int *data_p = (unsigned int *)data;
767       if (data_p[0] == AT_HWCAP)
768         {
769           *valp = data_p[1];
770           return 1;
771         }
772
773       offset += 8;
774     }
775
776   *valp = 0;
777   return 0;
778 }
779
780 static const struct target_desc *
781 arm_read_description (void)
782 {
783   int pid = lwpid_of (get_thread_lwp (current_inferior));
784
785   /* Query hardware watchpoint/breakpoint capabilities.  */
786   arm_linux_init_hwbp_cap (pid);
787
788   arm_hwcap = 0;
789   if (arm_get_hwcap (&arm_hwcap) == 0)
790     return tdesc_arm;
791
792   if (arm_hwcap & HWCAP_IWMMXT)
793     return tdesc_arm_with_iwmmxt;
794
795   if (arm_hwcap & HWCAP_VFP)
796     {
797       const struct target_desc *result;
798       char *buf;
799
800       /* NEON implies either no VFP, or VFPv3-D32.  We only support
801          it with VFP.  */
802       if (arm_hwcap & HWCAP_NEON)
803         result = tdesc_arm_with_neon;
804       else if ((arm_hwcap & (HWCAP_VFPv3 | HWCAP_VFPv3D16)) == HWCAP_VFPv3)
805         result = tdesc_arm_with_vfpv3;
806       else
807         result = tdesc_arm_with_vfpv2;
808
809       /* Now make sure that the kernel supports reading these
810          registers.  Support was added in 2.6.30.  */
811       errno = 0;
812       buf = xmalloc (32 * 8 + 4);
813       if (ptrace (PTRACE_GETVFPREGS, pid, 0, buf) < 0
814           && errno == EIO)
815         {
816           arm_hwcap = 0;
817           result = tdesc_arm;
818         }
819       free (buf);
820
821       return result;
822     }
823
824   /* The default configuration uses legacy FPA registers, probably
825      simulated.  */
826   return tdesc_arm;
827 }
828
829 static void
830 arm_arch_setup (void)
831 {
832   current_process ()->tdesc = arm_read_description ();
833 }
834
835 static struct regset_info arm_regsets[] = {
836   { PTRACE_GETREGS, PTRACE_SETREGS, 0, 18 * 4,
837     GENERAL_REGS,
838     arm_fill_gregset, arm_store_gregset },
839   { PTRACE_GETWMMXREGS, PTRACE_SETWMMXREGS, 0, 16 * 8 + 6 * 4,
840     EXTENDED_REGS,
841     arm_fill_wmmxregset, arm_store_wmmxregset },
842   { PTRACE_GETVFPREGS, PTRACE_SETVFPREGS, 0, 32 * 8 + 4,
843     EXTENDED_REGS,
844     arm_fill_vfpregset, arm_store_vfpregset },
845   { 0, 0, 0, -1, -1, NULL, NULL }
846 };
847
848 static struct regsets_info arm_regsets_info =
849   {
850     arm_regsets, /* regsets */
851     0, /* num_regsets */
852     NULL, /* disabled_regsets */
853   };
854
855 static struct usrregs_info arm_usrregs_info =
856   {
857     arm_num_regs,
858     arm_regmap,
859   };
860
861 static struct regs_info regs_info =
862   {
863     NULL, /* regset_bitmap */
864     &arm_usrregs_info,
865     &arm_regsets_info
866   };
867
868 static const struct regs_info *
869 arm_regs_info (void)
870 {
871   return &regs_info;
872 }
873
874 struct linux_target_ops the_low_target = {
875   arm_arch_setup,
876   arm_regs_info,
877   arm_cannot_fetch_register,
878   arm_cannot_store_register,
879   NULL, /* fetch_register */
880   arm_get_pc,
881   arm_set_pc,
882
883   /* Define an ARM-mode breakpoint; we only set breakpoints in the C
884      library, which is most likely to be ARM.  If the kernel supports
885      clone events, we will never insert a breakpoint, so even a Thumb
886      C library will work; so will mixing EABI/non-EABI gdbserver and
887      application.  */
888 #ifndef __ARM_EABI__
889   (const unsigned char *) &arm_breakpoint,
890 #else
891   (const unsigned char *) &arm_eabi_breakpoint,
892 #endif
893   arm_breakpoint_len,
894   arm_reinsert_addr,
895   0,
896   arm_breakpoint_at,
897   arm_insert_point,
898   arm_remove_point,
899   arm_stopped_by_watchpoint,
900   arm_stopped_data_address,
901   NULL, /* collect_ptrace_register */
902   NULL, /* supply_ptrace_register */
903   NULL, /* siginfo_fixup */
904   arm_new_process,
905   arm_new_thread,
906   arm_prepare_to_resume,
907 };
908
909 void
910 initialize_low_arch (void)
911 {
912   /* Initialize the Linux target descriptions.  */
913   init_registers_arm ();
914   init_registers_arm_with_iwmmxt ();
915   init_registers_arm_with_vfpv2 ();
916   init_registers_arm_with_vfpv3 ();
917   init_registers_arm_with_neon ();
918
919   initialize_regsets_info (&arm_regsets_info);
920 }