]> git.ipfire.org Git - thirdparty/gcc.git/blame - libgcc/unwind-dw2.h
Update copyright years.
[thirdparty/gcc.git] / libgcc / unwind-dw2.h
CommitLineData
f8a57be8 1/* DWARF2 frame unwind data structure.
a945c346 2 Copyright (C) 1997-2024 Free Software Foundation, Inc.
f8a57be8
GK
3
4 This file is part of GCC.
5
6 GCC is free software; you can redistribute it and/or modify it
7 under the terms of the GNU General Public License as published by
748086b7 8 the Free Software Foundation; either version 3, or (at your option)
f8a57be8
GK
9 any later version.
10
f8a57be8
GK
11 GCC is distributed in the hope that it will be useful, but WITHOUT
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
14 License for more details.
15
748086b7
JJ
16 Under Section 7 of GPL version 3, you are granted additional
17 permissions described in the GCC Runtime Library Exception, version
18 3.1, as published by the Free Software Foundation.
19
20 You should have received a copy of the GNU General Public License and
21 a copy of the GCC Runtime Library Exception along with this program;
22 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
23 <http://www.gnu.org/licenses/>. */
f8a57be8 24
146e4591
JJ
25enum {
26 REG_UNSAVED,
27 REG_SAVED_OFFSET,
28 REG_SAVED_REG,
29 REG_SAVED_EXP,
30 REG_SAVED_VAL_OFFSET,
31 REG_SAVED_VAL_EXP,
c98cd1df 32 REG_UNSAVED_ARCHEXT, /* Target specific extension. */
146e4591
JJ
33 REG_UNDEFINED
34};
35
f8a57be8
GK
36/* The result of interpreting the frame unwind info for a frame.
37 This is all symbolic at this point, as none of the values can
38 be resolved until the target pc is located. */
39typedef struct
40{
41 /* Each register save state can be described in terms of a CFA slot,
42 another register, or a location expression. */
43 struct frame_state_reg_info
44 {
45 struct {
46 union {
47 _Unwind_Word reg;
48 _Unwind_Sword offset;
49 const unsigned char *exp;
50 } loc;
53d68b9f 51 } reg[__LIBGCC_DWARF_FRAME_REGISTERS__+1];
146e4591 52 unsigned char how[__LIBGCC_DWARF_FRAME_REGISTERS__+1];
f8a57be8 53
acdb2416
FW
54 enum {
55 CFA_UNSET,
56 CFA_REG_OFFSET,
57 CFA_EXP
58 } cfa_how : 8;
59
f8a57be8
GK
60 /* Used to implement DW_CFA_remember_state. */
61 struct frame_state_reg_info *prev;
f8a57be8 62
6673f90b
NF
63 /* The CFA can be described in terms of a reg+offset or a
64 location expression. */
65 _Unwind_Sword cfa_offset;
66 _Unwind_Word cfa_reg;
67 const unsigned char *cfa_exp;
6673f90b 68 } regs;
f8a57be8
GK
69
70 /* The PC described by the current frame state. */
71 void *pc;
72
73 /* The information we care about from the CIE/FDE. */
74 _Unwind_Personality_Fn personality;
75 _Unwind_Sword data_align;
76 _Unwind_Word code_align;
77 _Unwind_Word retaddr_column;
78 unsigned char fde_encoding;
79 unsigned char lsda_encoding;
80 unsigned char saw_z;
754e45a8 81 unsigned char signal_frame;
f8a57be8
GK
82 void *eh_ptr;
83} _Unwind_FrameState;
84