Remove regcache_raw_collect
[deliverable/binutils-gdb.git] / gdb / aarch64-linux-nat.c
CommitLineData
9d19df75
MS
1/* Native-dependent code for GNU/Linux AArch64.
2
e2882c85 3 Copyright (C) 2011-2018 Free Software Foundation, Inc.
9d19df75
MS
4 Contributed by ARM Ltd.
5
6 This file is part of GDB.
7
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
20
21#include "defs.h"
22
23#include "inferior.h"
24#include "gdbcore.h"
25#include "regcache.h"
26#include "linux-nat.h"
27#include "target-descriptions.h"
28#include "auxv.h"
29#include "gdbcmd.h"
30#include "aarch64-tdep.h"
31#include "aarch64-linux-tdep.h"
607685ec 32#include "aarch32-linux-nat.h"
db3cb7cb 33#include "nat/aarch64-linux.h"
554717a3 34#include "nat/aarch64-linux-hw-point.h"
607685ec
YQ
35
36#include "elf/external.h"
9d19df75
MS
37#include "elf/common.h"
38
5826e159 39#include "nat/gdb_ptrace.h"
9d19df75 40#include <sys/utsname.h>
036cd381 41#include <asm/ptrace.h>
9d19df75
MS
42
43#include "gregset.h"
44
9d19df75
MS
45/* Defines ps_err_e, struct ps_prochandle. */
46#include "gdb_proc_service.h"
47
48#ifndef TRAP_HWBKPT
49#define TRAP_HWBKPT 0x0004
50#endif
51
f6ac5f3d
PA
52class aarch64_linux_nat_target final : public linux_nat_target
53{
54public:
55 /* Add our register access methods. */
56 void fetch_registers (struct regcache *, int) override;
57 void store_registers (struct regcache *, int) override;
58
59 const struct target_desc *read_description () override;
60
61 /* Add our hardware breakpoint and watchpoint implementation. */
62 int can_use_hw_breakpoint (enum bptype, int, int) override;
63 int insert_hw_breakpoint (struct gdbarch *, struct bp_target_info *) override;
64 int remove_hw_breakpoint (struct gdbarch *, struct bp_target_info *) override;
65 int region_ok_for_hw_watchpoint (CORE_ADDR, int) override;
66 int insert_watchpoint (CORE_ADDR, int, enum target_hw_bp_type,
67 struct expression *) override;
68 int remove_watchpoint (CORE_ADDR, int, enum target_hw_bp_type,
69 struct expression *) override;
57810aa7
PA
70 bool stopped_by_watchpoint () override;
71 bool stopped_data_address (CORE_ADDR *) override;
72 bool watchpoint_addr_within_range (CORE_ADDR, CORE_ADDR, int) override;
f6ac5f3d
PA
73
74 int can_do_single_step () override;
75
76 /* Override the GNU/Linux inferior startup hook. */
77 void post_startup_inferior (ptid_t) override;
135340af
PA
78
79 /* These three defer to common nat/ code. */
80 void low_new_thread (struct lwp_info *lp) override
81 { aarch64_linux_new_thread (lp); }
82 void low_delete_thread (struct arch_lwp_info *lp) override
83 { aarch64_linux_delete_thread (lp); }
84 void low_prepare_to_resume (struct lwp_info *lp) override
85 { aarch64_linux_prepare_to_resume (lp); }
86
87 void low_new_fork (struct lwp_info *parent, pid_t child_pid) override;
88 void low_forget_process (pid_t pid) override;
89
90 /* Add our siginfo layout converter. */
91 bool low_siginfo_fixup (siginfo_t *ptrace, gdb_byte *inf, int direction)
92 override;
f6ac5f3d
PA
93};
94
95static aarch64_linux_nat_target the_aarch64_linux_nat_target;
96
d6c44983
YZ
97/* Per-process data. We don't bind this to a per-inferior registry
98 because of targets like x86 GNU/Linux that need to keep track of
99 processes that aren't bound to any inferior (e.g., fork children,
100 checkpoints). */
9d19df75 101
d6c44983 102struct aarch64_process_info
9d19df75 103{
d6c44983
YZ
104 /* Linked list. */
105 struct aarch64_process_info *next;
9d19df75 106
d6c44983
YZ
107 /* The process identifier. */
108 pid_t pid;
9d19df75 109
d6c44983
YZ
110 /* Copy of aarch64 hardware debug registers. */
111 struct aarch64_debug_reg_state state;
112};
113
114static struct aarch64_process_info *aarch64_process_list = NULL;
115
116/* Find process data for process PID. */
117
118static struct aarch64_process_info *
119aarch64_find_process_pid (pid_t pid)
120{
121 struct aarch64_process_info *proc;
122
123 for (proc = aarch64_process_list; proc; proc = proc->next)
124 if (proc->pid == pid)
125 return proc;
126
127 return NULL;
9d19df75
MS
128}
129
d6c44983
YZ
130/* Add process data for process PID. Returns newly allocated info
131 object. */
9d19df75 132
d6c44983
YZ
133static struct aarch64_process_info *
134aarch64_add_process (pid_t pid)
9d19df75 135{
d6c44983 136 struct aarch64_process_info *proc;
9d19df75 137
8d749320 138 proc = XCNEW (struct aarch64_process_info);
d6c44983 139 proc->pid = pid;
9d19df75 140
d6c44983
YZ
141 proc->next = aarch64_process_list;
142 aarch64_process_list = proc;
143
144 return proc;
145}
146
147/* Get data specific info for process PID, creating it if necessary.
148 Never returns NULL. */
149
150static struct aarch64_process_info *
151aarch64_process_info_get (pid_t pid)
9d19df75 152{
d6c44983
YZ
153 struct aarch64_process_info *proc;
154
155 proc = aarch64_find_process_pid (pid);
156 if (proc == NULL)
157 proc = aarch64_add_process (pid);
9d19df75 158
d6c44983 159 return proc;
9d19df75
MS
160}
161
d6c44983
YZ
162/* Called whenever GDB is no longer debugging process PID. It deletes
163 data structures that keep track of debug register state. */
9d19df75 164
135340af
PA
165void
166aarch64_linux_nat_target::low_forget_process (pid_t pid)
9d19df75 167{
d6c44983 168 struct aarch64_process_info *proc, **proc_link;
9d19df75 169
d6c44983
YZ
170 proc = aarch64_process_list;
171 proc_link = &aarch64_process_list;
172
173 while (proc != NULL)
9d19df75 174 {
d6c44983
YZ
175 if (proc->pid == pid)
176 {
177 *proc_link = proc->next;
9d19df75 178
d6c44983
YZ
179 xfree (proc);
180 return;
181 }
182
183 proc_link = &proc->next;
184 proc = *proc_link;
185 }
9d19df75
MS
186}
187
d6c44983 188/* Get debug registers state for process PID. */
9d19df75 189
db3cb7cb 190struct aarch64_debug_reg_state *
d6c44983 191aarch64_get_debug_reg_state (pid_t pid)
9d19df75 192{
d6c44983 193 return &aarch64_process_info_get (pid)->state;
9d19df75
MS
194}
195
9d19df75
MS
196/* Fill GDB's register array with the general-purpose register values
197 from the current thread. */
198
199static void
200fetch_gregs_from_thread (struct regcache *regcache)
201{
607685ec 202 int ret, tid;
ac7936df 203 struct gdbarch *gdbarch = regcache->arch ();
9d19df75
MS
204 elf_gregset_t regs;
205 struct iovec iovec;
206
607685ec
YQ
207 /* Make sure REGS can hold all registers contents on both aarch64
208 and arm. */
209 gdb_static_assert (sizeof (regs) >= 18 * 4);
210
222312d3 211 tid = ptid_get_lwp (regcache->ptid ());
9d19df75
MS
212
213 iovec.iov_base = &regs;
607685ec
YQ
214 if (gdbarch_bfd_arch_info (gdbarch)->bits_per_word == 32)
215 iovec.iov_len = 18 * 4;
216 else
217 iovec.iov_len = sizeof (regs);
9d19df75
MS
218
219 ret = ptrace (PTRACE_GETREGSET, tid, NT_PRSTATUS, &iovec);
220 if (ret < 0)
221 perror_with_name (_("Unable to fetch general registers."));
222
607685ec
YQ
223 if (gdbarch_bfd_arch_info (gdbarch)->bits_per_word == 32)
224 aarch32_gp_regcache_supply (regcache, (uint32_t *) regs, 1);
225 else
226 {
227 int regno;
228
229 for (regno = AARCH64_X0_REGNUM; regno <= AARCH64_CPSR_REGNUM; regno++)
73e1c03f 230 regcache->raw_supply (regno, &regs[regno - AARCH64_X0_REGNUM]);
607685ec 231 }
9d19df75
MS
232}
233
234/* Store to the current thread the valid general-purpose register
235 values in the GDB's register array. */
236
237static void
238store_gregs_to_thread (const struct regcache *regcache)
239{
607685ec 240 int ret, tid;
9d19df75
MS
241 elf_gregset_t regs;
242 struct iovec iovec;
ac7936df 243 struct gdbarch *gdbarch = regcache->arch ();
9d19df75 244
607685ec
YQ
245 /* Make sure REGS can hold all registers contents on both aarch64
246 and arm. */
247 gdb_static_assert (sizeof (regs) >= 18 * 4);
222312d3 248 tid = ptid_get_lwp (regcache->ptid ());
9d19df75
MS
249
250 iovec.iov_base = &regs;
607685ec
YQ
251 if (gdbarch_bfd_arch_info (gdbarch)->bits_per_word == 32)
252 iovec.iov_len = 18 * 4;
253 else
254 iovec.iov_len = sizeof (regs);
9d19df75
MS
255
256 ret = ptrace (PTRACE_GETREGSET, tid, NT_PRSTATUS, &iovec);
257 if (ret < 0)
258 perror_with_name (_("Unable to fetch general registers."));
259
607685ec
YQ
260 if (gdbarch_bfd_arch_info (gdbarch)->bits_per_word == 32)
261 aarch32_gp_regcache_collect (regcache, (uint32_t *) regs, 1);
262 else
263 {
264 int regno;
265
266 for (regno = AARCH64_X0_REGNUM; regno <= AARCH64_CPSR_REGNUM; regno++)
0ec9f114 267 if (REG_VALID == regcache->get_register_status (regno))
34a79281 268 regcache->raw_collect (regno, &regs[regno - AARCH64_X0_REGNUM]);
607685ec 269 }
9d19df75
MS
270
271 ret = ptrace (PTRACE_SETREGSET, tid, NT_PRSTATUS, &iovec);
272 if (ret < 0)
273 perror_with_name (_("Unable to store general registers."));
274}
275
276/* Fill GDB's register array with the fp/simd register values
277 from the current thread. */
278
279static void
280fetch_fpregs_from_thread (struct regcache *regcache)
281{
607685ec 282 int ret, tid;
9d19df75
MS
283 elf_fpregset_t regs;
284 struct iovec iovec;
ac7936df 285 struct gdbarch *gdbarch = regcache->arch ();
607685ec
YQ
286
287 /* Make sure REGS can hold all VFP registers contents on both aarch64
288 and arm. */
289 gdb_static_assert (sizeof regs >= VFP_REGS_SIZE);
9d19df75 290
222312d3 291 tid = ptid_get_lwp (regcache->ptid ());
9d19df75
MS
292
293 iovec.iov_base = &regs;
9d19df75 294
607685ec
YQ
295 if (gdbarch_bfd_arch_info (gdbarch)->bits_per_word == 32)
296 {
297 iovec.iov_len = VFP_REGS_SIZE;
298
299 ret = ptrace (PTRACE_GETREGSET, tid, NT_ARM_VFP, &iovec);
300 if (ret < 0)
301 perror_with_name (_("Unable to fetch VFP registers."));
302
303 aarch32_vfp_regcache_supply (regcache, (gdb_byte *) &regs, 32);
304 }
305 else
306 {
307 int regno;
308
309 iovec.iov_len = sizeof (regs);
9d19df75 310
607685ec
YQ
311 ret = ptrace (PTRACE_GETREGSET, tid, NT_FPREGSET, &iovec);
312 if (ret < 0)
313 perror_with_name (_("Unable to fetch vFP/SIMD registers."));
9d19df75 314
607685ec 315 for (regno = AARCH64_V0_REGNUM; regno <= AARCH64_V31_REGNUM; regno++)
73e1c03f 316 regcache->raw_supply (regno, &regs.vregs[regno - AARCH64_V0_REGNUM]);
607685ec 317
73e1c03f
SM
318 regcache->raw_supply (AARCH64_FPSR_REGNUM, &regs.fpsr);
319 regcache->raw_supply (AARCH64_FPCR_REGNUM, &regs.fpcr);
607685ec 320 }
9d19df75
MS
321}
322
323/* Store to the current thread the valid fp/simd register
324 values in the GDB's register array. */
325
326static void
327store_fpregs_to_thread (const struct regcache *regcache)
328{
607685ec 329 int ret, tid;
9d19df75
MS
330 elf_fpregset_t regs;
331 struct iovec iovec;
ac7936df 332 struct gdbarch *gdbarch = regcache->arch ();
9d19df75 333
607685ec
YQ
334 /* Make sure REGS can hold all VFP registers contents on both aarch64
335 and arm. */
336 gdb_static_assert (sizeof regs >= VFP_REGS_SIZE);
222312d3 337 tid = ptid_get_lwp (regcache->ptid ());
9d19df75
MS
338
339 iovec.iov_base = &regs;
9d19df75 340
607685ec
YQ
341 if (gdbarch_bfd_arch_info (gdbarch)->bits_per_word == 32)
342 {
343 iovec.iov_len = VFP_REGS_SIZE;
9d19df75 344
607685ec
YQ
345 ret = ptrace (PTRACE_GETREGSET, tid, NT_ARM_VFP, &iovec);
346 if (ret < 0)
347 perror_with_name (_("Unable to fetch VFP registers."));
9d19df75 348
607685ec
YQ
349 aarch32_vfp_regcache_collect (regcache, (gdb_byte *) &regs, 32);
350 }
351 else
352 {
353 int regno;
9d19df75 354
607685ec
YQ
355 iovec.iov_len = sizeof (regs);
356
357 ret = ptrace (PTRACE_GETREGSET, tid, NT_FPREGSET, &iovec);
358 if (ret < 0)
359 perror_with_name (_("Unable to fetch FP/SIMD registers."));
360
361 for (regno = AARCH64_V0_REGNUM; regno <= AARCH64_V31_REGNUM; regno++)
0ec9f114 362 if (REG_VALID == regcache->get_register_status (regno))
34a79281
SM
363 regcache->raw_collect
364 (regno, (char *) &regs.vregs[regno - AARCH64_V0_REGNUM]);
607685ec 365
0ec9f114 366 if (REG_VALID == regcache->get_register_status (AARCH64_FPSR_REGNUM))
34a79281 367 regcache->raw_collect (AARCH64_FPSR_REGNUM, (char *) &regs.fpsr);
0ec9f114 368 if (REG_VALID == regcache->get_register_status (AARCH64_FPCR_REGNUM))
34a79281 369 regcache->raw_collect (AARCH64_FPCR_REGNUM, (char *) &regs.fpcr);
607685ec
YQ
370 }
371
372 if (gdbarch_bfd_arch_info (gdbarch)->bits_per_word == 32)
373 {
374 ret = ptrace (PTRACE_SETREGSET, tid, NT_ARM_VFP, &iovec);
375 if (ret < 0)
376 perror_with_name (_("Unable to store VFP registers."));
377 }
378 else
379 {
380 ret = ptrace (PTRACE_SETREGSET, tid, NT_FPREGSET, &iovec);
381 if (ret < 0)
382 perror_with_name (_("Unable to store FP/SIMD registers."));
383 }
9d19df75
MS
384}
385
f6ac5f3d 386/* Implement the "fetch_registers" target_ops method. */
9d19df75 387
f6ac5f3d
PA
388void
389aarch64_linux_nat_target::fetch_registers (struct regcache *regcache,
390 int regno)
9d19df75
MS
391{
392 if (regno == -1)
393 {
394 fetch_gregs_from_thread (regcache);
395 fetch_fpregs_from_thread (regcache);
396 }
397 else if (regno < AARCH64_V0_REGNUM)
398 fetch_gregs_from_thread (regcache);
399 else
400 fetch_fpregs_from_thread (regcache);
401}
402
f6ac5f3d 403/* Implement the "store_registers" target_ops method. */
9d19df75 404
f6ac5f3d
PA
405void
406aarch64_linux_nat_target::store_registers (struct regcache *regcache,
407 int regno)
9d19df75
MS
408{
409 if (regno == -1)
410 {
411 store_gregs_to_thread (regcache);
412 store_fpregs_to_thread (regcache);
413 }
414 else if (regno < AARCH64_V0_REGNUM)
415 store_gregs_to_thread (regcache);
416 else
417 store_fpregs_to_thread (regcache);
418}
419
420/* Fill register REGNO (if it is a general-purpose register) in
421 *GREGSETPS with the value in GDB's register array. If REGNO is -1,
422 do this for all registers. */
423
424void
425fill_gregset (const struct regcache *regcache,
426 gdb_gregset_t *gregsetp, int regno)
427{
d4d793bf
AA
428 regcache_collect_regset (&aarch64_linux_gregset, regcache,
429 regno, (gdb_byte *) gregsetp,
430 AARCH64_LINUX_SIZEOF_GREGSET);
9d19df75
MS
431}
432
433/* Fill GDB's register array with the general-purpose register values
434 in *GREGSETP. */
435
436void
437supply_gregset (struct regcache *regcache, const gdb_gregset_t *gregsetp)
438{
d4d793bf
AA
439 regcache_supply_regset (&aarch64_linux_gregset, regcache, -1,
440 (const gdb_byte *) gregsetp,
441 AARCH64_LINUX_SIZEOF_GREGSET);
9d19df75
MS
442}
443
444/* Fill register REGNO (if it is a floating-point register) in
445 *FPREGSETP with the value in GDB's register array. If REGNO is -1,
446 do this for all registers. */
447
448void
449fill_fpregset (const struct regcache *regcache,
450 gdb_fpregset_t *fpregsetp, int regno)
451{
d4d793bf
AA
452 regcache_collect_regset (&aarch64_linux_fpregset, regcache,
453 regno, (gdb_byte *) fpregsetp,
454 AARCH64_LINUX_SIZEOF_FPREGSET);
9d19df75
MS
455}
456
457/* Fill GDB's register array with the floating-point register values
458 in *FPREGSETP. */
459
460void
461supply_fpregset (struct regcache *regcache, const gdb_fpregset_t *fpregsetp)
462{
d4d793bf
AA
463 regcache_supply_regset (&aarch64_linux_fpregset, regcache, -1,
464 (const gdb_byte *) fpregsetp,
465 AARCH64_LINUX_SIZEOF_FPREGSET);
9d19df75
MS
466}
467
d6c44983
YZ
468/* linux_nat_new_fork hook. */
469
135340af
PA
470void
471aarch64_linux_nat_target::low_new_fork (struct lwp_info *parent,
472 pid_t child_pid)
d6c44983
YZ
473{
474 pid_t parent_pid;
475 struct aarch64_debug_reg_state *parent_state;
476 struct aarch64_debug_reg_state *child_state;
477
478 /* NULL means no watchpoint has ever been set in the parent. In
479 that case, there's nothing to do. */
480 if (parent->arch_private == NULL)
481 return;
482
483 /* GDB core assumes the child inherits the watchpoints/hw
484 breakpoints of the parent, and will remove them all from the
485 forked off process. Copy the debug registers mirrors into the
486 new process so that all breakpoints and watchpoints can be
487 removed together. */
488
489 parent_pid = ptid_get_pid (parent->ptid);
490 parent_state = aarch64_get_debug_reg_state (parent_pid);
491 child_state = aarch64_get_debug_reg_state (child_pid);
492 *child_state = *parent_state;
493}
9d19df75
MS
494\f
495
496/* Called by libthread_db. Returns a pointer to the thread local
497 storage (or its descriptor). */
498
499ps_err_e
754653a7 500ps_get_thread_area (struct ps_prochandle *ph,
9d19df75
MS
501 lwpid_t lwpid, int idx, void **base)
502{
a0cc84cd
YQ
503 int is_64bit_p
504 = (gdbarch_bfd_arch_info (target_gdbarch ())->bits_per_word == 64);
9d19df75 505
a0cc84cd 506 return aarch64_ps_get_thread_area (ph, lwpid, idx, base, is_64bit_p);
9d19df75
MS
507}
508\f
509
f6ac5f3d 510/* Implement the "post_startup_inferior" target_ops method. */
9d19df75 511
f6ac5f3d
PA
512void
513aarch64_linux_nat_target::post_startup_inferior (ptid_t ptid)
9d19df75 514{
135340af 515 low_forget_process (ptid_get_pid (ptid));
af1b22f3 516 aarch64_linux_get_debug_reg_capacity (ptid_get_pid (ptid));
f6ac5f3d 517 linux_nat_target::post_startup_inferior (ptid);
9d19df75
MS
518}
519
607685ec
YQ
520extern struct target_desc *tdesc_arm_with_neon;
521
f6ac5f3d 522/* Implement the "read_description" target_ops method. */
9d19df75 523
f6ac5f3d
PA
524const struct target_desc *
525aarch64_linux_nat_target::read_description ()
9d19df75 526{
6f67973b
YQ
527 int ret, tid;
528 gdb_byte regbuf[VFP_REGS_SIZE];
529 struct iovec iovec;
607685ec 530
6f67973b 531 tid = ptid_get_lwp (inferior_ptid);
607685ec 532
6f67973b
YQ
533 iovec.iov_base = regbuf;
534 iovec.iov_len = VFP_REGS_SIZE;
607685ec 535
6f67973b
YQ
536 ret = ptrace (PTRACE_GETREGSET, tid, NT_ARM_VFP, &iovec);
537 if (ret == 0)
538 return tdesc_arm_with_neon;
539 else
da434ccb 540 return aarch64_read_description ();
9d19df75
MS
541}
542
ade90bde
YQ
543/* Convert a native/host siginfo object, into/from the siginfo in the
544 layout of the inferiors' architecture. Returns true if any
545 conversion was done; false otherwise. If DIRECTION is 1, then copy
546 from INF to NATIVE. If DIRECTION is 0, copy from NATIVE to
547 INF. */
548
135340af
PA
549bool
550aarch64_linux_nat_target::low_siginfo_fixup (siginfo_t *native, gdb_byte *inf,
551 int direction)
ade90bde
YQ
552{
553 struct gdbarch *gdbarch = get_frame_arch (get_current_frame ());
554
555 /* Is the inferior 32-bit? If so, then do fixup the siginfo
556 object. */
557 if (gdbarch_bfd_arch_info (gdbarch)->bits_per_word == 32)
558 {
559 if (direction == 0)
560 aarch64_compat_siginfo_from_siginfo ((struct compat_siginfo *) inf,
561 native);
562 else
563 aarch64_siginfo_from_compat_siginfo (native,
564 (struct compat_siginfo *) inf);
565
135340af 566 return true;
ade90bde
YQ
567 }
568
135340af 569 return false;
ade90bde
YQ
570}
571
9d19df75
MS
572/* Returns the number of hardware watchpoints of type TYPE that we can
573 set. Value is positive if we can set CNT watchpoints, zero if
574 setting watchpoints of type TYPE is not supported, and negative if
575 CNT is more than the maximum number of watchpoints of type TYPE
576 that we can support. TYPE is one of bp_hardware_watchpoint,
577 bp_read_watchpoint, bp_write_watchpoint, or bp_hardware_breakpoint.
578 CNT is the number of such watchpoints used so far (including this
579 one). OTHERTYPE is non-zero if other types of watchpoints are
c2fbdc59 580 currently enabled. */
9d19df75 581
f6ac5f3d
PA
582int
583aarch64_linux_nat_target::can_use_hw_breakpoint (enum bptype type,
584 int cnt, int othertype)
9d19df75 585{
c2fbdc59
YQ
586 if (type == bp_hardware_watchpoint || type == bp_read_watchpoint
587 || type == bp_access_watchpoint || type == bp_watchpoint)
588 {
589 if (aarch64_num_wp_regs == 0)
590 return 0;
591 }
592 else if (type == bp_hardware_breakpoint)
593 {
594 if (aarch64_num_bp_regs == 0)
595 return 0;
596 }
597 else
598 gdb_assert_not_reached ("unexpected breakpoint type");
599
600 /* We always return 1 here because we don't have enough information
601 about possible overlap of addresses that they want to watch. As an
602 extreme example, consider the case where all the watchpoints watch
603 the same address and the same region length: then we can handle a
604 virtually unlimited number of watchpoints, due to debug register
605 sharing implemented via reference counts. */
9d19df75
MS
606 return 1;
607}
608
0d5ed153 609/* Insert a hardware-assisted breakpoint at BP_TGT->reqstd_address.
9d19df75
MS
610 Return 0 on success, -1 on failure. */
611
f6ac5f3d
PA
612int
613aarch64_linux_nat_target::insert_hw_breakpoint (struct gdbarch *gdbarch,
614 struct bp_target_info *bp_tgt)
9d19df75
MS
615{
616 int ret;
0d5ed153 617 CORE_ADDR addr = bp_tgt->placed_address = bp_tgt->reqstd_address;
8d689ee5 618 int len;
2ecd81c2 619 const enum target_hw_bp_type type = hw_execute;
c67ca4de
YQ
620 struct aarch64_debug_reg_state *state
621 = aarch64_get_debug_reg_state (ptid_get_pid (inferior_ptid));
9d19df75 622
8d689ee5
YQ
623 gdbarch_breakpoint_from_pc (gdbarch, &addr, &len);
624
c5e92cca 625 if (show_debug_regs)
9d19df75
MS
626 fprintf_unfiltered
627 (gdb_stdlog,
628 "insert_hw_breakpoint on entry (addr=0x%08lx, len=%d))\n",
629 (unsigned long) addr, len);
630
c67ca4de 631 ret = aarch64_handle_breakpoint (type, addr, len, 1 /* is_insert */, state);
9d19df75 632
c5e92cca 633 if (show_debug_regs)
d6c44983 634 {
d6c44983 635 aarch64_show_debug_reg_state (state,
2fd0f80d 636 "insert_hw_breakpoint", addr, len, type);
d6c44983 637 }
9d19df75
MS
638
639 return ret;
640}
641
642/* Remove a hardware-assisted breakpoint at BP_TGT->placed_address.
643 Return 0 on success, -1 on failure. */
644
f6ac5f3d
PA
645int
646aarch64_linux_nat_target::remove_hw_breakpoint (struct gdbarch *gdbarch,
647 struct bp_target_info *bp_tgt)
9d19df75
MS
648{
649 int ret;
650 CORE_ADDR addr = bp_tgt->placed_address;
8d689ee5 651 int len = 4;
2ecd81c2 652 const enum target_hw_bp_type type = hw_execute;
c67ca4de
YQ
653 struct aarch64_debug_reg_state *state
654 = aarch64_get_debug_reg_state (ptid_get_pid (inferior_ptid));
9d19df75 655
8d689ee5
YQ
656 gdbarch_breakpoint_from_pc (gdbarch, &addr, &len);
657
c5e92cca 658 if (show_debug_regs)
9d19df75
MS
659 fprintf_unfiltered
660 (gdb_stdlog, "remove_hw_breakpoint on entry (addr=0x%08lx, len=%d))\n",
661 (unsigned long) addr, len);
662
c67ca4de 663 ret = aarch64_handle_breakpoint (type, addr, len, 0 /* is_insert */, state);
9d19df75 664
c5e92cca 665 if (show_debug_regs)
d6c44983 666 {
d6c44983
YZ
667 aarch64_show_debug_reg_state (state,
668 "remove_hw_watchpoint", addr, len, type);
669 }
9d19df75
MS
670
671 return ret;
672}
673
f6ac5f3d 674/* Implement the "insert_watchpoint" target_ops method.
9d19df75
MS
675
676 Insert a watchpoint to watch a memory region which starts at
677 address ADDR and whose length is LEN bytes. Watch memory accesses
678 of the type TYPE. Return 0 on success, -1 on failure. */
679
f6ac5f3d
PA
680int
681aarch64_linux_nat_target::insert_watchpoint (CORE_ADDR addr, int len,
682 enum target_hw_bp_type type,
683 struct expression *cond)
9d19df75
MS
684{
685 int ret;
c67ca4de
YQ
686 struct aarch64_debug_reg_state *state
687 = aarch64_get_debug_reg_state (ptid_get_pid (inferior_ptid));
9d19df75 688
c5e92cca 689 if (show_debug_regs)
9d19df75
MS
690 fprintf_unfiltered (gdb_stdlog,
691 "insert_watchpoint on entry (addr=0x%08lx, len=%d)\n",
692 (unsigned long) addr, len);
693
694 gdb_assert (type != hw_execute);
695
c67ca4de 696 ret = aarch64_handle_watchpoint (type, addr, len, 1 /* is_insert */, state);
9d19df75 697
c5e92cca 698 if (show_debug_regs)
d6c44983 699 {
d6c44983
YZ
700 aarch64_show_debug_reg_state (state,
701 "insert_watchpoint", addr, len, type);
702 }
9d19df75
MS
703
704 return ret;
705}
706
f6ac5f3d 707/* Implement the "remove_watchpoint" target_ops method.
9d19df75
MS
708 Remove a watchpoint that watched the memory region which starts at
709 address ADDR, whose length is LEN bytes, and for accesses of the
710 type TYPE. Return 0 on success, -1 on failure. */
711
f6ac5f3d
PA
712int
713aarch64_linux_nat_target::remove_watchpoint (CORE_ADDR addr, int len,
714 enum target_hw_bp_type type,
715 struct expression *cond)
9d19df75
MS
716{
717 int ret;
c67ca4de
YQ
718 struct aarch64_debug_reg_state *state
719 = aarch64_get_debug_reg_state (ptid_get_pid (inferior_ptid));
9d19df75 720
c5e92cca 721 if (show_debug_regs)
9d19df75
MS
722 fprintf_unfiltered (gdb_stdlog,
723 "remove_watchpoint on entry (addr=0x%08lx, len=%d)\n",
724 (unsigned long) addr, len);
725
726 gdb_assert (type != hw_execute);
727
c67ca4de 728 ret = aarch64_handle_watchpoint (type, addr, len, 0 /* is_insert */, state);
9d19df75 729
c5e92cca 730 if (show_debug_regs)
d6c44983 731 {
d6c44983
YZ
732 aarch64_show_debug_reg_state (state,
733 "remove_watchpoint", addr, len, type);
734 }
9d19df75
MS
735
736 return ret;
737}
738
f6ac5f3d 739/* Implement the "region_ok_for_hw_watchpoint" target_ops method. */
9d19df75 740
f6ac5f3d
PA
741int
742aarch64_linux_nat_target::region_ok_for_hw_watchpoint (CORE_ADDR addr, int len)
9d19df75 743{
39edd165 744 return aarch64_linux_region_ok_for_watchpoint (addr, len);
9d19df75
MS
745}
746
f6ac5f3d 747/* Implement the "stopped_data_address" target_ops method. */
9d19df75 748
57810aa7 749bool
f6ac5f3d 750aarch64_linux_nat_target::stopped_data_address (CORE_ADDR *addr_p)
9d19df75
MS
751{
752 siginfo_t siginfo;
753 int i, tid;
754 struct aarch64_debug_reg_state *state;
755
756 if (!linux_nat_get_siginfo (inferior_ptid, &siginfo))
57810aa7 757 return false;
9d19df75
MS
758
759 /* This must be a hardware breakpoint. */
760 if (siginfo.si_signo != SIGTRAP
761 || (siginfo.si_code & 0xffff) != TRAP_HWBKPT)
57810aa7 762 return false;
9d19df75
MS
763
764 /* Check if the address matches any watched address. */
d6c44983 765 state = aarch64_get_debug_reg_state (ptid_get_pid (inferior_ptid));
9d19df75
MS
766 for (i = aarch64_num_wp_regs - 1; i >= 0; --i)
767 {
a3b60e45
JK
768 const unsigned int offset
769 = aarch64_watchpoint_offset (state->dr_ctrl_wp[i]);
9d19df75
MS
770 const unsigned int len = aarch64_watchpoint_length (state->dr_ctrl_wp[i]);
771 const CORE_ADDR addr_trap = (CORE_ADDR) siginfo.si_addr;
a3b60e45
JK
772 const CORE_ADDR addr_watch = state->dr_addr_wp[i] + offset;
773 const CORE_ADDR addr_watch_aligned = align_down (state->dr_addr_wp[i], 8);
774 const CORE_ADDR addr_orig = state->dr_addr_orig_wp[i];
9d19df75
MS
775
776 if (state->dr_ref_count_wp[i]
777 && DR_CONTROL_ENABLED (state->dr_ctrl_wp[i])
a3b60e45 778 && addr_trap >= addr_watch_aligned
9d19df75
MS
779 && addr_trap < addr_watch + len)
780 {
a3b60e45
JK
781 /* ADDR_TRAP reports the first address of the memory range
782 accessed by the CPU, regardless of what was the memory
783 range watched. Thus, a large CPU access that straddles
784 the ADDR_WATCH..ADDR_WATCH+LEN range may result in an
785 ADDR_TRAP that is lower than the
786 ADDR_WATCH..ADDR_WATCH+LEN range. E.g.:
787
788 addr: | 4 | 5 | 6 | 7 | 8 |
789 |---- range watched ----|
790 |----------- range accessed ------------|
791
792 In this case, ADDR_TRAP will be 4.
793
794 To match a watchpoint known to GDB core, we must never
795 report *ADDR_P outside of any ADDR_WATCH..ADDR_WATCH+LEN
796 range. ADDR_WATCH <= ADDR_TRAP < ADDR_ORIG is a false
797 positive on kernels older than 4.10. See PR
798 external/20207. */
799 *addr_p = addr_orig;
57810aa7 800 return true;
9d19df75
MS
801 }
802 }
803
57810aa7 804 return false;
9d19df75
MS
805}
806
f6ac5f3d 807/* Implement the "stopped_by_watchpoint" target_ops method. */
9d19df75 808
57810aa7 809bool
f6ac5f3d 810aarch64_linux_nat_target::stopped_by_watchpoint ()
9d19df75
MS
811{
812 CORE_ADDR addr;
813
f6ac5f3d 814 return stopped_data_address (&addr);
9d19df75
MS
815}
816
f6ac5f3d 817/* Implement the "watchpoint_addr_within_range" target_ops method. */
9d19df75 818
57810aa7 819bool
f6ac5f3d
PA
820aarch64_linux_nat_target::watchpoint_addr_within_range (CORE_ADDR addr,
821 CORE_ADDR start, int length)
9d19df75
MS
822{
823 return start <= addr && start + length - 1 >= addr;
824}
825
f6ac5f3d 826/* Implement the "can_do_single_step" target_ops method. */
750ce8d1 827
f6ac5f3d
PA
828int
829aarch64_linux_nat_target::can_do_single_step ()
750ce8d1
YQ
830{
831 return 1;
832}
833
9d19df75
MS
834/* Define AArch64 maintenance commands. */
835
836static void
837add_show_debug_regs_command (void)
838{
839 /* A maintenance command to enable printing the internal DRi mirror
840 variables. */
841 add_setshow_boolean_cmd ("show-debug-regs", class_maintenance,
c5e92cca 842 &show_debug_regs, _("\
9d19df75
MS
843Set whether to show variables that mirror the AArch64 debug registers."), _("\
844Show whether to show variables that mirror the AArch64 debug registers."), _("\
845Use \"on\" to enable, \"off\" to disable.\n\
846If enabled, the debug registers values are shown when GDB inserts\n\
847or removes a hardware breakpoint or watchpoint, and when the inferior\n\
848triggers a breakpoint or watchpoint."),
849 NULL,
850 NULL,
851 &maintenance_set_cmdlist,
852 &maintenance_show_cmdlist);
853}
854
9d19df75
MS
855void
856_initialize_aarch64_linux_nat (void)
857{
9d19df75
MS
858 add_show_debug_regs_command ();
859
9d19df75 860 /* Register the target. */
f6ac5f3d 861 linux_target = &the_aarch64_linux_nat_target;
d9f719f1 862 add_inf_child_target (&the_aarch64_linux_nat_target);
9d19df75 863}
This page took 0.413225 seconds and 4 git commands to generate.