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