1 /* Target-dependent code for GNU/Linux Super-H.
3 Copyright (C) 2005-2020 Free Software Foundation, Inc.
5 This file is part of GDB.
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 3 of the License, or
10 (at your option) any later version.
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.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
23 #include "solib-svr4.h"
26 #include "trad-frame.h"
27 #include "tramp-frame.h"
29 #include "glibc-tdep.h"
31 #include "linux-tdep.h"
34 #define REGSx16(base) \
52 /* Describe the contents of the .reg section of the core file. */
54 static const struct sh_corefile_regmap gregs_table
[] =
63 {-1 /* Terminator. */, 0}
66 /* Describe the contents of the .reg2 section of the core file. */
68 static const struct sh_corefile_regmap fpregs_table
[] =
71 /* REGSx16 xfp_regs omitted. */
74 {-1 /* Terminator. */, 0}
77 /* SH signal handler frame support. */
80 sh_linux_sigtramp_cache (struct frame_info
*this_frame
,
81 struct trad_frame_cache
*this_cache
,
82 CORE_ADDR func
, int regs_offset
)
85 struct gdbarch
*gdbarch
= get_frame_arch (this_frame
);
86 CORE_ADDR base
= get_frame_register_unsigned (this_frame
,
87 gdbarch_sp_regnum (gdbarch
));
88 CORE_ADDR regs
= base
+ regs_offset
;
90 for (i
= 0; i
< 18; i
++)
91 trad_frame_set_reg_addr (this_cache
, i
, regs
+ i
* 4);
93 trad_frame_set_reg_addr (this_cache
, SR_REGNUM
, regs
+ 18 * 4);
94 trad_frame_set_reg_addr (this_cache
, GBR_REGNUM
, regs
+ 19 * 4);
95 trad_frame_set_reg_addr (this_cache
, MACH_REGNUM
, regs
+ 20 * 4);
96 trad_frame_set_reg_addr (this_cache
, MACL_REGNUM
, regs
+ 21 * 4);
98 /* Restore FP state if we have an FPU. */
99 if (gdbarch_fp0_regnum (gdbarch
) != -1)
101 CORE_ADDR fpregs
= regs
+ 22 * 4;
102 for (i
= FR0_REGNUM
; i
<= FP_LAST_REGNUM
; i
++)
103 trad_frame_set_reg_addr (this_cache
, i
, fpregs
+ i
* 4);
104 trad_frame_set_reg_addr (this_cache
, FPSCR_REGNUM
, fpregs
+ 32 * 4);
105 trad_frame_set_reg_addr (this_cache
, FPUL_REGNUM
, fpregs
+ 33 * 4);
108 /* Save a frame ID. */
109 trad_frame_set_id (this_cache
, frame_id_build (base
, func
));
112 /* Implement struct tramp_frame "init" callbacks for signal
113 trampolines on 32-bit SH. */
116 sh_linux_sigreturn_init (const struct tramp_frame
*self
,
117 struct frame_info
*this_frame
,
118 struct trad_frame_cache
*this_cache
,
121 /* SH 32-bit sigframe: sigcontext at start of sigframe,
122 registers start after a single 'oldmask' word. */
123 sh_linux_sigtramp_cache (this_frame
, this_cache
, func
, 4);
127 sh_linux_rt_sigreturn_init (const struct tramp_frame
*self
,
128 struct frame_info
*this_frame
,
129 struct trad_frame_cache
*this_cache
,
132 /* SH 32-bit rt_sigframe: starts with a siginfo (128 bytes), then
133 we can find sigcontext embedded within a ucontext (offset 20 bytes).
134 Then registers start after a single 'oldmask' word. */
135 sh_linux_sigtramp_cache (this_frame
, this_cache
, func
,
136 128 /* sizeof (struct siginfo) */
137 + 20 /* offsetof (struct ucontext, uc_mcontext) */
138 + 4 /* oldmask word at start of sigcontext */);
141 /* Instruction patterns. */
142 #define SH_MOVW 0x9305
143 #define SH_TRAP 0xc300
144 #define SH_OR_R0_R0 0x200b
146 /* SH sigreturn syscall numbers. */
147 #define SH_NR_SIGRETURN 0x0077
148 #define SH_NR_RT_SIGRETURN 0x00ad
150 static struct tramp_frame sh_linux_sigreturn_tramp_frame
= {
155 { SH_TRAP
, 0xff00 }, /* #imm argument part filtered out. */
156 { SH_OR_R0_R0
, 0xffff },
157 { SH_OR_R0_R0
, 0xffff },
158 { SH_OR_R0_R0
, 0xffff },
159 { SH_OR_R0_R0
, 0xffff },
160 { SH_OR_R0_R0
, 0xffff },
161 { SH_NR_SIGRETURN
, 0xffff },
162 { TRAMP_SENTINEL_INSN
}
164 sh_linux_sigreturn_init
167 static struct tramp_frame sh_linux_rt_sigreturn_tramp_frame
= {
172 { SH_TRAP
, 0xff00 }, /* #imm argument part filtered out. */
173 { SH_OR_R0_R0
, 0xffff },
174 { SH_OR_R0_R0
, 0xffff },
175 { SH_OR_R0_R0
, 0xffff },
176 { SH_OR_R0_R0
, 0xffff },
177 { SH_OR_R0_R0
, 0xffff },
178 { SH_NR_RT_SIGRETURN
, 0xffff },
179 { TRAMP_SENTINEL_INSN
}
181 sh_linux_rt_sigreturn_init
185 sh_linux_init_abi (struct gdbarch_info info
, struct gdbarch
*gdbarch
)
187 linux_init_abi (info
, gdbarch
);
189 /* GNU/Linux uses SVR4-style shared libraries. */
190 set_gdbarch_skip_trampoline_code (gdbarch
, find_solib_trampoline_target
);
191 set_solib_svr4_fetch_link_map_offsets
192 (gdbarch
, svr4_ilp32_fetch_link_map_offsets
);
193 set_gdbarch_skip_solib_resolver (gdbarch
, glibc_skip_solib_resolver
);
195 set_gdbarch_fetch_tls_load_module_address (gdbarch
,
196 svr4_fetch_objfile_link_map
);
198 struct gdbarch_tdep
*tdep
= gdbarch_tdep (gdbarch
);
200 /* Remember regset characteristics. The sizes should match
201 elf_gregset_t and elf_fpregset_t from Linux. */
202 tdep
->core_gregmap
= (struct sh_corefile_regmap
*) gregs_table
;
203 tdep
->sizeof_gregset
= 92;
204 tdep
->core_fpregmap
= (struct sh_corefile_regmap
*) fpregs_table
;
205 tdep
->sizeof_fpregset
= 136;
207 tramp_frame_prepend_unwinder (gdbarch
, &sh_linux_sigreturn_tramp_frame
);
208 tramp_frame_prepend_unwinder (gdbarch
, &sh_linux_rt_sigreturn_tramp_frame
);
211 void _initialize_sh_linux_tdep ();
213 _initialize_sh_linux_tdep ()
215 gdbarch_register_osabi (bfd_arch_sh
, 0, GDB_OSABI_LINUX
, sh_linux_init_abi
);