hppa: Always enable PIE on 64-bit target
[official-gcc.git] / libgcc / unwind-pe.h
blob13eae00eb6c90601d7ab5ea77c1bbf0426cf8be1
1 /* Exception handling and frame unwind runtime interface routines.
2 Copyright (C) 2001-2024 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 3, or (at your option)
9 any later version.
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 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.
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/>. */
25 /* @@@ Really this should be out of line, but this also causes link
26 compatibility problems with the base ABI. This is slightly better
27 than duplicating code, however. */
29 #ifndef GCC_UNWIND_PE_H
30 #define GCC_UNWIND_PE_H
32 /* If using C++, references to abort have to be qualified with std::. */
33 #if __cplusplus
34 #define __gxx_abort std::abort
35 #else
36 #define __gxx_abort abort
37 #endif
39 /* Pointer encodings, from dwarf2.h. */
40 #define DW_EH_PE_absptr 0x00
41 #define DW_EH_PE_omit 0xff
43 #define DW_EH_PE_uleb128 0x01
44 #define DW_EH_PE_udata2 0x02
45 #define DW_EH_PE_udata4 0x03
46 #define DW_EH_PE_udata8 0x04
47 #define DW_EH_PE_sleb128 0x09
48 #define DW_EH_PE_sdata2 0x0A
49 #define DW_EH_PE_sdata4 0x0B
50 #define DW_EH_PE_sdata8 0x0C
51 #define DW_EH_PE_signed 0x08
53 #define DW_EH_PE_pcrel 0x10
54 #define DW_EH_PE_textrel 0x20
55 #define DW_EH_PE_datarel 0x30
56 #define DW_EH_PE_funcrel 0x40
57 #define DW_EH_PE_aligned 0x50
59 #define DW_EH_PE_indirect 0x80
62 #ifndef NO_SIZE_OF_ENCODED_VALUE
64 /* Given an encoding, return the number of bytes the format occupies.
65 This is only defined for fixed-size encodings, and so does not
66 include leb128. */
68 static unsigned int
69 size_of_encoded_value (unsigned char encoding) __attribute__ ((unused));
71 static unsigned int
72 size_of_encoded_value (unsigned char encoding)
74 if (encoding == DW_EH_PE_omit)
75 return 0;
77 switch (encoding & 0x07)
79 case DW_EH_PE_absptr:
80 return sizeof (void *);
81 case DW_EH_PE_udata2:
82 return 2;
83 case DW_EH_PE_udata4:
84 return 4;
85 case DW_EH_PE_udata8:
86 return 8;
88 __gxx_abort ();
91 #endif
93 #ifndef NO_BASE_OF_ENCODED_VALUE
95 /* Given an encoding and an _Unwind_Context, return the base to which
96 the encoding is relative. This base may then be passed to
97 read_encoded_value_with_base for use when the _Unwind_Context is
98 not available. */
100 static _Unwind_Ptr
101 base_of_encoded_value (unsigned char encoding, struct _Unwind_Context *context)
103 if (encoding == DW_EH_PE_omit)
104 return 0;
106 switch (encoding & 0x70)
108 case DW_EH_PE_absptr:
109 case DW_EH_PE_pcrel:
110 case DW_EH_PE_aligned:
111 return 0;
113 case DW_EH_PE_textrel:
114 return _Unwind_GetTextRelBase (context);
115 case DW_EH_PE_datarel:
116 return _Unwind_GetDataRelBase (context);
117 case DW_EH_PE_funcrel:
118 return _Unwind_GetRegionStart (context);
120 __gxx_abort ();
123 #endif
125 /* Read an unsigned leb128 value from P, store the value in VAL, return
126 P incremented past the value. We assume that a word is large enough to
127 hold any value so encoded; if it is smaller than a pointer on some target,
128 pointers should not be leb128 encoded on that target. */
130 static const unsigned char *
131 read_uleb128 (const unsigned char *p, _uleb128_t *val)
133 unsigned int shift = 0;
134 unsigned char byte;
135 _uleb128_t result;
137 result = 0;
140 byte = *p++;
141 result |= ((_uleb128_t)byte & 0x7f) << shift;
142 shift += 7;
144 while (byte & 0x80);
146 *val = result;
147 return p;
150 /* Similar, but read a signed leb128 value. */
152 static const unsigned char *
153 read_sleb128 (const unsigned char *p, _sleb128_t *val)
155 unsigned int shift = 0;
156 unsigned char byte;
157 _uleb128_t result;
159 result = 0;
162 byte = *p++;
163 result |= ((_uleb128_t)byte & 0x7f) << shift;
164 shift += 7;
166 while (byte & 0x80);
168 /* Sign-extend a negative value. */
169 if (shift < 8 * sizeof(result) && (byte & 0x40) != 0)
170 result |= -(((_uleb128_t)1L) << shift);
172 *val = (_sleb128_t) result;
173 return p;
176 extern _Unwind_Ptr _Unwind_gnu_Find_got (_Unwind_Ptr);
178 /* Load an encoded value from memory at P. The value is returned in VAL;
179 The function returns P incremented past the value. BASE is as given
180 by base_of_encoded_value for this encoding in the appropriate context. */
182 #pragma GCC diagnostic push
183 #pragma GCC diagnostic ignored "-Waddress-of-packed-member"
185 static const unsigned char *
186 read_encoded_value_with_base (unsigned char encoding, _Unwind_Ptr base,
187 const unsigned char *p, _Unwind_Ptr *val)
189 union unaligned
191 void *ptr;
192 unsigned u2 __attribute__ ((mode (HI)));
193 unsigned u4 __attribute__ ((mode (SI)));
194 unsigned u8 __attribute__ ((mode (DI)));
195 signed s2 __attribute__ ((mode (HI)));
196 signed s4 __attribute__ ((mode (SI)));
197 signed s8 __attribute__ ((mode (DI)));
198 } __attribute__((__packed__));
200 const union unaligned *u = (const union unaligned *) p;
201 _Unwind_Internal_Ptr result;
203 if (encoding == DW_EH_PE_aligned)
205 _Unwind_Internal_Ptr a = (_Unwind_Internal_Ptr) p;
206 a = (a + sizeof (void *) - 1) & - sizeof(void *);
207 result = *(_Unwind_Internal_Ptr *) a;
208 p = (const unsigned char *) (_Unwind_Internal_Ptr) (a + sizeof (void *));
210 else
212 switch (encoding & 0x0f)
214 case DW_EH_PE_absptr:
215 result = (_Unwind_Internal_Ptr) u->ptr;
216 p += sizeof (void *);
217 break;
219 case DW_EH_PE_uleb128:
221 _uleb128_t tmp;
222 p = read_uleb128 (p, &tmp);
223 result = (_Unwind_Internal_Ptr) tmp;
225 break;
227 case DW_EH_PE_sleb128:
229 _sleb128_t tmp;
230 p = read_sleb128 (p, &tmp);
231 result = (_Unwind_Internal_Ptr) tmp;
233 break;
235 case DW_EH_PE_udata2:
236 result = u->u2;
237 p += 2;
238 break;
239 case DW_EH_PE_udata4:
240 result = u->u4;
241 p += 4;
242 break;
243 case DW_EH_PE_udata8:
244 result = u->u8;
245 p += 8;
246 break;
248 case DW_EH_PE_sdata2:
249 result = u->s2;
250 p += 2;
251 break;
252 case DW_EH_PE_sdata4:
253 result = u->s4;
254 p += 4;
255 break;
256 case DW_EH_PE_sdata8:
257 result = u->s8;
258 p += 8;
259 break;
261 default:
262 __gxx_abort ();
265 if (result != 0)
267 #if __FDPIC__
268 /* FDPIC relative addresses imply taking the GOT address
269 into account. */
270 if ((encoding & DW_EH_PE_pcrel) && (encoding & DW_EH_PE_indirect))
272 result += _Unwind_gnu_Find_got ((_Unwind_Ptr) u);
273 result = *(_Unwind_Internal_Ptr *) result;
275 else
277 result += ((encoding & 0x70) == DW_EH_PE_pcrel
278 ? (_Unwind_Internal_Ptr) u : base);
279 if (encoding & DW_EH_PE_indirect)
280 result = *(_Unwind_Internal_Ptr *) result;
282 #else
283 result += ((encoding & 0x70) == DW_EH_PE_pcrel
284 ? (_Unwind_Internal_Ptr) u : base);
285 if (encoding & DW_EH_PE_indirect)
286 result = *(_Unwind_Internal_Ptr *) result;
287 #endif
291 *val = result;
292 return p;
295 #pragma GCC diagnostic pop
297 #ifndef NO_BASE_OF_ENCODED_VALUE
299 /* Like read_encoded_value_with_base, but get the base from the context
300 rather than providing it directly. */
302 static inline const unsigned char *
303 read_encoded_value (struct _Unwind_Context *context, unsigned char encoding,
304 const unsigned char *p, _Unwind_Ptr *val)
306 return read_encoded_value_with_base (encoding,
307 base_of_encoded_value (encoding, context),
308 p, val);
311 #endif
313 #endif /* unwind-pe.h */