* config/tc-m68hc11.c (build_jump_insn): Allocate worst case storage
[deliverable/binutils-gdb.git] / gdb / solib.h
CommitLineData
c906108c 1/* Shared library declarations for GDB, the GNU Debugger.
b6ba6518
KB
2 Copyright 1992, 1993, 1995, 1998, 1999, 2000, 2001
3 Free Software Foundation, Inc.
c906108c 4
c5aa993b 5 This file is part of GDB.
c906108c 6
c5aa993b
JM
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 2 of the License, or
10 (at your option) any later version.
c906108c 11
c5aa993b
JM
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.
c906108c 16
c5aa993b
JM
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
c906108c 21
104c1213 22/* Forward decl's for prototypes */
c906108c 23struct target_ops;
c906108c
SS
24
25/* Called when we free all symtabs, to free the shared library information
26 as well. */
27
28#define CLEAR_SOLIB clear_solib
29
a14ed312 30extern void clear_solib (void);
c906108c
SS
31
32/* Called to add symbols from a shared library to gdb's symbol table. */
33
34#define SOLIB_ADD(filename, from_tty, targ) \
35 solib_add (filename, from_tty, targ)
36
a14ed312 37extern void solib_add (char *, int, struct target_ops *);
c906108c
SS
38
39/* Function to be called when the inferior starts up, to discover the names
40 of shared libraries that are dynamically linked, the base addresses to
41 which they are linked, and sufficient information to read in their symbols
42 at a later time. */
43
44#define SOLIB_CREATE_INFERIOR_HOOK(PID) solib_create_inferior_hook()
45
46/* Function to be called to remove the connection between debugger and
47 dynamic linker that was established by SOLIB_CREATE_INFERIOR_HOOK.
48 (This operation does not remove shared library information from
49 the debugger, as CLEAR_SOLIB does.)
50
51 This functionality is presently not implemented for this target.
c5aa993b 52 */
c906108c
SS
53#define SOLIB_REMOVE_INFERIOR_HOOK(PID) (0)
54
a14ed312 55extern void solib_create_inferior_hook (void); /* solib.c */
c906108c
SS
56
57/* This function is called by the "catch load" command. It allows
58 the debugger to be notified by the dynamic linker when a specified
59 library file (or any library file, if filename is NULL) is loaded.
60
61 Presently, this functionality is not implemented.
c5aa993b 62 */
c906108c
SS
63#define SOLIB_CREATE_CATCH_LOAD_HOOK(pid,tempflag,filename,cond_string) \
64 error("catch of library loads/unloads not yet implemented on this platform")
65
66/* This function is called by the "catch unload" command. It allows
67 the debugger to be notified by the dynamic linker when a specified
68 library file (or any library file, if filename is NULL) is unloaded.
69
70 Presently, this functionality is not implemented.
c5aa993b 71 */
c906108c
SS
72#define SOLIB_CREATE_CATCH_UNLOAD_HOOK(pid,tempflag,filename,cond_string) \
73 error("catch of library loads/unloads not yet implemented on this platform")
74
75/* This function returns TRUE if the dynamic linker has just reported
76 a load of a library.
77
78 This function must be used only when the inferior has stopped in
79 the dynamic linker hook, or undefined results are guaranteed.
80
81 Presently, this functionality is not implemented.
c5aa993b 82 */
c906108c
SS
83
84/*
c5aa993b
JM
85 #define SOLIB_HAVE_LOAD_EVENT(pid) \
86 error("catch of library loads/unloads not yet implemented on this platform")
87 */
c906108c
SS
88
89#define SOLIB_HAVE_LOAD_EVENT(pid) \
90(0)
91
92/* This function returns a pointer to the string representation of the
93 pathname of the dynamically-linked library that has just been loaded.
94
95 This function must be used only when SOLIB_HAVE_LOAD_EVENT is TRUE,
96 or undefined results are guaranteed.
97
98 This string's contents are only valid immediately after the inferior
99 has stopped in the dynamic linker hook, and becomes invalid as soon
100 as the inferior is continued. Clients should make a copy of this
101 string if they wish to continue the inferior and then access the string.
102
103 Presently, this functionality is not implemented.
c5aa993b 104 */
c906108c
SS
105
106/*
c5aa993b 107 #define SOLIB_LOADED_LIBRARY_PATHNAME(pid) \
c906108c 108 error("catch of library loads/unloads not yet implemented on this platform")
c5aa993b 109 */
c906108c
SS
110
111#define SOLIB_LOADED_LIBRARY_PATHNAME(pid) \
112(0)
113
114/* This function returns TRUE if the dynamic linker has just reported
115 an unload of a library.
116
117 This function must be used only when the inferior has stopped in
118 the dynamic linker hook, or undefined results are guaranteed.
119
120 Presently, this functionality is not implemented.
c5aa993b 121 */
c906108c 122/*
c5aa993b 123 #define SOLIB_HAVE_UNLOAD_EVENT(pid) \
c906108c 124 error("catch of library loads/unloads not yet implemented on this platform")
c5aa993b 125 */
c906108c
SS
126
127#define SOLIB_HAVE_UNLOAD_EVENT(pid) \
128(0)
129
130/* This function returns a pointer to the string representation of the
131 pathname of the dynamically-linked library that has just been unloaded.
132
133 This function must be used only when SOLIB_HAVE_UNLOAD_EVENT is TRUE,
134 or undefined results are guaranteed.
135
136 This string's contents are only valid immediately after the inferior
137 has stopped in the dynamic linker hook, and becomes invalid as soon
138 as the inferior is continued. Clients should make a copy of this
139 string if they wish to continue the inferior and then access the string.
140
141 Presently, this functionality is not implemented.
c5aa993b 142 */
c906108c 143/*
c5aa993b 144 #define SOLIB_UNLOADED_LIBRARY_PATHNAME(pid) \
c906108c 145 error("catch of library loads/unloads not yet implemented on this platform")
c5aa993b 146 */
c906108c
SS
147
148#define SOLIB_UNLOADED_LIBRARY_PATHNAME(pid) \
149(0)
150
151/* This function returns TRUE if pc is the address of an instruction that
152 lies within the dynamic linker (such as the event hook, or the dld
153 itself).
154
155 This function must be used only when a dynamic linker event has been
156 caught, and the inferior is being stepped out of the hook, or undefined
157 results are guaranteed.
158
159 Presently, this functionality is not implemented.
c5aa993b 160 */
c906108c
SS
161
162/*
c5aa993b 163 #define SOLIB_IN_DYNAMIC_LINKER(pid,pc) \
c906108c 164 error("catch of library loads/unloads not yet implemented on this platform")
c5aa993b 165 */
c906108c
SS
166
167#define SOLIB_IN_DYNAMIC_LINKER(pid,pc) \
168(0)
169
170/* This function must be called when the inferior is killed, and the program
171 restarted. This is not the same as CLEAR_SOLIB, in that it doesn't discard
172 any symbol tables.
173
174 Presently, this functionality is not implemented.
c5aa993b 175 */
c906108c
SS
176#define SOLIB_RESTART() \
177 (0)
178
179/* If we can't set a breakpoint, and it's in a shared library, just
180 disable it. */
181
182#define DISABLE_UNSETTABLE_BREAK(addr) (solib_address(addr) != NULL)
183
a14ed312 184extern char *solib_address (CORE_ADDR); /* solib.c */
c906108c
SS
185
186/* If ADDR lies in a shared library, return its name. */
187
188#define PC_SOLIB(addr) solib_address (addr)
189
c906108c 190/* Return 1 if PC lies in the dynamic symbol resolution code of the
d7fa2ae2 191 run time loader. */
c906108c 192
d7fa2ae2 193#define IN_SOLIB_DYNSYM_RESOLVE_CODE(pc) in_solib_dynsym_resolve_code (pc)
c906108c 194
d7fa2ae2 195extern int in_solib_dynsym_resolve_code (CORE_ADDR); /* solib.c */
1dd1751e 196
cb0ba49e
MS
197/* Discard symbols that were auto-loaded from shared libraries. */
198
183a2f1a 199extern void no_shared_libraries (char *ignored, int from_tty);
This page took 0.165511 seconds and 4 git commands to generate.