2003-11-20 Andrew Cagney <cagney@redhat.com>
[deliverable/binutils-gdb.git] / gdb / i386-sol2-tdep.c
CommitLineData
8201327c 1/* Target-dependent code for Solaris x86.
1e698235 2 Copyright 2002, 2003 Free Software Foundation, Inc.
8201327c
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"
52e9098c 22#include "value.h"
4be87837 23#include "osabi.h"
8201327c
MK
24
25#include "i386-tdep.h"
26
27static int
28i386_sol2_pc_in_sigtramp (CORE_ADDR pc, char *name)
29{
30 /* Signal handler frames under Solaris 2 are recognized by a return
31 address of 0xffffffff. */
32 return (pc == 0xffffffff);
33}
34
35/* Solaris 2. */
36
37static void
38i386_sol2_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
39{
40 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
41
42 /* Solaris is SVR4-based. */
43 i386_svr4_init_abi (info, gdbarch);
44
acd5c798 45 /* Signal trampolines are slightly different from SVR4. */
8201327c 46 set_gdbarch_pc_in_sigtramp (gdbarch, i386_sol2_pc_in_sigtramp);
8201327c
MK
47}
48\f
49
6e157172
MK
50static enum gdb_osabi
51i386_sol2_osabi_sniffer (bfd *abfd)
52{
53 /* If we have a section named .SUNW_version, then it is almost
54 certainly Solaris 2. */
55 if (bfd_get_section_by_name (abfd, ".SUNW_version"))
56 return GDB_OSABI_SOLARIS;
57
58 return GDB_OSABI_UNKNOWN;
59}
60
8201327c
MK
61/* Provide a prototype to silence -Wmissing-prototypes. */
62void _initialize_i386_sol2_tdep (void);
63
64void
65_initialize_i386_sol2_tdep (void)
66{
0c52bd59 67 /* Register an ELF OS ABI sniffer for Solaris 2 binaries. */
6e157172
MK
68 gdbarch_register_osabi_sniffer (bfd_arch_i386, bfd_target_elf_flavour,
69 i386_sol2_osabi_sniffer);
70
05816f70 71 gdbarch_register_osabi (bfd_arch_i386, 0, GDB_OSABI_SOLARIS,
8201327c
MK
72 i386_sol2_init_abi);
73}
This page took 0.311253 seconds and 4 git commands to generate.