public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
* [PATCH v2 1/2] Add FreeBSD/aarch64 architecture.
  2017-08-16 13:58 [PATCH v2 0/2] Initial support for FreeBSD/aarch64 John Baldwin
  2017-08-16 13:58 ` [PATCH v2 2/2] Add native target " John Baldwin
@ 2017-08-16 13:58 ` John Baldwin
  2017-09-04 13:52 ` [PATCH v2 0/2] Initial support for FreeBSD/aarch64 Pedro Alves
  2 siblings, 0 replies; 7+ messages in thread
From: John Baldwin @ 2017-08-16 13:58 UTC (permalink / raw)
  To: gdb-patches

Support for collecting and supplying general purpose and floating point
register sets is provided along with signal frame unwinding.

gdb/ChangeLog:

	* Makefile.in (ALL_64_TARGET_OBS): Add aarch64-fbsd-tdep.o.
	(ALLDEPFILES): Add aarch64-fbsd-tdep.c.
	* NEWS: Mention new FreeBSD/aarch64 target.
	* configure.tgt: Add aarch64*-*-freebsd*.
	* aarch64-fbsd-tdep.c: New file.
	* aarch64-fbsd-tdep.h: New file.
---
 gdb/ChangeLog           |   9 +++
 gdb/Makefile.in         |   2 +
 gdb/NEWS                |   4 +
 gdb/aarch64-fbsd-tdep.c | 208 ++++++++++++++++++++++++++++++++++++++++++++++++
 gdb/aarch64-fbsd-tdep.h |  33 ++++++++
 gdb/configure.tgt       |   5 ++
 6 files changed, 261 insertions(+)
 create mode 100644 gdb/aarch64-fbsd-tdep.c
 create mode 100644 gdb/aarch64-fbsd-tdep.h

diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 55a0b12d50..94cbd33158 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,12 @@
+2017-08-08  John Baldwin  <jhb@FreeBSD.org>
+
+	* Makefile.in (ALL_64_TARGET_OBS): Add aarch64-fbsd-tdep.o.
+	(ALLDEPFILES): Add aarch64-fbsd-tdep.c.
+	* NEWS: Mention new FreeBSD/aarch64 target.
+	* configure.tgt: Add aarch64*-*-freebsd*.
+	* aarch64-fbsd-tdep.c: New file.
+	* aarch64-fbsd-tdep.h: New file.
+
 2017-08-09  Tom Tromey  <tom@tromey.com>
 
 	* skip.c (skiplist_entry): New constructor.
diff --git a/gdb/Makefile.in b/gdb/Makefile.in
index c6e618a541..7369f93e27 100644
--- a/gdb/Makefile.in
+++ b/gdb/Makefile.in
@@ -751,6 +751,7 @@ TARGET_OBS = @TARGET_OBS@
 # All target-dependent objects files that require 64-bit CORE_ADDR
 # (used with --enable-targets=all --enable-64-bit-bfd).
 ALL_64_TARGET_OBS = \
+	aarch64-fbsd-tdep.o \
 	aarch64-insn.o \
 	aarch64-linux-tdep.o \
 	aarch64-newlib-tdep.o \
@@ -2490,6 +2491,7 @@ force_update:
 MAKEOVERRIDES =
 
 ALLDEPFILES = \
+	aarch64-fbsd-tdep.c \
 	aarch64-linux-nat.c \
 	aarch64-linux-tdep.c \
 	aarch64-newlib-tdep.c \
diff --git a/gdb/NEWS b/gdb/NEWS
index 9cd1df1cfe..2083fc2bfa 100644
--- a/gdb/NEWS
+++ b/gdb/NEWS
@@ -26,6 +26,10 @@ set debug separate-debug-file
 show debug separate-debug-file
   Control the display of debug output about separate debug file search.
 
+* New targets
+
+FreeBSD/aarch64			aarch64*-*-freebsd*
+
 *** Changes in GDB 8.0
 
 * GDB now supports access to the PKU register on GNU/Linux. The register is
diff --git a/gdb/aarch64-fbsd-tdep.c b/gdb/aarch64-fbsd-tdep.c
new file mode 100644
index 0000000000..f8ce627282
--- /dev/null
+++ b/gdb/aarch64-fbsd-tdep.c
@@ -0,0 +1,208 @@
+/* Target-dependent code for FreeBSD/aarch64.
+
+   Copyright (C) 2017 Free Software Foundation, Inc.
+
+   This file is part of GDB.
+
+   This program is free software; you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+
+#include "defs.h"
+
+#include "gdbarch.h"
+#include "fbsd-tdep.h"
+#include "aarch64-tdep.h"
+#include "aarch64-fbsd-tdep.h"
+#include "osabi.h"
+#include "solib-svr4.h"
+#include "target.h"
+#include "tramp-frame.h"
+#include "trad-frame.h"
+
+/* In a signal frame, sp points to a 'struct sigframe' which is
+   defined as:
+
+   struct sigframe {
+	   siginfo_t	sf_si;
+	   ucontext_t	sf_uc;
+   };
+
+   ucontext_t is defined as:
+
+   struct __ucontext {
+	   sigset_t	uc_sigmask;
+	   mcontext_t	uc_mcontext;
+	   ...
+   };
+
+   The mcontext_t contains the general purpose register set followed
+   by the floating point register set.  The floating point register
+   set is only valid if the _MC_FP_VALID flag is set in mc_flags.  */
+
+#define AARCH64_MCONTEXT_REG_SIZE               8
+#define AARCH64_MCONTEXT_FPREG_SIZE             16
+#define AARCH64_SIGFRAME_UCONTEXT_OFFSET	80
+#define AARCH64_UCONTEXT_MCONTEXT_OFFSET	16
+#define	AARCH64_MCONTEXT_FPREGS_OFFSET		272
+#define	AARCH64_MCONTEXT_FLAGS_OFFSET		800
+#define AARCH64_MCONTEXT_FLAG_FP_VALID		0x1
+
+/* Implement the "init" method of struct tramp_frame.  */
+
+static void
+aarch64_fbsd_sigframe_init (const struct tramp_frame *self,
+			     struct frame_info *this_frame,
+			     struct trad_frame_cache *this_cache,
+			     CORE_ADDR func)
+{
+  struct gdbarch *gdbarch = get_frame_arch (this_frame);
+  enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
+  CORE_ADDR sp = get_frame_register_unsigned (this_frame, AARCH64_SP_REGNUM);
+  CORE_ADDR mcontext_addr =
+    sp
+    + AARCH64_SIGFRAME_UCONTEXT_OFFSET
+    + AARCH64_UCONTEXT_MCONTEXT_OFFSET;
+  gdb_byte buf[4];
+  int i;
+
+  for (i = 0; i < 30; i++)
+    {
+      trad_frame_set_reg_addr (this_cache,
+			       AARCH64_X0_REGNUM + i,
+			       mcontext_addr + i * AARCH64_MCONTEXT_REG_SIZE);
+    }
+  trad_frame_set_reg_addr (this_cache, AARCH64_LR_REGNUM,
+			   mcontext_addr + 30 * AARCH64_MCONTEXT_REG_SIZE);
+  trad_frame_set_reg_addr (this_cache, AARCH64_SP_REGNUM,
+			   mcontext_addr + 31 * AARCH64_MCONTEXT_REG_SIZE);
+  trad_frame_set_reg_addr (this_cache, AARCH64_PC_REGNUM,
+			   mcontext_addr + 32 * AARCH64_MCONTEXT_REG_SIZE);
+  trad_frame_set_reg_addr (this_cache, AARCH64_CPSR_REGNUM,
+			   mcontext_addr + 33 * AARCH64_MCONTEXT_REG_SIZE);
+
+  if (target_read_memory (mcontext_addr + AARCH64_MCONTEXT_FLAGS_OFFSET, buf,
+			  4) == 0
+      && (extract_unsigned_integer (buf, 4, byte_order)
+	  & AARCH64_MCONTEXT_FLAG_FP_VALID))
+    {
+      for (i = 0; i < 32; i++)
+	{
+	  trad_frame_set_reg_addr (this_cache, AARCH64_V0_REGNUM + i,
+				   mcontext_addr
+				   + AARCH64_MCONTEXT_FPREGS_OFFSET
+				   + i * AARCH64_MCONTEXT_FPREG_SIZE);
+	}
+      trad_frame_set_reg_addr (this_cache, AARCH64_FPSR_REGNUM,
+			       mcontext_addr + AARCH64_MCONTEXT_FPREGS_OFFSET
+			       + 32 * AARCH64_MCONTEXT_FPREG_SIZE);
+      trad_frame_set_reg_addr (this_cache, AARCH64_FPCR_REGNUM,
+			       mcontext_addr + AARCH64_MCONTEXT_FPREGS_OFFSET
+			       + 32 * AARCH64_MCONTEXT_FPREG_SIZE + 4);
+    }
+
+  trad_frame_set_id (this_cache, frame_id_build (sp, func));
+}
+
+static const struct tramp_frame aarch64_fbsd_sigframe =
+{
+  SIGTRAMP_FRAME,
+  4,
+  {
+    {0x910003e0, -1},		/* mov  x0, sp  */
+    {0x91014000, -1},		/* add  x0, x0, #SF_UC  */
+    {0xd2803428, -1},		/* mov  x8, #SYS_sigreturn  */
+    {0xd4000001, -1},		/* svc  0x0  */
+    {TRAMP_SENTINEL_INSN, -1}
+  },
+  aarch64_fbsd_sigframe_init
+};
+
+/* Register maps.  */
+
+static const struct regcache_map_entry aarch64_fbsd_gregmap[] =
+  {
+    { 30, AARCH64_X0_REGNUM, 8 }, /* x0 ... x29 */
+    { 1, AARCH64_LR_REGNUM, 8 },
+    { 1, AARCH64_SP_REGNUM, 8 },
+    { 1, AARCH64_PC_REGNUM, 8 },
+    { 1, AARCH64_CPSR_REGNUM, 4 },
+    { 0 }
+  };
+
+static const struct regcache_map_entry aarch64_fbsd_fpregmap[] =
+  {
+    { 32, AARCH64_V0_REGNUM, 16 }, /* v0 ... v31 */
+    { 1, AARCH64_FPSR_REGNUM, 4 },
+    { 1, AARCH64_FPCR_REGNUM, 4 },
+    { 0 }
+  };
+
+/* Register set definitions.  */
+
+const struct regset aarch64_fbsd_gregset =
+  {
+    aarch64_fbsd_gregmap,
+    regcache_supply_regset, regcache_collect_regset
+  };
+
+const struct regset aarch64_fbsd_fpregset =
+  {
+    aarch64_fbsd_fpregmap,
+    regcache_supply_regset, regcache_collect_regset
+  };
+
+/* Implement the "regset_from_core_section" gdbarch method.  */
+
+static void
+aarch64_fbsd_iterate_over_regset_sections (struct gdbarch *gdbarch,
+					   iterate_over_regset_sections_cb *cb,
+					   void *cb_data,
+					   const struct regcache *regcache)
+{
+  cb (".reg", AARCH64_FBSD_SIZEOF_GREGSET, &aarch64_fbsd_gregset,
+      NULL, cb_data);
+  cb (".reg2", AARCH64_FBSD_SIZEOF_FPREGSET, &aarch64_fbsd_fpregset,
+      NULL, cb_data);
+}
+
+/* Implement the 'init_osabi' method of struct gdb_osabi_handler.  */
+
+static void
+aarch64_fbsd_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
+{
+  struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
+
+  /* Generic FreeBSD support.  */
+  fbsd_init_abi (info, gdbarch);
+
+  set_solib_svr4_fetch_link_map_offsets (gdbarch,
+					 svr4_lp64_fetch_link_map_offsets);
+
+  tramp_frame_prepend_unwinder (gdbarch, &aarch64_fbsd_sigframe);
+
+  /* Enable longjmp.  */
+  tdep->jb_pc = 13;
+
+  set_gdbarch_iterate_over_regset_sections
+    (gdbarch, aarch64_fbsd_iterate_over_regset_sections);
+}
+
+/* Provide a prototype to silence -Wmissing-prototypes.  */
+extern initialize_file_ftype _initialize_aarch64_fbsd_tdep;
+
+void
+_initialize_aarch64_fbsd_tdep (void)
+{
+  gdbarch_register_osabi (bfd_arch_aarch64, 0, GDB_OSABI_FREEBSD,
+			  aarch64_fbsd_init_abi);
+}
diff --git a/gdb/aarch64-fbsd-tdep.h b/gdb/aarch64-fbsd-tdep.h
new file mode 100644
index 0000000000..0f66dd3925
--- /dev/null
+++ b/gdb/aarch64-fbsd-tdep.h
@@ -0,0 +1,33 @@
+/* FreeBSD/aarch64 target support, prototypes.
+
+   Copyright (C) 2017 Free Software Foundation, Inc.
+
+   This file is part of GDB.
+
+   This program is free software; you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+
+#include "regset.h"
+
+/* The general-purpose regset consists of 30 X registers, plus LR, SP,
+   ELR, and SPSR registers.  SPSR is 32 bits but the structure is
+   passed to 64 bit alignment.  */
+#define AARCH64_FBSD_SIZEOF_GREGSET  (34 * X_REGISTER_SIZE)
+
+/* The fp regset consists of 32 V registers, plus FPSR and FPCR which
+   are 4 bytes wide each, and the whole structure is padded to 128 bit
+   alignment.  */
+#define AARCH64_FBSD_SIZEOF_FPREGSET (33 * V_REGISTER_SIZE)
+
+extern const struct regset aarch64_fbsd_gregset;
+extern const struct regset aarch64_fbsd_fpregset;
diff --git a/gdb/configure.tgt b/gdb/configure.tgt
index fdcb7b1d69..f72a0dbbc1 100644
--- a/gdb/configure.tgt
+++ b/gdb/configure.tgt
@@ -44,6 +44,11 @@ aarch64*-*-elf | aarch64*-*-rtems*)
 	gdb_target_obs="aarch64-tdep.o aarch64-newlib-tdep.o aarch64-insn.o"
 	;;
 
+aarch64*-*-freebsd*)
+	# Target: FreeBSD/aarch64
+	gdb_target_obs="aarch64-tdep.o aarch64-fbsd-tdep.o aarch64-insn.o"
+	;;
+
 aarch64*-*-linux*)
 	# Target: AArch64 linux
 	gdb_target_obs="aarch64-tdep.o aarch64-linux-tdep.o aarch64-insn.o \
-- 
2.13.3

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [PATCH v2 0/2] Initial support for FreeBSD/aarch64
@ 2017-08-16 13:58 John Baldwin
  2017-08-16 13:58 ` [PATCH v2 2/2] Add native target " John Baldwin
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: John Baldwin @ 2017-08-16 13:58 UTC (permalink / raw)
  To: gdb-patches

