]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/xcoffsolib.c
* gdbarch.sh (target_gdbarch): Remove macro.
[thirdparty/binutils-gdb.git] / gdb / xcoffsolib.c
CommitLineData
c906108c 1/* Shared library support for RS/6000 (xcoff) object files, for GDB.
c5a57081
JB
2 Copyright (C) 1991-1992, 1995-1996, 1999-2001, 2007-2012 Free
3 Software Foundation, Inc.
c906108c
SS
4 Contributed by IBM Corporation.
5
c5aa993b 6 This file is part of GDB.
c906108c 7
c5aa993b
JM
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
a9762ec7 10 the Free Software Foundation; either version 3 of the License, or
c5aa993b 11 (at your option) any later version.
c906108c 12
c5aa993b
JM
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.
c906108c 17
c5aa993b 18 You should have received a copy of the GNU General Public License
a9762ec7 19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c 20
c906108c
SS
21#include "defs.h"
22#include "bfd.h"
23#include "xcoffsolib.h"
24#include "inferior.h"
63f58cc5
PS
25#include "gdbcmd.h"
26#include "symfile.h"
27#include "frame.h"
28#include "gdb_regex.h"
c5aa993b 29
c906108c 30
a8079a9b
PS
31/* If ADDR lies in a shared library, return its name.
32 Note that returned name points to static data whose content is overwritten
33 by each call. */
c906108c
SS
34
35char *
a8079a9b 36xcoff_solib_address (CORE_ADDR addr)
c906108c 37{
a8079a9b 38 static char *buffer = NULL;
c5aa993b
JM
39 struct vmap *vp = vmap;
40
a8079a9b
PS
41 /* The first vmap entry is for the exec file. */
42
43 if (vp == NULL)
44 return NULL;
45 for (vp = vp->nxt; vp; vp = vp->nxt)
c5aa993b
JM
46 if (vp->tstart <= addr && addr < vp->tend)
47 {
a8079a9b 48 xfree (buffer);
b435e160
AC
49 buffer = xstrprintf ("%s%s%s%s",
50 vp->name,
51 *vp->member ? "(" : "",
52 vp->member,
53 *vp->member ? ")" : "");
c906108c 54 return buffer;
c5aa993b 55 }
a8079a9b 56 return NULL;
c906108c
SS
57}
58
a14ed312 59static void solib_info (char *, int);
63f58cc5 60static void sharedlibrary_command (char *pattern, int from_tty);
c906108c
SS
61
62static void
fba45db2 63solib_info (char *args, int from_tty)
c906108c 64{
f5656ead 65 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
c906108c
SS
66 struct vmap *vp = vmap;
67
68 /* Check for new shared libraries loaded with load (). */
39f77062
KB
69 if (! ptid_equal (inferior_ptid, null_ptid))
70 xcoff_relocate_symtab (PIDGET (inferior_ptid));
c906108c
SS
71
72 if (vp == NULL || vp->nxt == NULL)
73 {
c5aa993b 74 printf_unfiltered ("No shared libraries loaded at this time.\n");
c906108c
SS
75 return;
76 }
77
78 /* Skip over the first vmap, it is the main program, always loaded. */
79 vp = vp->nxt;
80
3e43a32a
MS
81 printf_unfiltered ("Text Range Data Range "
82 "Syms Shared Object Library\n");
c906108c
SS
83
84 for (; vp != NULL; vp = vp->nxt)
85 {
d4f3574e 86 printf_unfiltered ("0x%s-0x%s 0x%s-0x%s %s %s%s%s%s\n",
5af949e3
UW
87 phex (vp->tstart, addr_size),
88 phex (vp->tend, addr_size),
89 phex (vp->dstart, addr_size),
90 phex (vp->dend, addr_size),
c906108c 91 vp->loaded ? "Yes" : "No ",
a8079a9b 92 vp->name,
c906108c
SS
93 *vp->member ? "(" : "",
94 vp->member,
a8079a9b 95 *vp->member ? ")" : "");
c906108c
SS
96 }
97}
98
63f58cc5
PS
99static void
100sharedlibrary_command (char *pattern, int from_tty)
c906108c
SS
101{
102 dont_repeat ();
103
104 /* Check for new shared libraries loaded with load (). */
39f77062
KB
105 if (! ptid_equal (inferior_ptid, null_ptid))
106 xcoff_relocate_symtab (PIDGET (inferior_ptid));
63f58cc5
PS
107
108 if (pattern)
109 {
110 char *re_err = re_comp (pattern);
c906108c 111
63f58cc5 112 if (re_err)
8a3fe4f8 113 error (_("Invalid regexp: %s"), re_err);
63f58cc5
PS
114 }
115
116 /* Walk the list of currently loaded shared libraries, and read
117 symbols for any that match the pattern --- or any whose symbols
118 aren't already loaded, if no pattern was given. */
119 {
120 int any_matches = 0;
121 int loaded_any_symbols = 0;
122 struct vmap *vp = vmap;
123
124 if (!vp)
125 return;
126
581e13c1 127 /* skip over the first vmap, it is the main program, always loaded. */
63f58cc5
PS
128 for (vp = vp->nxt; vp; vp = vp->nxt)
129 if (! pattern
130 || re_exec (vp->name)
131 || (*vp->member && re_exec (vp->member)))
132 {
133 any_matches = 1;
134
135 if (vp->loaded)
136 {
137 if (from_tty)
138 printf_unfiltered ("Symbols already loaded for %s\n",
139 vp->name);
140 }
141 else
142 {
143 if (vmap_add_symbols (vp))
144 loaded_any_symbols = 1;
145 }
146 }
147
148 if (from_tty && pattern && ! any_matches)
149 printf_unfiltered
150 ("No loaded shared libraries match the pattern `%s'.\n", pattern);
151
152 if (loaded_any_symbols)
153 {
154 /* Getting new symbols may change our opinion about what is
155 frameless. */
156 reinit_frame_cache ();
157 }
158 }
c906108c
SS
159}
160
e1aca11e
JB
161void _initialize_xcoffsolib (void);
162
c906108c 163void
fb39c8f3 164_initialize_xcoffsolib (void)
c906108c
SS
165{
166 add_com ("sharedlibrary", class_files, sharedlibrary_command,
1bedd215 167 _("Load shared object library symbols for files matching REGEXP."));
c5aa993b 168 add_info ("sharedlibrary", solib_info,
1bedd215 169 _("Status of loaded shared object libraries"));
63f58cc5 170
5bf193a2
AC
171 add_setshow_boolean_cmd ("auto-solib-add", class_support,
172 &auto_solib_add, _("\
173Set autoloading of shared library symbols."), _("\
174Show autoloading of shared library symbols."), _("\
b7209cb4
FF
175If \"on\", symbols from all shared object libraries will be loaded\n\
176automatically when the inferior begins execution, when the dynamic linker\n\
177informs gdb that a new library has been loaded, or when attaching to the\n\
3e43a32a
MS
178inferior. Otherwise, symbols must be loaded manually, using \
179`sharedlibrary'."),
5bf193a2
AC
180 NULL,
181 NULL, /* FIXME: i18n: */
182 &setlist, &showlist);
c906108c 183}