1 /* Native-dependent code for NetBSD/sparc64.
3 Copyright (C) 2003-2024 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
24 #include "sparc64-tdep.h"
25 #include "sparc-nat.h"
27 /* NetBSD is different from the other OSes that support both SPARC and
28 UltraSPARC in that the result of ptrace(2) depends on whether the
29 traced process is 32-bit or 64-bit. */
32 sparc64nbsd_supply_gregset (const struct sparc_gregmap
*gregmap
,
33 struct regcache
*regcache
,
34 int regnum
, const void *gregs
)
36 int sparc32
= (gdbarch_ptr_bit (regcache
->arch ()) == 32);
39 sparc32_supply_gregset (&sparc32nbsd_gregmap
, regcache
, regnum
, gregs
);
41 sparc64_supply_gregset (&sparc64nbsd_gregmap
, regcache
, regnum
, gregs
);
45 sparc64nbsd_collect_gregset (const struct sparc_gregmap
*gregmap
,
46 const struct regcache
*regcache
,
47 int regnum
, void *gregs
)
49 int sparc32
= (gdbarch_ptr_bit (regcache
->arch ()) == 32);
52 sparc32_collect_gregset (&sparc32nbsd_gregmap
, regcache
, regnum
, gregs
);
54 sparc64_collect_gregset (&sparc64nbsd_gregmap
, regcache
, regnum
, gregs
);
58 sparc64nbsd_supply_fpregset (const struct sparc_fpregmap
*fpregmap
,
59 struct regcache
*regcache
,
60 int regnum
, const void *fpregs
)
62 int sparc32
= (gdbarch_ptr_bit (regcache
->arch ()) == 32);
65 sparc32_supply_fpregset (&sparc32_bsd_fpregmap
, regcache
, regnum
, fpregs
);
67 sparc64_supply_fpregset (&sparc64_bsd_fpregmap
, regcache
, regnum
, fpregs
);
71 sparc64nbsd_collect_fpregset (const struct sparc_fpregmap
*fpregmap
,
72 const struct regcache
*regcache
,
73 int regnum
, void *fpregs
)
75 int sparc32
= (gdbarch_ptr_bit (regcache
->arch ()) == 32);
78 sparc32_collect_fpregset (&sparc32_bsd_fpregmap
, regcache
, regnum
, fpregs
);
80 sparc64_collect_fpregset (&sparc64_bsd_fpregmap
, regcache
, regnum
, fpregs
);
83 /* Determine whether `gregset_t' contains register REGNUM. */
86 sparc64nbsd_gregset_supplies_p (struct gdbarch
*gdbarch
, int regnum
)
88 if (gdbarch_ptr_bit (gdbarch
) == 32)
89 return sparc32_gregset_supplies_p (gdbarch
, regnum
);
91 /* Integer registers. */
92 if ((regnum
>= SPARC_G1_REGNUM
&& regnum
<= SPARC_G7_REGNUM
)
93 || (regnum
>= SPARC_O0_REGNUM
&& regnum
<= SPARC_O7_REGNUM
)
94 || (regnum
>= SPARC_L0_REGNUM
&& regnum
<= SPARC_L7_REGNUM
)
95 || (regnum
>= SPARC_I0_REGNUM
&& regnum
<= SPARC_I7_REGNUM
))
98 /* Control registers. */
99 if (regnum
== SPARC64_PC_REGNUM
100 || regnum
== SPARC64_NPC_REGNUM
101 || regnum
== SPARC64_STATE_REGNUM
102 || regnum
== SPARC64_Y_REGNUM
)
108 /* Determine whether `fpregset_t' contains register REGNUM. */
111 sparc64nbsd_fpregset_supplies_p (struct gdbarch
*gdbarch
, int regnum
)
113 if (gdbarch_ptr_bit (gdbarch
) == 32)
114 return sparc32_fpregset_supplies_p (gdbarch
, regnum
);
116 /* Floating-point registers. */
117 if ((regnum
>= SPARC_F0_REGNUM
&& regnum
<= SPARC_F31_REGNUM
)
118 || (regnum
>= SPARC64_F32_REGNUM
&& regnum
<= SPARC64_F62_REGNUM
))
121 /* Control registers. */
122 if (regnum
== SPARC64_FSR_REGNUM
)
129 /* Support for debugging kernel virtual memory images. */
131 #include <sys/types.h>
132 #include <machine/pcb.h>
137 sparc64nbsd_supply_pcb (struct regcache
*regcache
, struct pcb
*pcb
)
142 /* The following is true for NetBSD 1.6.2:
144 The pcb contains %sp and %pc, %pstate and %cwp. From this
145 information we reconstruct the register state as it would look
146 when we just returned from cpu_switch(). */
148 /* The stack pointer shouldn't be zero. */
149 if (pcb
->pcb_sp
== 0)
152 /* If the program counter is zero, this is probably a core dump, and
153 we can get %pc from the stack. */
154 if (pcb
->pcb_pc
== 0)
155 read_memory(pcb
->pcb_sp
+ BIAS
- 176 + (11 * 8),
156 (gdb_byte
*)&pcb
->pcb_pc
, sizeof pcb
->pcb_pc
);
158 regcache
->raw_supply (SPARC_SP_REGNUM
, &pcb
->pcb_sp
);
159 regcache
->raw_supply (SPARC64_PC_REGNUM
, &pcb
->pcb_pc
);
161 state
= pcb
->pcb_pstate
<< 8 | pcb
->pcb_cwp
;
162 regcache
->raw_supply (SPARC64_STATE_REGNUM
, &state
);
164 sparc_supply_rwindow (regcache
, pcb
->pcb_sp
, -1);
169 /* We've got nothing to add to the generic SPARC target. */
170 static sparc_target
<inf_ptrace_target
> the_sparc64_nbsd_nat_target
;
172 void _initialize_sparc64nbsd_nat ();
174 _initialize_sparc64nbsd_nat ()
176 sparc_supply_gregset
= sparc64nbsd_supply_gregset
;
177 sparc_collect_gregset
= sparc64nbsd_collect_gregset
;
178 sparc_supply_fpregset
= sparc64nbsd_supply_fpregset
;
179 sparc_collect_fpregset
= sparc64nbsd_collect_fpregset
;
180 sparc_gregset_supplies_p
= sparc64nbsd_gregset_supplies_p
;
181 sparc_fpregset_supplies_p
= sparc64nbsd_fpregset_supplies_p
;
183 add_inf_child_target (&the_sparc64_nbsd_nat_target
);
185 /* Support debugging kernel virtual memory images. */
186 bsd_kvm_add_target (sparc64nbsd_supply_pcb
);