This series adds initial support for FreeBSD/aarch64.  It does not
yet include support for hardware breakpoints/watchpoints as that is
not currently supported by FreeBSD's kernel.

I realized yesterday that I had forgotton to 'git add' the
aarch64-fbsd-nat.c file for the second patch, so this series adds
the missing file.

John Baldwin (2):
  Add FreeBSD/aarch64 architecture.
  Add native target for FreeBSD/aarch64.

 gdb/ChangeLog           |  17 ++++
 gdb/Makefile.in         |   3 +
 gdb/NEWS                |   8 ++
 gdb/aarch64-fbsd-nat.c  | 133 +++++++++++++++++++++++++++++++
 gdb/aarch64-fbsd-tdep.c | 208 ++++++++++++++++++++++++++++++++++++++++++++++++
 gdb/aarch64-fbsd-tdep.h |  33 ++++++++
 gdb/configure.host      |   1 +
 gdb/configure.nat       |   5 ++
 gdb/configure.tgt       |   5 ++
 9 files changed, 413 insertions(+)
 create mode 100644 gdb/aarch64-fbsd-nat.c
 create mode 100644 gdb/aarch64-fbsd-tdep.c
 create mode 100644 gdb/aarch64-fbsd-tdep.h

-- 
2.13.3

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [PATCH v2 2/2] Add native target for FreeBSD/aarch64.
  2017-08-16 13:58 [PATCH v2 0/2] Initial support for FreeBSD/aarch64 John Baldwin
