1 /* Target-dependent code for GNU/Linux running on the Fujitsu FR-V,
4 Copyright (C) 2004, 2006, 2007 Free Software Foundation, Inc.
6 This file is part of GDB.
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
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
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.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
30 #include "trad-frame.h"
31 #include "frame-unwind.h"
33 #include "gdb_string.h"
35 /* Define the size (in bytes) of an FR-V instruction. */
36 static const int frv_instr_size = 4;
44 frv_linux_pc_in_sigtramp (CORE_ADDR pc, char *name)
46 char buf[frv_instr_size];
50 if (target_read_memory (pc, buf, sizeof buf) != 0)
53 instr = extract_unsigned_integer (buf, sizeof buf);
55 if (instr == 0x8efc0077) /* setlos #__NR_sigreturn, gr7 */
56 retval = NORMAL_SIGTRAMP;
57 else if (instr -= 0x8efc00ad) /* setlos #__NR_rt_sigreturn, gr7 */
62 if (target_read_memory (pc + frv_instr_size, buf, sizeof buf) != 0)
64 instr = extract_unsigned_integer (buf, sizeof buf);
65 if (instr != 0xc0700000) /* tira gr0, 0 */
68 /* If we get this far, we'll return a non-zero value, either
69 NORMAL_SIGTRAMP (1) or RT_SIGTRAMP (2). */
73 /* Given NEXT_FRAME, the "callee" frame of the sigtramp frame that we
74 wish to decode, and REGNO, one of the frv register numbers defined
75 in frv-tdep.h, return the address of the saved register (corresponding
76 to REGNO) in the sigtramp frame. Return -1 if the register is not
77 found in the sigtramp frame. The magic numbers in the code below
78 were computed by examining the following kernel structs:
80 From arch/frv/kernel/signal.c:
84 void (*pretcode)(void);
87 unsigned long extramask[_NSIG_WORDS-1];
93 void (*pretcode)(void);
95 struct siginfo *pinfo;
102 From include/asm-frv/ucontext.h:
105 unsigned long uc_flags;
106 struct ucontext *uc_link;
108 struct sigcontext uc_mcontext;
112 From include/asm-frv/signal.h:
114 typedef struct sigaltstack {
120 From include/asm-frv/sigcontext.h:
123 struct user_context sc_context;
124 unsigned long sc_oldmask;
125 } __attribute__((aligned(8)));
127 From include/asm-frv/registers.h:
137 unsigned long __status;
138 unsigned long syscallno;
139 unsigned long orig_gr8;
140 unsigned long gner[2];
141 unsigned long long iacc[1];
145 unsigned long gr[64];
149 struct user_fpmedia_regs
151 unsigned long fr[64];
152 unsigned long fner[2];
153 unsigned long msr[2];
154 unsigned long acc[8];
155 unsigned char accg[8];
156 unsigned long fsr[1];
161 struct user_int_regs i;
162 struct user_fpmedia_regs f;
165 } __attribute__((aligned(8))); */
168 frv_linux_sigcontext_reg_addr (struct frame_info *next_frame, int regno,
169 CORE_ADDR *sc_addr_cache_ptr)
173 if (sc_addr_cache_ptr && *sc_addr_cache_ptr)
175 sc_addr = *sc_addr_cache_ptr;
183 pc = frame_pc_unwind (next_frame);
184 tramp_type = frv_linux_pc_in_sigtramp (pc, 0);
186 frame_unwind_register (next_frame, sp_regnum, buf);
187 sp = extract_unsigned_integer (buf, sizeof buf);
189 if (tramp_type == NORMAL_SIGTRAMP)
191 /* For a normal sigtramp frame, the sigcontext struct starts
195 else if (tramp_type == RT_SIGTRAMP)
197 /* For a realtime sigtramp frame, SP + 12 contains a pointer
198 to a ucontext struct. The ucontext struct contains a
199 sigcontext struct starting 24 bytes in. (The offset of
200 uc_mcontext within struct ucontext is derived as follows:
201 stack_t is a 12-byte struct and struct sigcontext is
202 8-byte aligned. This gives an offset of 8 + 12 + 4 (for
204 if (target_read_memory (sp + 12, buf, sizeof buf) != 0)
206 warning (_("Can't read realtime sigtramp frame."));
209 sc_addr = extract_unsigned_integer (buf, sizeof buf);
213 internal_error (__FILE__, __LINE__, _("not a signal trampoline"));
215 if (sc_addr_cache_ptr)
216 *sc_addr_cache_ptr = sc_addr;
223 /* sc_addr + 4 has "isr", the Integer Status Register. */
234 /* sc_addr + 28 is __status, the exception status.
235 sc_addr + 32 is syscallno, the syscall number or -1.
236 sc_addr + 36 is orig_gr8, the original syscall arg #1.
237 sc_addr + 40 is gner[0].
238 sc_addr + 44 is gner[1]. */
244 if (first_gpr_regnum <= regno && regno <= last_gpr_regnum)
245 return sc_addr + 56 + 4 * (regno - first_gpr_regnum);
246 else if (first_fpr_regnum <= regno && regno <= last_fpr_regnum)
247 return sc_addr + 312 + 4 * (regno - first_fpr_regnum);
249 return -1; /* not saved. */
253 /* Signal trampolines. */
255 static struct trad_frame_cache *
256 frv_linux_sigtramp_frame_cache (struct frame_info *next_frame, void **this_cache)
258 struct trad_frame_cache *cache;
259 struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
263 CORE_ADDR sc_addr_cache_val = 0;
264 struct frame_id this_id;
269 cache = trad_frame_cache_zalloc (next_frame);
271 /* FIXME: cagney/2004-05-01: This is is long standing broken code.
272 The frame ID's code address should be the start-address of the
273 signal trampoline and not the current PC within that
275 frame_unwind_register (next_frame, sp_regnum, buf);
276 this_id = frame_id_build (extract_unsigned_integer (buf, sizeof buf),
277 frame_pc_unwind (next_frame));
278 trad_frame_set_id (cache, this_id);
280 for (regnum = 0; regnum < frv_num_regs; regnum++)
282 LONGEST reg_addr = frv_linux_sigcontext_reg_addr (next_frame, regnum,
285 trad_frame_set_reg_addr (cache, regnum, reg_addr);
293 frv_linux_sigtramp_frame_this_id (struct frame_info *next_frame, void **this_cache,
294 struct frame_id *this_id)
296 struct trad_frame_cache *cache =
297 frv_linux_sigtramp_frame_cache (next_frame, this_cache);
298 trad_frame_get_id (cache, this_id);
302 frv_linux_sigtramp_frame_prev_register (struct frame_info *next_frame,
304 int regnum, int *optimizedp,
305 enum lval_type *lvalp, CORE_ADDR *addrp,
306 int *realnump, gdb_byte *valuep)
308 /* Make sure we've initialized the cache. */
309 struct trad_frame_cache *cache =
310 frv_linux_sigtramp_frame_cache (next_frame, this_cache);
311 trad_frame_get_register (cache, next_frame, regnum, optimizedp, lvalp,
312 addrp, realnump, valuep);
315 static const struct frame_unwind frv_linux_sigtramp_frame_unwind =
318 frv_linux_sigtramp_frame_this_id,
319 frv_linux_sigtramp_frame_prev_register
322 static const struct frame_unwind *
323 frv_linux_sigtramp_frame_sniffer (struct frame_info *next_frame)
325 CORE_ADDR pc = frame_pc_unwind (next_frame);
328 find_pc_partial_function (pc, &name, NULL, NULL);
329 if (frv_linux_pc_in_sigtramp (pc, name))
330 return &frv_linux_sigtramp_frame_unwind;
336 /* The FRV kernel defines ELF_NGREG as 46. We add 2 in order to include
337 the loadmap addresses in the register set. (See below for more info.) */
338 #define FRV_ELF_NGREG (46 + 2)
339 typedef unsigned char frv_elf_greg_t[4];
340 typedef struct { frv_elf_greg_t reg[FRV_ELF_NGREG]; } frv_elf_gregset_t;
342 typedef unsigned char frv_elf_fpreg_t[4];
345 frv_elf_fpreg_t fr[64];
346 frv_elf_fpreg_t fner[2];
347 frv_elf_fpreg_t msr[2];
348 frv_elf_fpreg_t acc[8];
349 unsigned char accg[8];
350 frv_elf_fpreg_t fsr[1];
351 } frv_elf_fpregset_t;
353 /* Constants for accessing elements of frv_elf_gregset_t. */
358 #define FRV_PT_CCCR 3
362 #define FRV_PT_GNER0 10
363 #define FRV_PT_GNER1 11
364 #define FRV_PT_IACC0H 12
365 #define FRV_PT_IACC0L 13
367 /* Note: Only 32 of the GRs will be found in the corefile. */
368 #define FRV_PT_GR(j) ( 14 + (j)) /* GRj for 0<=j<=63. */
370 #define FRV_PT_TBR FRV_PT_GR(0) /* gr0 is always 0, so TBR is stuffed
373 /* Technically, the loadmap addresses are not part of `pr_reg' as
374 found in the elf_prstatus struct. The fields which communicate the
375 loadmap address appear (by design) immediately after `pr_reg'
376 though, and the BFD function elf32_frv_grok_prstatus() has been
377 implemented to include these fields in the register section that it
378 extracts from the core file. So, for our purposes, they may be
379 viewed as registers. */
381 #define FRV_PT_EXEC_FDPIC_LOADMAP 46
382 #define FRV_PT_INTERP_FDPIC_LOADMAP 47
385 /* Unpack an frv_elf_gregset_t into GDB's register cache. */
388 frv_linux_supply_gregset (const struct regset *regset,
389 struct regcache *regcache,
390 int regnum, const void *gregs, size_t len)
393 char zerobuf[MAX_REGISTER_SIZE];
394 const frv_elf_gregset_t *gregsetp = gregs;
396 memset (zerobuf, 0, MAX_REGISTER_SIZE);
398 /* gr0 always contains 0. Also, the kernel passes the TBR value in
400 regcache_raw_supply (regcache, first_gpr_regnum, zerobuf);
402 for (regi = first_gpr_regnum + 1; regi <= last_gpr_regnum; regi++)
404 if (regi >= first_gpr_regnum + 32)
405 regcache_raw_supply (regcache, regi, zerobuf);
407 regcache_raw_supply (regcache, regi,
408 gregsetp->reg[FRV_PT_GR (regi - first_gpr_regnum)]);
411 regcache_raw_supply (regcache, pc_regnum, gregsetp->reg[FRV_PT_PC]);
412 regcache_raw_supply (regcache, psr_regnum, gregsetp->reg[FRV_PT_PSR]);
413 regcache_raw_supply (regcache, ccr_regnum, gregsetp->reg[FRV_PT_CCR]);
414 regcache_raw_supply (regcache, cccr_regnum, gregsetp->reg[FRV_PT_CCCR]);
415 regcache_raw_supply (regcache, lr_regnum, gregsetp->reg[FRV_PT_LR]);
416 regcache_raw_supply (regcache, lcr_regnum, gregsetp->reg[FRV_PT_LCR]);
417 regcache_raw_supply (regcache, gner0_regnum, gregsetp->reg[FRV_PT_GNER0]);
418 regcache_raw_supply (regcache, gner1_regnum, gregsetp->reg[FRV_PT_GNER1]);
419 regcache_raw_supply (regcache, tbr_regnum, gregsetp->reg[FRV_PT_TBR]);
420 regcache_raw_supply (regcache, fdpic_loadmap_exec_regnum,
421 gregsetp->reg[FRV_PT_EXEC_FDPIC_LOADMAP]);
422 regcache_raw_supply (regcache, fdpic_loadmap_interp_regnum,
423 gregsetp->reg[FRV_PT_INTERP_FDPIC_LOADMAP]);
426 /* Unpack an frv_elf_fpregset_t into GDB's register cache. */
429 frv_linux_supply_fpregset (const struct regset *regset,
430 struct regcache *regcache,
431 int regnum, const void *gregs, size_t len)
434 const frv_elf_fpregset_t *fpregsetp = gregs;
436 for (regi = first_fpr_regnum; regi <= last_fpr_regnum; regi++)
437 regcache_raw_supply (regcache, regi, fpregsetp->fr[regi - first_fpr_regnum]);
439 regcache_raw_supply (regcache, fner0_regnum, fpregsetp->fner[0]);
440 regcache_raw_supply (regcache, fner1_regnum, fpregsetp->fner[1]);
442 regcache_raw_supply (regcache, msr0_regnum, fpregsetp->msr[0]);
443 regcache_raw_supply (regcache, msr1_regnum, fpregsetp->msr[1]);
445 for (regi = acc0_regnum; regi <= acc7_regnum; regi++)
446 regcache_raw_supply (regcache, regi, fpregsetp->acc[regi - acc0_regnum]);
448 regcache_raw_supply (regcache, accg0123_regnum, fpregsetp->accg);
449 regcache_raw_supply (regcache, accg4567_regnum, fpregsetp->accg + 4);
451 regcache_raw_supply (regcache, fsr0_regnum, fpregsetp->fsr[0]);
454 /* FRV Linux kernel register sets. */
456 static struct regset frv_linux_gregset =
459 frv_linux_supply_gregset
462 static struct regset frv_linux_fpregset =
465 frv_linux_supply_fpregset
468 static const struct regset *
469 frv_linux_regset_from_core_section (struct gdbarch *gdbarch,
470 const char *sect_name, size_t sect_size)
472 if (strcmp (sect_name, ".reg") == 0
473 && sect_size >= sizeof (frv_elf_gregset_t))
474 return &frv_linux_gregset;
476 if (strcmp (sect_name, ".reg2") == 0
477 && sect_size >= sizeof (frv_elf_fpregset_t))
478 return &frv_linux_fpregset;
485 frv_linux_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
487 /* Set the sigtramp frame sniffer. */
488 frame_unwind_append_sniffer (gdbarch, frv_linux_sigtramp_frame_sniffer);
489 set_gdbarch_regset_from_core_section (gdbarch,
490 frv_linux_regset_from_core_section);
493 static enum gdb_osabi
494 frv_linux_elf_osabi_sniffer (bfd *abfd)
498 elf_flags = elf_elfheader (abfd)->e_flags;
500 /* Assume GNU/Linux if using the FDPIC ABI. If/when another OS shows
501 up that uses this ABI, we'll need to start using .note sections
503 if (elf_flags & EF_FRV_FDPIC)
504 return GDB_OSABI_LINUX;
506 return GDB_OSABI_UNKNOWN;
509 /* Provide a prototype to silence -Wmissing-prototypes. */
510 void _initialize_frv_linux_tdep (void);
513 _initialize_frv_linux_tdep (void)
515 gdbarch_register_osabi (bfd_arch_frv, 0, GDB_OSABI_LINUX, frv_linux_init_abi);
516 gdbarch_register_osabi_sniffer (bfd_arch_frv,
517 bfd_target_elf_flavour,
518 frv_linux_elf_osabi_sniffer);