1 /* Get info from stack frames; convert between frames, blocks,
2 functions and pc values.
4 Copyright (C) 1986-2018 Free Software Foundation, Inc.
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/>. */
32 #include "dummy-frame.h"
36 #include "inline-frame.h"
38 /* Return the innermost lexical block in execution in a specified
39 stack frame. The frame address is assumed valid.
41 If ADDR_IN_BLOCK is non-zero, set *ADDR_IN_BLOCK to the exact code
42 address we used to choose the block. We use this to find a source
43 line, to decide which macro definitions are in scope.
45 The value returned in *ADDR_IN_BLOCK isn't necessarily the frame's
46 PC, and may not really be a valid PC at all. For example, in the
47 caller of a function declared to never return, the code at the
48 return address will never be reached, so the call instruction may
49 be the very last instruction in the block. So the address we use
50 to choose the block is actually one byte before the return address
51 --- hopefully pointing us at the call instruction, or its delay
55 get_frame_block (struct frame_info *frame, CORE_ADDR *addr_in_block)
58 const struct block *bl;
61 if (!get_frame_address_in_block_if_available (frame, &pc))
67 bl = block_for_pc (pc);
71 inline_count = frame_inlined_callees (frame);
73 while (inline_count > 0)
75 if (block_inlined_p (bl))
78 bl = BLOCK_SUPERBLOCK (bl);
79 gdb_assert (bl != NULL);
86 get_pc_function_start (CORE_ADDR pc)
88 const struct block *bl;
89 struct bound_minimal_symbol msymbol;
91 bl = block_for_pc (pc);
94 struct symbol *symbol = block_linkage_function (bl);
98 bl = SYMBOL_BLOCK_VALUE (symbol);
99 return BLOCK_START (bl);
103 msymbol = lookup_minimal_symbol_by_pc (pc);
106 CORE_ADDR fstart = BMSYMBOL_VALUE_ADDRESS (msymbol);
108 if (find_pc_section (fstart))
115 /* Return the symbol for the function executing in frame FRAME. */
118 get_frame_function (struct frame_info *frame)
120 const struct block *bl = get_frame_block (frame, 0);
125 while (BLOCK_FUNCTION (bl) == NULL && BLOCK_SUPERBLOCK (bl) != NULL)
126 bl = BLOCK_SUPERBLOCK (bl);
128 return BLOCK_FUNCTION (bl);
132 /* Return the function containing pc value PC in section SECTION.
133 Returns 0 if function is not known. */
136 find_pc_sect_function (CORE_ADDR pc, struct obj_section *section)
138 const struct block *b = block_for_pc_sect (pc, section);
142 return block_linkage_function (b);
145 /* Return the function containing pc value PC.
146 Returns 0 if function is not known.
147 Backward compatibility, no section */
150 find_pc_function (CORE_ADDR pc)
152 return find_pc_sect_function (pc, find_pc_mapped_section (pc));
158 find_pc_sect_containing_function (CORE_ADDR pc, struct obj_section *section)
160 const block *bl = block_for_pc_sect (pc, section);
165 return block_containing_function (bl);
168 /* These variables are used to cache the most recent result
169 of find_pc_partial_function. */
171 static CORE_ADDR cache_pc_function_low = 0;
172 static CORE_ADDR cache_pc_function_high = 0;
173 static const char *cache_pc_function_name = 0;
174 static struct obj_section *cache_pc_function_section = NULL;
176 /* Clear cache, e.g. when symbol table is discarded. */
179 clear_pc_function_cache (void)
181 cache_pc_function_low = 0;
182 cache_pc_function_high = 0;
183 cache_pc_function_name = (char *) 0;
184 cache_pc_function_section = NULL;
187 /* Finds the "function" (text symbol) that is smaller than PC but
188 greatest of all of the potential text symbols in SECTION. Sets
189 *NAME and/or *ADDRESS conditionally if that pointer is non-null.
190 If ENDADDR is non-null, then set *ENDADDR to be the end of the
191 function (exclusive), but passing ENDADDR as non-null means that
192 the function might cause symbols to be read. This function either
193 succeeds or fails (not halfway succeeds). If it succeeds, it sets
194 *NAME, *ADDRESS, and *ENDADDR to real information and returns 1.
195 If it fails, it sets *NAME, *ADDRESS and *ENDADDR to zero and
198 /* Backward compatibility, no section argument. */
201 find_pc_partial_function (CORE_ADDR pc, const char **name, CORE_ADDR *address,
204 struct obj_section *section;
206 struct bound_minimal_symbol msymbol;
207 struct compunit_symtab *compunit_symtab = NULL;
208 struct objfile *objfile;
211 /* To ensure that the symbol returned belongs to the correct setion
212 (and that the last [random] symbol from the previous section
213 isn't returned) try to find the section containing PC. First try
214 the overlay code (which by default returns NULL); and second try
215 the normal section code (which almost always succeeds). */
216 section = find_pc_overlay (pc);
218 section = find_pc_section (pc);
220 mapped_pc = overlay_mapped_address (pc, section);
222 if (mapped_pc >= cache_pc_function_low
223 && mapped_pc < cache_pc_function_high
224 && section == cache_pc_function_section)
225 goto return_cached_value;
227 msymbol = lookup_minimal_symbol_by_pc_section (mapped_pc, section);
228 ALL_OBJFILES (objfile)
233 = objfile->sf->qf->find_pc_sect_compunit_symtab (objfile, msymbol,
237 if (compunit_symtab != NULL)
241 if (compunit_symtab != NULL)
243 /* Checking whether the msymbol has a larger value is for the
244 "pathological" case mentioned in print_frame_info. */
245 f = find_pc_sect_function (mapped_pc, section);
247 && (msymbol.minsym == NULL
248 || (BLOCK_START (SYMBOL_BLOCK_VALUE (f))
249 >= BMSYMBOL_VALUE_ADDRESS (msymbol))))
251 cache_pc_function_low = BLOCK_START (SYMBOL_BLOCK_VALUE (f));
252 cache_pc_function_high = BLOCK_END (SYMBOL_BLOCK_VALUE (f));
253 cache_pc_function_name = SYMBOL_LINKAGE_NAME (f);
254 cache_pc_function_section = section;
255 goto return_cached_value;
259 /* Not in the normal symbol tables, see if the pc is in a known
260 section. If it's not, then give up. This ensures that anything
261 beyond the end of the text seg doesn't appear to be part of the
262 last function in the text segment. */
265 msymbol.minsym = NULL;
267 /* Must be in the minimal symbol table. */
268 if (msymbol.minsym == NULL)
270 /* No available symbol. */
280 cache_pc_function_low = BMSYMBOL_VALUE_ADDRESS (msymbol);
281 cache_pc_function_name = MSYMBOL_LINKAGE_NAME (msymbol.minsym);
282 cache_pc_function_section = section;
283 cache_pc_function_high = minimal_symbol_upper_bound (msymbol);
289 if (pc_in_unmapped_range (pc, section))
290 *address = overlay_unmapped_address (cache_pc_function_low, section);
292 *address = cache_pc_function_low;
296 *name = cache_pc_function_name;
300 if (pc_in_unmapped_range (pc, section))
302 /* Because the high address is actually beyond the end of
303 the function (and therefore possibly beyond the end of
304 the overlay), we must actually convert (high - 1) and
305 then add one to that. */
307 *endaddr = 1 + overlay_unmapped_address (cache_pc_function_high - 1,
311 *endaddr = cache_pc_function_high;
320 find_function_type (CORE_ADDR pc)
322 struct symbol *sym = find_pc_function (pc);
324 if (sym != NULL && BLOCK_START (SYMBOL_BLOCK_VALUE (sym)) == pc)
325 return SYMBOL_TYPE (sym);
333 find_gnu_ifunc_target_type (CORE_ADDR resolver_funaddr)
335 struct type *resolver_type = find_function_type (resolver_funaddr);
336 if (resolver_type != NULL)
338 /* Get the return type of the resolver. */
339 struct type *resolver_ret_type
340 = check_typedef (TYPE_TARGET_TYPE (resolver_type));
342 /* If we found a pointer to function, then the resolved type
343 is the type of the pointed-to function. */
344 if (TYPE_CODE (resolver_ret_type) == TYPE_CODE_PTR)
346 struct type *resolved_type
347 = TYPE_TARGET_TYPE (resolver_ret_type);
348 if (TYPE_CODE (check_typedef (resolved_type)) == TYPE_CODE_FUNC)
349 return resolved_type;
356 /* Return the innermost stack frame that is executing inside of BLOCK and is
357 at least as old as the selected frame. Return NULL if there is no
358 such frame. If BLOCK is NULL, just return NULL. */
361 block_innermost_frame (const struct block *block)
363 struct frame_info *frame;
368 frame = get_selected_frame_if_set ();
370 frame = get_current_frame ();
371 while (frame != NULL)
373 const struct block *frame_block = get_frame_block (frame, NULL);
374 if (frame_block != NULL && contained_in (frame_block, block))
377 frame = get_prev_frame (frame);