1 /* Target-dependent code for GNU/Linux running on the Fujitsu FR-V,
4 Copyright (C) 2004, 2006, 2007, 2008, 2009 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 *this_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 = get_frame_pc (this_frame);
184 tramp_type = frv_linux_pc_in_sigtramp (pc, 0);
186 get_frame_register (this_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 *this_frame, void **this_cache)
258 struct trad_frame_cache *cache;
259 struct gdbarch_tdep *tdep = gdbarch_tdep (get_frame_arch (this_frame));
263 CORE_ADDR sc_addr_cache_val = 0;
264 struct frame_id this_id;
269 cache = trad_frame_cache_zalloc (this_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 get_frame_register (this_frame, sp_regnum, buf);
276 this_id = frame_id_build (extract_unsigned_integer (buf, sizeof buf),
277 get_frame_pc (this_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 (this_frame, regnum,
285 trad_frame_set_reg_addr (cache, regnum, reg_addr);
293 frv_linux_sigtramp_frame_this_id (struct frame_info *this_frame, void **this_cache,
294 struct frame_id *this_id)
296 struct trad_frame_cache *cache =
297 frv_linux_sigtramp_frame_cache (this_frame, this_cache);
298 trad_frame_get_id (cache, this_id);
301 static struct value *
302 frv_linux_sigtramp_frame_prev_register (struct frame_info *this_frame,
303 void **this_cache, int regnum)
305 /* Make sure we've initialized the cache. */
306 struct trad_frame_cache *cache =
307 frv_linux_sigtramp_frame_cache (this_frame, this_cache);
308 return trad_frame_get_register (cache, this_frame, regnum);
312 frv_linux_sigtramp_frame_sniffer (const struct frame_unwind *self,
313 struct frame_info *this_frame,
316 CORE_ADDR pc = get_frame_pc (this_frame);
319 find_pc_partial_function (pc, &name, NULL, NULL);
320 if (frv_linux_pc_in_sigtramp (pc, name))
326 static const struct frame_unwind frv_linux_sigtramp_frame_unwind =
329 frv_linux_sigtramp_frame_this_id,
330 frv_linux_sigtramp_frame_prev_register,
332 frv_linux_sigtramp_frame_sniffer
335 /* The FRV kernel defines ELF_NGREG as 46. We add 2 in order to include
336 the loadmap addresses in the register set. (See below for more info.) */
337 #define FRV_ELF_NGREG (46 + 2)
338 typedef unsigned char frv_elf_greg_t[4];
339 typedef struct { frv_elf_greg_t reg[FRV_ELF_NGREG]; } frv_elf_gregset_t;
341 typedef unsigned char frv_elf_fpreg_t[4];
344 frv_elf_fpreg_t fr[64];
345 frv_elf_fpreg_t fner[2];
346 frv_elf_fpreg_t msr[2];
347 frv_elf_fpreg_t acc[8];
348 unsigned char accg[8];
349 frv_elf_fpreg_t fsr[1];
350 } frv_elf_fpregset_t;
352 /* Constants for accessing elements of frv_elf_gregset_t. */
357 #define FRV_PT_CCCR 3
361 #define FRV_PT_GNER0 10
362 #define FRV_PT_GNER1 11
363 #define FRV_PT_IACC0H 12
364 #define FRV_PT_IACC0L 13
366 /* Note: Only 32 of the GRs will be found in the corefile. */
367 #define FRV_PT_GR(j) ( 14 + (j)) /* GRj for 0<=j<=63. */
369 #define FRV_PT_TBR FRV_PT_GR(0) /* gr0 is always 0, so TBR is stuffed
372 /* Technically, the loadmap addresses are not part of `pr_reg' as
373 found in the elf_prstatus struct. The fields which communicate the
374 loadmap address appear (by design) immediately after `pr_reg'
375 though, and the BFD function elf32_frv_grok_prstatus() has been
376 implemented to include these fields in the register section that it
377 extracts from the core file. So, for our purposes, they may be
378 viewed as registers. */
380 #define FRV_PT_EXEC_FDPIC_LOADMAP 46
381 #define FRV_PT_INTERP_FDPIC_LOADMAP 47
384 /* Unpack an frv_elf_gregset_t into GDB's register cache. */
387 frv_linux_supply_gregset (const struct regset *regset,
388 struct regcache *regcache,
389 int regnum, const void *gregs, size_t len)
392 char zerobuf[MAX_REGISTER_SIZE];
393 const frv_elf_gregset_t *gregsetp = gregs;
395 memset (zerobuf, 0, MAX_REGISTER_SIZE);
397 /* gr0 always contains 0. Also, the kernel passes the TBR value in
399 regcache_raw_supply (regcache, first_gpr_regnum, zerobuf);
401 for (regi = first_gpr_regnum + 1; regi <= last_gpr_regnum; regi++)
403 if (regi >= first_gpr_regnum + 32)
404 regcache_raw_supply (regcache, regi, zerobuf);
406 regcache_raw_supply (regcache, regi,
407 gregsetp->reg[FRV_PT_GR (regi - first_gpr_regnum)]);
410 regcache_raw_supply (regcache, pc_regnum, gregsetp->reg[FRV_PT_PC]);
411 regcache_raw_supply (regcache, psr_regnum, gregsetp->reg[FRV_PT_PSR]);
412 regcache_raw_supply (regcache, ccr_regnum, gregsetp->reg[FRV_PT_CCR]);
413 regcache_raw_supply (regcache, cccr_regnum, gregsetp->reg[FRV_PT_CCCR]);
414 regcache_raw_supply (regcache, lr_regnum, gregsetp->reg[FRV_PT_LR]);
415 regcache_raw_supply (regcache, lcr_regnum, gregsetp->reg[FRV_PT_LCR]);
416 regcache_raw_supply (regcache, gner0_regnum, gregsetp->reg[FRV_PT_GNER0]);
417 regcache_raw_supply (regcache, gner1_regnum, gregsetp->reg[FRV_PT_GNER1]);
418 regcache_raw_supply (regcache, tbr_regnum, gregsetp->reg[FRV_PT_TBR]);
419 regcache_raw_supply (regcache, fdpic_loadmap_exec_regnum,
420 gregsetp->reg[FRV_PT_EXEC_FDPIC_LOADMAP]);
421 regcache_raw_supply (regcache, fdpic_loadmap_interp_regnum,
422 gregsetp->reg[FRV_PT_INTERP_FDPIC_LOADMAP]);
425 /* Unpack an frv_elf_fpregset_t into GDB's register cache. */
428 frv_linux_supply_fpregset (const struct regset *regset,
429 struct regcache *regcache,
430 int regnum, const void *gregs, size_t len)
433 const frv_elf_fpregset_t *fpregsetp = gregs;
435 for (regi = first_fpr_regnum; regi <= last_fpr_regnum; regi++)
436 regcache_raw_supply (regcache, regi, fpregsetp->fr[regi - first_fpr_regnum]);
438 regcache_raw_supply (regcache, fner0_regnum, fpregsetp->fner[0]);
439 regcache_raw_supply (regcache, fner1_regnum, fpregsetp->fner[1]);
441 regcache_raw_supply (regcache, msr0_regnum, fpregsetp->msr[0]);
442 regcache_raw_supply (regcache, msr1_regnum, fpregsetp->msr[1]);
444 for (regi = acc0_regnum; regi <= acc7_regnum; regi++)
445 regcache_raw_supply (regcache, regi, fpregsetp->acc[regi - acc0_regnum]);
447 regcache_raw_supply (regcache, accg0123_regnum, fpregsetp->accg);
448 regcache_raw_supply (regcache, accg4567_regnum, fpregsetp->accg + 4);
450 regcache_raw_supply (regcache, fsr0_regnum, fpregsetp->fsr[0]);
453 /* FRV Linux kernel register sets. */
455 static struct regset frv_linux_gregset =
458 frv_linux_supply_gregset
461 static struct regset frv_linux_fpregset =
464 frv_linux_supply_fpregset
467 static const struct regset *
468 frv_linux_regset_from_core_section (struct gdbarch *gdbarch,
469 const char *sect_name, size_t sect_size)
471 if (strcmp (sect_name, ".reg") == 0
472 && sect_size >= sizeof (frv_elf_gregset_t))
473 return &frv_linux_gregset;
475 if (strcmp (sect_name, ".reg2") == 0
476 && sect_size >= sizeof (frv_elf_fpregset_t))
477 return &frv_linux_fpregset;
484 frv_linux_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
486 /* Set the sigtramp frame sniffer. */
487 frame_unwind_append_unwinder (gdbarch, &frv_linux_sigtramp_frame_unwind);
488 set_gdbarch_regset_from_core_section (gdbarch,
489 frv_linux_regset_from_core_section);
492 static enum gdb_osabi
493 frv_linux_elf_osabi_sniffer (bfd *abfd)
497 elf_flags = elf_elfheader (abfd)->e_flags;
499 /* Assume GNU/Linux if using the FDPIC ABI. If/when another OS shows
500 up that uses this ABI, we'll need to start using .note sections
502 if (elf_flags & EF_FRV_FDPIC)
503 return GDB_OSABI_LINUX;
505 return GDB_OSABI_UNKNOWN;
508 /* Provide a prototype to silence -Wmissing-prototypes. */
509 void _initialize_frv_linux_tdep (void);
512 _initialize_frv_linux_tdep (void)
514 gdbarch_register_osabi (bfd_arch_frv, 0, GDB_OSABI_LINUX, frv_linux_init_abi);
515 gdbarch_register_osabi_sniffer (bfd_arch_frv,
516 bfd_target_elf_flavour,
517 frv_linux_elf_osabi_sniffer);