@ 2017-08-16 13:58 ` John Baldwin
  2017-08-16 13:58 ` [PATCH v2 1/2] Add FreeBSD/aarch64 architecture John Baldwin
  2017-09-04 13:52 ` [PATCH v2 0/2] Initial support for FreeBSD/aarch64 Pedro Alves
  2 siblings, 0 replies; 7+ messages in thread
From: John Baldwin @ 2017-08-16 13:58 UTC (permalink / raw)
  To: gdb-patches

gdb/ChangeLog:

	* Makefile.in (ALLDEPFILES): Add mips-fbsd-nat.c.
	* NEWS: Mention new FreeBSD/mips native configuration.
	* configure.host: Add aarch64*-*-freebsd*.
	* configure.nat: Likewise.
	* aarch64-fbsd-nat.c: New file.
---
 gdb/ChangeLog          |   8 +++
 gdb/Makefile.in        |   1 +
 gdb/NEWS               |   4 ++
 gdb/aarch64-fbsd-nat.c | 133 +++++++++++++++++++++++++++++++++++++++++++++++++
 gdb/configure.host     |   1 +
 gdb/configure.nat      |   5 ++
 6 files changed, 152 insertions(+)
 create mode 100644 gdb/aarch64-fbsd-nat.c

diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 94cbd33158..aaa54ae398 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,13 @@
 2017-08-08  John Baldwin  <jhb@FreeBSD.org>
 
+	* Makefile.in (ALLDEPFILES): Add mips-fbsd-nat.c.
+	* NEWS: Mention new FreeBSD/mips native configuration.
+	* configure.host: Add aarch64*-*-freebsd*.
+	* configure.nat: Likewise.
+	* aarch64-fbsd-nat.c: New file.
+
+2017-08-08  John Baldwin  <jhb@FreeBSD.org>
+
 	* Makefile.in (ALL_64_TARGET_OBS): Add aarch64-fbsd-tdep.o.
 	(ALLDEPFILES): Add aarch64-fbsd-tdep.c.
 	* NEWS: Mention new FreeBSD/aarch64 target.
diff --git a/gdb/Makefile.in b/gdb/Makefile.in
index 7369f93e27..919946a1d3 100644
--- a/gdb/Makefile.in
+++ b/gdb/Makefile.in
@@ -2491,6 +2491,7 @@ force_update:
 MAKEOVERRIDES =
 
 ALLDEPFILES = \
+	aarch64-fbsd-nat.c \
 	aarch64-fbsd-tdep.c \
 	aarch64-linux-nat.c \
 	aarch64-linux-tdep.c \
diff --git a/gdb/NEWS b/gdb/NEWS
index 2083fc2bfa..1c250a012a 100644
--- a/gdb/NEWS
+++ b/gdb/NEWS
@@ -26,6 +26,10 @@ set debug separate-debug-file
 show debug separate-debug-file
   Control the display of debug output about separate debug file search.
 
+* New native configurations
+
+FreeBSD/aarch64			aarch64*-*-freebsd*
+
 * New targets
 
 FreeBSD/aarch64			aarch64*-*-freebsd*
diff --git a/gdb/aarch64-fbsd-nat.c b/gdb/aarch64-fbsd-nat.c
new file mode 100644
index 0000000000..8313d363dc
--- /dev/null
+++ b/gdb/aarch64-fbsd-nat.c
@@ -0,0 +1,133 @@
+/* Native-dependent code for FreeBSD/aarch64.
+
+   Copyright (C) 2017 Free Software Foundation, Inc.
+
+   This file is part of GDB.
+
+   This program is free software; you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+
+#include "defs.h"
+#include "target.h"
+
+#include <sys/types.h>
+#include <sys/ptrace.h>
+#include <machine/reg.h>
+
+#include "fbsd-nat.h"
+#include "aarch64-tdep.h"
+#include "aarch64-fbsd-tdep.h"
+#include "inf-ptrace.h"
+
+/* Determine if PT_GETREGS fetches REGNUM.  */
+
+static bool
+getregs_supplies (struct gdbarch *gdbarch, int regnum)
+{
+  return (regnum >= AARCH64_X0_REGNUM && regnum <= AARCH64_CPSR_REGNUM);
+}
+
+/* Determine if PT_GETFPREGS fetches REGNUM.  */
+
+static bool
+getfpregs_supplies (struct gdbarch *gdbarch, int regnum)
+{
+  return (regnum >= AARCH64_V0_REGNUM && regnum <= AARCH64_FPCR_REGNUM);
+}
+
+/* Fetch register REGNUM from the inferior.  If REGNUM is -1, do this
+   for all registers.  */
+
+static void
+aarch64_fbsd_fetch_inferior_registers (struct target_ops *ops,
+				    struct regcache *regcache, int regnum)
+{
+  pid_t pid = get_ptrace_pid (regcache_get_ptid (regcache));
+
+  struct gdbarch *gdbarch = get_regcache_arch (regcache);
+  if (regnum == -1 || getregs_supplies (gdbarch, regnum))
+    {
+      struct reg regs;
+
+      if (ptrace (PT_GETREGS, pid, (PTRACE_TYPE_ARG3) &regs, 0) == -1)
+	perror_with_name (_("Couldn't get registers"));
+
+      regcache->supply_regset (&aarch64_fbsd_gregset, regnum, &regs,
+			       sizeof (regs));
+    }
+
+  if (regnum == -1 || getfpregs_supplies (gdbarch, regnum))
+    {
+      struct fpreg fpregs;
+
+      if (ptrace (PT_GETFPREGS, pid, (PTRACE_TYPE_ARG3) &fpregs, 0) == -1)
+	perror_with_name (_("Couldn't get floating point status"));
+
+      regcache->supply_regset (&aarch64_fbsd_fpregset, regnum, &fpregs,
+			       sizeof (fpregs));
+    }
+}
+
+/* Store register REGNUM back into the inferior.  If REGNUM is -1, do
+   this for all registers.  */
+
+static void
+aarch64_fbsd_store_inferior_registers (struct target_ops *ops,
+				    struct regcache *regcache, int regnum)
+{
+  pid_t pid = get_ptrace_pid (regcache_get_ptid (regcache));
+
+  struct gdbarch *gdbarch = get_regcache_arch (regcache);
+  if (regnum == -1 || getregs_supplies (gdbarch, regnum))
+    {
+      struct reg regs;
+
+      if (ptrace (PT_GETREGS, pid, (PTRACE_TYPE_ARG3) &regs, 0) == -1)
+	perror_with_name (_("Couldn't get registers"));
+
+      regcache->collect_regset (&aarch64_fbsd_gregset, regnum, &regs,
+			       sizeof (regs));
+
+      if (ptrace (PT_SETREGS, pid, (PTRACE_TYPE_ARG3) &regs, 0) == -1)
+	perror_with_name (_("Couldn't write registers"));
+    }
+
+  if (regnum == -1 || getfpregs_supplies (gdbarch, regnum))
+    {
+      struct fpreg fpregs;
+
+      if (ptrace (PT_GETFPREGS, pid, (PTRACE_TYPE_ARG3) &fpregs, 0) == -1)
+	perror_with_name (_("Couldn't get floating point status"));
+
+      regcache->collect_regset (&aarch64_fbsd_fpregset, regnum, &fpregs,
+				sizeof (fpregs));
+
+      if (ptrace (PT_SETFPREGS, pid, (PTRACE_TYPE_ARG3) &fpregs, 0) == -1)
+	perror_with_name (_("Couldn't write floating point status"));
+    }
+}
+\f
+
+/* Provide a prototype to silence -Wmissing-prototypes.  */
+void _initialize_aarch64_fbsd_nat (void);
+
+void
+_initialize_aarch64_fbsd_nat (void)
+{
+  struct target_ops *t;
+
+  t = inf_ptrace_target ();
+  t->to_fetch_registers = aarch64_fbsd_fetch_inferior_registers;
+  t->to_store_registers = aarch64_fbsd_store_inferior_registers;
+  fbsd_nat_add_target (t);
+}
diff --git a/gdb/configure.host b/gdb/configure.host
index d74fd04934..304675f137 100644
--- a/gdb/configure.host
+++ b/gdb/configure.host
@@ -84,6 +84,7 @@ case "${host}" in
 *-*-darwin*)		gdb_host=darwin ;;
 
 aarch64*-*-linux*)	gdb_host=linux ;;
+aarch64*-*-freebsd*)	gdb_host=fbsd ;;
 
 alpha*-*-linux*)	gdb_host=alpha-linux ;;
 alpha*-*-netbsd* | alpha*-*-knetbsd*-gnu)
diff --git a/gdb/configure.nat b/gdb/configure.nat
index b32c9aa849..7cb8f8b145 100644
--- a/gdb/configure.nat
+++ b/gdb/configure.nat
@@ -144,6 +144,11 @@ case ${gdb_host} in
 	;;
     fbsd)
 	case ${gdb_host_cpu} in
+	    aarch64)
+		# Host: FreeBSD/aarch64
+		NATDEPFILES="${NATDEPFILES} aarch64-fbsd-nat.o"
+		LOADLIBES=
+		;;
 	    i386)
 		# Host: FreeBSD/i386
 		NATDEPFILES="${NATDEPFILES} x86-nat.o x86-dregs.o \
-- 
2.13.3

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH v2 0/2] Initial support for FreeBSD/aarch64
  2017-08-16 13:58 [PATCH v2 0/2] Initial support for FreeBSD/aarch64 John Baldwin
  2017-08-16 13:58 ` [PATCH v2 2/2] Add native target " John Baldwin
  2017-08-16 13:58 ` [PATCH v2 1/2] Add FreeBSD/aarch64 architecture John Baldwin
@ 2017-09-04 13:52 ` Pedro Alves
  2017-09-05  2:51   ` John Baldwin
  2 siblings, 1 reply; 7+ messages in thread
From: Pedro Alves @ 2017-09-04 13:52 UTC (permalink / raw)
  To: John Baldwin, gdb-patches

On 08/16/2017 02:57 PM, John Baldwin wrote:
> This series adds initial support for FreeBSD/aarch64.  It does not
> yet include support for hardware breakpoints/watchpoints as that is
> not currently supported by FreeBSD's kernel.
> 
> I realized yesterday that I had forgotton to 'git add' the
> aarch64-fbsd-nat.c file for the second patch, so this series adds
> the missing file.

I skimmed this and it looks good to me.

One tiny comment:

 > +/* Provide a prototype to silence -Wmissing-prototypes.  */
 > +extern initialize_file_ftype _initialize_aarch64_fbsd_tdep;

...

 > +/* Provide a prototype to silence -Wmissing-prototypes.  */
 > +void _initialize_aarch64_fbsd_nat (void);

These prototypes no longer make sense in C++ [1], and we
could/should remove all the existing ones to avoid confusion.

[1] If an _initialize_foo function were defined with an
incorrect prototype, then gdb would not link, unlike in C
where the function would be called anyway, with incorrect
arguments.

Thanks,
Pedro Alves

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH v2 0/2] Initial support for FreeBSD/aarch64
  2017-09-04 13:52 ` [PATCH v2 0/2] Initial support for FreeBSD/aarch64 Pedro Alves
