1 /* Motorola m68k target-dependent support for GNU/Linux.
3 Copyright 1996, 1998, 2000, 2001, 2002, 2003, 2004
4 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 2 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, write to the Free Software
20 Foundation, Inc., 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA. */
26 #include "floatformat.h"
29 #include "gdb_string.h"
35 #include "m68k-tdep.h"
36 #include "trad-frame.h"
37 #include "frame-unwind.h"
39 /* Offsets (in target ints) into jmp_buf. */
41 #define M68K_LINUX_JB_ELEMENT_SIZE 4
42 #define M68K_LINUX_JB_PC 7
44 /* Check whether insn1 and insn2 are parts of a signal trampoline. */
46 #define IS_SIGTRAMP(insn1, insn2) \
47 (/* addaw #20,sp; moveq #119,d0; trap #0 */ \
48 (insn1 == 0xdefc0014 && insn2 == 0x70774e40) \
49 /* moveq #119,d0; trap #0 */ \
50 || insn1 == 0x70774e40)
52 #define IS_RT_SIGTRAMP(insn1, insn2) \
53 (/* movel #173,d0; trap #0 */ \
54 (insn1 == 0x203c0000 && insn2 == 0x00ad4e40) \
55 /* moveq #82,d0; notb d0; trap #0 */ \
56 || (insn1 == 0x70524600 && (insn2 >> 16) == 0x4e40))
58 /* Return non-zero if PC points into the signal trampoline. For the
59 sake of m68k_linux_get_sigtramp_info we also distinguish between
60 non-RT and RT signal trampolines. */
63 m68k_linux_pc_in_sigtramp (CORE_ADDR pc, char *name)
67 unsigned long insn0, insn1, insn2;
69 if (deprecated_read_memory_nobpt (pc - 4, buf, sizeof (buf)))
71 insn1 = extract_unsigned_integer (buf + 4, 4);
72 insn2 = extract_unsigned_integer (buf + 8, 4);
73 if (IS_SIGTRAMP (insn1, insn2))
75 if (IS_RT_SIGTRAMP (insn1, insn2))
78 insn0 = extract_unsigned_integer (buf, 4);
79 if (IS_SIGTRAMP (insn0, insn1))
81 if (IS_RT_SIGTRAMP (insn0, insn1))
84 insn0 = ((insn0 << 16) & 0xffffffff) | (insn1 >> 16);
85 insn1 = ((insn1 << 16) & 0xffffffff) | (insn2 >> 16);
86 if (IS_SIGTRAMP (insn0, insn1))
88 if (IS_RT_SIGTRAMP (insn0, insn1))
94 /* From <asm/sigcontext.h>. */
95 static int m68k_linux_sigcontext_reg_offset[M68K_NUM_REGS] =
125 16 * 4 /* %fpiaddr */
128 /* From <asm/ucontext.h>. */
129 static int m68k_linux_ucontext_reg_offset[M68K_NUM_REGS] =
159 26 * 4 /* %fpiaddr */
163 /* Get info about saved registers in sigtramp. */
165 struct m68k_linux_sigtramp_info
167 /* Address of sigcontext. */
168 CORE_ADDR sigcontext_addr;
170 /* Offset of registers in `struct sigcontext'. */
174 static struct m68k_linux_sigtramp_info
175 m68k_linux_get_sigtramp_info (struct frame_info *next_frame)
179 struct m68k_linux_sigtramp_info info;
181 frame_unwind_register (next_frame, M68K_SP_REGNUM, buf);
182 sp = extract_unsigned_integer (buf, 4);
184 /* Get sigcontext address, it is the third parameter on the stack. */
185 info.sigcontext_addr = read_memory_unsigned_integer (sp + 8, 4);
187 if (m68k_linux_pc_in_sigtramp (frame_pc_unwind (next_frame), 0) == 2)
188 info.sc_reg_offset = m68k_linux_ucontext_reg_offset;
190 info.sc_reg_offset = m68k_linux_sigcontext_reg_offset;
194 /* Signal trampolines. */
196 static struct trad_frame_cache *
197 m68k_linux_sigtramp_frame_cache (struct frame_info *next_frame,
200 struct frame_id this_id;
201 struct trad_frame_cache *cache;
202 struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
203 struct m68k_linux_sigtramp_info info;
210 cache = trad_frame_cache_zalloc (next_frame);
212 /* FIXME: cagney/2004-05-01: This is is long standing broken code.
213 The frame ID's code address should be the start-address of the
214 signal trampoline and not the current PC within that
216 frame_unwind_register (next_frame, M68K_SP_REGNUM, buf);
217 /* See the end of m68k_push_dummy_call. */
218 this_id = frame_id_build (extract_unsigned_integer (buf, 4) - 4 + 8,
219 frame_pc_unwind (next_frame));
220 trad_frame_set_id (cache, this_id);
222 info = m68k_linux_get_sigtramp_info (next_frame);
224 for (i = 0; i < M68K_NUM_REGS; i++)
225 if (info.sc_reg_offset[i] != -1)
226 trad_frame_set_reg_addr (cache, i,
227 info.sigcontext_addr + info.sc_reg_offset[i]);
234 m68k_linux_sigtramp_frame_this_id (struct frame_info *next_frame,
236 struct frame_id *this_id)
238 struct trad_frame_cache *cache =
239 m68k_linux_sigtramp_frame_cache (next_frame, this_cache);
240 trad_frame_get_id (cache, this_id);
244 m68k_linux_sigtramp_frame_prev_register (struct frame_info *next_frame,
246 int regnum, int *optimizedp,
247 enum lval_type *lvalp,
249 int *realnump, void *valuep)
251 /* Make sure we've initialized the cache. */
252 struct trad_frame_cache *cache =
253 m68k_linux_sigtramp_frame_cache (next_frame, this_cache);
254 trad_frame_get_register (cache, next_frame, regnum, optimizedp, lvalp,
255 addrp, realnump, valuep);
258 static const struct frame_unwind m68k_linux_sigtramp_frame_unwind =
261 m68k_linux_sigtramp_frame_this_id,
262 m68k_linux_sigtramp_frame_prev_register
265 static const struct frame_unwind *
266 m68k_linux_sigtramp_frame_sniffer (struct frame_info *next_frame)
268 CORE_ADDR pc = frame_pc_unwind (next_frame);
271 find_pc_partial_function (pc, &name, NULL, NULL);
272 if (m68k_linux_pc_in_sigtramp (pc, name))
273 return &m68k_linux_sigtramp_frame_unwind;
279 m68k_linux_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
281 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
283 tdep->jb_pc = M68K_LINUX_JB_PC;
284 tdep->jb_elt_size = M68K_LINUX_JB_ELEMENT_SIZE;
286 /* GNU/Linux uses a calling convention that's similar to SVR4. It
287 returns integer values in %d0/%di, pointer values in %a0 and
288 floating values in %fp0, just like SVR4, but uses %a1 to pass the
289 address to store a structure value. It also returns small
290 structures in registers instead of memory. */
291 m68k_svr4_init_abi (info, gdbarch);
292 tdep->struct_value_regnum = M68K_A1_REGNUM;
293 tdep->struct_return = reg_struct_return;
295 frame_unwind_append_sniffer (gdbarch, m68k_linux_sigtramp_frame_sniffer);
297 /* Shared library handling. */
298 set_gdbarch_in_solib_call_trampoline (gdbarch, in_plt_section);
299 set_gdbarch_skip_trampoline_code (gdbarch, find_solib_trampoline_target);
303 _initialize_m68k_linux_tdep (void)
305 gdbarch_register_osabi (bfd_arch_m68k, 0, GDB_OSABI_LINUX,
306 m68k_linux_init_abi);