Change Ada catchpoints to be bp_catchpoint
[deliverable/binutils-gdb.git] / gdb / frv-linux-tdep.c
CommitLineData
5ecb7103
KB
1/* Target-dependent code for GNU/Linux running on the Fujitsu FR-V,
2 for GDB.
155bd5d1 3
42a4f53d 4 Copyright (C) 2004-2019 Free Software Foundation, Inc.
5ecb7103
KB
5
6 This file is part of GDB.
7
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
a9762ec7 10 the Free Software Foundation; either version 3 of the License, or
5ecb7103
KB
11 (at your option) any later version.
12
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.
17
18 You should have received a copy of the GNU General Public License
a9762ec7 19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
5ecb7103
KB
20
21#include "defs.h"
d55e5aa6 22#include "gdbcore.h"
4de283e4
TT
23#include "target.h"
24#include "frame.h"
d55e5aa6
TT
25#include "osabi.h"
26#include "regcache.h"
4de283e4
TT
27#include "elf-bfd.h"
28#include "elf/frv.h"
29#include "frv-tdep.h"
d55e5aa6 30#include "trad-frame.h"
4de283e4
TT
31#include "frame-unwind.h"
32#include "regset.h"
33#include "linux-tdep.h"
5ecb7103
KB
34
35/* Define the size (in bytes) of an FR-V instruction. */
36static const int frv_instr_size = 4;
37
38enum {
39 NORMAL_SIGTRAMP = 1,
40 RT_SIGTRAMP = 2
41};
42
43static int
2c02bd72
DE
44frv_linux_pc_in_sigtramp (struct gdbarch *gdbarch, CORE_ADDR pc,
45 const char *name)
5ecb7103 46{
e17a4113 47 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
e362b510 48 gdb_byte buf[frv_instr_size];
5ecb7103
KB
49 LONGEST instr;
50 int retval = 0;
51
52 if (target_read_memory (pc, buf, sizeof buf) != 0)
53 return 0;
54
e17a4113 55 instr = extract_unsigned_integer (buf, sizeof buf, byte_order);
5ecb7103
KB
56
57 if (instr == 0x8efc0077) /* setlos #__NR_sigreturn, gr7 */
58 retval = NORMAL_SIGTRAMP;
137a83b9 59 else if (instr == 0x8efc00ad) /* setlos #__NR_rt_sigreturn, gr7 */
5ecb7103
KB
60 retval = RT_SIGTRAMP;
61 else
62 return 0;
63
64 if (target_read_memory (pc + frv_instr_size, buf, sizeof buf) != 0)
65 return 0;
e17a4113 66 instr = extract_unsigned_integer (buf, sizeof buf, byte_order);
5ecb7103
KB
67 if (instr != 0xc0700000) /* tira gr0, 0 */
68 return 0;
69
70 /* If we get this far, we'll return a non-zero value, either
71 NORMAL_SIGTRAMP (1) or RT_SIGTRAMP (2). */
72 return retval;
73}
74
f79d2c3c 75/* Given NEXT_FRAME, the "callee" frame of the sigtramp frame that we
5ecb7103
KB
76 wish to decode, and REGNO, one of the frv register numbers defined
77 in frv-tdep.h, return the address of the saved register (corresponding
78 to REGNO) in the sigtramp frame. Return -1 if the register is not
79 found in the sigtramp frame. The magic numbers in the code below
80 were computed by examining the following kernel structs:
81
f79d2c3c 82 From arch/frv/kernel/signal.c:
5ecb7103
KB
83
84 struct sigframe
85 {
86 void (*pretcode)(void);
87 int sig;
88 struct sigcontext sc;
89 unsigned long extramask[_NSIG_WORDS-1];
90 uint32_t retcode[2];
91 };
92
93 struct rt_sigframe
94 {
95 void (*pretcode)(void);
96 int sig;
97 struct siginfo *pinfo;
98 void *puc;
99 struct siginfo info;
100 struct ucontext uc;
101 uint32_t retcode[2];
102 };
103
f79d2c3c 104 From include/asm-frv/ucontext.h:
5ecb7103
KB
105
106 struct ucontext {
107 unsigned long uc_flags;
108 struct ucontext *uc_link;
109 stack_t uc_stack;
110 struct sigcontext uc_mcontext;
111 sigset_t uc_sigmask;
112 };
113
f79d2c3c
KB
114 From include/asm-frv/signal.h:
115
116 typedef struct sigaltstack {
117 void *ss_sp;
118 int ss_flags;
119 size_t ss_size;
120 } stack_t;
121
122 From include/asm-frv/sigcontext.h:
5ecb7103
KB
123
124 struct sigcontext {
125 struct user_context sc_context;
126 unsigned long sc_oldmask;
127 } __attribute__((aligned(8)));
128
f79d2c3c 129 From include/asm-frv/registers.h:
5ecb7103
KB
130 struct user_int_regs
131 {
132 unsigned long psr;
133 unsigned long isr;
134 unsigned long ccr;
135 unsigned long cccr;
136 unsigned long lr;
137 unsigned long lcr;
138 unsigned long pc;
139 unsigned long __status;
140 unsigned long syscallno;
141 unsigned long orig_gr8;
142 unsigned long gner[2];
143 unsigned long long iacc[1];
144
145 union {
146 unsigned long tbr;
147 unsigned long gr[64];
148 };
149 };
150
151 struct user_fpmedia_regs
152 {
153 unsigned long fr[64];
154 unsigned long fner[2];
155 unsigned long msr[2];
156 unsigned long acc[8];
157 unsigned char accg[8];
158 unsigned long fsr[1];
159 };
160
161 struct user_context
162 {
163 struct user_int_regs i;
164 struct user_fpmedia_regs f;
165
166 void *extension;
167 } __attribute__((aligned(8))); */
168
9df0bb3f 169static LONGEST
94afd7a6 170frv_linux_sigcontext_reg_addr (struct frame_info *this_frame, int regno,
5ecb7103
KB
171 CORE_ADDR *sc_addr_cache_ptr)
172{
e17a4113
UW
173 struct gdbarch *gdbarch = get_frame_arch (this_frame);
174 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
5ecb7103
KB
175 CORE_ADDR sc_addr;
176
177 if (sc_addr_cache_ptr && *sc_addr_cache_ptr)
178 {
179 sc_addr = *sc_addr_cache_ptr;
180 }
181 else
182 {
183 CORE_ADDR pc, sp;
e362b510 184 gdb_byte buf[4];
5ecb7103
KB
185 int tramp_type;
186
94afd7a6 187 pc = get_frame_pc (this_frame);
e17a4113 188 tramp_type = frv_linux_pc_in_sigtramp (gdbarch, pc, 0);
5ecb7103 189
94afd7a6 190 get_frame_register (this_frame, sp_regnum, buf);
e17a4113 191 sp = extract_unsigned_integer (buf, sizeof buf, byte_order);
5ecb7103
KB
192
193 if (tramp_type == NORMAL_SIGTRAMP)
194 {
195 /* For a normal sigtramp frame, the sigcontext struct starts
196 at SP + 8. */
197 sc_addr = sp + 8;
198 }
199 else if (tramp_type == RT_SIGTRAMP)
200 {
201 /* For a realtime sigtramp frame, SP + 12 contains a pointer
4f0d78e0 202 to a ucontext struct. The ucontext struct contains a
f79d2c3c
KB
203 sigcontext struct starting 24 bytes in. (The offset of
204 uc_mcontext within struct ucontext is derived as follows:
205 stack_t is a 12-byte struct and struct sigcontext is
206 8-byte aligned. This gives an offset of 8 + 12 + 4 (for
0963b4bd 207 padding) = 24.) */
5ecb7103
KB
208 if (target_read_memory (sp + 12, buf, sizeof buf) != 0)
209 {
8a3fe4f8 210 warning (_("Can't read realtime sigtramp frame."));
5ecb7103
KB
211 return 0;
212 }
e17a4113 213 sc_addr = extract_unsigned_integer (buf, sizeof buf, byte_order);
f79d2c3c 214 sc_addr += 24;
5ecb7103
KB
215 }
216 else
e2e0b3e5 217 internal_error (__FILE__, __LINE__, _("not a signal trampoline"));
5ecb7103
KB
218
219 if (sc_addr_cache_ptr)
220 *sc_addr_cache_ptr = sc_addr;
221 }
222
223 switch (regno)
224 {
225 case psr_regnum :
226 return sc_addr + 0;
227 /* sc_addr + 4 has "isr", the Integer Status Register. */
228 case ccr_regnum :
229 return sc_addr + 8;
230 case cccr_regnum :
231 return sc_addr + 12;
232 case lr_regnum :
233 return sc_addr + 16;
234 case lcr_regnum :
235 return sc_addr + 20;
236 case pc_regnum :
237 return sc_addr + 24;
238 /* sc_addr + 28 is __status, the exception status.
239 sc_addr + 32 is syscallno, the syscall number or -1.
240 sc_addr + 36 is orig_gr8, the original syscall arg #1.
241 sc_addr + 40 is gner[0].
0963b4bd 242 sc_addr + 44 is gner[1]. */
5ecb7103
KB
243 case iacc0h_regnum :
244 return sc_addr + 48;
245 case iacc0l_regnum :
246 return sc_addr + 52;
247 default :
248 if (first_gpr_regnum <= regno && regno <= last_gpr_regnum)
249 return sc_addr + 56 + 4 * (regno - first_gpr_regnum);
250 else if (first_fpr_regnum <= regno && regno <= last_fpr_regnum)
251 return sc_addr + 312 + 4 * (regno - first_fpr_regnum);
252 else
0963b4bd 253 return -1; /* not saved. */
5ecb7103
KB
254 }
255}
256
9df0bb3f
AC
257/* Signal trampolines. */
258
259static struct trad_frame_cache *
0963b4bd
MS
260frv_linux_sigtramp_frame_cache (struct frame_info *this_frame,
261 void **this_cache)
9df0bb3f 262{
e17a4113 263 struct gdbarch *gdbarch = get_frame_arch (this_frame);
e17a4113 264 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
9df0bb3f 265 struct trad_frame_cache *cache;
9df0bb3f 266 CORE_ADDR addr;
e362b510 267 gdb_byte buf[4];
9df0bb3f
AC
268 int regnum;
269 CORE_ADDR sc_addr_cache_val = 0;
270 struct frame_id this_id;
271
272 if (*this_cache)
9a3c8263 273 return (struct trad_frame_cache *) *this_cache;
9df0bb3f 274
94afd7a6 275 cache = trad_frame_cache_zalloc (this_frame);
9df0bb3f
AC
276
277 /* FIXME: cagney/2004-05-01: This is is long standing broken code.
278 The frame ID's code address should be the start-address of the
279 signal trampoline and not the current PC within that
280 trampoline. */
94afd7a6 281 get_frame_register (this_frame, sp_regnum, buf);
e17a4113
UW
282 addr = extract_unsigned_integer (buf, sizeof buf, byte_order);
283 this_id = frame_id_build (addr, get_frame_pc (this_frame));
9df0bb3f
AC
284 trad_frame_set_id (cache, this_id);
285
286 for (regnum = 0; regnum < frv_num_regs; regnum++)
287 {
94afd7a6 288 LONGEST reg_addr = frv_linux_sigcontext_reg_addr (this_frame, regnum,
9df0bb3f
AC
289 &sc_addr_cache_val);
290 if (reg_addr != -1)
291 trad_frame_set_reg_addr (cache, regnum, reg_addr);
292 }
293
294 *this_cache = cache;
295 return cache;
296}
297
298static void
0963b4bd
MS
299frv_linux_sigtramp_frame_this_id (struct frame_info *this_frame,
300 void **this_cache,
301 struct frame_id *this_id)
9df0bb3f 302{
0963b4bd
MS
303 struct trad_frame_cache *cache
304 = frv_linux_sigtramp_frame_cache (this_frame, this_cache);
9df0bb3f
AC
305 trad_frame_get_id (cache, this_id);
306}
307
94afd7a6
UW
308static struct value *
309frv_linux_sigtramp_frame_prev_register (struct frame_info *this_frame,
310 void **this_cache, int regnum)
9df0bb3f
AC
311{
312 /* Make sure we've initialized the cache. */
0963b4bd
MS
313 struct trad_frame_cache *cache
314 = frv_linux_sigtramp_frame_cache (this_frame, this_cache);
94afd7a6 315 return trad_frame_get_register (cache, this_frame, regnum);
9df0bb3f
AC
316}
317
94afd7a6
UW
318static int
319frv_linux_sigtramp_frame_sniffer (const struct frame_unwind *self,
320 struct frame_info *this_frame,
321 void **this_cache)
9df0bb3f 322{
e17a4113 323 struct gdbarch *gdbarch = get_frame_arch (this_frame);
94afd7a6 324 CORE_ADDR pc = get_frame_pc (this_frame);
2c02bd72 325 const char *name;
9df0bb3f
AC
326
327 find_pc_partial_function (pc, &name, NULL, NULL);
e17a4113 328 if (frv_linux_pc_in_sigtramp (gdbarch, pc, name))
94afd7a6 329 return 1;
9df0bb3f 330
94afd7a6 331 return 0;
9df0bb3f
AC
332}
333
94afd7a6
UW
334static const struct frame_unwind frv_linux_sigtramp_frame_unwind =
335{
336 SIGTRAMP_FRAME,
8fbca658 337 default_frame_unwind_stop_reason,
94afd7a6
UW
338 frv_linux_sigtramp_frame_this_id,
339 frv_linux_sigtramp_frame_prev_register,
340 NULL,
341 frv_linux_sigtramp_frame_sniffer
342};
7c699b81
KB
343\f
344/* The FRV kernel defines ELF_NGREG as 46. We add 2 in order to include
345 the loadmap addresses in the register set. (See below for more info.) */
346#define FRV_ELF_NGREG (46 + 2)
347typedef unsigned char frv_elf_greg_t[4];
348typedef struct { frv_elf_greg_t reg[FRV_ELF_NGREG]; } frv_elf_gregset_t;
349
350typedef unsigned char frv_elf_fpreg_t[4];
351typedef struct
352{
353 frv_elf_fpreg_t fr[64];
354 frv_elf_fpreg_t fner[2];
355 frv_elf_fpreg_t msr[2];
356 frv_elf_fpreg_t acc[8];
357 unsigned char accg[8];
358 frv_elf_fpreg_t fsr[1];
359} frv_elf_fpregset_t;
360
901e1b23
AA
361/* Register maps. */
362
363static const struct regcache_map_entry frv_linux_gregmap[] =
364 {
365 { 1, psr_regnum, 4 },
366 { 1, REGCACHE_MAP_SKIP, 4 }, /* isr */
367 { 1, ccr_regnum, 4 },
368 { 1, cccr_regnum, 4 },
369 { 1, lr_regnum, 4 },
370 { 1, lcr_regnum, 4 },
371 { 1, pc_regnum, 4 },
372 { 1, REGCACHE_MAP_SKIP, 4 }, /* __status */
373 { 1, REGCACHE_MAP_SKIP, 4 }, /* syscallno */
374 { 1, REGCACHE_MAP_SKIP, 4 }, /* orig_gr8 */
375 { 1, gner0_regnum, 4 },
376 { 1, gner1_regnum, 4 },
377 { 1, REGCACHE_MAP_SKIP, 8 }, /* iacc0 */
378 { 1, tbr_regnum, 4 },
379 { 31, first_gpr_regnum + 1, 4 }, /* gr1 ... gr31 */
380
381 /* Technically, the loadmap addresses are not part of `pr_reg' as
382 found in the elf_prstatus struct. The fields which communicate
383 the loadmap address appear (by design) immediately after
384 `pr_reg' though, and the BFD function elf32_frv_grok_prstatus()
385 has been implemented to include these fields in the register
386 section that it extracts from the core file. So, for our
387 purposes, they may be viewed as registers. */
388
389 { 1, fdpic_loadmap_exec_regnum, 4 },
390 { 1, fdpic_loadmap_interp_regnum, 4 },
391 { 0 }
392 };
393
394static const struct regcache_map_entry frv_linux_fpregmap[] =
395 {
396 { 64, first_fpr_regnum, 4 }, /* fr0 ... fr63 */
397 { 1, fner0_regnum, 4 },
398 { 1, fner1_regnum, 4 },
399 { 1, msr0_regnum, 4 },
400 { 1, msr1_regnum, 4 },
401 { 8, acc0_regnum, 4 }, /* acc0 ... acc7 */
402 { 1, accg0123_regnum, 4 },
403 { 1, accg4567_regnum, 4 },
404 { 1, fsr0_regnum, 4 },
405 { 0 }
406 };
7c699b81
KB
407
408/* Unpack an frv_elf_gregset_t into GDB's register cache. */
409
410static void
411frv_linux_supply_gregset (const struct regset *regset,
412 struct regcache *regcache,
413 int regnum, const void *gregs, size_t len)
414{
415 int regi;
7c699b81
KB
416
417 /* gr0 always contains 0. Also, the kernel passes the TBR value in
418 this slot. */
f81fdd35 419 regcache->raw_supply_zeroed (first_gpr_regnum);
7c699b81 420
901e1b23
AA
421 /* Fill gr32, ..., gr63 with zeros. */
422 for (regi = first_gpr_regnum + 32; regi <= last_gpr_regnum; regi++)
f81fdd35 423 regcache->raw_supply_zeroed (regi);
7c699b81 424
901e1b23 425 regcache_supply_regset (regset, regcache, regnum, gregs, len);
7c699b81
KB
426}
427
155bd5d1 428/* FRV Linux kernel register sets. */
7c699b81 429
3ca7dae4 430static const struct regset frv_linux_gregset =
7c699b81 431{
901e1b23
AA
432 frv_linux_gregmap,
433 frv_linux_supply_gregset, regcache_collect_regset
7c699b81
KB
434};
435
3ca7dae4 436static const struct regset frv_linux_fpregset =
7c699b81 437{
901e1b23
AA
438 frv_linux_fpregmap,
439 regcache_supply_regset, regcache_collect_regset
7c699b81
KB
440};
441
66afae4f
AA
442static void
443frv_linux_iterate_over_regset_sections (struct gdbarch *gdbarch,
444 iterate_over_regset_sections_cb *cb,
445 void *cb_data,
446 const struct regcache *regcache)
7c699b81 447{
a616bb94
AH
448 cb (".reg", sizeof (frv_elf_gregset_t), sizeof (frv_elf_gregset_t),
449 &frv_linux_gregset, NULL, cb_data);
450 cb (".reg2", sizeof (frv_elf_fpregset_t), sizeof (frv_elf_fpregset_t),
451 &frv_linux_fpregset, NULL, cb_data);
7c699b81
KB
452}
453
454\f
5ecb7103
KB
455static void
456frv_linux_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
457{
a5ee0f0c
PA
458 linux_init_abi (info, gdbarch);
459
9df0bb3f 460 /* Set the sigtramp frame sniffer. */
94afd7a6 461 frame_unwind_append_unwinder (gdbarch, &frv_linux_sigtramp_frame_unwind);
a5ee0f0c 462
66afae4f
AA
463 set_gdbarch_iterate_over_regset_sections
464 (gdbarch, frv_linux_iterate_over_regset_sections);
5ecb7103
KB
465}
466
467static enum gdb_osabi
468frv_linux_elf_osabi_sniffer (bfd *abfd)
469{
470 int elf_flags;
471
472 elf_flags = elf_elfheader (abfd)->e_flags;
473
474 /* Assume GNU/Linux if using the FDPIC ABI. If/when another OS shows
475 up that uses this ABI, we'll need to start using .note sections
476 or some such. */
477 if (elf_flags & EF_FRV_FDPIC)
478 return GDB_OSABI_LINUX;
479 else
480 return GDB_OSABI_UNKNOWN;
481}
482
5ecb7103
KB
483void
484_initialize_frv_linux_tdep (void)
485{
0963b4bd
MS
486 gdbarch_register_osabi (bfd_arch_frv, 0, GDB_OSABI_LINUX,
487 frv_linux_init_abi);
5ecb7103
KB
488 gdbarch_register_osabi_sniffer (bfd_arch_frv,
489 bfd_target_elf_flavour,
490 frv_linux_elf_osabi_sniffer);
491}
This page took 1.101155 seconds and 4 git commands to generate.