@ 2017-09-05  2:51   ` John Baldwin
  2017-09-05 19:34     ` Pedro Alves
  0 siblings, 1 reply; 7+ messages in thread
From: John Baldwin @ 2017-09-05  2:51 UTC (permalink / raw)
  To: Pedro Alves, gdb-patches

On 9/4/17 6:52 AM, Pedro Alves wrote:
> On 08/16/2017 02:57 PM, John Baldwin wrote:
>> This series adds initial support for FreeBSD/aarch64.  It does not
>> yet include support for hardware breakpoints/watchpoints as that is
>> not currently supported by FreeBSD's kernel.
>>
>> I realized yesterday that I had forgotton to 'git add' the
>> aarch64-fbsd-nat.c file for the second patch, so this series adds
>> the missing file.
> 
> I skimmed this and it looks good to me.
> 
> One tiny comment:
> 
>  > +/* Provide a prototype to silence -Wmissing-prototypes.  */
>  > +extern initialize_file_ftype _initialize_aarch64_fbsd_tdep;
> 
> ...
> 
>  > +/* Provide a prototype to silence -Wmissing-prototypes.  */
>  > +void _initialize_aarch64_fbsd_nat (void);
> 
> These prototypes no longer make sense in C++ [1], and we
> could/should remove all the existing ones to avoid confusion.

