1 /* Native-dependent code for GNU/Linux AArch64.
3 Copyright (C) 2011-2022 Free Software Foundation, Inc.
4 Contributed by ARM Ltd.
6 This file is part of GDB.
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.
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.
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/>. */
26 #include "linux-nat.h"
27 #include "target-descriptions.h"
30 #include "aarch64-nat.h"
31 #include "aarch64-tdep.h"
32 #include "aarch64-linux-tdep.h"
33 #include "aarch32-linux-nat.h"
34 #include "aarch32-tdep.h"
36 #include "nat/aarch64-linux.h"
37 #include "nat/aarch64-linux-hw-point.h"
38 #include "nat/aarch64-sve-linux-ptrace.h"
40 #include "elf/external.h"
41 #include "elf/common.h"
43 #include "nat/gdb_ptrace.h"
44 #include <sys/utsname.h>
45 #include <asm/ptrace.h>
48 #include "linux-tdep.h"
50 /* Defines ps_err_e, struct ps_prochandle. */
51 #include "gdb_proc_service.h"
52 #include "arch-utils.h"
54 #include "arch/aarch64-mte-linux.h"
56 #include "nat/aarch64-mte-linux-ptrace.h"
59 #define TRAP_HWBKPT 0x0004
62 class aarch64_linux_nat_target final
63 : public aarch64_nat_target
<linux_nat_target
>
66 /* Add our register access methods. */
67 void fetch_registers (struct regcache
*, int) override
;
68 void store_registers (struct regcache
*, int) override
;
70 const struct target_desc
*read_description () override
;
72 /* Add our hardware breakpoint and watchpoint implementation. */
73 bool stopped_by_watchpoint () override
;
74 bool stopped_data_address (CORE_ADDR
*) override
;
76 int can_do_single_step () override
;
78 /* Override the GNU/Linux inferior startup hook. */
79 void post_startup_inferior (ptid_t
) override
;
81 /* Override the GNU/Linux post attach hook. */
82 void post_attach (int pid
) override
;
84 /* These three defer to common nat/ code. */
85 void low_new_thread (struct lwp_info
*lp
) override
86 { aarch64_linux_new_thread (lp
); }
87 void low_delete_thread (struct arch_lwp_info
*lp
) override
88 { aarch64_linux_delete_thread (lp
); }
89 void low_prepare_to_resume (struct lwp_info
*lp
) override
90 { aarch64_linux_prepare_to_resume (lp
); }
92 void low_new_fork (struct lwp_info
*parent
, pid_t child_pid
) override
;
93 void low_forget_process (pid_t pid
) override
;
95 /* Add our siginfo layout converter. */
96 bool low_siginfo_fixup (siginfo_t
*ptrace
, gdb_byte
*inf
, int direction
)
99 struct gdbarch
*thread_architecture (ptid_t
) override
;
101 bool supports_memory_tagging () override
;
103 /* Read memory allocation tags from memory via PTRACE. */
104 bool fetch_memtags (CORE_ADDR address
, size_t len
,
105 gdb::byte_vector
&tags
, int type
) override
;
107 /* Write allocation tags to memory via PTRACE. */
108 bool store_memtags (CORE_ADDR address
, size_t len
,
109 const gdb::byte_vector
&tags
, int type
) override
;
112 static aarch64_linux_nat_target the_aarch64_linux_nat_target
;
114 /* Called whenever GDB is no longer debugging process PID. It deletes
115 data structures that keep track of debug register state. */
118 aarch64_linux_nat_target::low_forget_process (pid_t pid
)
120 aarch64_remove_debug_reg_state (pid
);
123 /* Fill GDB's register array with the general-purpose register values
124 from the current thread. */
127 fetch_gregs_from_thread (struct regcache
*regcache
)
130 struct gdbarch
*gdbarch
= regcache
->arch ();
134 /* Make sure REGS can hold all registers contents on both aarch64
136 gdb_static_assert (sizeof (regs
) >= 18 * 4);
138 tid
= regcache
->ptid ().lwp ();
140 iovec
.iov_base
= ®s
;
141 if (gdbarch_bfd_arch_info (gdbarch
)->bits_per_word
== 32)
142 iovec
.iov_len
= 18 * 4;
144 iovec
.iov_len
= sizeof (regs
);
146 ret
= ptrace (PTRACE_GETREGSET
, tid
, NT_PRSTATUS
, &iovec
);
148 perror_with_name (_("Unable to fetch general registers."));
150 if (gdbarch_bfd_arch_info (gdbarch
)->bits_per_word
== 32)
151 aarch32_gp_regcache_supply (regcache
, (uint32_t *) regs
, 1);
156 for (regno
= AARCH64_X0_REGNUM
; regno
<= AARCH64_CPSR_REGNUM
; regno
++)
157 regcache
->raw_supply (regno
, ®s
[regno
- AARCH64_X0_REGNUM
]);
161 /* Store to the current thread the valid general-purpose register
162 values in the GDB's register array. */
165 store_gregs_to_thread (const struct regcache
*regcache
)
170 struct gdbarch
*gdbarch
= regcache
->arch ();
172 /* Make sure REGS can hold all registers contents on both aarch64
174 gdb_static_assert (sizeof (regs
) >= 18 * 4);
175 tid
= regcache
->ptid ().lwp ();
177 iovec
.iov_base
= ®s
;
178 if (gdbarch_bfd_arch_info (gdbarch
)->bits_per_word
== 32)
179 iovec
.iov_len
= 18 * 4;
181 iovec
.iov_len
= sizeof (regs
);
183 ret
= ptrace (PTRACE_GETREGSET
, tid
, NT_PRSTATUS
, &iovec
);
185 perror_with_name (_("Unable to fetch general registers."));
187 if (gdbarch_bfd_arch_info (gdbarch
)->bits_per_word
== 32)
188 aarch32_gp_regcache_collect (regcache
, (uint32_t *) regs
, 1);
193 for (regno
= AARCH64_X0_REGNUM
; regno
<= AARCH64_CPSR_REGNUM
; regno
++)
194 if (REG_VALID
== regcache
->get_register_status (regno
))
195 regcache
->raw_collect (regno
, ®s
[regno
- AARCH64_X0_REGNUM
]);
198 ret
= ptrace (PTRACE_SETREGSET
, tid
, NT_PRSTATUS
, &iovec
);
200 perror_with_name (_("Unable to store general registers."));
203 /* Fill GDB's register array with the fp/simd register values
204 from the current thread. */
207 fetch_fpregs_from_thread (struct regcache
*regcache
)
212 struct gdbarch
*gdbarch
= regcache
->arch ();
214 /* Make sure REGS can hold all VFP registers contents on both aarch64
216 gdb_static_assert (sizeof regs
>= ARM_VFP3_REGS_SIZE
);
218 tid
= regcache
->ptid ().lwp ();
220 iovec
.iov_base
= ®s
;
222 if (gdbarch_bfd_arch_info (gdbarch
)->bits_per_word
== 32)
224 iovec
.iov_len
= ARM_VFP3_REGS_SIZE
;
226 ret
= ptrace (PTRACE_GETREGSET
, tid
, NT_ARM_VFP
, &iovec
);
228 perror_with_name (_("Unable to fetch VFP registers."));
230 aarch32_vfp_regcache_supply (regcache
, (gdb_byte
*) ®s
, 32);
236 iovec
.iov_len
= sizeof (regs
);
238 ret
= ptrace (PTRACE_GETREGSET
, tid
, NT_FPREGSET
, &iovec
);
240 perror_with_name (_("Unable to fetch vFP/SIMD registers."));
242 for (regno
= AARCH64_V0_REGNUM
; regno
<= AARCH64_V31_REGNUM
; regno
++)
243 regcache
->raw_supply (regno
, ®s
.vregs
[regno
- AARCH64_V0_REGNUM
]);
245 regcache
->raw_supply (AARCH64_FPSR_REGNUM
, ®s
.fpsr
);
246 regcache
->raw_supply (AARCH64_FPCR_REGNUM
, ®s
.fpcr
);
250 /* Store to the current thread the valid fp/simd register
251 values in the GDB's register array. */
254 store_fpregs_to_thread (const struct regcache
*regcache
)
259 struct gdbarch
*gdbarch
= regcache
->arch ();
261 /* Make sure REGS can hold all VFP registers contents on both aarch64
263 gdb_static_assert (sizeof regs
>= ARM_VFP3_REGS_SIZE
);
264 tid
= regcache
->ptid ().lwp ();
266 iovec
.iov_base
= ®s
;
268 if (gdbarch_bfd_arch_info (gdbarch
)->bits_per_word
== 32)
270 iovec
.iov_len
= ARM_VFP3_REGS_SIZE
;
272 ret
= ptrace (PTRACE_GETREGSET
, tid
, NT_ARM_VFP
, &iovec
);
274 perror_with_name (_("Unable to fetch VFP registers."));
276 aarch32_vfp_regcache_collect (regcache
, (gdb_byte
*) ®s
, 32);
282 iovec
.iov_len
= sizeof (regs
);
284 ret
= ptrace (PTRACE_GETREGSET
, tid
, NT_FPREGSET
, &iovec
);
286 perror_with_name (_("Unable to fetch FP/SIMD registers."));
288 for (regno
= AARCH64_V0_REGNUM
; regno
<= AARCH64_V31_REGNUM
; regno
++)
289 if (REG_VALID
== regcache
->get_register_status (regno
))
290 regcache
->raw_collect
291 (regno
, (char *) ®s
.vregs
[regno
- AARCH64_V0_REGNUM
]);
293 if (REG_VALID
== regcache
->get_register_status (AARCH64_FPSR_REGNUM
))
294 regcache
->raw_collect (AARCH64_FPSR_REGNUM
, (char *) ®s
.fpsr
);
295 if (REG_VALID
== regcache
->get_register_status (AARCH64_FPCR_REGNUM
))
296 regcache
->raw_collect (AARCH64_FPCR_REGNUM
, (char *) ®s
.fpcr
);
299 if (gdbarch_bfd_arch_info (gdbarch
)->bits_per_word
== 32)
301 ret
= ptrace (PTRACE_SETREGSET
, tid
, NT_ARM_VFP
, &iovec
);
303 perror_with_name (_("Unable to store VFP registers."));
307 ret
= ptrace (PTRACE_SETREGSET
, tid
, NT_FPREGSET
, &iovec
);
309 perror_with_name (_("Unable to store FP/SIMD registers."));
313 /* Fill GDB's register array with the sve register values
314 from the current thread. */
317 fetch_sveregs_from_thread (struct regcache
*regcache
)
319 std::unique_ptr
<gdb_byte
[]> base
320 = aarch64_sve_get_sveregs (regcache
->ptid ().lwp ());
321 aarch64_sve_regs_copy_to_reg_buf (regcache
, base
.get ());
324 /* Store to the current thread the valid sve register
325 values in the GDB's register array. */
328 store_sveregs_to_thread (struct regcache
*regcache
)
332 int tid
= regcache
->ptid ().lwp ();
334 /* First store vector length to the thread. This is done first to ensure the
335 ptrace buffers read from the kernel are the correct size. */
336 if (!aarch64_sve_set_vq (tid
, regcache
))
337 perror_with_name (_("Unable to set VG register."));
339 /* Obtain a dump of SVE registers from ptrace. */
340 std::unique_ptr
<gdb_byte
[]> base
= aarch64_sve_get_sveregs (tid
);
342 /* Overwrite with regcache state. */
343 aarch64_sve_regs_copy_from_reg_buf (regcache
, base
.get ());
345 /* Write back to the kernel. */
346 iovec
.iov_base
= base
.get ();
347 iovec
.iov_len
= ((struct user_sve_header
*) base
.get ())->size
;
348 ret
= ptrace (PTRACE_SETREGSET
, tid
, NT_ARM_SVE
, &iovec
);
351 perror_with_name (_("Unable to store sve registers"));
354 /* Fill GDB's register array with the pointer authentication mask values from
355 the current thread. */
358 fetch_pauth_masks_from_thread (struct regcache
*regcache
)
360 aarch64_gdbarch_tdep
*tdep
361 = (aarch64_gdbarch_tdep
*) gdbarch_tdep (regcache
->arch ());
364 uint64_t pauth_regset
[2] = {0, 0};
365 int tid
= regcache
->ptid ().lwp ();
367 iovec
.iov_base
= &pauth_regset
;
368 iovec
.iov_len
= sizeof (pauth_regset
);
370 ret
= ptrace (PTRACE_GETREGSET
, tid
, NT_ARM_PAC_MASK
, &iovec
);
372 perror_with_name (_("unable to fetch pauth registers."));
374 regcache
->raw_supply (AARCH64_PAUTH_DMASK_REGNUM (tdep
->pauth_reg_base
),
376 regcache
->raw_supply (AARCH64_PAUTH_CMASK_REGNUM (tdep
->pauth_reg_base
),
380 /* Fill GDB's register array with the MTE register values from
381 the current thread. */
384 fetch_mteregs_from_thread (struct regcache
*regcache
)
386 aarch64_gdbarch_tdep
*tdep
387 = (aarch64_gdbarch_tdep
*) gdbarch_tdep (regcache
->arch ());
388 int regno
= tdep
->mte_reg_base
;
390 gdb_assert (regno
!= -1);
392 uint64_t tag_ctl
= 0;
395 iovec
.iov_base
= &tag_ctl
;
396 iovec
.iov_len
= sizeof (tag_ctl
);
398 int tid
= get_ptrace_pid (regcache
->ptid ());
399 if (ptrace (PTRACE_GETREGSET
, tid
, NT_ARM_TAGGED_ADDR_CTRL
, &iovec
) != 0)
400 perror_with_name (_("unable to fetch MTE registers."));
402 regcache
->raw_supply (regno
, &tag_ctl
);
405 /* Store to the current thread the valid MTE register set in the GDB's
409 store_mteregs_to_thread (struct regcache
*regcache
)
411 aarch64_gdbarch_tdep
*tdep
412 = (aarch64_gdbarch_tdep
*) gdbarch_tdep (regcache
->arch ());
413 int regno
= tdep
->mte_reg_base
;
415 gdb_assert (regno
!= -1);
417 uint64_t tag_ctl
= 0;
419 if (REG_VALID
!= regcache
->get_register_status (regno
))
422 regcache
->raw_collect (regno
, (char *) &tag_ctl
);
426 iovec
.iov_base
= &tag_ctl
;
427 iovec
.iov_len
= sizeof (tag_ctl
);
429 int tid
= get_ptrace_pid (regcache
->ptid ());
430 if (ptrace (PTRACE_SETREGSET
, tid
, NT_ARM_TAGGED_ADDR_CTRL
, &iovec
) != 0)
431 perror_with_name (_("unable to store MTE registers."));
434 /* Fill GDB's register array with the TLS register values from
435 the current thread. */
438 fetch_tlsregs_from_thread (struct regcache
*regcache
)
440 aarch64_gdbarch_tdep
*tdep
441 = (aarch64_gdbarch_tdep
*) gdbarch_tdep (regcache
->arch ());
442 int regno
= tdep
->tls_regnum
;
444 gdb_assert (regno
!= -1);
449 iovec
.iov_base
= &tpidr
;
450 iovec
.iov_len
= sizeof (tpidr
);
452 int tid
= get_ptrace_pid (regcache
->ptid ());
453 if (ptrace (PTRACE_GETREGSET
, tid
, NT_ARM_TLS
, &iovec
) != 0)
454 perror_with_name (_("unable to fetch TLS register."));
456 regcache
->raw_supply (regno
, &tpidr
);
459 /* Store to the current thread the valid TLS register set in GDB's
463 store_tlsregs_to_thread (struct regcache
*regcache
)
465 aarch64_gdbarch_tdep
*tdep
466 = (aarch64_gdbarch_tdep
*) gdbarch_tdep (regcache
->arch ());
467 int regno
= tdep
->tls_regnum
;
469 gdb_assert (regno
!= -1);
473 if (REG_VALID
!= regcache
->get_register_status (regno
))
476 regcache
->raw_collect (regno
, (char *) &tpidr
);
480 iovec
.iov_base
= &tpidr
;
481 iovec
.iov_len
= sizeof (tpidr
);
483 int tid
= get_ptrace_pid (regcache
->ptid ());
484 if (ptrace (PTRACE_SETREGSET
, tid
, NT_ARM_TLS
, &iovec
) != 0)
485 perror_with_name (_("unable to store TLS register."));
488 /* Implement the "fetch_registers" target_ops method. */
491 aarch64_linux_nat_target::fetch_registers (struct regcache
*regcache
,
494 aarch64_gdbarch_tdep
*tdep
495 = (aarch64_gdbarch_tdep
*) gdbarch_tdep (regcache
->arch ());
499 fetch_gregs_from_thread (regcache
);
500 if (tdep
->has_sve ())
501 fetch_sveregs_from_thread (regcache
);
503 fetch_fpregs_from_thread (regcache
);
505 if (tdep
->has_pauth ())
506 fetch_pauth_masks_from_thread (regcache
);
508 if (tdep
->has_mte ())
509 fetch_mteregs_from_thread (regcache
);
511 if (tdep
->has_tls ())
512 fetch_tlsregs_from_thread (regcache
);
514 else if (regno
< AARCH64_V0_REGNUM
)
515 fetch_gregs_from_thread (regcache
);
516 else if (tdep
->has_sve ())
517 fetch_sveregs_from_thread (regcache
);
519 fetch_fpregs_from_thread (regcache
);
521 if (tdep
->has_pauth ())
523 if (regno
== AARCH64_PAUTH_DMASK_REGNUM (tdep
->pauth_reg_base
)
524 || regno
== AARCH64_PAUTH_CMASK_REGNUM (tdep
->pauth_reg_base
))
525 fetch_pauth_masks_from_thread (regcache
);
528 /* Fetch individual MTE registers. */
530 && (regno
== tdep
->mte_reg_base
))
531 fetch_mteregs_from_thread (regcache
);
533 if (tdep
->has_tls () && regno
== tdep
->tls_regnum
)
534 fetch_tlsregs_from_thread (regcache
);
537 /* Implement the "store_registers" target_ops method. */
540 aarch64_linux_nat_target::store_registers (struct regcache
*regcache
,
543 aarch64_gdbarch_tdep
*tdep
544 = (aarch64_gdbarch_tdep
*) gdbarch_tdep (regcache
->arch ());
548 store_gregs_to_thread (regcache
);
549 if (tdep
->has_sve ())
550 store_sveregs_to_thread (regcache
);
552 store_fpregs_to_thread (regcache
);
554 if (tdep
->has_mte ())
555 store_mteregs_to_thread (regcache
);
557 if (tdep
->has_tls ())
558 store_tlsregs_to_thread (regcache
);
560 else if (regno
< AARCH64_V0_REGNUM
)
561 store_gregs_to_thread (regcache
);
562 else if (tdep
->has_sve ())
563 store_sveregs_to_thread (regcache
);
565 store_fpregs_to_thread (regcache
);
567 /* Store MTE registers. */
569 && (regno
== tdep
->mte_reg_base
))
570 store_mteregs_to_thread (regcache
);
572 if (tdep
->has_tls () && regno
== tdep
->tls_regnum
)
573 store_tlsregs_to_thread (regcache
);
576 /* Fill register REGNO (if it is a general-purpose register) in
577 *GREGSETPS with the value in GDB's register array. If REGNO is -1,
578 do this for all registers. */
581 fill_gregset (const struct regcache
*regcache
,
582 gdb_gregset_t
*gregsetp
, int regno
)
584 regcache_collect_regset (&aarch64_linux_gregset
, regcache
,
585 regno
, (gdb_byte
*) gregsetp
,
586 AARCH64_LINUX_SIZEOF_GREGSET
);
589 /* Fill GDB's register array with the general-purpose register values
593 supply_gregset (struct regcache
*regcache
, const gdb_gregset_t
*gregsetp
)
595 regcache_supply_regset (&aarch64_linux_gregset
, regcache
, -1,
596 (const gdb_byte
*) gregsetp
,
597 AARCH64_LINUX_SIZEOF_GREGSET
);
600 /* Fill register REGNO (if it is a floating-point register) in
601 *FPREGSETP with the value in GDB's register array. If REGNO is -1,
602 do this for all registers. */
605 fill_fpregset (const struct regcache
*regcache
,
606 gdb_fpregset_t
*fpregsetp
, int regno
)
608 regcache_collect_regset (&aarch64_linux_fpregset
, regcache
,
609 regno
, (gdb_byte
*) fpregsetp
,
610 AARCH64_LINUX_SIZEOF_FPREGSET
);
613 /* Fill GDB's register array with the floating-point register values
617 supply_fpregset (struct regcache
*regcache
, const gdb_fpregset_t
*fpregsetp
)
619 regcache_supply_regset (&aarch64_linux_fpregset
, regcache
, -1,
620 (const gdb_byte
*) fpregsetp
,
621 AARCH64_LINUX_SIZEOF_FPREGSET
);
624 /* linux_nat_new_fork hook. */
627 aarch64_linux_nat_target::low_new_fork (struct lwp_info
*parent
,
631 struct aarch64_debug_reg_state
*parent_state
;
632 struct aarch64_debug_reg_state
*child_state
;
634 /* NULL means no watchpoint has ever been set in the parent. In
635 that case, there's nothing to do. */
636 if (parent
->arch_private
== NULL
)
639 /* GDB core assumes the child inherits the watchpoints/hw
640 breakpoints of the parent, and will remove them all from the
641 forked off process. Copy the debug registers mirrors into the
642 new process so that all breakpoints and watchpoints can be
645 parent_pid
= parent
->ptid
.pid ();
646 parent_state
= aarch64_get_debug_reg_state (parent_pid
);
647 child_state
= aarch64_get_debug_reg_state (child_pid
);
648 *child_state
= *parent_state
;
652 /* Called by libthread_db. Returns a pointer to the thread local
653 storage (or its descriptor). */
656 ps_get_thread_area (struct ps_prochandle
*ph
,
657 lwpid_t lwpid
, int idx
, void **base
)
660 = (gdbarch_bfd_arch_info (target_gdbarch ())->bits_per_word
== 64);
662 return aarch64_ps_get_thread_area (ph
, lwpid
, idx
, base
, is_64bit_p
);
666 /* Implement the virtual inf_ptrace_target::post_startup_inferior method. */
669 aarch64_linux_nat_target::post_startup_inferior (ptid_t ptid
)
671 low_forget_process (ptid
.pid ());
672 aarch64_linux_get_debug_reg_capacity (ptid
.pid ());
673 linux_nat_target::post_startup_inferior (ptid
);
676 /* Implement the "post_attach" target_ops method. */
679 aarch64_linux_nat_target::post_attach (int pid
)
681 low_forget_process (pid
);
682 /* Set the hardware debug register capacity. If
683 aarch64_linux_get_debug_reg_capacity is not called
684 (as it is in aarch64_linux_child_post_startup_inferior) then
685 software watchpoints will be used instead of hardware
686 watchpoints when attaching to a target. */
687 aarch64_linux_get_debug_reg_capacity (pid
);
688 linux_nat_target::post_attach (pid
);
691 /* Implement the "read_description" target_ops method. */
693 const struct target_desc
*
694 aarch64_linux_nat_target::read_description ()
697 gdb_byte regbuf
[ARM_VFP3_REGS_SIZE
];
700 tid
= inferior_ptid
.pid ();
702 iovec
.iov_base
= regbuf
;
703 iovec
.iov_len
= ARM_VFP3_REGS_SIZE
;
705 ret
= ptrace (PTRACE_GETREGSET
, tid
, NT_ARM_VFP
, &iovec
);
707 return aarch32_read_description ();
709 CORE_ADDR hwcap
= linux_get_hwcap (this);
710 CORE_ADDR hwcap2
= linux_get_hwcap2 (this);
712 aarch64_features features
;
713 features
.vq
= aarch64_sve_get_vq (tid
);
714 features
.pauth
= hwcap
& AARCH64_HWCAP_PACA
;
715 features
.mte
= hwcap2
& HWCAP2_MTE
;
718 return aarch64_read_description (features
);
721 /* Convert a native/host siginfo object, into/from the siginfo in the
722 layout of the inferiors' architecture. Returns true if any
723 conversion was done; false otherwise. If DIRECTION is 1, then copy
724 from INF to NATIVE. If DIRECTION is 0, copy from NATIVE to
728 aarch64_linux_nat_target::low_siginfo_fixup (siginfo_t
*native
, gdb_byte
*inf
,
731 struct gdbarch
*gdbarch
= get_frame_arch (get_current_frame ());
733 /* Is the inferior 32-bit? If so, then do fixup the siginfo
735 if (gdbarch_bfd_arch_info (gdbarch
)->bits_per_word
== 32)
738 aarch64_compat_siginfo_from_siginfo ((struct compat_siginfo
*) inf
,
741 aarch64_siginfo_from_compat_siginfo (native
,
742 (struct compat_siginfo
*) inf
);
750 /* Implement the "stopped_data_address" target_ops method. */
753 aarch64_linux_nat_target::stopped_data_address (CORE_ADDR
*addr_p
)
756 struct aarch64_debug_reg_state
*state
;
758 if (!linux_nat_get_siginfo (inferior_ptid
, &siginfo
))
761 /* This must be a hardware breakpoint. */
762 if (siginfo
.si_signo
!= SIGTRAP
763 || (siginfo
.si_code
& 0xffff) != TRAP_HWBKPT
)
766 /* Make sure to ignore the top byte, otherwise we may not recognize a
767 hardware watchpoint hit. The stopped data addresses coming from the
768 kernel can potentially be tagged addresses. */
769 struct gdbarch
*gdbarch
= thread_architecture (inferior_ptid
);
770 const CORE_ADDR addr_trap
771 = address_significant (gdbarch
, (CORE_ADDR
) siginfo
.si_addr
);
773 /* Check if the address matches any watched address. */
774 state
= aarch64_get_debug_reg_state (inferior_ptid
.pid ());
775 return aarch64_stopped_data_address (state
, addr_trap
, addr_p
);
778 /* Implement the "stopped_by_watchpoint" target_ops method. */
781 aarch64_linux_nat_target::stopped_by_watchpoint ()
785 return stopped_data_address (&addr
);
788 /* Implement the "can_do_single_step" target_ops method. */
791 aarch64_linux_nat_target::can_do_single_step ()
796 /* Implement the "thread_architecture" target_ops method. */
799 aarch64_linux_nat_target::thread_architecture (ptid_t ptid
)
801 /* Return the gdbarch for the current thread. If the vector length has
802 changed since the last time this was called, then do a further lookup. */
804 uint64_t vq
= aarch64_sve_get_vq (ptid
.lwp ());
806 /* Find the current gdbarch the same way as process_stratum_target. Only
807 return it if the current vector length matches the one in the tdep. */
808 inferior
*inf
= find_inferior_ptid (this, ptid
);
809 gdb_assert (inf
!= NULL
);
810 aarch64_gdbarch_tdep
*tdep
811 = (aarch64_gdbarch_tdep
*) gdbarch_tdep (inf
->gdbarch
);
815 /* We reach here if the vector length for the thread is different from its
816 value at process start. Lookup gdbarch via info (potentially creating a
817 new one), stashing the vector length inside id. Use -1 for when SVE
818 unavailable, to distinguish from an unset value of 0. */
819 struct gdbarch_info info
;
820 info
.bfd_arch_info
= bfd_lookup_arch (bfd_arch_aarch64
, bfd_mach_aarch64
);
821 info
.id
= (int *) (vq
== 0 ? -1 : vq
);
822 return gdbarch_find_by_info (info
);
825 /* Implement the "supports_memory_tagging" target_ops method. */
828 aarch64_linux_nat_target::supports_memory_tagging ()
830 return (linux_get_hwcap2 (this) & HWCAP2_MTE
) != 0;
833 /* Implement the "fetch_memtags" target_ops method. */
836 aarch64_linux_nat_target::fetch_memtags (CORE_ADDR address
, size_t len
,
837 gdb::byte_vector
&tags
, int type
)
839 int tid
= get_ptrace_pid (inferior_ptid
);
841 /* Allocation tags? */
842 if (type
== static_cast<int> (aarch64_memtag_type::mte_allocation
))
843 return aarch64_mte_fetch_memtags (tid
, address
, len
, tags
);
848 /* Implement the "store_memtags" target_ops method. */
851 aarch64_linux_nat_target::store_memtags (CORE_ADDR address
, size_t len
,
852 const gdb::byte_vector
&tags
, int type
)
854 int tid
= get_ptrace_pid (inferior_ptid
);
856 /* Allocation tags? */
857 if (type
== static_cast<int> (aarch64_memtag_type::mte_allocation
))
858 return aarch64_mte_store_memtags (tid
, address
, len
, tags
);
863 void _initialize_aarch64_linux_nat ();
865 _initialize_aarch64_linux_nat ()
867 aarch64_initialize_hw_point ();
869 /* Register the target. */
870 linux_target
= &the_aarch64_linux_nat_target
;
871 add_inf_child_target (&the_aarch64_linux_nat_target
);