[gdb/testsuite] Fix gdb.cp/namespace.exp with read1
[binutils-gdb.git] / gdb / alpha-linux-nat.c
blob618b0c8140b767b90988bc429574067860c97ef7
1 /* Low level Alpha GNU/Linux interface, for GDB when running native.
2 Copyright (C) 2005-2024 Free Software Foundation, Inc.
4 This file is part of GDB.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19 #include "defs.h"
20 #include "target.h"
21 #include "regcache.h"
22 #include "linux-nat-trad.h"
24 #include "alpha-tdep.h"
25 #include "gdbarch.h"
27 #include "nat/gdb_ptrace.h"
28 #include <alpha/ptrace.h>
30 #include <sys/procfs.h>
31 #include "gregset.h"
33 /* The address of UNIQUE for ptrace. */
34 #define ALPHA_UNIQUE_PTRACE_ADDR 65
36 class alpha_linux_nat_target final : public linux_nat_trad_target
38 protected:
39 /* Override linux_nat_trad_target methods. */
40 CORE_ADDR register_u_offset (struct gdbarch *gdbarch,
41 int regno, int store_p) override;
44 static alpha_linux_nat_target the_alpha_linux_nat_target;
46 /* See the comment in m68k-tdep.c regarding the utility of these
47 functions. */
49 void
50 supply_gregset (struct regcache *regcache, const gdb_gregset_t *gregsetp)
52 const long *regp = (const long *)gregsetp;
54 /* PC is in slot 32, UNIQUE is in slot 33. */
55 alpha_supply_int_regs (regcache, -1, regp, regp + 31, regp + 32);
58 void
59 fill_gregset (const struct regcache *regcache,
60 gdb_gregset_t *gregsetp, int regno)
62 long *regp = (long *)gregsetp;
64 /* PC is in slot 32, UNIQUE is in slot 33. */
65 alpha_fill_int_regs (regcache, regno, regp, regp + 31, regp + 32);
68 /* Now we do the same thing for floating-point registers.
69 Again, see the comments in m68k-tdep.c. */
71 void
72 supply_fpregset (struct regcache *regcache, const gdb_fpregset_t *fpregsetp)
74 const long *regp = (const long *)fpregsetp;
76 /* FPCR is in slot 32. */
77 alpha_supply_fp_regs (regcache, -1, regp, regp + 31);
80 void
81 fill_fpregset (const struct regcache *regcache,
82 gdb_fpregset_t *fpregsetp, int regno)
84 long *regp = (long *)fpregsetp;
86 /* FPCR is in slot 32. */
87 alpha_fill_fp_regs (regcache, regno, regp, regp + 31);
90 CORE_ADDR
91 alpha_linux_nat_target::register_u_offset (struct gdbarch *gdbarch,
92 int regno, int store_p)
94 if (regno == gdbarch_pc_regnum (gdbarch))
95 return PC;
96 if (regno == ALPHA_UNIQUE_REGNUM)
97 return ALPHA_UNIQUE_PTRACE_ADDR;
98 if (regno < gdbarch_fp0_regnum (gdbarch))
99 return GPR_BASE + regno;
100 else
101 return FPR_BASE + regno - gdbarch_fp0_regnum (gdbarch);
104 void _initialize_alpha_linux_nat ();
105 void
106 _initialize_alpha_linux_nat ()
108 linux_target = &the_alpha_linux_nat_target;
109 add_inf_child_target (&the_alpha_linux_nat_target);