* remote.c (remote_start_remote): If the solib list is global,
[external/binutils.git] / gdb / i386-dicos-tdep.c
1 /* Target-dependent code for DICOS running on i386's, for GDB.
2
3    Copyright (C) 2008 Free Software Foundation, Inc.
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 3 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, see <http://www.gnu.org/licenses/>.  */
19
20 #include "defs.h"
21 #include "osabi.h"
22 #include "gdb_string.h"
23 #include "solib.h"
24 #include "solib-target.h"
25 #include "inferior.h"
26
27 static CORE_ADDR
28 i386_dicos_push_dummy_code (struct gdbarch *gdbarch,
29                             CORE_ADDR sp, CORE_ADDR funaddr,
30                             struct value **args, int nargs,
31                             struct type *value_type,
32                             CORE_ADDR *real_pc, CORE_ADDR *bp_addr,
33                             struct regcache *regcache)
34 {
35   int bplen;
36   CORE_ADDR bppc = sp;
37
38   gdbarch_breakpoint_from_pc (gdbarch, &bppc, &bplen);
39   *bp_addr = sp - bplen;
40   *real_pc = funaddr;
41
42   return *bp_addr;
43 }
44
45 static void
46 i386_dicos_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
47 {
48   struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
49
50   set_solib_ops (gdbarch, &solib_target_so_ops);
51
52   /* Every process, although has its own address space, sees the same
53      list of shared libraries.  */
54   set_gdbarch_has_global_solist (gdbarch, 1);
55
56   /* There's no (standard definition of) entry point or a guaranteed
57      text location we could find with a symbol where to place the call
58      dummy, so we put it on the stack.  */
59   set_gdbarch_call_dummy_location (gdbarch, ON_STACK);
60   set_gdbarch_push_dummy_code (gdbarch, i386_dicos_push_dummy_code);
61 }
62
63 /* Look in the elf symbol table of ABFD for a symbol named WANTED.
64    Return true if found.  */
65 static int
66 i386_dicos_bfd_has_symbol_p (bfd *abfd, const char *wanted)
67 {
68   long storage_needed;
69   int ret = 0;
70   asymbol **symbol_table = NULL;
71
72   storage_needed = bfd_get_symtab_upper_bound (abfd);
73   if (storage_needed < 0)
74     {
75       warning (_("Can't read elf symbols from %s: %s"), bfd_get_filename (abfd),
76                bfd_errmsg (bfd_get_error ()));
77       return 0;
78     }
79
80   if (storage_needed > 0)
81     {
82       long i, symcount;
83
84       symbol_table = xmalloc (storage_needed);
85       symcount = bfd_canonicalize_symtab (abfd, symbol_table);
86
87       if (symcount < 0)
88         warning (_("Can't read elf symbols from %s: %s"),
89                  bfd_get_filename (abfd),
90                  bfd_errmsg (bfd_get_error ()));
91       else
92         {
93           for (i = 0; i < symcount; i++)
94             {
95               asymbol *sym = symbol_table[i];
96               if (sym->name != NULL
97                   && wanted[0] == sym->name[0]
98                   && strcmp (wanted + 1, sym->name + 1) == 0)
99                 {
100                   ret = 1;
101                   break;
102                 }
103             }
104         }
105     }
106
107   xfree (symbol_table);
108   return ret;
109 }
110
111 static enum gdb_osabi
112 i386_dicos_osabi_sniffer (bfd *abfd)
113 {
114   char *target_name = bfd_get_target (abfd);
115
116   /* DICOS debug info files don't have a .note.ABI-tag marker or
117      something similar.  We do know there's always a "header" section
118      of 36 bytes, and there's always a "Dicos_loadModuleInfo" symbol
119      defined.  Look for the section first, as that should be
120      cheaper.  */
121   if (strcmp (target_name, "elf32-i386") == 0)
122     {
123       asection *section = bfd_get_section_by_name (abfd, "header");
124       if (section
125           && bfd_section_size (abfd, section) == 36
126           && i386_dicos_bfd_has_symbol_p (abfd, "Dicos_loadModuleInfo"))
127         return GDB_OSABI_DICOS;
128     }
129
130   return GDB_OSABI_UNKNOWN;
131 }
132
133 /* Provide a prototype to silence -Wmissing-prototypes.  */
134 void _initialize_i386_dicos_tdep (void);
135
136 void
137 _initialize_i386_dicos_tdep (void)
138 {
139   gdbarch_register_osabi_sniffer (bfd_arch_i386, bfd_target_elf_flavour,
140                                   i386_dicos_osabi_sniffer);
141
142   gdbarch_register_osabi (bfd_arch_i386, 0, GDB_OSABI_DICOS,
143                           i386_dicos_init_abi);
144 }