bfd/
[deliverable/binutils-gdb.git] / gdb / sparc64-linux-tdep.c
CommitLineData
386c036b
MK
1/* Target-dependent code for GNU/Linux UltraSPARC.
2
a33e488c 3 Copyright 2003, 2004, 2005 Free Software Foundation, Inc.
386c036b
MK
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
21
22#include "defs.h"
78a0fd57
DM
23#include "frame.h"
24#include "frame-unwind.h"
386c036b
MK
25#include "gdbarch.h"
26#include "osabi.h"
b2756930 27#include "solib-svr4.h"
78a0fd57
DM
28#include "symtab.h"
29#include "trad-frame.h"
70f1dc74 30#include "tramp-frame.h"
78a0fd57 31
386c036b
MK
32#include "sparc64-tdep.h"
33
70f1dc74 34/* Signal trampoline support. */
78a0fd57 35
81f726ab
DM
36static void sparc64_linux_sigframe_init (const struct tramp_frame *self,
37 struct frame_info *next_frame,
38 struct trad_frame_cache *this_cache,
39 CORE_ADDR func);
78a0fd57 40
70f1dc74
MK
41/* See sparc-linux-tdep.c for details. Note that 64-bit binaries only
42 use RT signals. */
43
44static const struct tramp_frame sparc64_linux_rt_sigframe =
45{
81f726ab
DM
46 SIGTRAMP_FRAME,
47 4,
48 {
70f1dc74
MK
49 { 0x82102065, -1 }, /* mov __NR_rt_sigreturn, %g1 */
50 { 0x91d0206d, -1 }, /* ta 0x6d */
81f726ab
DM
51 { TRAMP_SENTINEL_INSN, -1 }
52 },
53 sparc64_linux_sigframe_init
54};
78a0fd57 55
81f726ab
DM
56static void
57sparc64_linux_sigframe_init (const struct tramp_frame *self,
58 struct frame_info *next_frame,
59 struct trad_frame_cache *this_cache,
60 CORE_ADDR func)
78a0fd57 61{
81f726ab 62 CORE_ADDR base, addr;
78a0fd57
DM
63 int regnum;
64
81f726ab
DM
65 base = frame_unwind_register_unsigned (next_frame, SPARC_O1_REGNUM);
66 base += 128;
78a0fd57 67
70f1dc74 68 /* Offsets from <bits/sigcontext.h>. */
78a0fd57
DM
69
70 /* Since %g0 is always zero, keep the identity encoding. */
70f1dc74 71 addr = base + 8;
81f726ab
DM
72 for (regnum = SPARC_G1_REGNUM; regnum <= SPARC_O7_REGNUM; regnum++)
73 {
74 trad_frame_set_reg_addr (this_cache, regnum, addr);
75 addr += 8;
76 }
78a0fd57 77
70f1dc74
MK
78 trad_frame_set_reg_addr (this_cache, SPARC64_STATE_REGNUM, addr + 0);
79 trad_frame_set_reg_addr (this_cache, SPARC64_PC_REGNUM, addr + 8);
80 trad_frame_set_reg_addr (this_cache, SPARC64_NPC_REGNUM, addr + 16);
81 trad_frame_set_reg_addr (this_cache, SPARC64_Y_REGNUM, addr + 24);
82 trad_frame_set_reg_addr (this_cache, SPARC64_FPRS_REGNUM, addr + 28);
78a0fd57 83
81f726ab
DM
84 addr = frame_unwind_register_unsigned (next_frame, SPARC_SP_REGNUM);
85 if (addr & 1)
86 addr += BIAS;
78a0fd57 87
81f726ab
DM
88 base = addr;
89 for (regnum = SPARC_L0_REGNUM; regnum <= SPARC_I7_REGNUM; regnum++)
90 {
91 trad_frame_set_reg_addr (this_cache, regnum, addr);
92 addr += 8;
93 }
94 trad_frame_set_id (this_cache, frame_id_build (base, func));
78a0fd57
DM
95}
96\f
70f1dc74 97
386c036b
MK
98static void
99sparc64_linux_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
100{
101 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
102
81f726ab 103 tramp_frame_prepend_unwinder (gdbarch, &sparc64_linux_rt_sigframe);
78a0fd57 104
20338726
DM
105 sparc64_init_abi (info, gdbarch);
106
a33e488c
MK
107 /* GNU/Linux has SVR4-style shared libraries... */
108 set_gdbarch_skip_trampoline_code (gdbarch, find_solib_trampoline_target);
109 set_solib_svr4_fetch_link_map_offsets
110 (gdbarch, svr4_lp64_fetch_link_map_offsets);
386c036b 111
a33e488c
MK
112 /* ...which means that we need some special handling when doing
113 prologue analysis. */
114 tdep->plt_entry_size = 16;
b2756930
KB
115
116 /* Enable TLS support. */
117 set_gdbarch_fetch_tls_load_module_address (gdbarch,
118 svr4_fetch_objfile_link_map);
386c036b 119}
70f1dc74 120\f
386c036b
MK
121
122/* Provide a prototype to silence -Wmissing-prototypes. */
123extern void _initialize_sparc64_linux_tdep (void);
124
125void
126_initialize_sparc64_linux_tdep (void)
127{
128 gdbarch_register_osabi (bfd_arch_sparc, bfd_mach_sparc_v9,
129 GDB_OSABI_LINUX, sparc64_linux_init_abi);
130}
This page took 0.179945 seconds and 4 git commands to generate.