1 /* Target-dependent code for FreeBSD/alpha.
3 Copyright (C) 2001, 2002, 2003, 2006, 2007, 2008, 2009, 2010, 2011
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 3 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, see <http://www.gnu.org/licenses/>. */
25 #include "alpha-tdep.h"
26 #include "solib-svr4.h"
29 alphafbsd_return_in_memory (struct type
*type
)
34 /* All aggregate types that won't fit in a register must be returned
36 if (TYPE_LENGTH (type
) > ALPHA_REGISTER_SIZE
)
39 /* The only aggregate types that can be returned in a register are
40 structs and unions. Arrays must be returned in memory. */
41 code
= TYPE_CODE (type
);
42 if (code
!= TYPE_CODE_STRUCT
&& code
!= TYPE_CODE_UNION
)
45 /* We need to check if this struct/union is "integer" like. For
46 this to be true, the offset of each adressable subfield must be
47 zero. Note that bit fields are not addressable. */
48 for (i
= 0; i
< TYPE_NFIELDS (type
); i
++)
50 /* If the field bitsize is non-zero, it isn't adressable. */
51 if (TYPE_FIELD_BITPOS (type
, i
) != 0
52 && TYPE_FIELD_BITSIZE (type
, i
) == 0)
60 /* Support for signal handlers. */
62 /* Return whether PC is in a BSD sigtramp routine. */
64 CORE_ADDR alphafbsd_sigtramp_start
= 0x11ffff68;
65 CORE_ADDR alphafbsd_sigtramp_end
= 0x11ffffe0;
68 alphafbsd_pc_in_sigtramp (struct gdbarch
*gdbarch
,
69 CORE_ADDR pc
, char *func_name
)
71 return (pc
>= alphafbsd_sigtramp_start
&& pc
< alphafbsd_sigtramp_end
);
75 alphafbsd_sigtramp_offset (struct gdbarch
*gdbarch
, CORE_ADDR pc
)
77 return pc
- alphafbsd_sigtramp_start
;
80 /* Assuming THIS_FRAME is the frame of a BSD sigtramp routine,
81 return the address of the associated sigcontext structure. */
84 alphafbsd_sigcontext_addr (struct frame_info
*this_frame
)
86 return get_frame_register_unsigned (this_frame
, ALPHA_SP_REGNUM
) + 24;
89 /* FreeBSD 5.0-RELEASE or later. */
92 alphafbsd_init_abi (struct gdbarch_info info
,
93 struct gdbarch
*gdbarch
)
95 struct gdbarch_tdep
*tdep
= gdbarch_tdep (gdbarch
);
97 /* Hook into the DWARF CFI frame unwinder. */
98 alpha_dwarf2_init_abi (info
, gdbarch
);
100 /* Hook into the MDEBUG frame unwinder. */
101 alpha_mdebug_init_abi (info
, gdbarch
);
103 /* FreeBSD/alpha has SVR4-style shared libraries. */
104 set_solib_svr4_fetch_link_map_offsets
105 (gdbarch
, svr4_lp64_fetch_link_map_offsets
);
107 tdep
->dynamic_sigtramp_offset
= alphafbsd_sigtramp_offset
;
108 tdep
->sigcontext_addr
= alphafbsd_sigcontext_addr
;
109 tdep
->pc_in_sigtramp
= alphafbsd_pc_in_sigtramp
;
110 tdep
->return_in_memory
= alphafbsd_return_in_memory
;
111 tdep
->sc_pc_offset
= 288;
112 tdep
->sc_regs_offset
= 24;
113 tdep
->sc_fpregs_offset
= 320;
116 tdep
->jb_elt_size
= 8;
120 /* Provide a prototype to silence -Wmissing-prototypes. */
121 void _initialize_alphafbsd_tdep (void);
124 _initialize_alphafbsd_tdep (void)
126 gdbarch_register_osabi (bfd_arch_alpha
, 0, GDB_OSABI_FREEBSD_ELF
,