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