d4d58a8c98219be86697a07b2ee04e602385ab9b
[deliverable/binutils-gdb.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-2015 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 #include "arch/arm.h"
22 #include "linux-aarch32-low.h"
23
24 #include <sys/uio.h>
25 /* Don't include elf.h if linux/elf.h got included by gdb_proc_service.h.
26 On Bionic elf.h and linux/elf.h have conflicting definitions. */
27 #ifndef ELFMAG0
28 #include <elf.h>
29 #endif
30 #include "nat/gdb_ptrace.h"
31 #include <signal.h>
32
33 /* Defined in auto-generated files. */
34 void init_registers_arm (void);
35 extern const struct target_desc *tdesc_arm;
36
37 void init_registers_arm_with_iwmmxt (void);
38 extern const struct target_desc *tdesc_arm_with_iwmmxt;
39
40 void init_registers_arm_with_vfpv2 (void);
41 extern const struct target_desc *tdesc_arm_with_vfpv2;
42
43 void init_registers_arm_with_vfpv3 (void);
44 extern const struct target_desc *tdesc_arm_with_vfpv3;
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 /* These are in <asm/elf.h> in current kernels. */
120 #define HWCAP_VFP 64
121 #define HWCAP_IWMMXT 512
122 #define HWCAP_NEON 4096
123 #define HWCAP_VFPv3 8192
124 #define HWCAP_VFPv3D16 16384
125
126 #ifdef HAVE_SYS_REG_H
127 #include <sys/reg.h>
128 #endif
129
130 #define arm_num_regs 26
131
132 static int arm_regmap[] = {
133 0, 4, 8, 12, 16, 20, 24, 28,
134 32, 36, 40, 44, 48, 52, 56, 60,
135 -1, -1, -1, -1, -1, -1, -1, -1, -1,
136 64
137 };
138
139 static int
140 arm_cannot_store_register (int regno)
141 {
142 return (regno >= arm_num_regs);
143 }
144
145 static int
146 arm_cannot_fetch_register (int regno)
147 {
148 return (regno >= arm_num_regs);
149 }
150
151 static void
152 arm_fill_wmmxregset (struct regcache *regcache, void *buf)
153 {
154 int i;
155
156 if (regcache->tdesc != tdesc_arm_with_iwmmxt)
157 return;
158
159 for (i = 0; i < 16; i++)
160 collect_register (regcache, arm_num_regs + i, (char *) buf + i * 8);
161
162 /* We only have access to wcssf, wcasf, and wcgr0-wcgr3. */
163 for (i = 0; i < 6; i++)
164 collect_register (regcache, arm_num_regs + i + 16,
165 (char *) buf + 16 * 8 + i * 4);
166 }
167
168 static void
169 arm_store_wmmxregset (struct regcache *regcache, const void *buf)
170 {
171 int i;
172
173 if (regcache->tdesc != tdesc_arm_with_iwmmxt)
174 return;
175
176 for (i = 0; i < 16; i++)
177 supply_register (regcache, arm_num_regs + i, (char *) buf + i * 8);
178
179 /* We only have access to wcssf, wcasf, and wcgr0-wcgr3. */
180 for (i = 0; i < 6; i++)
181 supply_register (regcache, arm_num_regs + i + 16,
182 (char *) buf + 16 * 8 + i * 4);
183 }
184
185 static void
186 arm_fill_vfpregset (struct regcache *regcache, void *buf)
187 {
188 int num;
189
190 if (regcache->tdesc == tdesc_arm_with_neon
191 || regcache->tdesc == tdesc_arm_with_vfpv3)
192 num = 32;
193 else if (regcache->tdesc == tdesc_arm_with_vfpv2)
194 num = 16;
195 else
196 return;
197
198 arm_fill_vfpregset_num (regcache, buf, num);
199 }
200
201 static void
202 arm_store_vfpregset (struct regcache *regcache, const void *buf)
203 {
204 int num;
205
206 if (regcache->tdesc == tdesc_arm_with_neon
207 || regcache->tdesc == tdesc_arm_with_vfpv3)
208 num = 32;
209 else if (regcache->tdesc == tdesc_arm_with_vfpv2)
210 num = 16;
211 else
212 return;
213
214 arm_store_vfpregset_num (regcache, buf, num);
215 }
216
217 extern int debug_threads;
218
219 static CORE_ADDR
220 arm_get_pc (struct regcache *regcache)
221 {
222 unsigned long pc;
223 collect_register_by_name (regcache, "pc", &pc);
224 if (debug_threads)
225 debug_printf ("stop pc is %08lx\n", pc);
226 return pc;
227 }
228
229 static void
230 arm_set_pc (struct regcache *regcache, CORE_ADDR pc)
231 {
232 unsigned long newpc = pc;
233 supply_register_by_name (regcache, "pc", &newpc);
234 }
235
236 /* Fetch the thread-local storage pointer for libthread_db. */
237
238 ps_err_e
239 ps_get_thread_area (const struct ps_prochandle *ph,
240 lwpid_t lwpid, int idx, void **base)
241 {
242 if (ptrace (PTRACE_GET_THREAD_AREA, lwpid, NULL, base) != 0)
243 return PS_ERR;
244
245 /* IDX is the bias from the thread pointer to the beginning of the
246 thread descriptor. It has to be subtracted due to implementation
247 quirks in libthread_db. */
248 *base = (void *) ((char *)*base - idx);
249
250 return PS_OK;
251 }
252
253
254 /* Query Hardware Breakpoint information for the target we are attached to
255 (using PID as ptrace argument) and set up arm_linux_hwbp_cap. */
256 static void
257 arm_linux_init_hwbp_cap (int pid)
258 {
259 unsigned int val;
260
261 if (ptrace (PTRACE_GETHBPREGS, pid, 0, &val) < 0)
262 return;
263
264 arm_linux_hwbp_cap.arch = (unsigned char)((val >> 24) & 0xff);
265 if (arm_linux_hwbp_cap.arch == 0)
266 return;
267
268 arm_linux_hwbp_cap.max_wp_length = (unsigned char)((val >> 16) & 0xff);
269 arm_linux_hwbp_cap.wp_count = (unsigned char)((val >> 8) & 0xff);
270 arm_linux_hwbp_cap.bp_count = (unsigned char)(val & 0xff);
271
272 if (arm_linux_hwbp_cap.wp_count > MAX_WPTS)
273 internal_error (__FILE__, __LINE__, "Unsupported number of watchpoints");
274 if (arm_linux_hwbp_cap.bp_count > MAX_BPTS)
275 internal_error (__FILE__, __LINE__, "Unsupported number of breakpoints");
276 }
277
278 /* How many hardware breakpoints are available? */
279 static int
280 arm_linux_get_hw_breakpoint_count (void)
281 {
282 return arm_linux_hwbp_cap.bp_count;
283 }
284
285 /* How many hardware watchpoints are available? */
286 static int
287 arm_linux_get_hw_watchpoint_count (void)
288 {
289 return arm_linux_hwbp_cap.wp_count;
290 }
291
292 /* Maximum length of area watched by hardware watchpoint. */
293 static int
294 arm_linux_get_hw_watchpoint_max_length (void)
295 {
296 return arm_linux_hwbp_cap.max_wp_length;
297 }
298
299 /* Initialize an ARM hardware break-/watch-point control register value.
300 BYTE_ADDRESS_SELECT is the mask of bytes to trigger on; HWBP_TYPE is the
301 type of break-/watch-point; ENABLE indicates whether the point is enabled.
302 */
303 static arm_hwbp_control_t
304 arm_hwbp_control_initialize (unsigned byte_address_select,
305 arm_hwbp_type hwbp_type,
306 int enable)
307 {
308 gdb_assert ((byte_address_select & ~0xffU) == 0);
309 gdb_assert (hwbp_type != arm_hwbp_break
310 || ((byte_address_select & 0xfU) != 0));
311
312 return (byte_address_select << 5) | (hwbp_type << 3) | (3 << 1) | enable;
313 }
314
315 /* Does the breakpoint control value CONTROL have the enable bit set? */
316 static int
317 arm_hwbp_control_is_enabled (arm_hwbp_control_t control)
318 {
319 return control & 0x1;
320 }
321
322 /* Is the breakpoint control value CONTROL initialized? */
323 static int
324 arm_hwbp_control_is_initialized (arm_hwbp_control_t control)
325 {
326 return control != 0;
327 }
328
329 /* Change a breakpoint control word so that it is in the disabled state. */
330 static arm_hwbp_control_t
331 arm_hwbp_control_disable (arm_hwbp_control_t control)
332 {
333 return control & ~0x1;
334 }
335
336 /* Are two break-/watch-points equal? */
337 static int
338 arm_linux_hw_breakpoint_equal (const struct arm_linux_hw_breakpoint *p1,
339 const struct arm_linux_hw_breakpoint *p2)
340 {
341 return p1->address == p2->address && p1->control == p2->control;
342 }
343
344 /* Convert a raw breakpoint type to an enum arm_hwbp_type. */
345
346 static arm_hwbp_type
347 raw_bkpt_type_to_arm_hwbp_type (enum raw_bkpt_type raw_type)
348 {
349 switch (raw_type)
350 {
351 case raw_bkpt_type_hw:
352 return arm_hwbp_break;
353 case raw_bkpt_type_write_wp:
354 return arm_hwbp_store;
355 case raw_bkpt_type_read_wp:
356 return arm_hwbp_load;
357 case raw_bkpt_type_access_wp:
358 return arm_hwbp_access;
359 default:
360 gdb_assert_not_reached ("unhandled raw type");
361 }
362 }
363
364 /* Initialize the hardware breakpoint structure P for a breakpoint or
365 watchpoint at ADDR to LEN. The type of watchpoint is given in TYPE.
366 Returns -1 if TYPE is unsupported, or -2 if the particular combination
367 of ADDR and LEN cannot be implemented. Otherwise, returns 0 if TYPE
368 represents a breakpoint and 1 if type represents a watchpoint. */
369 static int
370 arm_linux_hw_point_initialize (enum raw_bkpt_type raw_type, CORE_ADDR addr,
371 int len, struct arm_linux_hw_breakpoint *p)
372 {
373 arm_hwbp_type hwbp_type;
374 unsigned mask;
375
376 hwbp_type = raw_bkpt_type_to_arm_hwbp_type (raw_type);
377
378 if (hwbp_type == arm_hwbp_break)
379 {
380 /* For breakpoints, the length field encodes the mode. */
381 switch (len)
382 {
383 case 2: /* 16-bit Thumb mode breakpoint */
384 case 3: /* 32-bit Thumb mode breakpoint */
385 mask = 0x3;
386 addr &= ~1;
387 break;
388 case 4: /* 32-bit ARM mode breakpoint */
389 mask = 0xf;
390 addr &= ~3;
391 break;
392 default:
393 /* Unsupported. */
394 return -2;
395 }
396 }
397 else
398 {
399 CORE_ADDR max_wp_length = arm_linux_get_hw_watchpoint_max_length ();
400 CORE_ADDR aligned_addr;
401
402 /* Can not set watchpoints for zero or negative lengths. */
403 if (len <= 0)
404 return -2;
405 /* The current ptrace interface can only handle watchpoints that are a
406 power of 2. */
407 if ((len & (len - 1)) != 0)
408 return -2;
409
410 /* Test that the range [ADDR, ADDR + LEN) fits into the largest address
411 range covered by a watchpoint. */
412 aligned_addr = addr & ~(max_wp_length - 1);
413 if (aligned_addr + max_wp_length < addr + len)
414 return -2;
415
416 mask = (1 << len) - 1;
417 }
418
419 p->address = (unsigned int) addr;
420 p->control = arm_hwbp_control_initialize (mask, hwbp_type, 1);
421
422 return hwbp_type != arm_hwbp_break;
423 }
424
425 /* Callback to mark a watch-/breakpoint to be updated in all threads of
426 the current process. */
427
428 struct update_registers_data
429 {
430 int watch;
431 int i;
432 };
433
434 static int
435 update_registers_callback (struct inferior_list_entry *entry, void *arg)
436 {
437 struct thread_info *thread = (struct thread_info *) entry;
438 struct lwp_info *lwp = get_thread_lwp (thread);
439 struct update_registers_data *data = (struct update_registers_data *) arg;
440
441 /* Only update the threads of the current process. */
442 if (pid_of (thread) == pid_of (current_thread))
443 {
444 /* The actual update is done later just before resuming the lwp,
445 we just mark that the registers need updating. */
446 if (data->watch)
447 lwp->arch_private->wpts_changed[data->i] = 1;
448 else
449 lwp->arch_private->bpts_changed[data->i] = 1;
450
451 /* If the lwp isn't stopped, force it to momentarily pause, so
452 we can update its breakpoint registers. */
453 if (!lwp->stopped)
454 linux_stop_lwp (lwp);
455 }
456
457 return 0;
458 }
459
460 static int
461 arm_supports_z_point_type (char z_type)
462 {
463 switch (z_type)
464 {
465 case Z_PACKET_SW_BP:
466 case Z_PACKET_HW_BP:
467 case Z_PACKET_WRITE_WP:
468 case Z_PACKET_READ_WP:
469 case Z_PACKET_ACCESS_WP:
470 return 1;
471 default:
472 /* Leave the handling of sw breakpoints with the gdb client. */
473 return 0;
474 }
475 }
476
477 /* Insert hardware break-/watchpoint. */
478 static int
479 arm_insert_point (enum raw_bkpt_type type, CORE_ADDR addr,
480 int len, struct raw_breakpoint *bp)
481 {
482 struct process_info *proc = current_process ();
483 struct arm_linux_hw_breakpoint p, *pts;
484 int watch, i, count;
485
486 watch = arm_linux_hw_point_initialize (type, addr, len, &p);
487 if (watch < 0)
488 {
489 /* Unsupported. */
490 return watch == -1 ? 1 : -1;
491 }
492
493 if (watch)
494 {
495 count = arm_linux_get_hw_watchpoint_count ();
496 pts = proc->priv->arch_private->wpts;
497 }
498 else
499 {
500 count = arm_linux_get_hw_breakpoint_count ();
501 pts = proc->priv->arch_private->bpts;
502 }
503
504 for (i = 0; i < count; i++)
505 if (!arm_hwbp_control_is_enabled (pts[i].control))
506 {
507 struct update_registers_data data = { watch, i };
508 pts[i] = p;
509 find_inferior (&all_threads, update_registers_callback, &data);
510 return 0;
511 }
512
513 /* We're out of watchpoints. */
514 return -1;
515 }
516
517 /* Remove hardware break-/watchpoint. */
518 static int
519 arm_remove_point (enum raw_bkpt_type type, CORE_ADDR addr,
520 int len, struct raw_breakpoint *bp)
521 {
522 struct process_info *proc = current_process ();
523 struct arm_linux_hw_breakpoint p, *pts;
524 int watch, i, count;
525
526 watch = arm_linux_hw_point_initialize (type, addr, len, &p);
527 if (watch < 0)
528 {
529 /* Unsupported. */
530 return -1;
531 }
532
533 if (watch)
534 {
535 count = arm_linux_get_hw_watchpoint_count ();
536 pts = proc->priv->arch_private->wpts;
537 }
538 else
539 {
540 count = arm_linux_get_hw_breakpoint_count ();
541 pts = proc->priv->arch_private->bpts;
542 }
543
544 for (i = 0; i < count; i++)
545 if (arm_linux_hw_breakpoint_equal (&p, pts + i))
546 {
547 struct update_registers_data data = { watch, i };
548 pts[i].control = arm_hwbp_control_disable (pts[i].control);
549 find_inferior (&all_threads, update_registers_callback, &data);
550 return 0;
551 }
552
553 /* No watchpoint matched. */
554 return -1;
555 }
556
557 /* Return whether current thread is stopped due to a watchpoint. */
558 static int
559 arm_stopped_by_watchpoint (void)
560 {
561 struct lwp_info *lwp = get_thread_lwp (current_thread);
562 siginfo_t siginfo;
563
564 /* We must be able to set hardware watchpoints. */
565 if (arm_linux_get_hw_watchpoint_count () == 0)
566 return 0;
567
568 /* Retrieve siginfo. */
569 errno = 0;
570 ptrace (PTRACE_GETSIGINFO, lwpid_of (current_thread), 0, &siginfo);
571 if (errno != 0)
572 return 0;
573
574 /* This must be a hardware breakpoint. */
575 if (siginfo.si_signo != SIGTRAP
576 || (siginfo.si_code & 0xffff) != 0x0004 /* TRAP_HWBKPT */)
577 return 0;
578
579 /* If we are in a positive slot then we're looking at a breakpoint and not
580 a watchpoint. */
581 if (siginfo.si_errno >= 0)
582 return 0;
583
584 /* Cache stopped data address for use by arm_stopped_data_address. */
585 lwp->arch_private->stopped_data_address
586 = (CORE_ADDR) (uintptr_t) siginfo.si_addr;
587
588 return 1;
589 }
590
591 /* Return data address that triggered watchpoint. Called only if
592 arm_stopped_by_watchpoint returned true. */
593 static CORE_ADDR
594 arm_stopped_data_address (void)
595 {
596 struct lwp_info *lwp = get_thread_lwp (current_thread);
597 return lwp->arch_private->stopped_data_address;
598 }
599
600 /* Called when a new process is created. */
601 static struct arch_process_info *
602 arm_new_process (void)
603 {
604 struct arch_process_info *info = XCNEW (struct arch_process_info);
605 return info;
606 }
607
608 /* Called when a new thread is detected. */
609 static void
610 arm_new_thread (struct lwp_info *lwp)
611 {
612 struct arch_lwp_info *info = XCNEW (struct arch_lwp_info);
613 int i;
614
615 for (i = 0; i < MAX_BPTS; i++)
616 info->bpts_changed[i] = 1;
617 for (i = 0; i < MAX_WPTS; i++)
618 info->wpts_changed[i] = 1;
619
620 lwp->arch_private = info;
621 }
622
623 static void
624 arm_new_fork (struct process_info *parent, struct process_info *child)
625 {
626 struct arch_process_info *parent_proc_info;
627 struct arch_process_info *child_proc_info;
628 struct lwp_info *child_lwp;
629 struct arch_lwp_info *child_lwp_info;
630 int i;
631
632 /* These are allocated by linux_add_process. */
633 gdb_assert (parent->priv != NULL
634 && parent->priv->arch_private != NULL);
635 gdb_assert (child->priv != NULL
636 && child->priv->arch_private != NULL);
637
638 parent_proc_info = parent->priv->arch_private;
639 child_proc_info = child->priv->arch_private;
640
641 /* Linux kernel before 2.6.33 commit
642 72f674d203cd230426437cdcf7dd6f681dad8b0d
643 will inherit hardware debug registers from parent
644 on fork/vfork/clone. Newer Linux kernels create such tasks with
645 zeroed debug registers.
646
647 GDB core assumes the child inherits the watchpoints/hw
648 breakpoints of the parent, and will remove them all from the
649 forked off process. Copy the debug registers mirrors into the
650 new process so that all breakpoints and watchpoints can be
651 removed together. The debug registers mirror will become zeroed
652 in the end before detaching the forked off process, thus making
653 this compatible with older Linux kernels too. */
654
655 *child_proc_info = *parent_proc_info;
656
657 /* Mark all the hardware breakpoints and watchpoints as changed to
658 make sure that the registers will be updated. */
659 child_lwp = find_lwp_pid (ptid_of (child));
660 child_lwp_info = child_lwp->arch_private;
661 for (i = 0; i < MAX_BPTS; i++)
662 child_lwp_info->bpts_changed[i] = 1;
663 for (i = 0; i < MAX_WPTS; i++)
664 child_lwp_info->wpts_changed[i] = 1;
665 }
666
667 /* Called when resuming a thread.
668 If the debug regs have changed, update the thread's copies. */
669 static void
670 arm_prepare_to_resume (struct lwp_info *lwp)
671 {
672 struct thread_info *thread = get_lwp_thread (lwp);
673 int pid = lwpid_of (thread);
674 struct process_info *proc = find_process_pid (pid_of (thread));
675 struct arch_process_info *proc_info = proc->priv->arch_private;
676 struct arch_lwp_info *lwp_info = lwp->arch_private;
677 int i;
678
679 for (i = 0; i < arm_linux_get_hw_breakpoint_count (); i++)
680 if (lwp_info->bpts_changed[i])
681 {
682 errno = 0;
683
684 if (arm_hwbp_control_is_enabled (proc_info->bpts[i].control))
685 if (ptrace (PTRACE_SETHBPREGS, pid,
686 (PTRACE_TYPE_ARG3) ((i << 1) + 1),
687 &proc_info->bpts[i].address) < 0)
688 perror_with_name ("Unexpected error setting breakpoint address");
689
690 if (arm_hwbp_control_is_initialized (proc_info->bpts[i].control))
691 if (ptrace (PTRACE_SETHBPREGS, pid,
692 (PTRACE_TYPE_ARG3) ((i << 1) + 2),
693 &proc_info->bpts[i].control) < 0)
694 perror_with_name ("Unexpected error setting breakpoint");
695
696 lwp_info->bpts_changed[i] = 0;
697 }
698
699 for (i = 0; i < arm_linux_get_hw_watchpoint_count (); i++)
700 if (lwp_info->wpts_changed[i])
701 {
702 errno = 0;
703
704 if (arm_hwbp_control_is_enabled (proc_info->wpts[i].control))
705 if (ptrace (PTRACE_SETHBPREGS, pid,
706 (PTRACE_TYPE_ARG3) -((i << 1) + 1),
707 &proc_info->wpts[i].address) < 0)
708 perror_with_name ("Unexpected error setting watchpoint address");
709
710 if (arm_hwbp_control_is_initialized (proc_info->wpts[i].control))
711 if (ptrace (PTRACE_SETHBPREGS, pid,
712 (PTRACE_TYPE_ARG3) -((i << 1) + 2),
713 &proc_info->wpts[i].control) < 0)
714 perror_with_name ("Unexpected error setting watchpoint");
715
716 lwp_info->wpts_changed[i] = 0;
717 }
718 }
719
720
721 static int
722 arm_get_hwcap (unsigned long *valp)
723 {
724 unsigned char *data = (unsigned char *) alloca (8);
725 int offset = 0;
726
727 while ((*the_target->read_auxv) (offset, data, 8) == 8)
728 {
729 unsigned int *data_p = (unsigned int *)data;
730 if (data_p[0] == AT_HWCAP)
731 {
732 *valp = data_p[1];
733 return 1;
734 }
735
736 offset += 8;
737 }
738
739 *valp = 0;
740 return 0;
741 }
742
743 static const struct target_desc *
744 arm_read_description (void)
745 {
746 int pid = lwpid_of (current_thread);
747 unsigned long arm_hwcap = 0;
748
749 /* Query hardware watchpoint/breakpoint capabilities. */
750 arm_linux_init_hwbp_cap (pid);
751
752 if (arm_get_hwcap (&arm_hwcap) == 0)
753 return tdesc_arm;
754
755 if (arm_hwcap & HWCAP_IWMMXT)
756 return tdesc_arm_with_iwmmxt;
757
758 if (arm_hwcap & HWCAP_VFP)
759 {
760 const struct target_desc *result;
761 char *buf;
762
763 /* NEON implies either no VFP, or VFPv3-D32. We only support
764 it with VFP. */
765 if (arm_hwcap & HWCAP_NEON)
766 result = tdesc_arm_with_neon;
767 else if ((arm_hwcap & (HWCAP_VFPv3 | HWCAP_VFPv3D16)) == HWCAP_VFPv3)
768 result = tdesc_arm_with_vfpv3;
769 else
770 result = tdesc_arm_with_vfpv2;
771
772 /* Now make sure that the kernel supports reading these
773 registers. Support was added in 2.6.30. */
774 errno = 0;
775 buf = (char *) xmalloc (32 * 8 + 4);
776 if (ptrace (PTRACE_GETVFPREGS, pid, 0, buf) < 0
777 && errno == EIO)
778 result = tdesc_arm;
779
780 free (buf);
781
782 return result;
783 }
784
785 /* The default configuration uses legacy FPA registers, probably
786 simulated. */
787 return tdesc_arm;
788 }
789
790 static void
791 arm_arch_setup (void)
792 {
793 int tid = lwpid_of (current_thread);
794 int gpregs[18];
795 struct iovec iov;
796
797 current_process ()->tdesc = arm_read_description ();
798
799 iov.iov_base = gpregs;
800 iov.iov_len = sizeof (gpregs);
801
802 /* Check if PTRACE_GETREGSET works. */
803 if (ptrace (PTRACE_GETREGSET, tid, NT_PRSTATUS, &iov) == 0)
804 have_ptrace_getregset = 1;
805 else
806 have_ptrace_getregset = 0;
807 }
808
809 /* Support for hardware single step. */
810
811 static int
812 arm_supports_hardware_single_step (void)
813 {
814 return 0;
815 }
816
817 /* Register sets without using PTRACE_GETREGSET. */
818
819 static struct regset_info arm_regsets[] = {
820 { PTRACE_GETREGS, PTRACE_SETREGS, 0, 18 * 4,
821 GENERAL_REGS,
822 arm_fill_gregset, arm_store_gregset },
823 { PTRACE_GETWMMXREGS, PTRACE_SETWMMXREGS, 0, 16 * 8 + 6 * 4,
824 EXTENDED_REGS,
825 arm_fill_wmmxregset, arm_store_wmmxregset },
826 { PTRACE_GETVFPREGS, PTRACE_SETVFPREGS, 0, 32 * 8 + 4,
827 EXTENDED_REGS,
828 arm_fill_vfpregset, arm_store_vfpregset },
829 NULL_REGSET
830 };
831
832 static struct regsets_info arm_regsets_info =
833 {
834 arm_regsets, /* regsets */
835 0, /* num_regsets */
836 NULL, /* disabled_regsets */
837 };
838
839 static struct usrregs_info arm_usrregs_info =
840 {
841 arm_num_regs,
842 arm_regmap,
843 };
844
845 static struct regs_info regs_info_arm =
846 {
847 NULL, /* regset_bitmap */
848 &arm_usrregs_info,
849 &arm_regsets_info
850 };
851
852 static const struct regs_info *
853 arm_regs_info (void)
854 {
855 const struct target_desc *tdesc = current_process ()->tdesc;
856
857 if (have_ptrace_getregset == 1
858 && (tdesc == tdesc_arm_with_neon || tdesc == tdesc_arm_with_vfpv3))
859 return &regs_info_aarch32;
860 else
861 return &regs_info_arm;
862 }
863
864 struct linux_target_ops the_low_target = {
865 arm_arch_setup,
866 arm_regs_info,
867 arm_cannot_fetch_register,
868 arm_cannot_store_register,
869 NULL, /* fetch_register */
870 arm_get_pc,
871 arm_set_pc,
872 arm_breakpoint_kind_from_pc,
873 arm_sw_breakpoint_from_kind,
874 NULL, /* breakpoint_reinsert_addr */
875 0,
876 arm_breakpoint_at,
877 arm_supports_z_point_type,
878 arm_insert_point,
879 arm_remove_point,
880 arm_stopped_by_watchpoint,
881 arm_stopped_data_address,
882 NULL, /* collect_ptrace_register */
883 NULL, /* supply_ptrace_register */
884 NULL, /* siginfo_fixup */
885 arm_new_process,
886 arm_new_thread,
887 arm_new_fork,
888 arm_prepare_to_resume,
889 NULL, /* process_qsupported */
890 NULL, /* supports_tracepoints */
891 NULL, /* get_thread_area */
892 NULL, /* install_fast_tracepoint_jump_pad */
893 NULL, /* emit_ops */
894 NULL, /* get_min_fast_tracepoint_insn_len */
895 NULL, /* supports_range_stepping */
896 arm_breakpoint_kind_from_current_state,
897 arm_supports_hardware_single_step
898 };
899
900 void
901 initialize_low_arch (void)
902 {
903 /* Initialize the Linux target descriptions. */
904 init_registers_arm ();
905 init_registers_arm_with_iwmmxt ();
906 init_registers_arm_with_vfpv2 ();
907 init_registers_arm_with_vfpv3 ();
908
909 initialize_low_arch_aarch32 ();
910
911 initialize_regsets_info (&arm_regsets_info);
912 }
This page took 0.047486 seconds and 4 git commands to generate.