* alpha-tdep.c (alpha_supply_int_regs, alpha_fill_int_regs): New.
[deliverable/binutils-gdb.git] / gdb / alphafbsd-tdep.c
CommitLineData
efd59e3f 1/* Target-dependent code for FreeBSD/Alpha.
4be87837 2 Copyright 2001, 2002, 2003 Free Software Foundation, Inc.
efd59e3f
MK
3
4 This file is part of GDB.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
20
21#include "defs.h"
22#include "value.h"
4be87837 23#include "osabi.h"
efd59e3f 24
82a4efa1
JT
25#include "alpha-tdep.h"
26
27static int
efd59e3f
MK
28alphafbsd_use_struct_convention (int gcc_p, struct type *type)
29{
30 enum type_code code;
31 int i;
32
33 /* All aggregate types that won't fit in a register must be returned
34 in memory. */
b1e29e33 35 if (TYPE_LENGTH (type) > DEPRECATED_REGISTER_SIZE)
efd59e3f
MK
36 return 1;
37
38 /* The only aggregate types that can be returned in a register are
39 structs and unions. Arrays must be returned in memory. */
40 code = TYPE_CODE (type);
41 if (code != TYPE_CODE_STRUCT && code != TYPE_CODE_UNION)
42 return 1;
43
44 /* We need to check if this struct/union is "integer" like. For
45 this to be true, the offset of each adressable subfield must be
46 zero. Note that bit fields are not addressable. */
47 for (i = 0; i < TYPE_NFIELDS (type); i++)
48 {
49 /* If the field bitsize is non-zero, it isn't adressable. */
50 if (TYPE_FIELD_BITPOS (type, i) != 0
51 && TYPE_FIELD_BITSIZE (type, i) == 0)
52 return 1;
53 }
54
55 return 0;
56}
82a4efa1 57
6c72f9f9
JT
58static int
59alphafbsd_pc_in_sigtramp (CORE_ADDR pc, char *func_name)
60{
61 /* FIXME */
62 return 0;
63}
64
82a4efa1
JT
65static void
66alphafbsd_init_abi (struct gdbarch_info info,
67 struct gdbarch *gdbarch)
68{
69 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
70
6c72f9f9
JT
71 set_gdbarch_pc_in_sigtramp (gdbarch, alphafbsd_pc_in_sigtramp);
72
82a4efa1 73 set_gdbarch_use_struct_convention (gdbarch, alphafbsd_use_struct_convention);
accc6d1f
JT
74
75 tdep->jb_pc = 2;
76 tdep->jb_elt_size = 8;
82a4efa1
JT
77}
78
79void
80_initialize_alphafbsd_tdep (void)
81{
05816f70 82 gdbarch_register_osabi (bfd_arch_alpha, 0, GDB_OSABI_FREEBSD_ELF,
70f80edf 83 alphafbsd_init_abi);
82a4efa1 84}
This page took 0.199286 seconds and 4 git commands to generate.