I assumed it was more for the warning per the comment.  I wonder if
we shouldn't think about replacing init.c with something more C++y
anyway?  We could perhaps do it incrementally by adding a global
container of function pointers and a wrapper class whose constructor
accepts a function pointer and adds it to the container.  Then we
would do a for-each over the container at the same place as
initialize_all_files().  If the ordering doesn't matter then this
could be rolled out over time (i.e. adding the new container and
wrapper class and then individual _init* functions could be converted
to the new scheme).

-- 
John Baldwin

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH v2 0/2] Initial support for FreeBSD/aarch64
  2017-09-05  2:51   ` John Baldwin
@ 2017-09-05 19:34     ` Pedro Alves
  2017-09-05 19:41       ` John Baldwin
  0 siblings, 1 reply; 7+ messages in thread
From: Pedro Alves @ 2017-09-05 19:34 UTC (permalink / raw)
  To: John Baldwin, gdb-patches


On 09/05/2017 03:51 AM, John Baldwin wrote:
> On 9/4/17 6:52 AM, Pedro Alves wrote:
>> On 08/16/2017 02:57 PM, John Baldwin wrote:
>>> This series adds initial support for FreeBSD/aarch64.  It does not
>>> yet include support for hardware breakpoints/watchpoints as that is
>>> not currently supported by FreeBSD's kernel.
>>>
>>> I realized yesterday that I had forgotton to 'git add' the
>>> aarch64-fbsd-nat.c file for the second patch, so this series adds
>>> the missing file.
>>
>> I skimmed this and it looks good to me.
>>
>> One tiny comment:
>>
>>  > +/* Provide a prototype to silence -Wmissing-prototypes.  */
>>  > +extern initialize_file_ftype _initialize_aarch64_fbsd_tdep;
>>
>> ...
>>
>>  > +/* Provide a prototype to silence -Wmissing-prototypes.  */
>>  > +void _initialize_aarch64_fbsd_nat (void);
>>
>> These prototypes no longer make sense in C++ [1], and we
>> could/should remove all the existing ones to avoid confusion.
> 
> I assumed it was more for the warning per the comment.

-Wmissing-prototypes doesn't exist in G++, only in 
GCC-the-C-compiler, so the comments about the warning
are all out of date now.

It doesn't exist in G++ because unlike in C, in C++ there's
no such thing as a declaration that is not a prototype.

Hmm, maybe we should consider adding -Wmissing-declarations, to
get back part of the old usefulness of -Wmissing-prototypes -- the
part about detecting when extern functions can be made static.

> I wonder if
> we shouldn't think about replacing init.c with something more C++y
> anyway?  We could perhaps do it incrementally by adding a global
> container of function pointers and a wrapper class whose constructor
> accepts a function pointer and adds it to the container.  Then we
> would do a for-each over the container at the same place as
> initialize_all_files().  If the ordering doesn't matter then this
> could be rolled out over time (i.e. adding the new container and
> wrapper class and then individual _init* functions could be converted
> to the new scheme).

Not sure.  OTOH, that seems like it'd add a little runtime/startup time
overhead for no real gain?  For most cases where the ordering truly doesn't
matter, we could make the wrapper classes's ctor call the function
directly, though I wonder whether that's a good direction to go if
we consider moving gdb in the direction of making it a dlopen-able library.

Thanks,
Pedro Alves

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH v2 0/2] Initial support for FreeBSD/aarch64
  2017-09-05 19:34     ` Pedro Alves
