Use BLOCK_ENTRY_PC in place of most uses of BLOCK_START
[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
e2882c85 4 Copyright (C) 1986-2018 Free Software Foundation, Inc.
c906108c 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
SS
20
21#include "defs.h"
22#include "symtab.h"
23#include "bfd.h"
c906108c
SS
24#include "objfiles.h"
25#include "frame.h"
26#include "gdbcore.h"
7157eed4
UW
27#include "value.h"
28#include "target.h"
29#include "inferior.h"
c906108c 30#include "annotate.h"
4e052eda 31#include "regcache.h"
9c1412c1 32#include "dummy-frame.h"
51603483
DJ
33#include "command.h"
34#include "gdbcmd.h"
fe898f56 35#include "block.h"
edb3359d 36#include "inline-frame.h"
c906108c 37
4a64f543
MS
38/* Return the innermost lexical block in execution in a specified
39 stack frame. The frame address is assumed valid.
ae767bfb
JB
40
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.
44
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
52 slot instruction. */
c906108c 53
3977b71f 54const struct block *
ae767bfb 55get_frame_block (struct frame_info *frame, CORE_ADDR *addr_in_block)
c906108c 56{
e3eebbd7 57 CORE_ADDR pc;
3977b71f 58 const struct block *bl;
edb3359d 59 int inline_count;
ae767bfb 60
e3eebbd7
PA
61 if (!get_frame_address_in_block_if_available (frame, &pc))
62 return NULL;
63
ae767bfb
JB
64 if (addr_in_block)
65 *addr_in_block = pc;
66
edb3359d
DJ
67 bl = block_for_pc (pc);
68 if (bl == NULL)
69 return NULL;
70
71 inline_count = frame_inlined_callees (frame);
72
73 while (inline_count > 0)
74 {
75 if (block_inlined_p (bl))
76 inline_count--;
77
78 bl = BLOCK_SUPERBLOCK (bl);
79 gdb_assert (bl != NULL);
80 }
81
82 return bl;
c906108c
SS
83}
84
c906108c 85CORE_ADDR
fba45db2 86get_pc_function_start (CORE_ADDR pc)
c906108c 87{
3977b71f 88 const struct block *bl;
7cbd4a93 89 struct bound_minimal_symbol msymbol;
c906108c 90
2cdd89cb
MK
91 bl = block_for_pc (pc);
92 if (bl)
c906108c 93 {
7f0df278 94 struct symbol *symbol = block_linkage_function (bl);
2cdd89cb
MK
95
96 if (symbol)
97 {
98 bl = SYMBOL_BLOCK_VALUE (symbol);
2b1ffcfd 99 return BLOCK_ENTRY_PC (bl);
2cdd89cb 100 }
c906108c 101 }
2cdd89cb
MK
102
103 msymbol = lookup_minimal_symbol_by_pc (pc);
7cbd4a93 104 if (msymbol.minsym)
c906108c 105 {
77e371c0 106 CORE_ADDR fstart = BMSYMBOL_VALUE_ADDRESS (msymbol);
2cdd89cb
MK
107
108 if (find_pc_section (fstart))
109 return fstart;
c906108c 110 }
2cdd89cb
MK
111
112 return 0;
c906108c
SS
113}
114
115/* Return the symbol for the function executing in frame FRAME. */
116
117struct symbol *
fba45db2 118get_frame_function (struct frame_info *frame)
c906108c 119{
3977b71f 120 const struct block *bl = get_frame_block (frame, 0);
edb3359d
DJ
121
122 if (bl == NULL)
123 return NULL;
124
125 while (BLOCK_FUNCTION (bl) == NULL && BLOCK_SUPERBLOCK (bl) != NULL)
126 bl = BLOCK_SUPERBLOCK (bl);
127
128 return BLOCK_FUNCTION (bl);
c906108c
SS
129}
130\f
131
c906108c
SS
132/* Return the function containing pc value PC in section SECTION.
133 Returns 0 if function is not known. */
134
135struct symbol *
714835d5 136find_pc_sect_function (CORE_ADDR pc, struct obj_section *section)
c906108c 137{
3977b71f 138 const struct block *b = block_for_pc_sect (pc, section);
cc59ec59 139
c906108c
SS
140 if (b == 0)
141 return 0;
7f0df278 142 return block_linkage_function (b);
c906108c
SS
143}
144
145/* Return the function containing pc value PC.
4a64f543
MS
146 Returns 0 if function is not known.
147 Backward compatibility, no section */
c906108c
SS
148
149struct symbol *
fba45db2 150find_pc_function (CORE_ADDR pc)
c906108c
SS
151{
152 return find_pc_sect_function (pc, find_pc_mapped_section (pc));
153}
154
cd2bb709
PA
155/* See symtab.h. */
156
157struct symbol *
158find_pc_sect_containing_function (CORE_ADDR pc, struct obj_section *section)
159{
160 const block *bl = block_for_pc_sect (pc, section);
161
162 if (bl == nullptr)
163 return nullptr;
164
165 return block_containing_function (bl);
166}
167
fc811edd
KB
168/* These variables are used to cache the most recent result of
169 find_pc_partial_function.
170
171 The addresses cache_pc_function_low and cache_pc_function_high
172 record the range in which PC was found during the most recent
173 successful lookup. When the function occupies a single contiguous
174 address range, these values correspond to the low and high
175 addresses of the function. (The high address is actually one byte
176 beyond the last byte of the function.) For a function with more
177 than one (non-contiguous) range, the range in which PC was found is
178 used to set the cache bounds.
179
180 When determining whether or not these cached values apply to a
181 particular PC value, PC must be within the range specified by
182 cache_pc_function_low and cache_pc_function_high. In addition to
183 PC being in that range, cache_pc_section must also match PC's
184 section. See find_pc_partial_function() for details on both the
185 comparison as well as how PC's section is determined.
186
187 The other values aren't used for determining whether the cache
188 applies, but are used for setting the outputs from
189 find_pc_partial_function. cache_pc_function_low and
190 cache_pc_function_high are used to set outputs as well. */
c906108c 191
c5aa993b
JM
192static CORE_ADDR cache_pc_function_low = 0;
193static CORE_ADDR cache_pc_function_high = 0;
2c02bd72 194static const char *cache_pc_function_name = 0;
714835d5 195static struct obj_section *cache_pc_function_section = NULL;
fc811edd 196static const struct block *cache_pc_function_block = nullptr;
c906108c 197
4a64f543 198/* Clear cache, e.g. when symbol table is discarded. */
c906108c
SS
199
200void
fba45db2 201clear_pc_function_cache (void)
c906108c
SS
202{
203 cache_pc_function_low = 0;
204 cache_pc_function_high = 0;
c5aa993b 205 cache_pc_function_name = (char *) 0;
c906108c 206 cache_pc_function_section = NULL;
fc811edd 207 cache_pc_function_block = nullptr;
c906108c
SS
208}
209
fc811edd 210/* See symtab.h. */
73912b9b 211
c906108c 212int
a0aca7b0 213find_pc_partial_function (CORE_ADDR pc, const char **name, CORE_ADDR *address,
fc811edd 214 CORE_ADDR *endaddr, const struct block **block)
c906108c 215{
714835d5 216 struct obj_section *section;
c5aa993b 217 struct symbol *f;
50e65b17 218 struct bound_minimal_symbol msymbol;
43f3e411 219 struct compunit_symtab *compunit_symtab = NULL;
ccefe4c4 220 struct objfile *objfile;
c906108c
SS
221 CORE_ADDR mapped_pc;
222
73912b9b
AC
223 /* To ensure that the symbol returned belongs to the correct setion
224 (and that the last [random] symbol from the previous section
225 isn't returned) try to find the section containing PC. First try
226 the overlay code (which by default returns NULL); and second try
227 the normal section code (which almost always succeeds). */
228 section = find_pc_overlay (pc);
229 if (section == NULL)
714835d5 230 section = find_pc_section (pc);
73912b9b 231
c906108c
SS
232 mapped_pc = overlay_mapped_address (pc, section);
233
247055de
MK
234 if (mapped_pc >= cache_pc_function_low
235 && mapped_pc < cache_pc_function_high
236 && section == cache_pc_function_section)
c906108c
SS
237 goto return_cached_value;
238
50e65b17 239 msymbol = lookup_minimal_symbol_by_pc_section (mapped_pc, section);
ccefe4c4
TT
240 ALL_OBJFILES (objfile)
241 {
242 if (objfile->sf)
43f3e411
DE
243 {
244 compunit_symtab
245 = objfile->sf->qf->find_pc_sect_compunit_symtab (objfile, msymbol,
246 mapped_pc, section,
247 0);
248 }
249 if (compunit_symtab != NULL)
ccefe4c4
TT
250 break;
251 }
252
43f3e411 253 if (compunit_symtab != NULL)
c906108c 254 {
ccefe4c4 255 /* Checking whether the msymbol has a larger value is for the
fc811edd
KB
256 "pathological" case mentioned in stack.c:find_frame_funname.
257
258 We use BLOCK_ENTRY_PC instead of BLOCK_START_PC for this
259 comparison because the minimal symbol should refer to the
260 function's entry pc which is not necessarily the lowest
261 address of the function. This will happen when the function
262 has more than one range and the entry pc is not within the
263 lowest range of addresses. */
ccefe4c4
TT
264 f = find_pc_sect_function (mapped_pc, section);
265 if (f != NULL
50e65b17 266 && (msymbol.minsym == NULL
fc811edd 267 || (BLOCK_ENTRY_PC (SYMBOL_BLOCK_VALUE (f))
77e371c0 268 >= BMSYMBOL_VALUE_ADDRESS (msymbol))))
c906108c 269 {
fc811edd
KB
270 const struct block *b = SYMBOL_BLOCK_VALUE (f);
271
ccefe4c4
TT
272 cache_pc_function_name = SYMBOL_LINKAGE_NAME (f);
273 cache_pc_function_section = section;
fc811edd
KB
274 cache_pc_function_block = b;
275
276 /* For blocks occupying contiguous addresses (i.e. no gaps),
277 the low and high cache addresses are simply the start
278 and end of the block.
279
280 For blocks with non-contiguous ranges, we have to search
281 for the range containing mapped_pc and then use the start
282 and end of that range.
283
284 This causes the returned *ADDRESS and *ENDADDR values to
285 be limited to the range in which mapped_pc is found. See
286 comment preceding declaration of find_pc_partial_function
287 in symtab.h for more information. */
288
289 if (BLOCK_CONTIGUOUS_P (b))
290 {
291 cache_pc_function_low = BLOCK_START (b);
292 cache_pc_function_high = BLOCK_END (b);
293 }
294 else
295 {
296 int i;
297 for (i = 0; i < BLOCK_NRANGES (b); i++)
298 {
299 if (BLOCK_RANGE_START (b, i) <= mapped_pc
300 && mapped_pc < BLOCK_RANGE_END (b, i))
301 {
302 cache_pc_function_low = BLOCK_RANGE_START (b, i);
303 cache_pc_function_high = BLOCK_RANGE_END (b, i);
304 break;
305 }
306 }
307 /* Above loop should exit via the break. */
308 gdb_assert (i < BLOCK_NRANGES (b));
309 }
310
311
ccefe4c4 312 goto return_cached_value;
c906108c
SS
313 }
314 }
315
4a64f543
MS
316 /* Not in the normal symbol tables, see if the pc is in a known
317 section. If it's not, then give up. This ensures that anything
318 beyond the end of the text seg doesn't appear to be part of the
319 last function in the text segment. */
c906108c 320
714835d5 321 if (!section)
50e65b17 322 msymbol.minsym = NULL;
c906108c
SS
323
324 /* Must be in the minimal symbol table. */
50e65b17 325 if (msymbol.minsym == NULL)
c906108c
SS
326 {
327 /* No available symbol. */
328 if (name != NULL)
329 *name = 0;
330 if (address != NULL)
331 *address = 0;
332 if (endaddr != NULL)
333 *endaddr = 0;
334 return 0;
335 }
336
77e371c0 337 cache_pc_function_low = BMSYMBOL_VALUE_ADDRESS (msymbol);
efd66ac6 338 cache_pc_function_name = MSYMBOL_LINKAGE_NAME (msymbol.minsym);
c906108c 339 cache_pc_function_section = section;
50e65b17 340 cache_pc_function_high = minimal_symbol_upper_bound (msymbol);
fc811edd 341 cache_pc_function_block = nullptr;
c906108c 342
247055de 343 return_cached_value:
c906108c
SS
344
345 if (address)
346 {
347 if (pc_in_unmapped_range (pc, section))
c5aa993b 348 *address = overlay_unmapped_address (cache_pc_function_low, section);
c906108c 349 else
c5aa993b 350 *address = cache_pc_function_low;
c906108c 351 }
c5aa993b 352
c906108c
SS
353 if (name)
354 *name = cache_pc_function_name;
355
356 if (endaddr)
357 {
358 if (pc_in_unmapped_range (pc, section))
c5aa993b 359 {
c906108c
SS
360 /* Because the high address is actually beyond the end of
361 the function (and therefore possibly beyond the end of
247055de 362 the overlay), we must actually convert (high - 1) and
4a64f543 363 then add one to that. */
c906108c 364
c5aa993b 365 *endaddr = 1 + overlay_unmapped_address (cache_pc_function_high - 1,
c906108c 366 section);
c5aa993b 367 }
c906108c 368 else
c5aa993b 369 *endaddr = cache_pc_function_high;
c906108c
SS
370 }
371
fc811edd
KB
372 if (block != nullptr)
373 *block = cache_pc_function_block;
374
c906108c
SS
375 return 1;
376}
377
8388016d
PA
378/* See symtab.h. */
379
380struct type *
381find_function_type (CORE_ADDR pc)
382{
383 struct symbol *sym = find_pc_function (pc);
384
2b1ffcfd 385 if (sym != NULL && BLOCK_ENTRY_PC (SYMBOL_BLOCK_VALUE (sym)) == pc)
8388016d
PA
386 return SYMBOL_TYPE (sym);
387
388 return NULL;
389}
390
391/* See symtab.h. */
392
393struct type *
394find_gnu_ifunc_target_type (CORE_ADDR resolver_funaddr)
395{
396 struct type *resolver_type = find_function_type (resolver_funaddr);
397 if (resolver_type != NULL)
398 {
399 /* Get the return type of the resolver. */
400 struct type *resolver_ret_type
401 = check_typedef (TYPE_TARGET_TYPE (resolver_type));
402
403 /* If we found a pointer to function, then the resolved type
404 is the type of the pointed-to function. */
405 if (TYPE_CODE (resolver_ret_type) == TYPE_CODE_PTR)
406 {
407 struct type *resolved_type
408 = TYPE_TARGET_TYPE (resolver_ret_type);
409 if (TYPE_CODE (check_typedef (resolved_type)) == TYPE_CODE_FUNC)
410 return resolved_type;
411 }
412 }
413
414 return NULL;
415}
416
72384ba3
PH
417/* Return the innermost stack frame that is executing inside of BLOCK and is
418 at least as old as the selected frame. Return NULL if there is no
419 such frame. If BLOCK is NULL, just return NULL. */
c906108c
SS
420
421struct frame_info *
9df2fbc4 422block_innermost_frame (const struct block *block)
c906108c
SS
423{
424 struct frame_info *frame;
c906108c
SS
425
426 if (block == NULL)
427 return NULL;
428
72384ba3
PH
429 frame = get_selected_frame_if_set ();
430 if (frame == NULL)
431 frame = get_current_frame ();
631b0ed0 432 while (frame != NULL)
c906108c 433 {
3977b71f 434 const struct block *frame_block = get_frame_block (frame, NULL);
edb3359d 435 if (frame_block != NULL && contained_in (frame_block, block))
c906108c 436 return frame;
631b0ed0
JB
437
438 frame = get_prev_frame (frame);
c906108c 439 }
631b0ed0
JB
440
441 return NULL;
c906108c 442}
This page took 1.152624 seconds and 4 git commands to generate.