2004-04-30 Andrew Cagney <cagney@redhat.com>
[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
4 Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994,
26b0da32
MK
5 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004
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
12 the Free Software Foundation; either version 2 of the License, or
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
JM
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software
22 Foundation, Inc., 59 Temple Place - Suite 330,
23 Boston, MA 02111-1307, USA. */
c906108c
SS
24
25#include "defs.h"
26#include "symtab.h"
27#include "bfd.h"
c906108c
SS
28#include "objfiles.h"
29#include "frame.h"
30#include "gdbcore.h"
31#include "value.h" /* for read_register */
32#include "target.h" /* for target_has_stack */
33#include "inferior.h" /* for read_pc */
34#include "annotate.h"
4e052eda 35#include "regcache.h"
4f460812 36#include "gdb_assert.h"
9c1412c1 37#include "dummy-frame.h"
51603483
DJ
38#include "command.h"
39#include "gdbcmd.h"
fe898f56 40#include "block.h"
c906108c 41
51603483 42/* Prototypes for exported functions. */
c5aa993b 43
51603483 44void _initialize_blockframe (void);
c906108c 45
f614e9d9 46/* Test whether PC is in the range of addresses that corresponds to
c6831537 47 the "main" function. */
c906108c
SS
48
49int
fba45db2 50inside_main_func (CORE_ADDR pc)
c906108c 51{
8d4ce20a
JB
52 struct minimal_symbol *msymbol;
53
c906108c
SS
54 if (symfile_objfile == 0)
55 return 0;
56
8d4ce20a
JB
57 msymbol = lookup_minimal_symbol (main_name (), NULL, symfile_objfile);
58
f614e9d9
MK
59 /* If the address range hasn't been set up at symbol reading time,
60 set it up now. */
c906108c 61
8d4ce20a
JB
62 if (msymbol != NULL
63 && symfile_objfile->ei.main_func_lowpc == INVALID_ENTRY_LOWPC
64 && symfile_objfile->ei.main_func_highpc == INVALID_ENTRY_HIGHPC)
c906108c 65 {
f614e9d9
MK
66 /* brobecker/2003-10-10: We used to rely on lookup_symbol() to
67 search the symbol associated to the "main" function.
68 Unfortunately, lookup_symbol() uses the current-language
69 la_lookup_symbol_nonlocal function to do the global symbol
70 search. Depending on the language, this can introduce
71 certain side-effects, because certain languages, for instance
72 Ada, may find more than one match. Therefore we prefer to
73 search the "main" function symbol using its address rather
74 than its name. */
75 struct symbol *mainsym =
76 find_pc_function (SYMBOL_VALUE_ADDRESS (msymbol));
c906108c 77
c5aa993b
JM
78 if (mainsym && SYMBOL_CLASS (mainsym) == LOC_BLOCK)
79 {
80 symfile_objfile->ei.main_func_lowpc =
c906108c 81 BLOCK_START (SYMBOL_BLOCK_VALUE (mainsym));
c5aa993b 82 symfile_objfile->ei.main_func_highpc =
c906108c 83 BLOCK_END (SYMBOL_BLOCK_VALUE (mainsym));
c5aa993b 84 }
c906108c 85 }
0714963c
AC
86
87 /* Not in the normal symbol tables, see if "main" is in the partial
88 symbol table. If it's not, then give up. */
f614e9d9
MK
89 if (msymbol != NULL && MSYMBOL_TYPE (msymbol) == mst_text)
90 {
91 CORE_ADDR maddr = SYMBOL_VALUE_ADDRESS (msymbol);
92 asection *msect = SYMBOL_BFD_SECTION (msymbol);
93 struct obj_section *osect = find_pc_sect_section (maddr, msect);
94
95 if (osect != NULL)
96 {
97 int i;
98
99 /* Step over other symbols at this same address, and symbols
100 in other sections, to find the next symbol in this
101 section with a different address. */
102 for (i = 1; SYMBOL_LINKAGE_NAME (msymbol + i) != NULL; i++)
103 {
104 if (SYMBOL_VALUE_ADDRESS (msymbol + i) != maddr
105 && SYMBOL_BFD_SECTION (msymbol + i) == msect)
106 break;
107 }
108
109 symfile_objfile->ei.main_func_lowpc = maddr;
110
111 /* Use the lesser of the next minimal symbol in the same
112 section, or the end of the section, as the end of the
113 function. */
114 if (SYMBOL_LINKAGE_NAME (msymbol + i) != NULL
115 && SYMBOL_VALUE_ADDRESS (msymbol + i) < osect->endaddr)
116 symfile_objfile->ei.main_func_highpc =
117 SYMBOL_VALUE_ADDRESS (msymbol + i);
118 else
119 /* We got the start address from the last msymbol in the
120 objfile. So the end address is the end of the
121 section. */
122 symfile_objfile->ei.main_func_highpc = osect->endaddr;
123 }
124 }
125
126 return (symfile_objfile->ei.main_func_lowpc <= pc
127 && symfile_objfile->ei.main_func_highpc > pc);
c906108c
SS
128}
129
6e4c6c91 130/* Test whether THIS_FRAME is inside the process entry point function. */
c906108c
SS
131
132int
6e4c6c91
DJ
133inside_entry_func (struct frame_info *this_frame)
134{
135 return (get_frame_func (this_frame) == entry_point_address ());
136}
137
138/* Similar to inside_entry_func, but accomodating legacy frame code. */
139
140static int
141legacy_inside_entry_func (CORE_ADDR pc)
c906108c 142{
c906108c
SS
143 if (symfile_objfile == 0)
144 return 0;
29ff87c5 145
7a292a7a
SS
146 if (CALL_DUMMY_LOCATION == AT_ENTRY_POINT)
147 {
29ff87c5
MK
148 /* Do not stop backtracing if the program counter is in the call
149 dummy at the entry point. */
150 /* FIXME: This won't always work with zeros for the last two
151 arguments. */
ae45cd16 152 if (DEPRECATED_PC_IN_CALL_DUMMY (pc, 0, 0))
7a292a7a
SS
153 return 0;
154 }
29ff87c5
MK
155
156 return (symfile_objfile->ei.entry_func_lowpc <= pc
157 && symfile_objfile->ei.entry_func_highpc > pc);
c906108c
SS
158}
159
19772a2c
AC
160/* Return nonzero if the function for this frame lacks a prologue.
161 Many machines can define DEPRECATED_FRAMELESS_FUNCTION_INVOCATION
162 to just call this function. */
c906108c
SS
163
164int
19772a2c 165legacy_frameless_look_for_prologue (struct frame_info *frame)
c906108c 166{
e76c5fcc 167 CORE_ADDR func_start;
53a5351d 168
be41e9f4 169 func_start = get_frame_func (frame);
c906108c
SS
170 if (func_start)
171 {
172 func_start += FUNCTION_START_OFFSET;
31687c3c
AC
173 /* NOTE: cagney/2004-02-09: Eliminated per-architecture
174 PROLOGUE_FRAMELESS_P call as architectures with custom
175 implementations had all been deleted. Eventually even this
176 function can go - GDB no longer tries to differentiate
177 between framed, frameless and stackless functions. They are
178 all now considered equally evil :-^. */
179 /* If skipping the prologue ends up skips nothing, there must be
180 no prologue and hence no code creating a frame. There for
181 the function is "frameless" :-/. */
182 return func_start == SKIP_PROLOGUE (func_start);
c906108c 183 }
bdd78e62 184 else if (get_frame_pc (frame) == 0)
53a5351d
JM
185 /* A frame with a zero PC is usually created by dereferencing a
186 NULL function pointer, normally causing an immediate core dump
187 of the inferior. Mark function as frameless, as the inferior
188 has no chance of setting up a stack frame. */
c906108c
SS
189 return 1;
190 else
191 /* If we can't find the start of the function, we don't really
192 know whether the function is frameless, but we should be able
193 to get a reasonable (i.e. best we can do under the
194 circumstances) backtrace by saying that it isn't. */
195 return 0;
196}
197
c906108c 198/* Return the innermost lexical block in execution
ae767bfb
JB
199 in a specified stack frame. The frame address is assumed valid.
200
201 If ADDR_IN_BLOCK is non-zero, set *ADDR_IN_BLOCK to the exact code
202 address we used to choose the block. We use this to find a source
203 line, to decide which macro definitions are in scope.
204
205 The value returned in *ADDR_IN_BLOCK isn't necessarily the frame's
206 PC, and may not really be a valid PC at all. For example, in the
207 caller of a function declared to never return, the code at the
208 return address will never be reached, so the call instruction may
209 be the very last instruction in the block. So the address we use
210 to choose the block is actually one byte before the return address
211 --- hopefully pointing us at the call instruction, or its delay
212 slot instruction. */
c906108c
SS
213
214struct block *
ae767bfb 215get_frame_block (struct frame_info *frame, CORE_ADDR *addr_in_block)
c906108c 216{
c4a09524 217 const CORE_ADDR pc = get_frame_address_in_block (frame);
ae767bfb
JB
218
219 if (addr_in_block)
220 *addr_in_block = pc;
221
c906108c
SS
222 return block_for_pc (pc);
223}
224
c906108c 225CORE_ADDR
fba45db2 226get_pc_function_start (CORE_ADDR pc)
c906108c 227{
2cdd89cb
MK
228 struct block *bl;
229 struct minimal_symbol *msymbol;
c906108c 230
2cdd89cb
MK
231 bl = block_for_pc (pc);
232 if (bl)
c906108c 233 {
2cdd89cb
MK
234 struct symbol *symbol = block_function (bl);
235
236 if (symbol)
237 {
238 bl = SYMBOL_BLOCK_VALUE (symbol);
239 return BLOCK_START (bl);
240 }
c906108c 241 }
2cdd89cb
MK
242
243 msymbol = lookup_minimal_symbol_by_pc (pc);
244 if (msymbol)
c906108c 245 {
2cdd89cb
MK
246 CORE_ADDR fstart = SYMBOL_VALUE_ADDRESS (msymbol);
247
248 if (find_pc_section (fstart))
249 return fstart;
c906108c 250 }
2cdd89cb
MK
251
252 return 0;
c906108c
SS
253}
254
255/* Return the symbol for the function executing in frame FRAME. */
256
257struct symbol *
fba45db2 258get_frame_function (struct frame_info *frame)
c906108c 259{
52f0bd74 260 struct block *bl = get_frame_block (frame, 0);
c906108c
SS
261 if (bl == 0)
262 return 0;
263 return block_function (bl);
264}
265\f
266
c906108c
SS
267/* Return the function containing pc value PC in section SECTION.
268 Returns 0 if function is not known. */
269
270struct symbol *
198beae2 271find_pc_sect_function (CORE_ADDR pc, struct bfd_section *section)
c906108c 272{
52f0bd74 273 struct block *b = block_for_pc_sect (pc, section);
c906108c
SS
274 if (b == 0)
275 return 0;
276 return block_function (b);
277}
278
279/* Return the function containing pc value PC.
280 Returns 0 if function is not known. Backward compatibility, no section */
281
282struct symbol *
fba45db2 283find_pc_function (CORE_ADDR pc)
c906108c
SS
284{
285 return find_pc_sect_function (pc, find_pc_mapped_section (pc));
286}
287
288/* These variables are used to cache the most recent result
289 * of find_pc_partial_function. */
290
c5aa993b
JM
291static CORE_ADDR cache_pc_function_low = 0;
292static CORE_ADDR cache_pc_function_high = 0;
293static char *cache_pc_function_name = 0;
198beae2 294static struct bfd_section *cache_pc_function_section = NULL;
c906108c
SS
295
296/* Clear cache, e.g. when symbol table is discarded. */
297
298void
fba45db2 299clear_pc_function_cache (void)
c906108c
SS
300{
301 cache_pc_function_low = 0;
302 cache_pc_function_high = 0;
c5aa993b 303 cache_pc_function_name = (char *) 0;
c906108c
SS
304 cache_pc_function_section = NULL;
305}
306
307/* Finds the "function" (text symbol) that is smaller than PC but
308 greatest of all of the potential text symbols in SECTION. Sets
309 *NAME and/or *ADDRESS conditionally if that pointer is non-null.
310 If ENDADDR is non-null, then set *ENDADDR to be the end of the
311 function (exclusive), but passing ENDADDR as non-null means that
312 the function might cause symbols to be read. This function either
313 succeeds or fails (not halfway succeeds). If it succeeds, it sets
314 *NAME, *ADDRESS, and *ENDADDR to real information and returns 1.
315 If it fails, it sets *NAME, *ADDRESS, and *ENDADDR to zero and
316 returns 0. */
317
73912b9b
AC
318/* Backward compatibility, no section argument. */
319
c906108c 320int
73912b9b
AC
321find_pc_partial_function (CORE_ADDR pc, char **name, CORE_ADDR *address,
322 CORE_ADDR *endaddr)
c906108c 323{
73912b9b 324 struct bfd_section *section;
c906108c 325 struct partial_symtab *pst;
c5aa993b 326 struct symbol *f;
c906108c
SS
327 struct minimal_symbol *msymbol;
328 struct partial_symbol *psb;
c5aa993b 329 struct obj_section *osect;
c906108c
SS
330 int i;
331 CORE_ADDR mapped_pc;
332
73912b9b
AC
333 /* To ensure that the symbol returned belongs to the correct setion
334 (and that the last [random] symbol from the previous section
335 isn't returned) try to find the section containing PC. First try
336 the overlay code (which by default returns NULL); and second try
337 the normal section code (which almost always succeeds). */
338 section = find_pc_overlay (pc);
339 if (section == NULL)
340 {
341 struct obj_section *obj_section = find_pc_section (pc);
342 if (obj_section == NULL)
343 section = NULL;
344 else
345 section = obj_section->the_bfd_section;
346 }
347
c906108c
SS
348 mapped_pc = overlay_mapped_address (pc, section);
349
247055de
MK
350 if (mapped_pc >= cache_pc_function_low
351 && mapped_pc < cache_pc_function_high
352 && section == cache_pc_function_section)
c906108c
SS
353 goto return_cached_value;
354
355 /* If sigtramp is in the u area, it counts as a function (especially
356 important for step_1). */
aa2a3f87
AC
357 /* NOTE: cagney/2004-03-16: Determining if the PC is in a signal
358 trampoline typically depends on the detailed analysis of dynamic
359 information obtained from the inferior yet this function is
360 expected to work using static information obtained from the
361 symbol table. */
362 if (DEPRECATED_SIGTRAMP_START_P ()
f561f026 363 && DEPRECATED_PC_IN_SIGTRAMP (mapped_pc, (char *) NULL))
c906108c 364 {
aa2a3f87
AC
365 cache_pc_function_low = DEPRECATED_SIGTRAMP_START (mapped_pc);
366 cache_pc_function_high = DEPRECATED_SIGTRAMP_END (mapped_pc);
c5aa993b 367 cache_pc_function_name = "<sigtramp>";
c906108c
SS
368 cache_pc_function_section = section;
369 goto return_cached_value;
370 }
c906108c
SS
371
372 msymbol = lookup_minimal_symbol_by_pc_section (mapped_pc, section);
373 pst = find_pc_sect_psymtab (mapped_pc, section);
374 if (pst)
375 {
376 /* Need to read the symbols to get a good value for the end address. */
377 if (endaddr != NULL && !pst->readin)
378 {
379 /* Need to get the terminal in case symbol-reading produces
380 output. */
381 target_terminal_ours_for_output ();
382 PSYMTAB_TO_SYMTAB (pst);
383 }
384
385 if (pst->readin)
386 {
387 /* Checking whether the msymbol has a larger value is for the
388 "pathological" case mentioned in print_frame_info. */
389 f = find_pc_sect_function (mapped_pc, section);
390 if (f != NULL
391 && (msymbol == NULL
392 || (BLOCK_START (SYMBOL_BLOCK_VALUE (f))
393 >= SYMBOL_VALUE_ADDRESS (msymbol))))
394 {
c5aa993b
JM
395 cache_pc_function_low = BLOCK_START (SYMBOL_BLOCK_VALUE (f));
396 cache_pc_function_high = BLOCK_END (SYMBOL_BLOCK_VALUE (f));
22abf04a 397 cache_pc_function_name = DEPRECATED_SYMBOL_NAME (f);
c906108c
SS
398 cache_pc_function_section = section;
399 goto return_cached_value;
400 }
401 }
402 else
403 {
404 /* Now that static symbols go in the minimal symbol table, perhaps
405 we could just ignore the partial symbols. But at least for now
406 we use the partial or minimal symbol, whichever is larger. */
407 psb = find_pc_sect_psymbol (pst, mapped_pc, section);
408
409 if (psb
410 && (msymbol == NULL ||
411 (SYMBOL_VALUE_ADDRESS (psb)
412 >= SYMBOL_VALUE_ADDRESS (msymbol))))
413 {
414 /* This case isn't being cached currently. */
415 if (address)
416 *address = SYMBOL_VALUE_ADDRESS (psb);
417 if (name)
22abf04a 418 *name = DEPRECATED_SYMBOL_NAME (psb);
c906108c
SS
419 /* endaddr non-NULL can't happen here. */
420 return 1;
421 }
422 }
423 }
424
425 /* Not in the normal symbol tables, see if the pc is in a known section.
426 If it's not, then give up. This ensures that anything beyond the end
427 of the text seg doesn't appear to be part of the last function in the
428 text segment. */
429
430 osect = find_pc_sect_section (mapped_pc, section);
431
432 if (!osect)
433 msymbol = NULL;
434
435 /* Must be in the minimal symbol table. */
436 if (msymbol == NULL)
437 {
438 /* No available symbol. */
439 if (name != NULL)
440 *name = 0;
441 if (address != NULL)
442 *address = 0;
443 if (endaddr != NULL)
444 *endaddr = 0;
445 return 0;
446 }
447
c5aa993b 448 cache_pc_function_low = SYMBOL_VALUE_ADDRESS (msymbol);
22abf04a 449 cache_pc_function_name = DEPRECATED_SYMBOL_NAME (msymbol);
c906108c
SS
450 cache_pc_function_section = section;
451
452 /* Use the lesser of the next minimal symbol in the same section, or
453 the end of the section, as the end of the function. */
c5aa993b 454
c906108c
SS
455 /* Step over other symbols at this same address, and symbols in
456 other sections, to find the next symbol in this section with
457 a different address. */
458
22abf04a 459 for (i = 1; DEPRECATED_SYMBOL_NAME (msymbol + i) != NULL; i++)
c906108c 460 {
c5aa993b 461 if (SYMBOL_VALUE_ADDRESS (msymbol + i) != SYMBOL_VALUE_ADDRESS (msymbol)
247055de 462 && SYMBOL_BFD_SECTION (msymbol + i) == SYMBOL_BFD_SECTION (msymbol))
c906108c
SS
463 break;
464 }
465
22abf04a 466 if (DEPRECATED_SYMBOL_NAME (msymbol + i) != NULL
c906108c
SS
467 && SYMBOL_VALUE_ADDRESS (msymbol + i) < osect->endaddr)
468 cache_pc_function_high = SYMBOL_VALUE_ADDRESS (msymbol + i);
469 else
470 /* We got the start address from the last msymbol in the objfile.
471 So the end address is the end of the section. */
472 cache_pc_function_high = osect->endaddr;
473
247055de 474 return_cached_value:
c906108c
SS
475
476 if (address)
477 {
478 if (pc_in_unmapped_range (pc, section))
c5aa993b 479 *address = overlay_unmapped_address (cache_pc_function_low, section);
c906108c 480 else
c5aa993b 481 *address = cache_pc_function_low;
c906108c 482 }
c5aa993b 483
c906108c
SS
484 if (name)
485 *name = cache_pc_function_name;
486
487 if (endaddr)
488 {
489 if (pc_in_unmapped_range (pc, section))
c5aa993b 490 {
c906108c
SS
491 /* Because the high address is actually beyond the end of
492 the function (and therefore possibly beyond the end of
247055de
MK
493 the overlay), we must actually convert (high - 1) and
494 then add one to that. */
c906108c 495
c5aa993b 496 *endaddr = 1 + overlay_unmapped_address (cache_pc_function_high - 1,
c906108c 497 section);
c5aa993b 498 }
c906108c 499 else
c5aa993b 500 *endaddr = cache_pc_function_high;
c906108c
SS
501 }
502
503 return 1;
504}
505
c906108c
SS
506/* Return the innermost stack frame executing inside of BLOCK,
507 or NULL if there is no such frame. If BLOCK is NULL, just return NULL. */
508
509struct frame_info *
fba45db2 510block_innermost_frame (struct block *block)
c906108c
SS
511{
512 struct frame_info *frame;
52f0bd74
AC
513 CORE_ADDR start;
514 CORE_ADDR end;
42f99ac2 515 CORE_ADDR calling_pc;
c906108c
SS
516
517 if (block == NULL)
518 return NULL;
519
520 start = BLOCK_START (block);
521 end = BLOCK_END (block);
522
523 frame = NULL;
524 while (1)
525 {
526 frame = get_prev_frame (frame);
527 if (frame == NULL)
528 return NULL;
c4a09524 529 calling_pc = get_frame_address_in_block (frame);
42f99ac2 530 if (calling_pc >= start && calling_pc < end)
c906108c
SS
531 return frame;
532 }
533}
534
7a292a7a
SS
535/* Are we in a call dummy? The code below which allows DECR_PC_AFTER_BREAK
536 below is for infrun.c, which may give the macro a pc without that
537 subtracted out. */
538
7a292a7a
SS
539/* Is the PC in a call dummy? SP and FRAME_ADDRESS are the bottom and
540 top of the stack frame which we are checking, where "bottom" and
541 "top" refer to some section of memory which contains the code for
542 the call dummy. Calls to this macro assume that the contents of
0ba6dca9
AC
543 SP_REGNUM and DEPRECATED_FP_REGNUM (or the saved values thereof),
544 respectively, are the things to pass.
545
546 This won't work on the 29k, where SP_REGNUM and
547 DEPRECATED_FP_REGNUM don't have that meaning, but the 29k doesn't
548 use ON_STACK. This could be fixed by generalizing this scheme,
549 perhaps by passing in a frame and adding a few fields, at least on
550 machines which need them for DEPRECATED_PC_IN_CALL_DUMMY.
7a292a7a
SS
551
552 Something simpler, like checking for the stack segment, doesn't work,
553 since various programs (threads implementations, gcc nested function
554 stubs, etc) may either allocate stack frames in another segment, or
555 allocate other kinds of code on the stack. */
556
557int
b4b88177
AC
558deprecated_pc_in_call_dummy_on_stack (CORE_ADDR pc, CORE_ADDR sp,
559 CORE_ADDR frame_address)
7a292a7a
SS
560{
561 return (INNER_THAN ((sp), (pc))
562 && (frame_address != 0)
563 && INNER_THAN ((pc), (frame_address)));
564}
565
e6ba3bc9
AC
566/* Returns true for a user frame or a call_function_by_hand dummy
567 frame, and false for the CRT0 start-up frame. Purpose is to
568 terminate backtrace. */
c5aa993b 569
c906108c 570int
e6ba3bc9 571legacy_frame_chain_valid (CORE_ADDR fp, struct frame_info *fi)
c906108c 572{
51603483
DJ
573 /* Don't prune CALL_DUMMY frames. */
574 if (DEPRECATED_USE_GENERIC_DUMMY_FRAMES
575 && DEPRECATED_PC_IN_CALL_DUMMY (get_frame_pc (fi), 0, 0))
576 return 1;
577
578 /* If the new frame pointer is zero, then it isn't valid. */
579 if (fp == 0)
580 return 0;
581
582 /* If the new frame would be inside (younger than) the previous frame,
583 then it isn't valid. */
584 if (INNER_THAN (fp, get_frame_base (fi)))
585 return 0;
586
7c86889b
CV
587 /* If the architecture has a custom DEPRECATED_FRAME_CHAIN_VALID,
588 call it now. */
589 if (DEPRECATED_FRAME_CHAIN_VALID_P ())
590 return DEPRECATED_FRAME_CHAIN_VALID (fp, fi);
591
51603483
DJ
592 /* If we're already inside the entry function for the main objfile, then it
593 isn't valid. */
6e4c6c91 594 if (legacy_inside_entry_func (get_frame_pc (fi)))
51603483
DJ
595 return 0;
596
51603483 597 return 1;
c906108c 598}
This page took 0.324705 seconds and 4 git commands to generate.