@ 2017-09-05 19:41       ` John Baldwin
  0 siblings, 0 replies; 7+ messages in thread
From: John Baldwin @ 2017-09-05 19:41 UTC (permalink / raw)
  To: Pedro Alves, gdb-patches

On 9/5/17 3:33 PM, Pedro Alves wrote:
> 
> On 09/05/2017 03:51 AM, John Baldwin wrote:
>> On 9/4/17 6:52 AM, Pedro Alves wrote:
>>> On 08/16/2017 02:57 PM, John Baldwin wrote:
>>>> This series adds initial support for FreeBSD/aarch64.  It does not
>>>> yet include support for hardware breakpoints/watchpoints as that is
>>>> not currently supported by FreeBSD's kernel.
>>>>
>>>> I realized yesterday that I had forgotton to 'git add' the
>>>> aarch64-fbsd-nat.c file for the second patch, so this series adds
>>>> the missing file.
>>>
>>> I skimmed this and it looks good to me.
>>>
>>> One tiny comment:
>>>
>>>  > +/* Provide a prototype to silence -Wmissing-prototypes.  */
>>>  > +extern initialize_file_ftype _initialize_aarch64_fbsd_tdep;
>>>
>>> ...
>>>
>>>  > +/* Provide a prototype to silence -Wmissing-prototypes.  */
>>>  > +void _initialize_aarch64_fbsd_nat (void);
>>>
>>> These prototypes no longer make sense in C++ [1], and we
>>> could/should remove all the existing ones to avoid confusion.
>>
>> I assumed it was more for the warning per the comment.
> 
> -Wmissing-prototypes doesn't exist in G++, only in 
> GCC-the-C-compiler, so the comments about the warning
> are all out of date now.
> 
> It doesn't exist in G++ because unlike in C, in C++ there's
> no such thing as a declaration that is not a prototype.

Ok.

>> I wonder if
>> we shouldn't think about replacing init.c with something more C++y
>> anyway?  We could perhaps do it incrementally by adding a global
>> container of function pointers and a wrapper class whose constructor
>> accepts a function pointer and adds it to the container.  Then we
>> would do a for-each over the container at the same place as
>> initialize_all_files().  If the ordering doesn't matter then this
>> could be rolled out over time (i.e. adding the new container and
>> wrapper class and then individual _init* functions could be converted
>> to the new scheme).
> 
> Not sure.  OTOH, that seems like it'd add a little runtime/startup time
> overhead for no real gain?  For most cases where the ordering truly doesn't
> matter, we could make the wrapper classes's ctor call the function
> directly, though I wonder whether that's a good direction to go if
> we consider moving gdb in the direction of making it a dlopen-able library.

That's fair, it was more about using the language in place of a build-time
"hack".  Regardless, I do think you would want to probably not call the
function directly from the constructor since 'initialize_all_files()' now is
called much later than when traditional .init/.ctors are called.  Perhaps if
some other objects that existing _initialize_foo() used were changed to be
singletons you could take that approach.  init.c is probably good enough to
not spend more effort trying to replace it.

-- 
John Baldwin

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2017-09-05 19:41 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-08-16 13:58 [PATCH v2 0/2] Initial support for FreeBSD/aarch64 John Baldwin
2017-08-16 13:58 ` [PATCH v2 2/2] Add native target " John Baldwin
2017-08-16 13:58 ` [PATCH v2 1/2] Add FreeBSD/aarch64 architecture John Baldwin
2017-09-04 13:52 ` [PATCH v2 0/2] Initial support for FreeBSD/aarch64 Pedro Alves
2017-09-05  2:51   ` John Baldwin
2017-09-05 19:34     ` Pedro Alves
2017-09-05 19:41       ` John Baldwin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).