]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/alphafbsd-tdep.c
Copyright updates for 2007.
[thirdparty/binutils-gdb.git] / gdb / alphafbsd-tdep.c
CommitLineData
4b17b389
MK
1/* Target-dependent code for FreeBSD/alpha.
2
6aba47ca 3 Copyright (C) 2001, 2002, 2003, 2006, 2007 Free Software Foundation, Inc.
efd59e3f
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
197e01b6
EZ
19 Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 Boston, MA 02110-1301, USA. */
efd59e3f
MK
21
22#include "defs.h"
23#include "value.h"
4be87837 24#include "osabi.h"
efd59e3f 25
82a4efa1 26#include "alpha-tdep.h"
4b17b389 27#include "solib-svr4.h"
82a4efa1
JT
28
29static int
9823e921 30alphafbsd_return_in_memory (struct type *type)
efd59e3f
MK
31{
32 enum type_code code;
33 int i;
34
35 /* All aggregate types that won't fit in a register must be returned
36 in memory. */
138e7be5 37 if (TYPE_LENGTH (type) > ALPHA_REGISTER_SIZE)
efd59e3f
MK
38 return 1;
39
40 /* The only aggregate types that can be returned in a register are
41 structs and unions. Arrays must be returned in memory. */
42 code = TYPE_CODE (type);
43 if (code != TYPE_CODE_STRUCT && code != TYPE_CODE_UNION)
44 return 1;
45
46 /* We need to check if this struct/union is "integer" like. For
47 this to be true, the offset of each adressable subfield must be
48 zero. Note that bit fields are not addressable. */
49 for (i = 0; i < TYPE_NFIELDS (type); i++)
50 {
51 /* If the field bitsize is non-zero, it isn't adressable. */
52 if (TYPE_FIELD_BITPOS (type, i) != 0
53 && TYPE_FIELD_BITSIZE (type, i) == 0)
54 return 1;
55 }
56
57 return 0;
58}
138e7be5
MK
59\f
60
61/* Support for signal handlers. */
62
63/* Return whether PC is in a BSD sigtramp routine. */
64
65CORE_ADDR alphafbsd_sigtramp_start = 0x11ffff68;
66CORE_ADDR alphafbsd_sigtramp_end = 0x11ffffe0;
82a4efa1 67
6c72f9f9
JT
68static int
69alphafbsd_pc_in_sigtramp (CORE_ADDR pc, char *func_name)
70{
138e7be5 71 return (pc >= alphafbsd_sigtramp_start && pc < alphafbsd_sigtramp_end);
6c72f9f9
JT
72}
73
138e7be5
MK
74static LONGEST
75alphafbsd_sigtramp_offset (CORE_ADDR pc)
76{
77 return pc - alphafbsd_sigtramp_start;
78}
79
80/* Assuming NEXT_FRAME is for a frame following a BSD sigtramp
81 routine, return the address of the associated sigcontext structure. */
82
83static CORE_ADDR
84alphafbsd_sigcontext_addr (struct frame_info *next_frame)
85{
bda34dc2 86 return frame_unwind_register_unsigned (next_frame, ALPHA_SP_REGNUM) + 24;
138e7be5
MK
87}
88
89/* FreeBSD 5.0-RELEASE or later. */
90
82a4efa1
JT
91static void
92alphafbsd_init_abi (struct gdbarch_info info,
93 struct gdbarch *gdbarch)
94{
95 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
96
baa490c4
RH
97 /* Hook into the DWARF CFI frame unwinder. */
98 alpha_dwarf2_init_abi (info, gdbarch);
99
100 /* Hook into the MDEBUG frame unwinder. */
101 alpha_mdebug_init_abi (info, gdbarch);
102
4b17b389
MK
103 /* FreeBSD/alpha has SVR4-style shared libraries. */
104 set_solib_svr4_fetch_link_map_offsets
105 (gdbarch, svr4_lp64_fetch_link_map_offsets);
106
138e7be5
MK
107 tdep->dynamic_sigtramp_offset = alphafbsd_sigtramp_offset;
108 tdep->sigcontext_addr = alphafbsd_sigcontext_addr;
f2524b93 109 tdep->pc_in_sigtramp = alphafbsd_pc_in_sigtramp;
9823e921 110 tdep->return_in_memory = alphafbsd_return_in_memory;
138e7be5
MK
111 tdep->sc_pc_offset = 288;
112 tdep->sc_regs_offset = 24;
113 tdep->sc_fpregs_offset = 320;
accc6d1f
JT
114
115 tdep->jb_pc = 2;
116 tdep->jb_elt_size = 8;
82a4efa1 117}
138e7be5
MK
118\f
119
120/* Provide a prototype to silence -Wmissing-prototypes. */
121void _initialize_alphafbsd_tdep (void);
82a4efa1
JT
122
123void
124_initialize_alphafbsd_tdep (void)
125{
05816f70 126 gdbarch_register_osabi (bfd_arch_alpha, 0, GDB_OSABI_FREEBSD_ELF,
70f80edf 127 alphafbsd_init_abi);
82a4efa1 128}