gdb:
[deliverable/binutils-gdb.git] / gdb / blockframe.c
CommitLineData
7cc19214
AC
1/* Get info from stack frames; convert between frames, blocks,
2 functions and pc values.
3
6aba47ca 4 Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995,
0fb0cc75 5 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2007, 2008, 2009
26b0da32 6 Free Software Foundation, Inc.
c906108c 7
c5aa993b 8 This file is part of GDB.
c906108c 9
c5aa993b
JM
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
a9762ec7 12 the Free Software Foundation; either version 3 of the License, or
c5aa993b 13 (at your option) any later version.
c906108c 14
c5aa993b
JM
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
c906108c 19
c5aa993b 20 You should have received a copy of the GNU General Public License
a9762ec7 21 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
22
23#include "defs.h"
24#include "symtab.h"
25#include "bfd.h"
c906108c
SS
26#include "objfiles.h"
27#include "frame.h"
28#include "gdbcore.h"
7157eed4
UW
29#include "value.h"
30#include "target.h"
31#include "inferior.h"
c906108c 32#include "annotate.h"
4e052eda 33#include "regcache.h"
4f460812 34#include "gdb_assert.h"
9c1412c1 35#include "dummy-frame.h"
51603483
DJ
36#include "command.h"
37#include "gdbcmd.h"
fe898f56 38#include "block.h"
c906108c 39
51603483 40/* Prototypes for exported functions. */
c5aa993b 41
51603483 42void _initialize_blockframe (void);
c906108c 43
c906108c 44/* Return the innermost lexical block in execution
ae767bfb
JB
45 in a specified stack frame. The frame address is assumed valid.
46
47 If ADDR_IN_BLOCK is non-zero, set *ADDR_IN_BLOCK to the exact code
48 address we used to choose the block. We use this to find a source
49 line, to decide which macro definitions are in scope.
50
51 The value returned in *ADDR_IN_BLOCK isn't necessarily the frame's
52 PC, and may not really be a valid PC at all. For example, in the
53 caller of a function declared to never return, the code at the
54 return address will never be reached, so the call instruction may
55 be the very last instruction in the block. So the address we use
56 to choose the block is actually one byte before the return address
57 --- hopefully pointing us at the call instruction, or its delay
58 slot instruction. */
c906108c
SS
59
60struct block *
ae767bfb 61get_frame_block (struct frame_info *frame, CORE_ADDR *addr_in_block)
c906108c 62{
c4a09524 63 const CORE_ADDR pc = get_frame_address_in_block (frame);
ae767bfb
JB
64
65 if (addr_in_block)
66 *addr_in_block = pc;
67
c906108c
SS
68 return block_for_pc (pc);
69}
70
c906108c 71CORE_ADDR
fba45db2 72get_pc_function_start (CORE_ADDR pc)
c906108c 73{
2cdd89cb
MK
74 struct block *bl;
75 struct minimal_symbol *msymbol;
c906108c 76
2cdd89cb
MK
77 bl = block_for_pc (pc);
78 if (bl)
c906108c 79 {
7f0df278 80 struct symbol *symbol = block_linkage_function (bl);
2cdd89cb
MK
81
82 if (symbol)
83 {
84 bl = SYMBOL_BLOCK_VALUE (symbol);
85 return BLOCK_START (bl);
86 }
c906108c 87 }
2cdd89cb
MK
88
89 msymbol = lookup_minimal_symbol_by_pc (pc);
90 if (msymbol)
c906108c 91 {
2cdd89cb
MK
92 CORE_ADDR fstart = SYMBOL_VALUE_ADDRESS (msymbol);
93
94 if (find_pc_section (fstart))
95 return fstart;
c906108c 96 }
2cdd89cb
MK
97
98 return 0;
c906108c
SS
99}
100
101/* Return the symbol for the function executing in frame FRAME. */
102
103struct symbol *
fba45db2 104get_frame_function (struct frame_info *frame)
c906108c 105{
52f0bd74 106 struct block *bl = get_frame_block (frame, 0);
c906108c
SS
107 if (bl == 0)
108 return 0;
7f0df278 109 return block_linkage_function (bl);
c906108c
SS
110}
111\f
112
c906108c
SS
113/* Return the function containing pc value PC in section SECTION.
114 Returns 0 if function is not known. */
115
116struct symbol *
714835d5 117find_pc_sect_function (CORE_ADDR pc, struct obj_section *section)
c906108c 118{
52f0bd74 119 struct block *b = block_for_pc_sect (pc, section);
c906108c
SS
120 if (b == 0)
121 return 0;
7f0df278 122 return block_linkage_function (b);
c906108c
SS
123}
124
125/* Return the function containing pc value PC.
126 Returns 0 if function is not known. Backward compatibility, no section */
127
128struct symbol *
fba45db2 129find_pc_function (CORE_ADDR pc)
c906108c
SS
130{
131 return find_pc_sect_function (pc, find_pc_mapped_section (pc));
132}
133
134/* These variables are used to cache the most recent result
135 * of find_pc_partial_function. */
136
c5aa993b
JM
137static CORE_ADDR cache_pc_function_low = 0;
138static CORE_ADDR cache_pc_function_high = 0;
139static char *cache_pc_function_name = 0;
714835d5 140static struct obj_section *cache_pc_function_section = NULL;
c906108c
SS
141
142/* Clear cache, e.g. when symbol table is discarded. */
143
144void
fba45db2 145clear_pc_function_cache (void)
c906108c
SS
146{
147 cache_pc_function_low = 0;
148 cache_pc_function_high = 0;
c5aa993b 149 cache_pc_function_name = (char *) 0;
c906108c
SS
150 cache_pc_function_section = NULL;
151}
152
153/* Finds the "function" (text symbol) that is smaller than PC but
154 greatest of all of the potential text symbols in SECTION. Sets
155 *NAME and/or *ADDRESS conditionally if that pointer is non-null.
156 If ENDADDR is non-null, then set *ENDADDR to be the end of the
157 function (exclusive), but passing ENDADDR as non-null means that
158 the function might cause symbols to be read. This function either
159 succeeds or fails (not halfway succeeds). If it succeeds, it sets
160 *NAME, *ADDRESS, and *ENDADDR to real information and returns 1.
161 If it fails, it sets *NAME, *ADDRESS, and *ENDADDR to zero and
162 returns 0. */
163
73912b9b
AC
164/* Backward compatibility, no section argument. */
165
c906108c 166int
73912b9b
AC
167find_pc_partial_function (CORE_ADDR pc, char **name, CORE_ADDR *address,
168 CORE_ADDR *endaddr)
c906108c 169{
714835d5 170 struct obj_section *section;
c906108c 171 struct partial_symtab *pst;
c5aa993b 172 struct symbol *f;
c906108c
SS
173 struct minimal_symbol *msymbol;
174 struct partial_symbol *psb;
c906108c
SS
175 int i;
176 CORE_ADDR mapped_pc;
177
73912b9b
AC
178 /* To ensure that the symbol returned belongs to the correct setion
179 (and that the last [random] symbol from the previous section
180 isn't returned) try to find the section containing PC. First try
181 the overlay code (which by default returns NULL); and second try
182 the normal section code (which almost always succeeds). */
183 section = find_pc_overlay (pc);
184 if (section == NULL)
714835d5 185 section = find_pc_section (pc);
73912b9b 186
c906108c
SS
187 mapped_pc = overlay_mapped_address (pc, section);
188
247055de
MK
189 if (mapped_pc >= cache_pc_function_low
190 && mapped_pc < cache_pc_function_high
191 && section == cache_pc_function_section)
c906108c
SS
192 goto return_cached_value;
193
c906108c
SS
194 msymbol = lookup_minimal_symbol_by_pc_section (mapped_pc, section);
195 pst = find_pc_sect_psymtab (mapped_pc, section);
196 if (pst)
197 {
198 /* Need to read the symbols to get a good value for the end address. */
199 if (endaddr != NULL && !pst->readin)
200 {
201 /* Need to get the terminal in case symbol-reading produces
202 output. */
203 target_terminal_ours_for_output ();
204 PSYMTAB_TO_SYMTAB (pst);
205 }
206
207 if (pst->readin)
208 {
209 /* Checking whether the msymbol has a larger value is for the
210 "pathological" case mentioned in print_frame_info. */
211 f = find_pc_sect_function (mapped_pc, section);
212 if (f != NULL
213 && (msymbol == NULL
214 || (BLOCK_START (SYMBOL_BLOCK_VALUE (f))
215 >= SYMBOL_VALUE_ADDRESS (msymbol))))
216 {
c5aa993b
JM
217 cache_pc_function_low = BLOCK_START (SYMBOL_BLOCK_VALUE (f));
218 cache_pc_function_high = BLOCK_END (SYMBOL_BLOCK_VALUE (f));
3567439c 219 cache_pc_function_name = SYMBOL_LINKAGE_NAME (f);
c906108c
SS
220 cache_pc_function_section = section;
221 goto return_cached_value;
222 }
223 }
224 else
225 {
226 /* Now that static symbols go in the minimal symbol table, perhaps
227 we could just ignore the partial symbols. But at least for now
228 we use the partial or minimal symbol, whichever is larger. */
229 psb = find_pc_sect_psymbol (pst, mapped_pc, section);
230
231 if (psb
232 && (msymbol == NULL ||
233 (SYMBOL_VALUE_ADDRESS (psb)
234 >= SYMBOL_VALUE_ADDRESS (msymbol))))
235 {
236 /* This case isn't being cached currently. */
237 if (address)
238 *address = SYMBOL_VALUE_ADDRESS (psb);
239 if (name)
3567439c 240 *name = SYMBOL_LINKAGE_NAME (psb);
c906108c
SS
241 /* endaddr non-NULL can't happen here. */
242 return 1;
243 }
244 }
245 }
246
247 /* Not in the normal symbol tables, see if the pc is in a known section.
248 If it's not, then give up. This ensures that anything beyond the end
249 of the text seg doesn't appear to be part of the last function in the
250 text segment. */
251
714835d5 252 if (!section)
c906108c
SS
253 msymbol = NULL;
254
255 /* Must be in the minimal symbol table. */
256 if (msymbol == NULL)
257 {
258 /* No available symbol. */
259 if (name != NULL)
260 *name = 0;
261 if (address != NULL)
262 *address = 0;
263 if (endaddr != NULL)
264 *endaddr = 0;
265 return 0;
266 }
267
c5aa993b 268 cache_pc_function_low = SYMBOL_VALUE_ADDRESS (msymbol);
3567439c 269 cache_pc_function_name = SYMBOL_LINKAGE_NAME (msymbol);
c906108c
SS
270 cache_pc_function_section = section;
271
29e8a844
DJ
272 /* If the minimal symbol has a size, use it for the cache.
273 Otherwise use the lesser of the next minimal symbol in the same
274 section, or the end of the section, as the end of the
275 function. */
c5aa993b 276
29e8a844
DJ
277 if (MSYMBOL_SIZE (msymbol) != 0)
278 cache_pc_function_high = cache_pc_function_low + MSYMBOL_SIZE (msymbol);
279 else
c906108c 280 {
29e8a844
DJ
281 /* Step over other symbols at this same address, and symbols in
282 other sections, to find the next symbol in this section with
283 a different address. */
c906108c 284
3567439c 285 for (i = 1; SYMBOL_LINKAGE_NAME (msymbol + i) != NULL; i++)
29e8a844
DJ
286 {
287 if (SYMBOL_VALUE_ADDRESS (msymbol + i) != SYMBOL_VALUE_ADDRESS (msymbol)
714835d5 288 && SYMBOL_OBJ_SECTION (msymbol + i) == SYMBOL_OBJ_SECTION (msymbol))
29e8a844
DJ
289 break;
290 }
291
3567439c 292 if (SYMBOL_LINKAGE_NAME (msymbol + i) != NULL
714835d5 293 && SYMBOL_VALUE_ADDRESS (msymbol + i) < obj_section_endaddr (section))
29e8a844
DJ
294 cache_pc_function_high = SYMBOL_VALUE_ADDRESS (msymbol + i);
295 else
296 /* We got the start address from the last msymbol in the objfile.
297 So the end address is the end of the section. */
714835d5 298 cache_pc_function_high = obj_section_endaddr (section);
29e8a844 299 }
c906108c 300
247055de 301 return_cached_value:
c906108c
SS
302
303 if (address)
304 {
305 if (pc_in_unmapped_range (pc, section))
c5aa993b 306 *address = overlay_unmapped_address (cache_pc_function_low, section);
c906108c 307 else
c5aa993b 308 *address = cache_pc_function_low;
c906108c 309 }
c5aa993b 310
c906108c
SS
311 if (name)
312 *name = cache_pc_function_name;
313
314 if (endaddr)
315 {
316 if (pc_in_unmapped_range (pc, section))
c5aa993b 317 {
c906108c
SS
318 /* Because the high address is actually beyond the end of
319 the function (and therefore possibly beyond the end of
247055de
MK
320 the overlay), we must actually convert (high - 1) and
321 then add one to that. */
c906108c 322
c5aa993b 323 *endaddr = 1 + overlay_unmapped_address (cache_pc_function_high - 1,
c906108c 324 section);
c5aa993b 325 }
c906108c 326 else
c5aa993b 327 *endaddr = cache_pc_function_high;
c906108c
SS
328 }
329
330 return 1;
331}
332
c906108c
SS
333/* Return the innermost stack frame executing inside of BLOCK,
334 or NULL if there is no such frame. If BLOCK is NULL, just return NULL. */
335
336struct frame_info *
fba45db2 337block_innermost_frame (struct block *block)
c906108c
SS
338{
339 struct frame_info *frame;
52f0bd74
AC
340 CORE_ADDR start;
341 CORE_ADDR end;
42f99ac2 342 CORE_ADDR calling_pc;
c906108c
SS
343
344 if (block == NULL)
345 return NULL;
346
347 start = BLOCK_START (block);
348 end = BLOCK_END (block);
349
631b0ed0
JB
350 frame = get_current_frame ();
351 while (frame != NULL)
c906108c 352 {
c4a09524 353 calling_pc = get_frame_address_in_block (frame);
42f99ac2 354 if (calling_pc >= start && calling_pc < end)
c906108c 355 return frame;
631b0ed0
JB
356
357 frame = get_prev_frame (frame);
c906108c 358 }
631b0ed0
JB
359
360 return NULL;
c906108c 361}
This page took 0.565651 seconds and 4 git commands to generate.