unwind-pe.h 7.21 KB
Newer Older
1
/* Exception handling and frame unwind runtime interface routines.
2
   Copyright (C) 2001-2018 Free Software Foundation, Inc.
3

4
   This file is part of GCC.
5

6 7
   GCC is free software; you can redistribute it and/or modify it
   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 10
   any later version.

11 12 13 14
   GCC is distributed in the hope that it will be useful, but WITHOUT
   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
   or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
   License for more details.
15

16 17 18 19 20 21 22 23
   Under Section 7 of GPL version 3, you are granted additional
   permissions described in the GCC Runtime Library Exception, version
   3.1, as published by the Free Software Foundation.

   You should have received a copy of the GNU General Public License and
   a copy of the GCC Runtime Library Exception along with this program;
   see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
   <http://www.gnu.org/licenses/>.  */
24 25 26 27 28

/* @@@ Really this should be out of line, but this also causes link
   compatibility problems with the base ABI.  This is slightly better
   than duplicating code, however.  */

29 30 31
#ifndef GCC_UNWIND_PE_H
#define GCC_UNWIND_PE_H

32 33 34 35 36 37 38
/* If using C++, references to abort have to be qualified with std::.  */
#if __cplusplus
#define __gxx_abort std::abort
#else
#define __gxx_abort abort
#endif

39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
/* Pointer encodings, from dwarf2.h.  */
#define DW_EH_PE_absptr         0x00
#define DW_EH_PE_omit           0xff

#define DW_EH_PE_uleb128        0x01
#define DW_EH_PE_udata2         0x02
#define DW_EH_PE_udata4         0x03
#define DW_EH_PE_udata8         0x04
#define DW_EH_PE_sleb128        0x09
#define DW_EH_PE_sdata2         0x0A
#define DW_EH_PE_sdata4         0x0B
#define DW_EH_PE_sdata8         0x0C
#define DW_EH_PE_signed         0x08

#define DW_EH_PE_pcrel          0x10
#define DW_EH_PE_textrel        0x20
#define DW_EH_PE_datarel        0x30
#define DW_EH_PE_funcrel        0x40
57
#define DW_EH_PE_aligned        0x50
58 59

#define DW_EH_PE_indirect	0x80
60 61


62 63
#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.  */
67 68

static unsigned int
69 70 71
size_of_encoded_value (unsigned char encoding) __attribute__ ((unused));

static unsigned int
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
size_of_encoded_value (unsigned char encoding)
{
  if (encoding == DW_EH_PE_omit)
    return 0;

  switch (encoding & 0x07)
    {
    case DW_EH_PE_absptr:
      return sizeof (void *);
    case DW_EH_PE_udata2:
      return 2;
    case DW_EH_PE_udata4:
      return 4;
    case DW_EH_PE_udata8:
      return 8;
    }
88
  __gxx_abort ();
89 90
}

91 92
#endif

93 94
#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 98 99
   read_encoded_value_with_base for use when the _Unwind_Context is
   not available.  */

100
static _Unwind_Ptr
101
base_of_encoded_value (unsigned char encoding, struct _Unwind_Context *context)
102 103 104 105 106 107 108 109
{
  if (encoding == DW_EH_PE_omit)
    return 0;

  switch (encoding & 0x70)
    {
    case DW_EH_PE_absptr:
    case DW_EH_PE_pcrel:
110
    case DW_EH_PE_aligned:
111 112 113 114 115 116 117 118 119
      return 0;

    case DW_EH_PE_textrel:
      return _Unwind_GetTextRelBase (context);
    case DW_EH_PE_datarel:
      return _Unwind_GetDataRelBase (context);
    case DW_EH_PE_funcrel:
      return _Unwind_GetRegionStart (context);
    }
120
  __gxx_abort ();
121 122
}

123 124
#endif

125 126 127 128 129 130
/* Read an unsigned leb128 value from P, store the value in VAL, return
   P incremented past the value.  We assume that a word is large enough to
   hold any value so encoded; if it is smaller than a pointer on some target,
   pointers should not be leb128 encoded on that target.  */

static const unsigned char *
131
read_uleb128 (const unsigned char *p, _uleb128_t *val)
132 133 134
{
  unsigned int shift = 0;
  unsigned char byte;
135
  _uleb128_t result;
136 137 138 139 140

  result = 0;
  do
    {
      byte = *p++;
141
      result |= ((_uleb128_t)byte & 0x7f) << shift;
142 143 144 145 146 147 148 149 150 151 152
      shift += 7;
    }
  while (byte & 0x80);

  *val = result;
  return p;
}

