From: Mark Kettenis <kettenis@wins.uva.nl>
To: gdb-patches@sourceware.cygnus.com
Subject: [PATCH] FreeBSD/Alpha support
Date: Wed, 31 May 2000 13:32:00 -0000 [thread overview]
Message-ID: <200005312032.e4VKWRG16903@delius.kettenis.local> (raw)
I checked in support for FreeBSD/Alpha. This is tested on FreeBSD
5.0-CURRENT, but it should work on FreeBSD 4.x just as well.
I'll put some blurp in the NEWS file (which reminds me that I still
have to do this for FreeBSD/i386 too).
Mark
2000-05-31 Mark Kettenis <kettenis@gnu.org>
Add support for FreeBSD/Alpha.
* alphabsd-nat.c, config/alpha/fbsd.mh, config/alpha/fbsd.mt,
config/alpha/nm-fbsd.h, config/alpha/tm-fbsd.h,
config/alpha/xm-fbsd.h: New files.
--- /dev/null Thu Feb 19 16:30:24 1998
+++ alphabsd-nat.c Wed May 31 14:55:43 2000
@@ -0,0 +1,187 @@
+/* Native-dependent code for Alpha BSD's.
+ Copyright (C) 2000 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 2 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, write to the Free Software
+ Foundation, Inc., 59 Temple Place - Suite 330,
+ Boston, MA 02111-1307, USA. */
+
+#include "defs.h"
+#include "inferior.h"
+
+#include <sys/types.h>
+#include <sys/ptrace.h>
+#include <machine/reg.h>
+
+#ifdef HAVE_SYS_PROCFS_H
+#include <sys/procfs.h>
+#endif
+
+#ifndef HAVE_GREGSET_T
+typedef struct reg gregset_t;
+#endif
+
+#ifndef HAVE_FPREGSET_T
+typedef struct fpreg fpregset_t;
+#endif
+
+#include "gregset.h"
+
+/* Number of general-purpose registers. */
+#define NUM_GREGS 32
+
+/* Number of floating point registers. */
+#define NUM_FPREGS 31
+\f
+
+/* Transfering the registers between GDB, inferiors and core files. */
+
+/* Fill GDB's register array with the genereal-purpose register values
+ in *GREGSETP. */
+
+void
+supply_gregset (gregset_t *gregsetp)
+{
+ int i;
+
+ for (i = 0; i < NUM_GREGS; i++)
+ {
+ if (CANNOT_FETCH_REGISTER (i))
+ supply_register (i, NULL);
+ else
+ supply_register (i, (char *) &gregsetp->r_regs[i]);
+ }
+
+ /* The PC travels in the R_ZERO slot. */
+ supply_register (PC_REGNUM, (char *) &gregsetp->r_regs[R_ZERO]);
+}
+
+/* Fill register REGNO (if it is a general-purpose register) in
+ *GREGSETPS with the value in GDB's register array. If REGNO is -1,
+ do this for all registers. */
+
+void
+fill_gregset (gregset_t *gregsetp, int regno)
+{
+ int i;
+
+ for (i = 0; i < NUM_GREGS; i++)
+ if ((regno == -1 || regno == i) && ! CANNOT_STORE_REGISTER (i))
+ memcpy (&gregsetp->r_regs[i], ®isters[REGISTER_BYTE (i)],
+ REGISTER_RAW_SIZE (i));
+
+ /* The PC travels in the R_ZERO slot. */
+ if (regno == -1 || regno == PC_REGNUM)
+ memcpy (&gregsetp->r_regs[R_ZERO], ®isters[REGISTER_BYTE (PC_REGNUM)],
+ REGISTER_RAW_SIZE (PC_REGNUM));
+}
+
+/* Fill GDB's register array with the floating-point register values
+ in *FPREGSETP. */
+
+void
+supply_fpregset (fpregset_t *fpregsetp)
+{
+ int i;
+
+ for (i = FP0_REGNUM; i < FP0_REGNUM + NUM_FPREGS; i++)
+ {
+ if (CANNOT_FETCH_REGISTER (i))
+ supply_register (i, NULL);
+ else
+ supply_register (i, (char *) &fpregsetp->fpr_regs[i]);
+ }
+
+ supply_register (FPCR_REGNUM, (char *) &fpregsetp->fpr_cr);
+}
+
+/* Fill register REGNO (if it is a floating-point register) in
+ *FPREGSETP with the value in GDB's register array. If REGNO is -1,
+ do this for all registers. */
+
+void
+fill_fpregset (fpregset_t *fpregsetp, int regno)
+{
+ int i;
+
+ for (i = FP0_REGNUM; i < FP0_REGNUM + NUM_FPREGS; i++)
+ if ((regno == -1 || regno == i) && ! CANNOT_STORE_REGISTER (i))
+ memcpy (&fpregsetp->fpr_regs[i - FP0_REGNUM],
+ ®isters[REGISTER_BYTE (i)], REGISTER_RAW_SIZE (i));
+
+ if (regno == -1 || regno == FPCR_REGNUM)
+ memcpy (&fpregsetp->fpr_cr, ®isters[REGISTER_BYTE (FPCR_REGNUM)],
+ REGISTER_RAW_SIZE (FPCR_REGNUM));
+}
+
+/* Fetch register REGNO from the inferior. If REGNO is -1, do this
+ for all registers (including the floating point registers). */
+
+void
+fetch_inferior_registers (int regno)
+{
+ gregset_t gregs;
+
+ if (ptrace (PT_GETREGS, inferior_pid, (PTRACE_ARG3_TYPE) &gregs, 0) == -1)
+ perror_with_name ("Couldn't get registers");
+
+ supply_gregset (&gregs);
+
+ if (regno == -1 || regno >= FP0_REGNUM)
+ {
+ fpregset_t fpregs;
+
+ if (ptrace (PT_GETFPREGS, inferior_pid,
+ (PTRACE_ARG3_TYPE) &fpregs, 0) == -1)
+ perror_with_name ("Couldn't get floating point status");
+
+ supply_fpregset (&fpregs);
+ }
+
+ /* Reset virtual frame pointer. */
+ supply_register (FP_REGNUM, NULL);
+}
+
+/* Store register REGNO back into the inferior. If REGNO is -1, do
+ this for all registers (including the floating point registers). */
+
+void
+store_inferior_registers (int regno)
+{
+ gregset_t gregs;
+
+ if (ptrace (PT_GETREGS, inferior_pid, (PTRACE_ARG3_TYPE) &gregs, 0) == -1)
+ perror_with_name ("Couldn't get registers");
+
+ fill_gregset (&gregs, regno);
+
+ if (ptrace (PT_SETREGS, inferior_pid, (PTRACE_ARG3_TYPE) &gregs, 0) == -1)
+ perror_with_name ("Couldn't write registers");
+
+ if (regno == -1 || regno >= FP0_REGNUM)
+ {
+ fpregset_t fpregs;
+
+ if (ptrace (PT_GETFPREGS, inferior_pid,
+ (PTRACE_ARG3_TYPE) &fpregs, 0) == -1)
+ perror_with_name ("Couldn't get floating point status");
+
+ fill_fpregset (&fpregs, regno);
+
+ if (ptrace (PT_SETFPREGS, inferior_pid,
+ (PTRACE_ARG3_TYPE) &fpregs, 0) == -1)
+ perror_with_name ("Couldn't write floating point status");
+ }
+}
--- /dev/null Thu Feb 19 16:30:24 1998
+++ config/alpha/fbsd.mh Fri May 26 21:46:06 2000
@@ -0,0 +1,6 @@
+# Host: FreeBSD/Alpha
+XDEPFILES= ser-tcp.o
+NATDEPFILES= fork-child.o infptrace.o inftarg.o solib.o \
+ corelow.o core-regset.o alphabsd-nat.o
+XM_FILE= xm-fbsd.h
+NAT_FILE= nm-fbsd.h
--- /dev/null Thu Feb 19 16:30:24 1998
+++ config/alpha/fbsd.mt Fri May 26 21:44:51 2000
@@ -0,0 +1,3 @@
+# Target: FreeBSD/Alpha
+TDEPFILES= alpha-tdep.o
+TM_FILE= tm-fbsd.h
--- /dev/null Thu Feb 19 16:30:24 1998
+++ config/alpha/tm-fbsd.h Sun May 28 01:56:11 2000
@@ -0,0 +1,32 @@
+/* Target-dependent definitions for FreeBSD/Alpha.
+ Copyright (C) 2000 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 2 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, write to the Free Software
+ Foundation, Inc., 59 Temple Place - Suite 330,
+ Boston, MA 02111-1307, USA. */
+
+#ifndef TM_FBSD_H
+#define TM_FBSD_H
+
+#include "alpha/tm-alpha.h"
+
+/* Number of traps that happen between exec'ing the shell to run an
+ inferior, and when we finally get to the inferior code. The
+ default is right for FreeBSD. */
+
+#undef START_INFERIOR_TRAPS_EXPECTED
+
+#endif /* TM_FBSD_H */
--- /dev/null Thu Feb 19 16:30:24 1998
+++ config/alpha/nm-fbsd.h Fri May 26 21:48:51 2000
@@ -0,0 +1,41 @@
+/* Native-dependent definitions for FreeBSD/Alpha.
+ Copyright (C) 1986, 87, 89, 92, 96, 2000 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 2 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, write to the Free Software
+ Foundation, Inc., 59 Temple Place - Suite 330,
+ Boston, MA 02111-1307, USA. */
+
+#ifndef NM_FBSD_H
+#define NM_FBSD_H
+
+/* Type of the third argument to the `ptrace' system call. */
+#define PTRACE_ARG3_TYPE caddr_t
+
+/* Override copies of {fetch,store}_inferior_registers in `infptrace.c'. */
+#define FETCH_INFERIOR_REGISTERS
+
+/* We can attach and detach. */
+#define ATTACH_DETACH
+\f
+
+/* Shared library support. */
+
+#define SVR4_SHARED_LIBS
+
+#include "solib.h" /* Support for shared libraries. */
+#include "elf/common.h" /* Additional ELF shared library info. */
+
+#endif /* NM_FBSD_H */
--- /dev/null Thu Feb 19 16:30:24 1998
+++ config/alpha/xm-fbsd.h Fri May 26 21:49:24 2000
@@ -0,0 +1,26 @@
+/* Host-dependent definitions for FreeBSD/i386.
+ Copyright (C) 2000 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 2 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, write to the Free Software
+ Foundation, Inc., 59 Temple Place - Suite 330,
+ Boston, MA 02111-1307, USA. */
+
+#ifndef XM_FBSD_H
+#define XM_FBSD_H
+
+#define HOST_BYTE_ORDER LITTLE_ENDIAN
+
+#endif /* XM_FBSD_H */
From kettenis@wins.uva.nl Wed May 31 13:56:00 2000
From: Mark Kettenis <kettenis@wins.uva.nl>
To: gdb-patches@sourceware.cygnus.com
Subject: [PATCH] More FreeBSD/Alpha support
Date: Wed, 31 May 2000 13:56:00 -0000
Message-id: <200005312056.e4VKu5t16961@delius.kettenis.local>
X-SW-Source: 2000-05/msg00497.html
Content-length: 1266
Oops, I forgot to check in the configure bits. Here they are.
Mark
2000-05-31 Mark Kettenis <kettenis@gnu.org>
Add support for FreeBSD/Alpha.
* configure.host, configure.tgt (alpha*-*-freebsd*): New entry.
Index: configure.host
===================================================================
RCS file: /cvs/src/src/gdb/configure.host,v
retrieving revision 1.6
diff -u -p -r1.6 configure.host
--- configure.host 2000/05/18 23:43:57 1.6
+++ configure.host 2000/05/31 20:51:58
@@ -34,6 +34,7 @@ alpha*-*-osf1*) gdb_host=alpha-osf1 ;;
alpha*-*-osf2*) gdb_host=alpha-osf2 ;;
alpha*-*-osf[3456789]*) gdb_host=alpha-osf3 ;;
alpha*-*-linux*) gdb_host=alpha-linux ;;
+alpha*-*-freebsd*) gdb_host=fbsd ;;
arm*-*-linux*) gdb_host=linux ;;
arm*-*-*) gdb_host=arm ;;
Index: configure.tgt
===================================================================
RCS file: /cvs/src/src/gdb/configure.tgt,v
retrieving revision 1.9
diff -u -p -r1.9 configure.tgt
--- configure.tgt 2000/05/24 04:16:27 1.9
+++ configure.tgt 2000/05/31 20:51:58
@@ -46,6 +46,7 @@ a29k-*-vxworks*) gdb_target=vx29k
alpha*-*-osf*) gdb_target=alpha-osf1 ;;
alpha*-*-linux*) gdb_target=alpha-linux ;;
+alpha*-*-freebsd*) gdb_target=fbsd ;;
arc-*-*) gdb_target=arc ;;
From toon@moene.indiv.nluug.nl Wed May 31 14:20:00 2000
From: Toon Moene <toon@moene.indiv.nluug.nl>
To: Andrew Cagney <ac131313@cygnus.com>
Cc: law@cygnus.com, DJ Delorie <dj@delorie.com>, nickc@cygnus.com, gcc-patches@gcc.gnu.org, gdb-patches@sourceware.cygnus.com, binutils@sourceware.cygnus.com
Subject: Re: [rfa] Add a name field to ``struct floatformat''
Date: Wed, 31 May 2000 14:20:00 -0000
Message-id: <3935653A.4A11F446@moene.indiv.nluug.nl>
References: <9703.959716280@upchuck> <39344496.F0840F7B@cygnus.com>
X-SW-Source: 2000-05/msg00498.html
Content-length: 744
Andrew Cagney wrote:
> Jeffrey A Law wrote:
[ Using ranges of years in the copyright line of GNU software ]
> > More correctly, there's questions about its legality. Thus using ranges
> > is considered inappropriate for FSF code. I had to go through all of the
> > gcc sources and fix them. Ugh.
>
> An guess who gets to fix all the GDB code (when I'd just ``fixed it'').
You should look at the bright side of things - how many times more your
name pops up in the ChangeLogs :-)
--
Toon Moene - mailto:toon@moene.indiv.nluug.nl - phoneto: +31 346 214290
Saturnushof 14, 3738 XG Maartensdijk, The Netherlands
GNU Fortran 77: http://gcc.gnu.org/onlinedocs/g77_news.html
GNU Fortran 95: http://g95.sourceforge.net/ (under construction)
From kevinb@cygnus.com Wed May 31 14:30:00 2000
From: Kevin Buettner <kevinb@cygnus.com>
To: gdb-patches@sourceware.cygnus.com
Subject: [PATCH] Revert PARAMS removal for gnu-regex.c
Date: Wed, 31 May 2000 14:30:00 -0000
Message-id: <1000531213001.ZM11616@ocotillo.lan>
X-SW-Source: 2000-05/msg00499.html
Content-length: 1090
I've just committed the patch below.
* gnu-regex.c (re_match_2_internal): Revert 2000-05-27
patch which removed use of PARAMS from declaration. This
file should not have been touched as it is supposed to track
the version in glibc.
Index: gnu-regex.c
===================================================================
RCS file: /cvs/src/src/gdb/gnu-regex.c,v
retrieving revision 1.3
diff -u -r1.3 gnu-regex.c
--- gnu-regex.c 2000/05/28 01:12:27 1.3
+++ gnu-regex.c 2000/05/31 21:21:14
@@ -356,10 +356,12 @@
#define false 0
#define true 1
-static int re_match_2_internal (struct re_pattern_buffer *bufp,
- const char *string1, int size1,
- const char *string2, int size2,
- int pos, struct re_registers *regs, int stop);
+static int re_match_2_internal PARAMS ((struct re_pattern_buffer *bufp,
+ const char *string1, int size1,
+ const char *string2, int size2,
+ int pos,
+ struct re_registers *regs,
+ int stop));
\f
/* These are the command codes that appear in compiled regular
expressions. Some opcodes are followed by argument bytes. A
reply other threads:[~2000-05-31 13:32 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=200005312032.e4VKWRG16903@delius.kettenis.local \
--to=kettenis@wins.uva.nl \
--cc=gdb-patches@sourceware.cygnus.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox