1 /* Shared library support for RS/6000 (xcoff) object files, for GDB.
2 Copyright (C) 1991, 1992, 1995, 1996, 1999, 2000, 2001, 2007, 2008, 2009
3 Free Software Foundation, Inc.
4 Contributed by IBM Corporation.
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/>. */
23 #include "xcoffsolib.h"
28 #include "gdb_regex.h"
31 /* If ADDR lies in a shared library, return its name.
32 Note that returned name points to static data whose content is overwritten
36 xcoff_solib_address (CORE_ADDR addr
)
38 static char *buffer
= NULL
;
39 struct vmap
*vp
= vmap
;
41 /* The first vmap entry is for the exec file. */
45 for (vp
= vp
->nxt
; vp
; vp
= vp
->nxt
)
46 if (vp
->tstart
<= addr
&& addr
< vp
->tend
)
49 buffer
= xstrprintf ("%s%s%s%s",
51 *vp
->member
? "(" : "",
53 *vp
->member
? ")" : "");
59 static void solib_info (char *, int);
60 static void sharedlibrary_command (char *pattern
, int from_tty
);
63 solib_info (char *args
, int from_tty
)
65 struct vmap
*vp
= vmap
;
67 /* Check for new shared libraries loaded with load (). */
68 if (! ptid_equal (inferior_ptid
, null_ptid
))
69 xcoff_relocate_symtab (PIDGET (inferior_ptid
));
71 if (vp
== NULL
|| vp
->nxt
== NULL
)
73 printf_unfiltered ("No shared libraries loaded at this time.\n");
77 /* Skip over the first vmap, it is the main program, always loaded. */
81 Text Range Data Range Syms Shared Object Library\n");
83 for (; vp
!= NULL
; vp
= vp
->nxt
)
85 printf_unfiltered ("0x%s-0x%s 0x%s-0x%s %s %s%s%s%s\n",
86 paddr (vp
->tstart
),paddr (vp
->tend
),
87 paddr (vp
->dstart
), paddr (vp
->dend
),
88 vp
->loaded
? "Yes" : "No ",
90 *vp
->member
? "(" : "",
92 *vp
->member
? ")" : "");
97 sharedlibrary_command (char *pattern
, int from_tty
)
101 /* Check for new shared libraries loaded with load (). */
102 if (! ptid_equal (inferior_ptid
, null_ptid
))
103 xcoff_relocate_symtab (PIDGET (inferior_ptid
));
107 char *re_err
= re_comp (pattern
);
110 error (_("Invalid regexp: %s"), re_err
);
113 /* Walk the list of currently loaded shared libraries, and read
114 symbols for any that match the pattern --- or any whose symbols
115 aren't already loaded, if no pattern was given. */
118 int loaded_any_symbols
= 0;
119 struct vmap
*vp
= vmap
;
124 /* skip over the first vmap, it is the main program, always loaded. */
125 for (vp
= vp
->nxt
; vp
; vp
= vp
->nxt
)
127 || re_exec (vp
->name
)
128 || (*vp
->member
&& re_exec (vp
->member
)))
135 printf_unfiltered ("Symbols already loaded for %s\n",
140 if (vmap_add_symbols (vp
))
141 loaded_any_symbols
= 1;
145 if (from_tty
&& pattern
&& ! any_matches
)
147 ("No loaded shared libraries match the pattern `%s'.\n", pattern
);
149 if (loaded_any_symbols
)
151 /* Getting new symbols may change our opinion about what is
153 reinit_frame_cache ();
159 _initialize_xcoffsolib (void)
161 add_com ("sharedlibrary", class_files
, sharedlibrary_command
,
162 _("Load shared object library symbols for files matching REGEXP."));
163 add_info ("sharedlibrary", solib_info
,
164 _("Status of loaded shared object libraries"));
166 add_setshow_boolean_cmd ("auto-solib-add", class_support
,
167 &auto_solib_add
, _("\
168 Set autoloading of shared library symbols."), _("\
169 Show autoloading of shared library symbols."), _("\
170 If \"on\", symbols from all shared object libraries will be loaded\n\
171 automatically when the inferior begins execution, when the dynamic linker\n\
172 informs gdb that a new library has been loaded, or when attaching to the\n\
173 inferior. Otherwise, symbols must be loaded manually, using `sharedlibrary'."),
175 NULL
, /* FIXME: i18n: */
176 &setlist
, &showlist
);