]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/mips-irix-tdep.c
2011-01-08 Michael Snyder <msnyder@vmware.com>
[thirdparty/binutils-gdb.git] / gdb / mips-irix-tdep.c
CommitLineData
b96d0a4e
KB
1/* Target-dependent code for the MIPS architecture running on IRIX,
2 for GDB, the GNU Debugger.
3
7b6bb8da
JB
4 Copyright (C) 2002, 2007, 2008, 2009, 2010, 2011
5 Free Software Foundation, Inc.
b96d0a4e
KB
6
7 This file is part of GDB.
8
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
a9762ec7 11 the Free Software Foundation; either version 3 of the License, or
b96d0a4e
KB
12 (at your option) any later version.
13
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
a9762ec7 20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
b96d0a4e
KB
21
22#include "defs.h"
23#include "osabi.h"
734598d9
UW
24#include "gdb_string.h"
25#include "solib.h"
26#include "solib-irix.h"
b96d0a4e 27#include "elf-bfd.h"
6d8eadbd
JB
28#include "mips-tdep.h"
29#include "trad-frame.h"
30#include "tramp-frame.h"
b96d0a4e
KB
31
32static void
33mips_irix_elf_osabi_sniff_abi_tag_sections (bfd *abfd, asection *sect,
34 void *obj)
35{
36 enum gdb_osabi *os_ident_ptr = obj;
37 const char *name;
38 unsigned int sectsize;
39
40 name = bfd_get_section_name (abfd, sect);
41 sectsize = bfd_section_size (abfd, sect);
42
43 if (strncmp (name, ".MIPS.", 6) == 0 && sectsize > 0)
44 {
45 /* The presence of a section named with a ".MIPS." prefix is
46 indicative of an IRIX binary. */
47 *os_ident_ptr = GDB_OSABI_IRIX;
48 }
49}
50
51static enum gdb_osabi
52mips_irix_elf_osabi_sniffer (bfd *abfd)
53{
54 unsigned int elfosabi;
55 enum gdb_osabi osabi = GDB_OSABI_UNKNOWN;
56
57 /* If the generic sniffer gets a hit, return and let other sniffers
58 get a crack at it. */
59 bfd_map_over_sections (abfd,
60 generic_elf_osabi_sniff_abi_tag_sections,
61 &osabi);
62 if (osabi != GDB_OSABI_UNKNOWN)
63 return GDB_OSABI_UNKNOWN;
64
65 elfosabi = elf_elfheader (abfd)->e_ident[EI_OSABI];
66
67 if (elfosabi == ELFOSABI_NONE)
68 {
69 /* When elfosabi is ELFOSABI_NONE (0), then the ELF structures in the
70 file are conforming to the base specification for that machine
71 (there are no OS-specific extensions). In order to determine the
025bb325 72 real OS in use we must look for OS notes that have been added.
b96d0a4e
KB
73
74 For IRIX, we simply look for sections named with .MIPS. as
75 prefixes. */
76 bfd_map_over_sections (abfd,
77 mips_irix_elf_osabi_sniff_abi_tag_sections,
78 &osabi);
79 }
80 return osabi;
81}
82
6d8eadbd
JB
83/* Unwinding past the signal handler on mips-irix.
84
85 Note: The following has only been tested with N32, but can probably
86 be made to work with a small number of adjustments.
87
88 On mips-irix, the sigcontext_t structure is stored at the base
89 of the frame established by the _sigtramp function. The definition
90 of this structure can be found in <sys/signal.h> (comments have been
91 C++'ified to avoid a collision with the C-style comment delimiters
92 used by this comment):
93
94 typedef struct sigcontext {
95 __uint32_t sc_regmask; // regs to restore in sigcleanup
96 __uint32_t sc_status; // cp0 status register
97 __uint64_t sc_pc; // pc at time of signal
98 // General purpose registers
99 __uint64_t sc_regs[32]; // processor regs 0 to 31
100 // Floating point coprocessor state
101 __uint64_t sc_fpregs[32]; // fp regs 0 to 31
102 __uint32_t sc_ownedfp; // fp has been used
103 __uint32_t sc_fpc_csr; // fpu control and status reg
104 __uint32_t sc_fpc_eir; // fpu exception instruction reg
105 // implementation/revision
106 __uint32_t sc_ssflags; // signal stack state to restore
107 __uint64_t sc_mdhi; // Multiplier hi and low regs
108 __uint64_t sc_mdlo;
109 // System coprocessor registers at time of signal
110 __uint64_t sc_cause; // cp0 cause register
111 __uint64_t sc_badvaddr; // cp0 bad virtual address
112 __uint64_t sc_triggersave; // state of graphics trigger (SGI)
113 sigset_t sc_sigset; // signal mask to restore
114 __uint64_t sc_fp_rounded_result; // for Ieee 754 support
115 __uint64_t sc_pad[31];
116 } sigcontext_t;
117
118 The following macros provide the offset of some of the fields
119 used to retrieve the value of the registers before the signal
120 was raised. */
121
122/* The size of the sigtramp frame. The sigtramp frame base can then
123 be computed by adding this size to the SP. */
124#define SIGTRAMP_FRAME_SIZE 48
125/* The offset in sigcontext_t where the PC is saved. */
126#define SIGCONTEXT_PC_OFF 8
127/* The offset in sigcontext_t where the GP registers are saved. */
128#define SIGCONTEXT_REGS_OFF (SIGCONTEXT_PC_OFF + 8)
129/* The offset in sigcontext_t where the FP regsiters are saved. */
130#define SIGCONTEXT_FPREGS_OFF (SIGCONTEXT_REGS_OFF + 32 * 8)
131/* The offset in sigcontext_t where the FP CSR register is saved. */
132#define SIGCONTEXT_FPCSR_OFF (SIGCONTEXT_FPREGS_OFF + 32 * 8 + 4)
133/* The offset in sigcontext_t where the multiplier hi register is saved. */
134#define SIGCONTEXT_HI_OFF (SIGCONTEXT_FPCSR_OFF + 2 * 4)
135/* The offset in sigcontext_t where the multiplier lo register is saved. */
136#define SIGCONTEXT_LO_OFF (SIGCONTEXT_HI_OFF + 4)
137
138/* Implement the "init" routine in struct tramp_frame for the N32 ABI
139 on mips-irix. */
140static void
141mips_irix_n32_tramp_frame_init (const struct tramp_frame *self,
142 struct frame_info *this_frame,
143 struct trad_frame_cache *this_cache,
144 CORE_ADDR func)
145{
146 struct gdbarch *gdbarch = get_frame_arch (this_frame);
147 const int num_regs = gdbarch_num_regs (gdbarch);
148 int sp_cooked_regno = num_regs + MIPS_SP_REGNUM;
149 const CORE_ADDR sp = get_frame_register_signed (this_frame, sp_cooked_regno);
150 const CORE_ADDR sigcontext_base = sp + 48;
151 const struct mips_regnum *regs = mips_regnum (gdbarch);
152 int ireg;
153
154 trad_frame_set_reg_addr (this_cache, regs->pc + gdbarch_num_regs (gdbarch),
155 sigcontext_base + SIGCONTEXT_PC_OFF);
156
157 for (ireg = 1; ireg < 32; ireg++)
158 trad_frame_set_reg_addr (this_cache, ireg + MIPS_ZERO_REGNUM + num_regs,
159 sigcontext_base + SIGCONTEXT_REGS_OFF + ireg * 8);
160
161 for (ireg = 0; ireg < 32; ireg++)
162 trad_frame_set_reg_addr (this_cache, ireg + regs->fp0 + num_regs,
163 sigcontext_base + SIGCONTEXT_FPREGS_OFF
164 + ireg * 8);
165
166 trad_frame_set_reg_addr (this_cache, regs->fp_control_status + num_regs,
167 sigcontext_base + SIGCONTEXT_FPCSR_OFF);
168
169 trad_frame_set_reg_addr (this_cache, regs->hi + num_regs,
170 sigcontext_base + SIGCONTEXT_HI_OFF);
171
172 trad_frame_set_reg_addr (this_cache, regs->lo + num_regs,
173 sigcontext_base + SIGCONTEXT_LO_OFF);
174
175 trad_frame_set_id (this_cache, frame_id_build (sigcontext_base, func));
176}
177
178/* The tramp_frame structure describing sigtramp frames on mips-irix N32.
179
180 Note that the list of instructions below is pretty much a pure dump
181 of function _sigtramp on mips-irix. A few instructions are actually
182 not tested (mask set to 0), because a portion of these instructions
183 contain an address which changes due to relocation. We could use
184 a smarter mask that checks the instrutction code alone, but given
185 the number of instructions already being checked, this seemed
186 unnecessary. */
187
188static const struct tramp_frame mips_irix_n32_tramp_frame =
189{
190 SIGTRAMP_FRAME,
191 4,
192 {
193 { 0x3c0c8000, -1 }, /* lui t0,0x8000 */
194 { 0x27bdffd0, -1 }, /* addiu sp,sp,-48 */
195 { 0x008c6024, -1 }, /* and t0,a0,t0 */
196 { 0xffa40018, -1 }, /* sd a0,24(sp) */
197 { 0x00000000, 0 }, /* beqz t0,0xfaefcb8 <_sigtramp+40> */
198 { 0xffa60028, -1 }, /* sd a2,40(sp) */
199 { 0x01806027, -1 }, /* nor t0,t0,zero */
200 { 0xffa00020, -1 }, /* sd zero,32(sp) */
201 { 0x00000000, 0 }, /* b 0xfaefcbc <_sigtramp+44> */
202 { 0x008c2024, -1 }, /* and a0,a0,t0 */
203 { 0xffa60020, -1 }, /* sd a2,32(sp) */
204 { 0x03e0c025, -1 }, /* move t8,ra */
205 { 0x00000000, 0 }, /* bal 0xfaefcc8 <_sigtramp+56> */
206 { 0x00000000, -1 }, /* nop */
207 { 0x3c0c0007, -1 }, /* lui t0,0x7 */
208 { 0x00e0c825, -1 }, /* move t9,a3 */
209 { 0x658c80fc, -1 }, /* daddiu t0,t0,-32516 */
210 { 0x019f602d, -1 }, /* daddu t0,t0,ra */
211 { 0x0300f825, -1 }, /* move ra,t8 */
212 { 0x8d8c9880, -1 }, /* lw t0,-26496(t0) */
213 { 0x8d8c0000, -1 }, /* lw t0,0(t0) */
214 { 0x8d8d0000, -1 }, /* lw t1,0(t0) */
215 { 0xffac0008, -1 }, /* sd t0,8(sp) */
216 { 0x0320f809, -1 }, /* jalr t9 */
217 { 0xffad0010, -1 }, /* sd t1,16(sp) */
218 { 0xdfad0010, -1 }, /* ld t1,16(sp) */
219 { 0xdfac0008, -1 }, /* ld t0,8(sp) */
220 { 0xad8d0000, -1 }, /* sw t1,0(t0) */
221 { 0xdfa40020, -1 }, /* ld a0,32(sp) */
222 { 0xdfa50028, -1 }, /* ld a1,40(sp) */
223 { 0xdfa60018, -1 }, /* ld a2,24(sp) */
224 { 0x24020440, -1 }, /* li v0,1088 */
225 { 0x0000000c, -1 }, /* syscall */
226 { TRAMP_SENTINEL_INSN, -1 }
227 },
228 mips_irix_n32_tramp_frame_init
229};
230
1324a0d9
JB
231/* Implement the "init" routine in struct tramp_frame for the stack-based
232 trampolines used on mips-irix. */
233
234static void
235mips_irix_n32_stack_tramp_frame_init (const struct tramp_frame *self,
236 struct frame_info *this_frame,
237 struct trad_frame_cache *this_cache,
238 CORE_ADDR func)
239{
240 struct gdbarch *gdbarch = get_frame_arch (this_frame);
241 const int num_regs = gdbarch_num_regs (gdbarch);
242 int sp_cooked_regno = num_regs + MIPS_SP_REGNUM;
243 const CORE_ADDR sp = get_frame_register_signed (this_frame, sp_cooked_regno);
244
245 /* The previous frame's PC is stored in RA. */
246 trad_frame_set_reg_realreg (this_cache, gdbarch_pc_regnum (gdbarch),
247 num_regs + MIPS_RA_REGNUM);
248
249 trad_frame_set_id (this_cache, frame_id_build (sp, func));
250}
251
252/* A tramp_frame structure describing the stack-based trampoline
253 used on mips-irix. These trampolines are created on the stack
254 before being called. */
255
256static const struct tramp_frame mips_irix_n32_stack_tramp_frame =
257{
258 SIGTRAMP_FRAME,
259 4,
260 {
261 { 0x8f210000, 0xffff0000 }, /* lw at, N(t9) */
262 { 0x8f2f0000, 0xffff0000 }, /* lw t3, M(t9) */
263 { 0x00200008, 0xffffffff }, /* jr at */
264 { 0x0020c82d, 0xffffffff }, /* move t9, at */
265 { TRAMP_SENTINEL_INSN, -1 }
266 },
267 mips_irix_n32_stack_tramp_frame_init
268};
269
b96d0a4e
KB
270static void
271mips_irix_init_abi (struct gdbarch_info info,
272 struct gdbarch *gdbarch)
273{
734598d9 274 set_solib_ops (gdbarch, &irix_so_ops);
1324a0d9 275 tramp_frame_prepend_unwinder (gdbarch, &mips_irix_n32_stack_tramp_frame);
6d8eadbd 276 tramp_frame_prepend_unwinder (gdbarch, &mips_irix_n32_tramp_frame);
b96d0a4e
KB
277}
278
63807e1d
PA
279/* Provide a prototype to silence -Wmissing-prototypes. */
280extern initialize_file_ftype _initialize_mips_irix_tdep;
281
b96d0a4e
KB
282void
283_initialize_mips_irix_tdep (void)
284{
285 /* Register an ELF OS ABI sniffer for IRIX binaries. */
286 gdbarch_register_osabi_sniffer (bfd_arch_mips,
287 bfd_target_elf_flavour,
288 mips_irix_elf_osabi_sniffer);
289
05816f70 290 gdbarch_register_osabi (bfd_arch_mips, 0, GDB_OSABI_IRIX,
b96d0a4e
KB
291 mips_irix_init_abi);
292}