* emultempl/elf32.em (gld${EMULATION_NAME}_get_script): Add combreloc
[deliverable/binutils-gdb.git] / gdb / dwarf2cfi.h
CommitLineData
b6af0555
JS
1/* Stack unwinding code based on dwarf2 frame info for GDB, the GNU debugger.
2 Copyright 2001
3 Free Software Foundation, Inc.
4
5 This file is part of GDB.
6
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
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
11
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.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
21
22#ifndef DWARF2CFI_H
23#define DWARF2CFI_H
24
baed091b
ML
25struct context_reg
26{
27 union
28 {
29 unsigned int reg;
30 long offset;
31 CORE_ADDR addr;
32 }
33 loc;
34 enum
35 {
36 REG_CTX_UNSAVED,
37 REG_CTX_SAVED_OFFSET,
38 REG_CTX_SAVED_REG,
39 REG_CTX_SAVED_ADDR,
40 REG_CTX_VALUE,
41 }
42 how;
43};
44
45/* This is the register and unwind state for a particular frame. */
46struct context
47{
48 struct context_reg *reg;
49
50 CORE_ADDR cfa;
51 CORE_ADDR ra;
52 void *lsda;
53 int args_size;
54};
55
b6af0555
JS
56/* Return the frame address. */
57CORE_ADDR cfi_read_fp ();
58
59/* Store the frame address. */
60void cfi_write_fp (CORE_ADDR val);
61
62/* Restore the machine to the state it had before the current frame
63 was created. */
64void cfi_pop_frame (struct frame_info *);
65
66/* Determine the address of the calling function's frame. */
67CORE_ADDR cfi_frame_chain (struct frame_info *fi);
68
69/* Sets the pc of the frame. */
97f46953 70CORE_ADDR cfi_init_frame_pc (int fromleaf, struct frame_info *fi);
b6af0555
JS
71
72/* Initialize unwind context informations of the frame. */
73void cfi_init_extra_frame_info (int fromleaf, struct frame_info *fi);
74
75/* Obtain return address of the frame. */
76CORE_ADDR cfi_get_ra (struct frame_info *fi);
77
78/* Find register number REGNUM relative to FRAME and put its
79 (raw) contents in *RAW_BUFFER. Set *OPTIMIZED if the variable
80 was optimized out (and thus can't be fetched). If the variable
81 was fetched from memory, set *ADDRP to where it was fetched from,
82 otherwise it was fetched from a register.
83
84 The argument RAW_BUFFER must point to aligned memory. */
85void cfi_get_saved_register (char *raw_buffer,
86 int *optimized,
b64bbf8c 87 CORE_ADDR *addrp,
b6af0555
JS
88 struct frame_info *frame,
89 int regnum, enum lval_type *lval);
90
91/* Return the register that the function uses for a frame pointer,
92 plus any necessary offset to be applied to the register before
93 any frame pointer offsets. */
94void cfi_virtual_frame_pointer (CORE_ADDR pc, int *frame_regnum,
95 LONGEST * frame_offset);
96
baed091b
ML
97struct context *context_alloc ();
98void context_cpy (struct context *dst, struct context *src);
99struct frame_state *frame_state_alloc ();
b6af0555 100#endif
This page took 0.131054 seconds and 4 git commands to generate.