/* Similar, but read a signed leb128 value.  */

static const unsigned char *
153
read_sleb128 (const unsigned char *p, _sleb128_t *val)
154 155 156
{
  unsigned int shift = 0;
  unsigned char byte;
157
  _uleb128_t result;
158 159 160 161 162

  result = 0;
  do
    {
      byte = *p++;
163
      result |= ((_uleb128_t)byte & 0x7f) << shift;
164 165 166 167 168 169
      shift += 7;
    }
  while (byte & 0x80);

  /* Sign-extend a negative value.  */
  if (shift < 8 * sizeof(result) && (byte & 0x40) != 0)
170
    result |= -(((_uleb128_t)1L) << shift);
171

172
  *val = (_sleb128_t) result;
173 174 175
  return p;
}

176 177 178 179
/* Load an encoded value from memory at P.  The value is returned in VAL;
   The function returns P incremented past the value.  BASE is as given
   by base_of_encoded_value for this encoding in the appropriate context.  */

180 181 182 183 184 185 186 187 188 189 190 191 192 193 194
static const unsigned char *
read_encoded_value_with_base (unsigned char encoding, _Unwind_Ptr base,
			      const unsigned char *p, _Unwind_Ptr *val)
{
  union unaligned
    {
      void *ptr;
      unsigned u2 __attribute__ ((mode (HI)));
      unsigned u4 __attribute__ ((mode (SI)));
      unsigned u8 __attribute__ ((mode (DI)));
      signed s2 __attribute__ ((mode (HI)));
      signed s4 __attribute__ ((mode (SI)));
      signed s8 __attribute__ ((mode (DI)));
    } __attribute__((__packed__));

195
  const union unaligned *u = (const union unaligned *) p;
196
  _Unwind_Internal_Ptr result;
197

198
  if (encoding == DW_EH_PE_aligned)
199
    {
200
      _Unwind_Internal_Ptr a = (_Unwind_Internal_Ptr) p;
201
      a = (a + sizeof (void *) - 1) & - sizeof(void *);
202
      result = *(_Unwind_Internal_Ptr *) a;
203
      p = (const unsigned char *) (_Unwind_Internal_Ptr) (a + sizeof (void *));
204 205 206 207 208 209
    }
  else
    {
      switch (encoding & 0x0f)
	{
	case DW_EH_PE_absptr:
210
	  result = (_Unwind_Internal_Ptr) u->ptr;
211 212 213 214
	  p += sizeof (void *);
	  break;

	case DW_EH_PE_uleb128:
215
	  {
216
	    _uleb128_t tmp;
217
	    p = read_uleb128 (p, &tmp);
218
	    result = (_Unwind_Internal_Ptr) tmp;
219
	  }
220
	  break;
221

222
	case DW_EH_PE_sleb128:
223
	  {
224
	    _sleb128_t tmp;
225
	    p = read_sleb128 (p, &tmp);
226
	    result = (_Unwind_Internal_Ptr) tmp;
227
	  }
228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256
	  break;

	case DW_EH_PE_udata2:
	  result = u->u2;
	  p += 2;
	  break;
	case DW_EH_PE_udata4:
	  result = u->u4;
	  p += 4;
	  break;
	case DW_EH_PE_udata8:
	  result = u->u8;
	  p += 8;
	  break;

	case DW_EH_PE_sdata2:
	  result = u->s2;
	  p += 2;
	  break;
	case DW_EH_PE_sdata4:
	  result = u->s4;
	  p += 4;
	  break;
	case DW_EH_PE_sdata8:
	  result = u->s8;
	  p += 8;
	  break;

	default:
257
	  __gxx_abort ();
258 259 260 261 262
	}

      if (result != 0)
	{
	  result += ((encoding & 0x70) == DW_EH_PE_pcrel
263
		     ? (_Unwind_Internal_Ptr) u : base);
264
	  if (encoding & DW_EH_PE_indirect)
265
	    result = *(_Unwind_Internal_Ptr *) result;
266
	}
267 268 269 270 271 272
    }

  *val = result;
  return p;
}

273 274
#ifndef NO_BASE_OF_ENCODED_VALUE

275 276 277
/* Like read_encoded_value_with_base, but get the base from the context
   rather than providing it directly.  */

278
static inline const unsigned char *
279
read_encoded_value (struct _Unwind_Context *context, unsigned char encoding,
280 281
		    const unsigned char *p, _Unwind_Ptr *val)
{
282
  return read_encoded_value_with_base (encoding,
283 284 285 286
		base_of_encoded_value (encoding, context),
		p, val);
}

287
#endif
288 289

#endif /* unwind-pe.h */