]>
Commit | Line | Data |
---|---|---|
c906108c | 1 | /* Definitions for dealing with stack frames, for GDB, the GNU debugger. |
7cc19214 | 2 | |
4a94e368 | 3 | Copyright (C) 1986-2022 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 | |
a9762ec7 | 9 | the Free Software Foundation; either version 3 of the License, or |
c5aa993b | 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 | 17 | You should have received a copy of the GNU General Public License |
a9762ec7 | 18 | along with this program. If not, see <http://www.gnu.org/licenses/>. */ |
c906108c SS |
19 | |
20 | #if !defined (FRAME_H) | |
21 | #define FRAME_H 1 | |
22 | ||
ba380b3e TT |
23 | #include "frame-info.h" |
24 | ||
f0e7d0e8 | 25 | /* The following is the intended naming schema for frame functions. |
30baf67b | 26 | It isn't 100% consistent, but it is approaching that. Frame naming |
f0e7d0e8 AC |
27 | schema: |
28 | ||
29 | Prefixes: | |
30 | ||
0ee6c332 | 31 | get_frame_WHAT...(): Get WHAT from the THIS frame (functionally |
f0e7d0e8 AC |
32 | equivalent to THIS->next->unwind->what) |
33 | ||
34 | frame_unwind_WHAT...(): Unwind THIS frame's WHAT from the NEXT | |
35 | frame. | |
36 | ||
c7ce8faa DJ |
37 | frame_unwind_caller_WHAT...(): Unwind WHAT for NEXT stack frame's |
38 | real caller. Any inlined functions in NEXT's stack frame are | |
39 | skipped. Use these to ignore any potentially inlined functions, | |
40 | e.g. inlined into the first instruction of a library trampoline. | |
41 | ||
edb3359d DJ |
42 | get_stack_frame_WHAT...(): Get WHAT for THIS frame, but if THIS is |
43 | inlined, skip to the containing stack frame. | |
44 | ||
f0e7d0e8 AC |
45 | put_frame_WHAT...(): Put a value into this frame (unsafe, need to |
46 | invalidate the frame / regcache afterwards) (better name more | |
47 | strongly hinting at its unsafeness) | |
48 | ||
49 | safe_....(): Safer version of various functions, doesn't throw an | |
97916bfe SM |
50 | error (leave this for later?). Returns true / non-NULL if the request |
51 | succeeds, false / NULL otherwise. | |
f0e7d0e8 AC |
52 | |
53 | Suffixes: | |
54 | ||
55 | void /frame/_WHAT(): Read WHAT's value into the buffer parameter. | |
56 | ||
57 | ULONGEST /frame/_WHAT_unsigned(): Return an unsigned value (the | |
58 | alternative is *frame_unsigned_WHAT). | |
59 | ||
60 | LONGEST /frame/_WHAT_signed(): Return WHAT signed value. | |
61 | ||
62 | What: | |
63 | ||
64 | /frame/_memory* (frame, coreaddr, len [, buf]): Extract/return | |
65 | *memory. | |
66 | ||
67 | /frame/_register* (frame, regnum [, buf]): extract/return register. | |
68 | ||
69 | CORE_ADDR /frame/_{pc,sp,...} (frame): Resume address, innner most | |
70 | stack *address, ... | |
71 | ||
72 | */ | |
73 | ||
06096720 | 74 | #include "language.h" |
d4c16835 | 75 | #include "cli/cli-option.h" |
fe67a58f | 76 | #include "gdbsupport/common-debug.h" |
06096720 | 77 | |
1058bca7 | 78 | struct symtab_and_line; |
494cca16 | 79 | struct frame_unwind; |
da62e633 | 80 | struct frame_base; |
fe898f56 | 81 | struct block; |
cd983b5c | 82 | struct gdbarch; |
30e221b4 | 83 | struct ui_file; |
d73f9c4b | 84 | struct ui_out; |
d4c16835 | 85 | struct frame_print_options; |
494cca16 | 86 | |
c97eb5d9 AC |
87 | /* The frame object. */ |
88 | ||
bd2b40ac | 89 | class frame_info_ptr; |
c97eb5d9 | 90 | |
45f25d6c AB |
91 | /* Save and restore the currently selected frame. */ |
92 | ||
93 | class scoped_restore_selected_frame | |
94 | { | |
95 | public: | |
96 | /* Save the currently selected frame. */ | |
97 | scoped_restore_selected_frame (); | |
98 | ||
99 | /* Restore the currently selected frame. */ | |
100 | ~scoped_restore_selected_frame (); | |
101 | ||
102 | DISABLE_COPY_AND_ASSIGN (scoped_restore_selected_frame); | |
103 | ||
104 | private: | |
105 | ||
79952e69 | 106 | /* The ID and level of the previously selected frame. */ |
45f25d6c | 107 | struct frame_id m_fid; |
79952e69 PA |
108 | int m_level; |
109 | ||
110 | /* Save/restore the language as well, because selecting a frame | |
111 | changes the current language to the frame's language if "set | |
112 | language auto". */ | |
113 | enum language m_lang; | |
45f25d6c AB |
114 | }; |
115 | ||
669fac23 DJ |
116 | /* Flag to control debugging. */ |
117 | ||
dd4f75f2 | 118 | extern bool frame_debug; |
669fac23 | 119 | |
a05a883f SM |
120 | /* Print a "frame" debug statement. */ |
121 | ||
122 | #define frame_debug_printf(fmt, ...) \ | |
123 | debug_prefixed_printf_cond (frame_debug, "frame", fmt, ##__VA_ARGS__) | |
124 | ||
fe67a58f SM |
125 | /* Print "frame" enter/exit debug statements. */ |
126 | ||
127 | #define FRAME_SCOPED_DEBUG_ENTER_EXIT \ | |
128 | scoped_debug_enter_exit (frame_debug, "frame") | |
129 | ||
d0a55772 AC |
130 | /* Construct a frame ID. The first parameter is the frame's constant |
131 | stack address (typically the outer-bound), and the second the | |
12b0b6de UW |
132 | frame's constant code address (typically the entry point). |
133 | The special identifier address is set to indicate a wild card. */ | |
d0a55772 AC |
134 | extern struct frame_id frame_id_build (CORE_ADDR stack_addr, |
135 | CORE_ADDR code_addr); | |
7a424e99 | 136 | |
48c66725 JJ |
137 | /* Construct a special frame ID. The first parameter is the frame's constant |
138 | stack address (typically the outer-bound), the second is the | |
12b0b6de | 139 | frame's constant code address (typically the entry point), |
0963b4bd | 140 | and the third parameter is the frame's special identifier address. */ |
48c66725 JJ |
141 | extern struct frame_id frame_id_build_special (CORE_ADDR stack_addr, |
142 | CORE_ADDR code_addr, | |
143 | CORE_ADDR special_addr); | |
144 | ||
5ce0145d PA |
145 | /* Construct a frame ID representing a frame where the stack address |
146 | exists, but is unavailable. CODE_ADDR is the frame's constant code | |
147 | address (typically the entry point). The special identifier | |
148 | address is set to indicate a wild card. */ | |
149 | extern struct frame_id frame_id_build_unavailable_stack (CORE_ADDR code_addr); | |
150 | ||
8372a7cb MM |
151 | /* Construct a frame ID representing a frame where the stack address |
152 | exists, but is unavailable. CODE_ADDR is the frame's constant code | |
153 | address (typically the entry point). SPECIAL_ADDR is the special | |
154 | identifier address. */ | |
155 | extern struct frame_id | |
156 | frame_id_build_unavailable_stack_special (CORE_ADDR code_addr, | |
157 | CORE_ADDR special_addr); | |
158 | ||
12b0b6de UW |
159 | /* Construct a wild card frame ID. The parameter is the frame's constant |
160 | stack address (typically the outer-bound). The code address as well | |
161 | as the special identifier address are set to indicate wild cards. */ | |
162 | extern struct frame_id frame_id_build_wild (CORE_ADDR stack_addr); | |
163 | ||
97916bfe SM |
164 | /* Returns true when L is a valid frame. */ |
165 | extern bool frame_id_p (frame_id l); | |
7a424e99 | 166 | |
97916bfe | 167 | /* Returns true when L is a valid frame representing a frame made up by GDB |
193facb3 JK |
168 | without stack data representation in inferior, such as INLINE_FRAME or |
169 | TAILCALL_FRAME. */ | |
97916bfe | 170 | extern bool frame_id_artificial_p (frame_id l); |
edb3359d | 171 | |
93d42b30 DJ |
172 | /* Frame types. Some are real, some are signal trampolines, and some |
173 | are completely artificial (dummy). */ | |
174 | ||
175 | enum frame_type | |
176 | { | |
177 | /* A true stack frame, created by the target program during normal | |
178 | execution. */ | |
179 | NORMAL_FRAME, | |
180 | /* A fake frame, created by GDB when performing an inferior function | |
181 | call. */ | |
182 | DUMMY_FRAME, | |
edb3359d | 183 | /* A frame representing an inlined function, associated with an |
ccfc3d6e | 184 | upcoming (prev, outer, older) NORMAL_FRAME. */ |
edb3359d | 185 | INLINE_FRAME, |
111c6489 JK |
186 | /* A virtual frame of a tail call - see dwarf2_tailcall_frame_unwind. */ |
187 | TAILCALL_FRAME, | |
93d42b30 DJ |
188 | /* In a signal handler, various OSs handle this in various ways. |
189 | The main thing is that the frame may be far from normal. */ | |
190 | SIGTRAMP_FRAME, | |
36f15f55 UW |
191 | /* Fake frame representing a cross-architecture call. */ |
192 | ARCH_FRAME, | |
93d42b30 DJ |
193 | /* Sentinel or registers frame. This frame obtains register values |
194 | direct from the inferior's registers. */ | |
195 | SENTINEL_FRAME | |
196 | }; | |
197 | ||
c97eb5d9 AC |
198 | /* For every stopped thread, GDB tracks two frames: current and |
199 | selected. Current frame is the inner most frame of the selected | |
b021a221 | 200 | thread. Selected frame is the one being examined by the GDB |
abc0af47 AC |
201 | CLI (selected using `up', `down', ...). The frames are created |
202 | on-demand (via get_prev_frame()) and then held in a frame cache. */ | |
203 | /* FIXME: cagney/2002-11-28: Er, there is a lie here. If you do the | |
4a0e2f88 | 204 | sequence: `thread 1; up; thread 2; thread 1' you lose thread 1's |
abc0af47 AC |
205 | selected frame. At present GDB only tracks the selected frame of |
206 | the current thread. But be warned, that might change. */ | |
c97eb5d9 AC |
207 | /* FIXME: cagney/2002-11-14: At any time, only one thread's selected |
208 | and current frame can be active. Switching threads causes gdb to | |
209 | discard all that cached frame information. Ulgh! Instead, current | |
210 | and selected frame should be bound to a thread. */ | |
211 | ||
abc0af47 AC |
212 | /* On demand, create the inner most frame using information found in |
213 | the inferior. If the inner most frame can't be created, throw an | |
214 | error. */ | |
bd2b40ac | 215 | extern frame_info_ptr get_current_frame (void); |
c97eb5d9 | 216 | |
9d49bdc2 PA |
217 | /* Does the current target interface have enough state to be able to |
218 | query the current inferior for frame info, and is the inferior in a | |
219 | state where that is possible? */ | |
97916bfe | 220 | extern bool has_stack_frames (); |
9d49bdc2 | 221 | |
abc0af47 AC |
222 | /* Invalidates the frame cache (this function should have been called |
223 | invalidate_cached_frames). | |
224 | ||
35f196d9 DJ |
225 | FIXME: cagney/2002-11-28: There should be two methods: one that |
226 | reverts the thread's selected frame back to current frame (for when | |
227 | the inferior resumes) and one that does not (for when the user | |
228 | modifies the target invalidating the frame cache). */ | |
c97eb5d9 AC |
229 | extern void reinit_frame_cache (void); |
230 | ||
79952e69 PA |
231 | /* Return the selected frame. Always returns non-NULL. If there |
232 | isn't an inferior sufficient for creating a frame, an error is | |
233 | thrown. When MESSAGE is non-NULL, use it for the error message, | |
97916bfe | 234 | otherwise use a generic error message. */ |
6e7f8b9c AC |
235 | /* FIXME: cagney/2002-11-28: At present, when there is no selected |
236 | frame, this function always returns the current (inner most) frame. | |
237 | It should instead, when a thread has previously had its frame | |
238 | selected (but not resumed) and the frame cache invalidated, find | |
239 | and then return that thread's previously selected frame. */ | |
bd2b40ac | 240 | extern frame_info_ptr get_selected_frame (const char *message = nullptr); |
eb8c0621 | 241 | |
1de4b515 | 242 | /* Select a specific frame. */ |
9efe17a3 | 243 | extern void select_frame (frame_info_ptr); |
abc0af47 | 244 | |
79952e69 PA |
245 | /* Save the frame ID and frame level of the selected frame in FRAME_ID |
246 | and FRAME_LEVEL, to be restored later with restore_selected_frame. | |
247 | ||
248 | This is preferred over getting the same info out of | |
249 | get_selected_frame directly because this function does not create | |
250 | the selected-frame's frame_info object if it hasn't been created | |
251 | yet, and thus is more efficient and doesn't throw. */ | |
252 | extern void save_selected_frame (frame_id *frame_id, int *frame_level) | |
253 | noexcept; | |
254 | ||
255 | /* Restore selected frame as saved with save_selected_frame. | |
256 | ||
257 | Does not try to find the corresponding frame_info object. Instead | |
258 | the next call to get_selected_frame will look it up and cache the | |
259 | result. | |
260 | ||
261 | This function does not throw. It is designed to be safe to called | |
262 | from the destructors of RAII types. */ | |
263 | extern void restore_selected_frame (frame_id frame_id, int frame_level) | |
264 | noexcept; | |
265 | ||
c97eb5d9 AC |
266 | /* Given a FRAME, return the next (more inner, younger) or previous |
267 | (more outer, older) frame. */ | |
9efe17a3 SM |
268 | extern frame_info_ptr get_prev_frame (frame_info_ptr); |
269 | extern frame_info_ptr get_next_frame (frame_info_ptr); | |
c97eb5d9 | 270 | |
df433d31 KB |
271 | /* Like get_next_frame(), but allows return of the sentinel frame. NULL |
272 | is never returned. */ | |
9efe17a3 | 273 | extern frame_info_ptr get_next_frame_sentinel_okay (frame_info_ptr); |
df433d31 | 274 | |
51d48146 PA |
275 | /* Return a "struct frame_info" corresponding to the frame that called |
276 | THIS_FRAME. Returns NULL if there is no such frame. | |
277 | ||
278 | Unlike get_prev_frame, this function always tries to unwind the | |
279 | frame. */ | |
9efe17a3 | 280 | extern frame_info_ptr get_prev_frame_always (frame_info_ptr); |
51d48146 | 281 | |
04e2ac7b SM |
282 | /* Given a frame's ID, relocate the frame. Returns NULL if the frame |
283 | is not found. */ | |
284 | extern frame_info_ptr frame_find_by_id (frame_id id); | |
285 | ||
c97eb5d9 AC |
286 | /* Base attributes of a frame: */ |
287 | ||
288 | /* The frame's `resume' address. Where the program will resume in | |
ef6e7e13 AC |
289 | this frame. |
290 | ||
291 | This replaced: frame->pc; */ | |
9efe17a3 | 292 | extern CORE_ADDR get_frame_pc (frame_info_ptr); |
c97eb5d9 | 293 | |
e3eebbd7 PA |
294 | /* Same as get_frame_pc, but return a boolean indication of whether |
295 | the PC is actually available, instead of throwing an error. */ | |
296 | ||
bd2b40ac | 297 | extern bool get_frame_pc_if_available (frame_info_ptr frame, CORE_ADDR *pc); |
e3eebbd7 | 298 | |
4a0e2f88 | 299 | /* An address (not necessarily aligned to an instruction boundary) |
8edd5d01 AC |
300 | that falls within THIS frame's code block. |
301 | ||
302 | When a function call is the last statement in a block, the return | |
303 | address for the call may land at the start of the next block. | |
304 | Similarly, if a no-return function call is the last statement in | |
305 | the function, the return address may end up pointing beyond the | |
306 | function, and possibly at the start of the next function. | |
307 | ||
308 | These methods make an allowance for this. For call frames, this | |
309 | function returns the frame's PC-1 which "should" be an address in | |
310 | the frame's block. */ | |
311 | ||
bd2b40ac | 312 | extern CORE_ADDR get_frame_address_in_block (frame_info_ptr this_frame); |
93d42b30 | 313 | |
e3eebbd7 PA |
314 | /* Same as get_frame_address_in_block, but returns a boolean |
315 | indication of whether the frame address is determinable (when the | |
316 | PC is unavailable, it will not be), instead of possibly throwing an | |
317 | error trying to read an unavailable PC. */ | |
318 | ||
bd2b40ac | 319 | extern bool get_frame_address_in_block_if_available (frame_info_ptr this_frame, |
97916bfe | 320 | CORE_ADDR *pc); |
e3eebbd7 | 321 | |
a9e5fdc2 AC |
322 | /* The frame's inner-most bound. AKA the stack-pointer. Confusingly |
323 | known as top-of-stack. */ | |
324 | ||
9efe17a3 | 325 | extern CORE_ADDR get_frame_sp (frame_info_ptr); |
a9e5fdc2 | 326 | |
be41e9f4 AC |
327 | /* Following on from the `resume' address. Return the entry point |
328 | address of the function containing that resume address, or zero if | |
329 | that function isn't known. */ | |
bd2b40ac | 330 | extern CORE_ADDR get_frame_func (frame_info_ptr fi); |
be41e9f4 | 331 | |
e3eebbd7 PA |
332 | /* Same as get_frame_func, but returns a boolean indication of whether |
333 | the frame function is determinable (when the PC is unavailable, it | |
334 | will not be), instead of possibly throwing an error trying to read | |
335 | an unavailable PC. */ | |
336 | ||
bd2b40ac | 337 | extern bool get_frame_func_if_available (frame_info_ptr fi, CORE_ADDR *); |
e3eebbd7 | 338 | |
1058bca7 AC |
339 | /* Closely related to the resume address, various symbol table |
340 | attributes that are determined by the PC. Note that for a normal | |
341 | frame, the PC refers to the resume address after the return, and | |
342 | not the call instruction. In such a case, the address is adjusted | |
4a0e2f88 JM |
343 | so that it (approximately) identifies the call site (and not the |
344 | return site). | |
1058bca7 AC |
345 | |
346 | NOTE: cagney/2002-11-28: The frame cache could be used to cache the | |
347 | computed value. Working on the assumption that the bottle-neck is | |
348 | in the single step code, and that code causes the frame cache to be | |
349 | constantly flushed, caching things in a frame is probably of little | |
350 | benefit. As they say `show us the numbers'. | |
351 | ||
352 | NOTE: cagney/2002-11-28: Plenty more where this one came from: | |
353 | find_frame_block(), find_frame_partial_function(), | |
354 | find_frame_symtab(), find_frame_function(). Each will need to be | |
355 | carefully considered to determine if the real intent was for it to | |
356 | apply to the PC or the adjusted PC. */ | |
bd2b40ac | 357 | extern symtab_and_line find_frame_sal (frame_info_ptr frame); |
1058bca7 | 358 | |
7abfe014 | 359 | /* Set the current source and line to the location given by frame |
5166082f | 360 | FRAME, if possible. */ |
7abfe014 | 361 | |
9efe17a3 | 362 | void set_current_sal_from_frame (frame_info_ptr); |
7abfe014 | 363 | |
da62e633 AC |
364 | /* Return the frame base (what ever that is) (DEPRECATED). |
365 | ||
366 | Old code was trying to use this single method for two conflicting | |
367 | purposes. Such code needs to be updated to use either of: | |
368 | ||
369 | get_frame_id: A low level frame unique identifier, that consists of | |
370 | both a stack and a function address, that can be used to uniquely | |
371 | identify a frame. This value is determined by the frame's | |
372 | low-level unwinder, the stack part [typically] being the | |
373 | top-of-stack of the previous frame, and the function part being the | |
374 | function's start address. Since the correct identification of a | |
766062f6 | 375 | frameless function requires both a stack and function address, |
da62e633 AC |
376 | the old get_frame_base method was not sufficient. |
377 | ||
378 | get_frame_base_address: get_frame_locals_address: | |
379 | get_frame_args_address: A set of high-level debug-info dependant | |
380 | addresses that fall within the frame. These addresses almost | |
381 | certainly will not match the stack address part of a frame ID (as | |
ef6e7e13 AC |
382 | returned by get_frame_base). |
383 | ||
384 | This replaced: frame->frame; */ | |
c193f6ac | 385 | |
9efe17a3 | 386 | extern CORE_ADDR get_frame_base (frame_info_ptr); |
c193f6ac | 387 | |
c97eb5d9 | 388 | /* Return the per-frame unique identifer. Can be used to relocate a |
7a424e99 | 389 | frame after a frame cache flush (and other similar operations). If |
a0cbd650 | 390 | FI is NULL, return the null_frame_id. */ |
bd2b40ac TT |
391 | extern struct frame_id get_frame_id (frame_info_ptr fi); |
392 | extern struct frame_id get_stack_frame_id (frame_info_ptr fi); | |
393 | extern struct frame_id frame_unwind_caller_id (frame_info_ptr next_frame); | |
c97eb5d9 | 394 | |
da62e633 AC |
395 | /* Assuming that a frame is `normal', return its base-address, or 0 if |
396 | the information isn't available. NOTE: This address is really only | |
397 | meaningful to the frame's high-level debug info. */ | |
9efe17a3 | 398 | extern CORE_ADDR get_frame_base_address (frame_info_ptr); |
da62e633 | 399 | |
6bfb3e36 AC |
400 | /* Assuming that a frame is `normal', return the base-address of the |
401 | local variables, or 0 if the information isn't available. NOTE: | |
da62e633 AC |
402 | This address is really only meaningful to the frame's high-level |
403 | debug info. Typically, the argument and locals share a single | |
404 | base-address. */ | |
9efe17a3 | 405 | extern CORE_ADDR get_frame_locals_address (frame_info_ptr); |
da62e633 | 406 | |
6bfb3e36 AC |
407 | /* Assuming that a frame is `normal', return the base-address of the |
408 | parameter list, or 0 if that information isn't available. NOTE: | |
409 | This address is really only meaningful to the frame's high-level | |
410 | debug info. Typically, the argument and locals share a single | |
da62e633 | 411 | base-address. */ |
9efe17a3 | 412 | extern CORE_ADDR get_frame_args_address (frame_info_ptr); |
da62e633 | 413 | |
c97eb5d9 AC |
414 | /* The frame's level: 0 for innermost, 1 for its caller, ...; or -1 |
415 | for an invalid frame). */ | |
bd2b40ac | 416 | extern int frame_relative_level (frame_info_ptr fi); |
c97eb5d9 | 417 | |
93d42b30 | 418 | /* Return the frame's type. */ |
5a203e44 | 419 | |
9efe17a3 | 420 | extern enum frame_type get_frame_type (frame_info_ptr); |
6c95b8df PA |
421 | |
422 | /* Return the frame's program space. */ | |
9efe17a3 | 423 | extern struct program_space *get_frame_program_space (frame_info_ptr); |
6c95b8df PA |
424 | |
425 | /* Unwind THIS frame's program space from the NEXT frame. */ | |
9efe17a3 | 426 | extern struct program_space *frame_unwind_program_space (frame_info_ptr); |
6c95b8df | 427 | |
8b86c959 YQ |
428 | class address_space; |
429 | ||
6c95b8df | 430 | /* Return the frame's address space. */ |
9efe17a3 | 431 | extern const address_space *get_frame_address_space (frame_info_ptr); |
5a203e44 | 432 | |
55feb689 DJ |
433 | /* For frames where we can not unwind further, describe why. */ |
434 | ||
435 | enum unwind_stop_reason | |
436 | { | |
2231f1fb KP |
437 | #define SET(name, description) name, |
438 | #define FIRST_ENTRY(name) UNWIND_FIRST = name, | |
439 | #define LAST_ENTRY(name) UNWIND_LAST = name, | |
440 | #define FIRST_ERROR(name) UNWIND_FIRST_ERROR = name, | |
441 | ||
442 | #include "unwind_stop_reasons.def" | |
443 | #undef SET | |
444 | #undef FIRST_ENTRY | |
445 | #undef LAST_ENTRY | |
446 | #undef FIRST_ERROR | |
55feb689 DJ |
447 | }; |
448 | ||
449 | /* Return the reason why we can't unwind past this frame. */ | |
450 | ||
9efe17a3 | 451 | enum unwind_stop_reason get_frame_unwind_stop_reason (frame_info_ptr); |
55feb689 | 452 | |
53e8a631 AB |
453 | /* Translate a reason code to an informative string. This converts the |
454 | generic stop reason codes into a generic string describing the code. | |
455 | For a possibly frame specific string explaining the stop reason, use | |
456 | FRAME_STOP_REASON_STRING instead. */ | |
55feb689 | 457 | |
70e38b8e | 458 | const char *unwind_stop_reason_to_string (enum unwind_stop_reason); |
55feb689 | 459 | |
53e8a631 AB |
460 | /* Return a possibly frame specific string explaining why the unwind |
461 | stopped here. E.g., if unwinding tripped on a memory error, this | |
462 | will return the error description string, which includes the address | |
463 | that we failed to access. If there's no specific reason stored for | |
464 | a frame then a generic reason string will be returned. | |
465 | ||
466 | Should only be called for frames that don't have a previous frame. */ | |
467 | ||
9efe17a3 | 468 | const char *frame_stop_reason_string (frame_info_ptr); |
53e8a631 | 469 | |
c97eb5d9 AC |
470 | /* Unwind the stack frame so that the value of REGNUM, in the previous |
471 | (up, older) frame is returned. If VALUEP is NULL, don't | |
472 | fetch/compute the value. Instead just return the location of the | |
473 | value. */ | |
bd2b40ac | 474 | extern void frame_register_unwind (frame_info_ptr frame, int regnum, |
0fdb4f18 PA |
475 | int *optimizedp, int *unavailablep, |
476 | enum lval_type *lvalp, | |
c97eb5d9 | 477 | CORE_ADDR *addrp, int *realnump, |
10c42a71 | 478 | gdb_byte *valuep); |
c97eb5d9 | 479 | |
f0e7d0e8 AC |
480 | /* Fetch a register from this, or unwind a register from the next |
481 | frame. Note that the get_frame methods are wrappers to | |
482 | frame->next->unwind. They all [potentially] throw an error if the | |
669fac23 DJ |
483 | fetch fails. The value methods never return NULL, but usually |
484 | do return a lazy value. */ | |
c97eb5d9 | 485 | |
bd2b40ac | 486 | extern void frame_unwind_register (frame_info_ptr next_frame, |
10c42a71 | 487 | int regnum, gdb_byte *buf); |
bd2b40ac | 488 | extern void get_frame_register (frame_info_ptr frame, |
10c42a71 | 489 | int regnum, gdb_byte *buf); |
f0e7d0e8 | 490 | |
bd2b40ac | 491 | struct value *frame_unwind_register_value (frame_info_ptr next_frame, |
669fac23 | 492 | int regnum); |
bd2b40ac | 493 | struct value *get_frame_register_value (frame_info_ptr frame, |
669fac23 DJ |
494 | int regnum); |
495 | ||
bd2b40ac | 496 | extern LONGEST frame_unwind_register_signed (frame_info_ptr next_frame, |
f0e7d0e8 | 497 | int regnum); |
bd2b40ac | 498 | extern LONGEST get_frame_register_signed (frame_info_ptr frame, |
f0e7d0e8 | 499 | int regnum); |
bd2b40ac | 500 | extern ULONGEST frame_unwind_register_unsigned (frame_info_ptr frame, |
0ee6c332 | 501 | int regnum); |
bd2b40ac | 502 | extern ULONGEST get_frame_register_unsigned (frame_info_ptr frame, |
f0e7d0e8 AC |
503 | int regnum); |
504 | ||
263689d8 | 505 | /* Read a register from this, or unwind a register from the next |
ad5f7d6e PA |
506 | frame. Note that the read_frame methods are wrappers to |
507 | get_frame_register_value, that do not throw if the result is | |
508 | optimized out or unavailable. */ | |
509 | ||
bd2b40ac | 510 | extern bool read_frame_register_unsigned (frame_info_ptr frame, |
97916bfe | 511 | int regnum, ULONGEST *val); |
5b181d62 | 512 | |
ff2e87ac AC |
513 | /* The reverse. Store a register value relative to the specified |
514 | frame. Note: this call makes the frame's state undefined. The | |
515 | register and frame caches must be flushed. */ | |
bd2b40ac | 516 | extern void put_frame_register (frame_info_ptr frame, int regnum, |
10c42a71 | 517 | const gdb_byte *buf); |
ff2e87ac | 518 | |
00fa51f6 | 519 | /* Read LEN bytes from one or multiple registers starting with REGNUM |
8dccd430 PA |
520 | in frame FRAME, starting at OFFSET, into BUF. If the register |
521 | contents are optimized out or unavailable, set *OPTIMIZEDP, | |
522 | *UNAVAILABLEP accordingly. */ | |
bd2b40ac | 523 | extern bool get_frame_register_bytes (frame_info_ptr frame, int regnum, |
bdec2917 LM |
524 | CORE_ADDR offset, |
525 | gdb::array_view<gdb_byte> buffer, | |
97916bfe | 526 | int *optimizedp, int *unavailablep); |
00fa51f6 | 527 | |
bdec2917 LM |
528 | /* Write bytes from BUFFER to one or multiple registers starting with REGNUM |
529 | in frame FRAME, starting at OFFSET. */ | |
bd2b40ac | 530 | extern void put_frame_register_bytes (frame_info_ptr frame, int regnum, |
bdec2917 LM |
531 | CORE_ADDR offset, |
532 | gdb::array_view<const gdb_byte> buffer); | |
00fa51f6 | 533 | |
f18c5a73 AC |
534 | /* Unwind the PC. Strictly speaking return the resume address of the |
535 | calling frame. For GDB, `pc' is the resume address and not a | |
536 | specific register. */ | |
537 | ||
bd2b40ac | 538 | extern CORE_ADDR frame_unwind_caller_pc (frame_info_ptr frame); |
f18c5a73 | 539 | |
dbe9fe58 AC |
540 | /* Discard the specified frame. Restoring the registers to the state |
541 | of the caller. */ | |
bd2b40ac | 542 | extern void frame_pop (frame_info_ptr frame); |
dbe9fe58 | 543 | |
ae1e7417 AC |
544 | /* Return memory from the specified frame. A frame knows its thread / |
545 | LWP and hence can find its way down to a target. The assumption | |
546 | here is that the current and previous frame share a common address | |
547 | space. | |
548 | ||
549 | If the memory read fails, these methods throw an error. | |
550 | ||
551 | NOTE: cagney/2003-06-03: Should there be unwind versions of these | |
552 | methods? That isn't clear. Can code, for instance, assume that | |
553 | this and the previous frame's memory or architecture are identical? | |
554 | If architecture / memory changes are always separated by special | |
555 | adaptor frames this should be ok. */ | |
556 | ||
bd2b40ac | 557 | extern void get_frame_memory (frame_info_ptr this_frame, CORE_ADDR addr, |
bdec2917 | 558 | gdb::array_view<gdb_byte> buffer); |
bd2b40ac | 559 | extern LONGEST get_frame_memory_signed (frame_info_ptr this_frame, |
ae1e7417 | 560 | CORE_ADDR memaddr, int len); |
bd2b40ac | 561 | extern ULONGEST get_frame_memory_unsigned (frame_info_ptr this_frame, |
ae1e7417 AC |
562 | CORE_ADDR memaddr, int len); |
563 | ||
97916bfe SM |
564 | /* Same as above, but return true zero when the entire memory read |
565 | succeeds, false otherwise. */ | |
bd2b40ac | 566 | extern bool safe_frame_unwind_memory (frame_info_ptr this_frame, CORE_ADDR addr, |
bdec2917 | 567 | gdb::array_view<gdb_byte> buffer); |
304396fb | 568 | |
ae1e7417 | 569 | /* Return this frame's architecture. */ |
bd2b40ac | 570 | extern struct gdbarch *get_frame_arch (frame_info_ptr this_frame); |
ae1e7417 | 571 | |
36f15f55 | 572 | /* Return the previous frame's architecture. */ |
bd2b40ac | 573 | extern struct gdbarch *frame_unwind_arch (frame_info_ptr next_frame); |
36f15f55 UW |
574 | |
575 | /* Return the previous frame's architecture, skipping inline functions. */ | |
bd2b40ac | 576 | extern struct gdbarch *frame_unwind_caller_arch (frame_info_ptr frame); |
36f15f55 | 577 | |
ae1e7417 | 578 | |
4b5e8d19 PW |
579 | /* Values for the source flag to be used in print_frame_info (). |
580 | For all the cases below, the address is never printed if | |
581 | 'set print address' is off. When 'set print address' is on, | |
582 | the address is printed if the program counter is not at the | |
583 | beginning of the source line of the frame | |
584 | and PRINT_WHAT is != LOC_AND_ADDRESS. */ | |
c5394b80 | 585 | enum print_what |
4b5e8d19 PW |
586 | { |
587 | /* Print only the address, source line, like in stepi. */ | |
588 | SRC_LINE = -1, | |
589 | /* Print only the location, i.e. level, address, | |
590 | function, args (as controlled by 'set print frame-arguments'), | |
591 | file, line, line num. */ | |
c5394b80 | 592 | LOCATION, |
0963b4bd | 593 | /* Print both of the above. */ |
4b5e8d19 PW |
594 | SRC_AND_LOC, |
595 | /* Print location only, print the address even if the program counter | |
596 | is at the beginning of the source line. */ | |
597 | LOC_AND_ADDRESS, | |
598 | /* Print only level and function, | |
599 | i.e. location only, without address, file, line, line num. */ | |
600 | SHORT_LOCATION | |
c5394b80 JM |
601 | }; |
602 | ||
479ab5a0 AC |
603 | /* Allocate zero initialized memory from the frame cache obstack. |
604 | Appendices to the frame info (such as the unwind cache) should | |
605 | allocate memory using this method. */ | |
606 | ||
607 | extern void *frame_obstack_zalloc (unsigned long size); | |
3e43a32a MS |
608 | #define FRAME_OBSTACK_ZALLOC(TYPE) \ |
609 | ((TYPE *) frame_obstack_zalloc (sizeof (TYPE))) | |
610 | #define FRAME_OBSTACK_CALLOC(NUMBER,TYPE) \ | |
611 | ((TYPE *) frame_obstack_zalloc ((NUMBER) * sizeof (TYPE))) | |
c906108c | 612 | |
daf6667d | 613 | class readonly_detached_regcache; |
a81dcb05 | 614 | /* Create a regcache, and copy the frame's registers into it. */ |
daf6667d | 615 | std::unique_ptr<readonly_detached_regcache> frame_save_as_regcache |
bd2b40ac | 616 | (frame_info_ptr this_frame); |
a81dcb05 | 617 | |
9efe17a3 | 618 | extern const struct block *get_frame_block (frame_info_ptr, |
3977b71f | 619 | CORE_ADDR *addr_in_block); |
c906108c | 620 | |
805e2818 AC |
621 | /* Return the `struct block' that belongs to the selected thread's |
622 | selected frame. If the inferior has no state, return NULL. | |
623 | ||
624 | NOTE: cagney/2002-11-29: | |
625 | ||
626 | No state? Does the inferior have any execution state (a core file | |
627 | does, an executable does not). At present the code tests | |
628 | `target_has_stack' but I'm left wondering if it should test | |
629 | `target_has_registers' or, even, a merged target_has_state. | |
630 | ||
631 | Should it look at the most recently specified SAL? If the target | |
632 | has no state, should this function try to extract a block from the | |
633 | most recently selected SAL? That way `list foo' would give it some | |
4a0e2f88 | 634 | sort of reference point. Then again, perhaps that would confuse |
805e2818 AC |
635 | things. |
636 | ||
637 | Calls to this function can be broken down into two categories: Code | |
638 | that uses the selected block as an additional, but optional, data | |
639 | point; Code that uses the selected block as a prop, when it should | |
640 | have the relevant frame/block/pc explicitly passed in. | |
641 | ||
642 | The latter can be eliminated by correctly parameterizing the code, | |
643 | the former though is more interesting. Per the "address" command, | |
4a0e2f88 | 644 | it occurs in the CLI code and makes it possible for commands to |
805e2818 AC |
645 | work, even when the inferior has no state. */ |
646 | ||
3977b71f | 647 | extern const struct block *get_selected_block (CORE_ADDR *addr_in_block); |
c906108c | 648 | |
9efe17a3 | 649 | extern struct symbol *get_frame_function (frame_info_ptr); |
c906108c | 650 | |
a14ed312 | 651 | extern CORE_ADDR get_pc_function_start (CORE_ADDR); |
c906108c | 652 | |
9efe17a3 | 653 | extern frame_info_ptr find_relative_frame (frame_info_ptr, int *); |
c906108c | 654 | |
4034d0ff AT |
655 | /* Wrapper over print_stack_frame modifying current_uiout with UIOUT for |
656 | the function call. */ | |
657 | ||
658 | extern void print_stack_frame_to_uiout (struct ui_out *uiout, | |
9efe17a3 | 659 | frame_info_ptr, int print_level, |
4034d0ff AT |
660 | enum print_what print_what, |
661 | int set_current_sal); | |
662 | ||
9efe17a3 | 663 | extern void print_stack_frame (frame_info_ptr, int print_level, |
08d72866 PA |
664 | enum print_what print_what, |
665 | int set_current_sal); | |
c906108c | 666 | |
d4c16835 | 667 | extern void print_frame_info (const frame_print_options &fp_opts, |
9efe17a3 | 668 | frame_info_ptr, int print_level, |
08d72866 PA |
669 | enum print_what print_what, int args, |
670 | int set_current_sal); | |
c906108c | 671 | |
bd2b40ac | 672 | extern frame_info_ptr block_innermost_frame (const struct block *); |
c906108c | 673 | |
bd2b40ac | 674 | extern bool deprecated_frame_register_read (frame_info_ptr frame, int regnum, |
97916bfe | 675 | gdb_byte *buf); |
cda5a58a | 676 | |
36dc181b | 677 | /* From stack.c. */ |
93d86cef | 678 | |
d4c16835 PA |
679 | /* The possible choices of "set print frame-arguments". */ |
680 | extern const char print_frame_arguments_all[]; | |
681 | extern const char print_frame_arguments_scalars[]; | |
682 | extern const char print_frame_arguments_none[]; | |
683 | ||
4b5e8d19 PW |
684 | /* The possible choices of "set print frame-info". */ |
685 | extern const char print_frame_info_auto[]; | |
686 | extern const char print_frame_info_source_line[]; | |
687 | extern const char print_frame_info_location[]; | |
688 | extern const char print_frame_info_source_and_location[]; | |
689 | extern const char print_frame_info_location_and_address[]; | |
690 | extern const char print_frame_info_short_location[]; | |
691 | ||
d4c16835 | 692 | /* The possible choices of "set print entry-values". */ |
e18b2753 JK |
693 | extern const char print_entry_values_no[]; |
694 | extern const char print_entry_values_only[]; | |
695 | extern const char print_entry_values_preferred[]; | |
696 | extern const char print_entry_values_if_needed[]; | |
697 | extern const char print_entry_values_both[]; | |
698 | extern const char print_entry_values_compact[]; | |
699 | extern const char print_entry_values_default[]; | |
d4c16835 PA |
700 | |
701 | /* Data for the frame-printing "set print" settings exposed as command | |
702 | options. */ | |
703 | ||
704 | struct frame_print_options | |
705 | { | |
706 | const char *print_frame_arguments = print_frame_arguments_scalars; | |
4b5e8d19 | 707 | const char *print_frame_info = print_frame_info_auto; |
d4c16835 PA |
708 | const char *print_entry_values = print_entry_values_default; |
709 | ||
491144b5 | 710 | /* If true, don't invoke pretty-printers for frame |
d4c16835 | 711 | arguments. */ |
491144b5 | 712 | bool print_raw_frame_arguments; |
d4c16835 PA |
713 | }; |
714 | ||
715 | /* The values behind the global "set print ..." settings. */ | |
716 | extern frame_print_options user_frame_print_options; | |
e18b2753 | 717 | |
93d86cef JK |
718 | /* Inferior function parameter value read in from a frame. */ |
719 | ||
720 | struct frame_arg | |
721 | { | |
722 | /* Symbol for this parameter used for example for its name. */ | |
123cd851 | 723 | struct symbol *sym = nullptr; |
93d86cef JK |
724 | |
725 | /* Value of the parameter. It is NULL if ERROR is not NULL; if both VAL and | |
726 | ERROR are NULL this parameter's value should not be printed. */ | |
123cd851 | 727 | struct value *val = nullptr; |
93d86cef JK |
728 | |
729 | /* String containing the error message, it is more usually NULL indicating no | |
730 | error occured reading this parameter. */ | |
123cd851 | 731 | gdb::unique_xmalloc_ptr<char> error; |
e18b2753 JK |
732 | |
733 | /* One of the print_entry_values_* entries as appropriate specifically for | |
734 | this frame_arg. It will be different from print_entry_values. With | |
735 | print_entry_values_no this frame_arg should be printed as a normal | |
736 | parameter. print_entry_values_only says it should be printed as entry | |
737 | value parameter. print_entry_values_compact says it should be printed as | |
738 | both as a normal parameter and entry values parameter having the same | |
739 | value - print_entry_values_compact is not permitted fi ui_out_is_mi_like_p | |
740 | (in such case print_entry_values_no and print_entry_values_only is used | |
741 | for each parameter kind specifically. */ | |
123cd851 | 742 | const char *entry_kind = nullptr; |
93d86cef JK |
743 | }; |
744 | ||
d4c16835 | 745 | extern void read_frame_arg (const frame_print_options &fp_opts, |
bd2b40ac | 746 | symbol *sym, frame_info_ptr frame, |
e18b2753 JK |
747 | struct frame_arg *argp, |
748 | struct frame_arg *entryargp); | |
bd2b40ac | 749 | extern void read_frame_local (struct symbol *sym, frame_info_ptr frame, |
82a0a75f | 750 | struct frame_arg *argp); |
93d86cef | 751 | |
1d12d88f | 752 | extern void info_args_command (const char *, int); |
36dc181b | 753 | |
1d12d88f | 754 | extern void info_locals_command (const char *, int); |
36dc181b | 755 | |
0b39b52e | 756 | extern void return_command (const char *, int); |
36dc181b | 757 | |
669fac23 | 758 | /* Set FRAME's unwinder temporarily, so that we can call a sniffer. |
30a9c02f TT |
759 | If sniffing fails, the caller should be sure to call |
760 | frame_cleanup_after_sniffer. */ | |
669fac23 | 761 | |
bd2b40ac | 762 | extern void frame_prepare_for_sniffer (frame_info_ptr frame, |
30a9c02f TT |
763 | const struct frame_unwind *unwind); |
764 | ||
765 | /* Clean up after a failed (wrong unwinder) attempt to unwind past | |
766 | FRAME. */ | |
767 | ||
bd2b40ac | 768 | extern void frame_cleanup_after_sniffer (frame_info_ptr frame); |
abc0af47 | 769 | |
206415a3 | 770 | /* Notes (cagney/2002-11-27, drow/2003-09-06): |
abc0af47 | 771 | |
206415a3 DJ |
772 | You might think that calls to this function can simply be replaced by a |
773 | call to get_selected_frame(). | |
abc0af47 | 774 | |
ce2826aa | 775 | Unfortunately, it isn't that easy. |
abc0af47 AC |
776 | |
777 | The relevant code needs to be audited to determine if it is | |
4a0e2f88 | 778 | possible (or practical) to instead pass the applicable frame in as a |
abc0af47 | 779 | parameter. For instance, DEPRECATED_DO_REGISTERS_INFO() relied on |
6e7f8b9c | 780 | the deprecated_selected_frame global, while its replacement, |
abc0af47 | 781 | PRINT_REGISTERS_INFO(), is parameterized with the selected frame. |
4a0e2f88 | 782 | The only real exceptions occur at the edge (in the CLI code) where |
abc0af47 AC |
783 | user commands need to pick up the selected frame before proceeding. |
784 | ||
206415a3 DJ |
785 | There are also some functions called with a NULL frame meaning either "the |
786 | program is not running" or "use the selected frame". | |
787 | ||
abc0af47 AC |
788 | This is important. GDB is trying to stamp out the hack: |
789 | ||
206415a3 DJ |
790 | saved_frame = deprecated_safe_get_selected_frame (); |
791 | select_frame (...); | |
abc0af47 | 792 | hack_using_global_selected_frame (); |
206415a3 | 793 | select_frame (saved_frame); |
7dd88986 | 794 | |
206415a3 | 795 | Take care! |
7dd88986 DJ |
796 | |
797 | This function calls get_selected_frame if the inferior should have a | |
798 | frame, or returns NULL otherwise. */ | |
799 | ||
bd2b40ac | 800 | extern frame_info_ptr deprecated_safe_get_selected_frame (void); |
abc0af47 | 801 | |
18ea5ba4 | 802 | /* Create a frame using the specified BASE and PC. */ |
abc0af47 | 803 | |
bd2b40ac | 804 | extern frame_info_ptr create_new_frame (CORE_ADDR base, CORE_ADDR pc); |
abc0af47 | 805 | |
e7802207 TT |
806 | /* Return true if the frame unwinder for frame FI is UNWINDER; false |
807 | otherwise. */ | |
808 | ||
bd2b40ac | 809 | extern bool frame_unwinder_is (frame_info_ptr fi, const frame_unwind *unwinder); |
e7802207 | 810 | |
06096720 AB |
811 | /* Return the language of FRAME. */ |
812 | ||
bd2b40ac | 813 | extern enum language get_frame_language (frame_info_ptr frame); |
06096720 | 814 | |
2f3ef606 | 815 | /* Return the first non-tailcall frame above FRAME or FRAME if it is not a |
33b4777c MM |
816 | tailcall frame. Return NULL if FRAME is the start of a tailcall-only |
817 | chain. */ | |
2f3ef606 | 818 | |
bd2b40ac | 819 | extern frame_info_ptr skip_tailcall_frames (frame_info_ptr frame); |
06096720 | 820 | |
7eb89530 YQ |
821 | /* Return the first frame above FRAME or FRAME of which the code is |
822 | writable. */ | |
823 | ||
bd2b40ac | 824 | extern frame_info_ptr skip_unwritable_frames (frame_info_ptr frame); |
7eb89530 | 825 | |
d4c16835 PA |
826 | /* Data for the "set backtrace" settings. */ |
827 | ||
828 | struct set_backtrace_options | |
829 | { | |
830 | /* Flag to indicate whether backtraces should continue past | |
831 | main. */ | |
491144b5 | 832 | bool backtrace_past_main = false; |
d4c16835 PA |
833 | |
834 | /* Flag to indicate whether backtraces should continue past | |
835 | entry. */ | |
491144b5 | 836 | bool backtrace_past_entry = false; |
d4c16835 PA |
837 | |
838 | /* Upper bound on the number of backtrace levels. Note this is not | |
839 | exposed as a command option, because "backtrace" and "frame | |
840 | apply" already have other means to set a frame count limit. */ | |
841 | unsigned int backtrace_limit = UINT_MAX; | |
842 | }; | |
843 | ||
844 | /* The corresponding option definitions. */ | |
845 | extern const gdb::option::option_def set_backtrace_option_defs[2]; | |
846 | ||
847 | /* The values behind the global "set backtrace ..." settings. */ | |
848 | extern set_backtrace_options user_set_backtrace_options; | |
849 | ||
e7bc9db8 PA |
850 | /* Get the number of calls to reinit_frame_cache. */ |
851 | ||
852 | unsigned int get_frame_cache_generation (); | |
853 | ||
3d31bc39 AH |
854 | /* Mark that the PC value is masked for the previous frame. */ |
855 | ||
bd2b40ac | 856 | extern void set_frame_previous_pc_masked (frame_info_ptr frame); |
3d31bc39 AH |
857 | |
858 | /* Get whether the PC value is masked for the given frame. */ | |
859 | ||
bd2b40ac | 860 | extern bool get_frame_pc_masked (frame_info_ptr frame); |
3d31bc39 AH |
861 | |
862 | ||
c906108c | 863 | #endif /* !defined (FRAME_H) */ |