1 /* Exception handling and frame unwind runtime interface routines.
2 Copyright (C) 2001, 2002 Free Software Foundation, Inc.
4 This file is part of GCC.
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
8 the Free Software Foundation; either version 2, or (at your option)
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.
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING. If not, write to the Free
18 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
21 /* @@@ Really this should be out of line, but this also causes link
22 compatibility problems with the base ABI. This is slightly better
23 than duplicating code, however. */
25 /* If using C++, references to abort have to be qualified with std::. */
27 #define __gxx_abort std::abort
29 #define __gxx_abort abort
32 /* Pointer encodings, from dwarf2.h. */
33 #define DW_EH_PE_absptr 0x00
34 #define DW_EH_PE_omit 0xff
36 #define DW_EH_PE_uleb128 0x01
37 #define DW_EH_PE_udata2 0x02
38 #define DW_EH_PE_udata4 0x03
39 #define DW_EH_PE_udata8 0x04
40 #define DW_EH_PE_sleb128 0x09
41 #define DW_EH_PE_sdata2 0x0A
42 #define DW_EH_PE_sdata4 0x0B
43 #define DW_EH_PE_sdata8 0x0C
44 #define DW_EH_PE_signed 0x08
46 #define DW_EH_PE_pcrel 0x10
47 #define DW_EH_PE_textrel 0x20
48 #define DW_EH_PE_datarel 0x30
49 #define DW_EH_PE_funcrel 0x40
50 #define DW_EH_PE_aligned 0x50
52 #define DW_EH_PE_indirect 0x80
55 #ifndef NO_SIZE_OF_ENCODED_VALUE
57 /* Given an encoding, return the number of bytes the format occupies.
58 This is only defined for fixed-size encodings, and so does not
62 size_of_encoded_value (unsigned char encoding
)
64 if (encoding
== DW_EH_PE_omit
)
67 switch (encoding
& 0x07)
70 return sizeof (void *);
83 #ifndef NO_BASE_OF_ENCODED_VALUE
85 /* Given an encoding and an _Unwind_Context, return the base to which
86 the encoding is relative. This base may then be passed to
87 read_encoded_value_with_base for use when the _Unwind_Context is
91 base_of_encoded_value (unsigned char encoding
, struct _Unwind_Context
*context
)
93 if (encoding
== DW_EH_PE_omit
)
96 switch (encoding
& 0x70)
100 case DW_EH_PE_aligned
:
103 case DW_EH_PE_textrel
:
104 return _Unwind_GetTextRelBase (context
);
105 case DW_EH_PE_datarel
:
106 return _Unwind_GetDataRelBase (context
);
107 case DW_EH_PE_funcrel
:
108 return _Unwind_GetRegionStart (context
);
115 /* Read an unsigned leb128 value from P, store the value in VAL, return
116 P incremented past the value. We assume that a word is large enough to
117 hold any value so encoded; if it is smaller than a pointer on some target,
118 pointers should not be leb128 encoded on that target. */
120 static const unsigned char *
121 read_uleb128 (const unsigned char *p
, _Unwind_Word
*val
)
123 unsigned int shift
= 0;
131 result
|= (byte
& 0x7f) << shift
;
140 /* Similar, but read a signed leb128 value. */
142 static const unsigned char *
143 read_sleb128 (const unsigned char *p
, _Unwind_Sword
*val
)
145 unsigned int shift
= 0;
153 result
|= (byte
& 0x7f) << shift
;
158 /* Sign-extend a negative value. */
159 if (shift
< 8 * sizeof(result
) && (byte
& 0x40) != 0)
160 result
|= -(1L << shift
);
162 *val
= (_Unwind_Sword
) result
;
166 /* Load an encoded value from memory at P. The value is returned in VAL;
167 The function returns P incremented past the value. BASE is as given
168 by base_of_encoded_value for this encoding in the appropriate context. */
170 static const unsigned char *
171 read_encoded_value_with_base (unsigned char encoding
, _Unwind_Ptr base
,
172 const unsigned char *p
, _Unwind_Ptr
*val
)
177 unsigned u2
__attribute__ ((mode (HI
)));
178 unsigned u4
__attribute__ ((mode (SI
)));
179 unsigned u8
__attribute__ ((mode (DI
)));
180 signed s2
__attribute__ ((mode (HI
)));
181 signed s4
__attribute__ ((mode (SI
)));
182 signed s8
__attribute__ ((mode (DI
)));
183 } __attribute__((__packed__
));
185 union unaligned
*u
= (union unaligned
*) p
;
186 _Unwind_Internal_Ptr result
;
188 if (encoding
== DW_EH_PE_aligned
)
190 _Unwind_Internal_Ptr a
= (_Unwind_Internal_Ptr
) p
;
191 a
= (a
+ sizeof (void *) - 1) & - sizeof(void *);
192 result
= *(_Unwind_Internal_Ptr
*) a
;
193 p
= (const unsigned char *) (a
+ sizeof (void *));
197 switch (encoding
& 0x0f)
199 case DW_EH_PE_absptr
:
200 result
= (_Unwind_Internal_Ptr
) u
->ptr
;
201 p
+= sizeof (void *);
204 case DW_EH_PE_uleb128
:
207 p
= read_uleb128 (p
, &tmp
);
208 result
= (_Unwind_Internal_Ptr
) tmp
;
212 case DW_EH_PE_sleb128
:
215 p
= read_sleb128 (p
, &tmp
);
216 result
= (_Unwind_Internal_Ptr
) tmp
;
220 case DW_EH_PE_udata2
:
224 case DW_EH_PE_udata4
:
228 case DW_EH_PE_udata8
:
233 case DW_EH_PE_sdata2
:
237 case DW_EH_PE_sdata4
:
241 case DW_EH_PE_sdata8
:
252 result
+= ((encoding
& 0x70) == DW_EH_PE_pcrel
253 ? (_Unwind_Internal_Ptr
) u
: base
);
254 if (encoding
& DW_EH_PE_indirect
)
255 result
= *(_Unwind_Internal_Ptr
*) result
;
263 #ifndef NO_BASE_OF_ENCODED_VALUE
265 /* Like read_encoded_value_with_base, but get the base from the context
266 rather than providing it directly. */
268 static inline const unsigned char *
269 read_encoded_value (struct _Unwind_Context
*context
, unsigned char encoding
,
270 const unsigned char *p
, _Unwind_Ptr
*val
)
272 return read_encoded_value_with_base (encoding
,
273 base_of_encoded_value (encoding
, context
),