2001-11-16 01:27:24 +00:00
|
|
|
|
/* Exception handling and frame unwind runtime interface routines.
|
2002-03-17 12:09:12 +00:00
|
|
|
|
Copyright (C) 2001, 2002 Free Software Foundation, Inc.
|
2001-11-16 01:27:24 +00:00
|
|
|
|
|
2004-05-18 21:18:52 +00:00
|
|
|
|
This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
|
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
|
|
The GNU C Library 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
|
|
|
|
|
Lesser General Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
|
|
|
License along with the GNU C Library; if not, write to the Free
|
|
|
|
|
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
|
|
|
|
02111-1307 USA. */
|
2001-11-16 01:27:24 +00:00
|
|
|
|
|
|
|
|
|
/* @@@ 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. */
|
|
|
|
|
|
2003-04-13 16:45:10 +00:00
|
|
|
|
/* If using C++, references to abort have to be qualified with std::. */
|
2001-11-16 01:27:24 +00:00
|
|
|
|
#if __cplusplus
|
|
|
|
|
#define __gxx_abort std::abort
|
|
|
|
|
#else
|
|
|
|
|
#define __gxx_abort abort
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/* 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
|
|
|
|
|
#define DW_EH_PE_aligned 0x50
|
|
|
|
|
|
|
|
|
|
#define DW_EH_PE_indirect 0x80
|
|
|
|
|
|
|
|
|
|
|
2004-03-10 10:04:19 +00:00
|
|
|
|
#if defined(_LIBC)
|
|
|
|
|
|
2002-03-17 12:09:12 +00:00
|
|
|
|
/* Prototypes. */
|
2004-03-10 10:04:19 +00:00
|
|
|
|
extern unsigned int size_of_encoded_value (unsigned char encoding)
|
|
|
|
|
attribute_hidden;
|
|
|
|
|
|
2002-03-17 12:09:12 +00:00
|
|
|
|
extern const unsigned char *read_encoded_value_with_base
|
|
|
|
|
(unsigned char encoding, _Unwind_Ptr base,
|
2004-03-10 10:04:19 +00:00
|
|
|
|
const unsigned char *p, _Unwind_Ptr *val)
|
|
|
|
|
attribute_hidden;
|
|
|
|
|
|
|
|
|
|
extern const unsigned char * read_encoded_value
|
|
|
|
|
(struct _Unwind_Context *context, unsigned char encoding,
|
|
|
|
|
const unsigned char *p, _Unwind_Ptr *val)
|
|
|
|
|
attribute_hidden;
|
2002-03-17 12:09:12 +00:00
|
|
|
|
|
2004-03-10 10:04:19 +00:00
|
|
|
|
extern const unsigned char * read_uleb128 (const unsigned char *p,
|
|
|
|
|
_Unwind_Word *val)
|
|
|
|
|
attribute_hidden;
|
|
|
|
|
extern const unsigned char * read_sleb128 (const unsigned char *p,
|
|
|
|
|
_Unwind_Sword *val)
|
|
|
|
|
attribute_hidden;
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
#if defined(_LIBC) && defined(_LIBC_DEFINITIONS)
|
|
|
|
|
|
|
|
|
|
#ifdef _LIBC
|
|
|
|
|
#define STATIC
|
2003-04-14 08:52:21 +00:00
|
|
|
|
#else
|
2004-03-10 10:04:19 +00:00
|
|
|
|
#define STATIC static
|
|
|
|
|
#endif
|
2002-03-17 12:09:12 +00:00
|
|
|
|
|
2001-11-16 01:27:24 +00:00
|
|
|
|
/* Given an encoding, return the number of bytes the format occupies.
|
|
|
|
|
This is only defined for fixed-size encodings, and so does not
|
|
|
|
|
include leb128. */
|
|
|
|
|
|
2004-03-10 10:04:19 +00:00
|
|
|
|
STATIC unsigned int
|
2001-11-16 01:27:24 +00:00
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
__gxx_abort ();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifndef NO_BASE_OF_ENCODED_VALUE
|
|
|
|
|
|
|
|
|
|
/* Given an encoding and an _Unwind_Context, return the base to which
|
|
|
|
|
the encoding is relative. This base may then be passed to
|
|
|
|
|
read_encoded_value_with_base for use when the _Unwind_Context is
|
|
|
|
|
not available. */
|
|
|
|
|
|
2004-03-10 10:04:19 +00:00
|
|
|
|
STATIC _Unwind_Ptr
|
2001-11-16 01:27:24 +00:00
|
|
|
|
base_of_encoded_value (unsigned char encoding, struct _Unwind_Context *context)
|
|
|
|
|
{
|
|
|
|
|
if (encoding == DW_EH_PE_omit)
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
switch (encoding & 0x70)
|
|
|
|
|
{
|
|
|
|
|
case DW_EH_PE_absptr:
|
|
|
|
|
case DW_EH_PE_pcrel:
|
|
|
|
|
case DW_EH_PE_aligned:
|
|
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
__gxx_abort ();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
2003-04-13 16:45:10 +00:00
|
|
|
|
/* 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. */
|
|
|
|
|
|
2004-03-10 10:04:19 +00:00
|
|
|
|
STATIC const unsigned char *
|
2003-04-13 16:45:10 +00:00
|
|
|
|
read_uleb128 (const unsigned char *p, _Unwind_Word *val)
|
|
|
|
|
{
|
|
|
|
|
unsigned int shift = 0;
|
|
|
|
|
unsigned char byte;
|
|
|
|
|
_Unwind_Word result;
|
|
|
|
|
|
|
|
|
|
result = 0;
|
|
|
|
|
do
|
|
|
|
|
{
|
|
|
|
|
byte = *p++;
|
|
|
|
|
result |= (byte & 0x7f) << shift;
|
|
|
|
|
shift += 7;
|
|
|
|
|
}
|
|
|
|
|
while (byte & 0x80);
|
|
|
|
|
|
|
|
|
|
*val = result;
|
|
|
|
|
return p;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Similar, but read a signed leb128 value. */
|
|
|
|
|
|
2004-03-10 10:04:19 +00:00
|
|
|
|
STATIC const unsigned char *
|
2003-04-13 16:45:10 +00:00
|
|
|
|
read_sleb128 (const unsigned char *p, _Unwind_Sword *val)
|
|
|
|
|
{
|
|
|
|
|
unsigned int shift = 0;
|
|
|
|
|
unsigned char byte;
|
|
|
|
|
_Unwind_Word result;
|
|
|
|
|
|
|
|
|
|
result = 0;
|
|
|
|
|
do
|
|
|
|
|
{
|
|
|
|
|
byte = *p++;
|
|
|
|
|
result |= (byte & 0x7f) << shift;
|
|
|
|
|
shift += 7;
|
|
|
|
|
}
|
|
|
|
|
while (byte & 0x80);
|
|
|
|
|
|
|
|
|
|
/* Sign-extend a negative value. */
|
|
|
|
|
if (shift < 8 * sizeof(result) && (byte & 0x40) != 0)
|
|
|
|
|
result |= -(1L << shift);
|
|
|
|
|
|
|
|
|
|
*val = (_Unwind_Sword) result;
|
|
|
|
|
return p;
|
|
|
|
|
}
|
|
|
|
|
|
2001-11-16 01:27:24 +00:00
|
|
|
|
/* 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. */
|
|
|
|
|
|
2004-03-10 10:04:19 +00:00
|
|
|
|
STATIC const unsigned char *
|
2001-11-16 01:27:24 +00:00
|
|
|
|
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__));
|
|
|
|
|
|
|
|
|
|
union unaligned *u = (union unaligned *) p;
|
2003-04-13 16:45:10 +00:00
|
|
|
|
_Unwind_Internal_Ptr result;
|
2001-11-16 01:27:24 +00:00
|
|
|
|
|
|
|
|
|
if (encoding == DW_EH_PE_aligned)
|
|
|
|
|
{
|
2003-04-13 16:45:10 +00:00
|
|
|
|
_Unwind_Internal_Ptr a = (_Unwind_Internal_Ptr) p;
|
2001-11-16 01:27:24 +00:00
|
|
|
|
a = (a + sizeof (void *) - 1) & - sizeof(void *);
|
2003-04-13 16:45:10 +00:00
|
|
|
|
result = *(_Unwind_Internal_Ptr *) a;
|
|
|
|
|
p = (const unsigned char *) (a + sizeof (void *));
|
2001-11-16 01:27:24 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
switch (encoding & 0x0f)
|
|
|
|
|
{
|
|
|
|
|
case DW_EH_PE_absptr:
|
2003-04-13 16:45:10 +00:00
|
|
|
|
result = (_Unwind_Internal_Ptr) u->ptr;
|
2001-11-16 01:27:24 +00:00
|
|
|
|
p += sizeof (void *);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case DW_EH_PE_uleb128:
|
|
|
|
|
{
|
2003-04-13 16:45:10 +00:00
|
|
|
|
_Unwind_Word tmp;
|
|
|
|
|
p = read_uleb128 (p, &tmp);
|
|
|
|
|
result = (_Unwind_Internal_Ptr) tmp;
|
2001-11-16 01:27:24 +00:00
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case DW_EH_PE_sleb128:
|
|
|
|
|
{
|
2003-04-13 16:45:10 +00:00
|
|
|
|
_Unwind_Sword tmp;
|
|
|
|
|
p = read_sleb128 (p, &tmp);
|
|
|
|
|
result = (_Unwind_Internal_Ptr) tmp;
|
2001-11-16 01:27:24 +00:00
|
|
|
|
}
|
|
|
|
|
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:
|
|
|
|
|
__gxx_abort ();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (result != 0)
|
|
|
|
|
{
|
|
|
|
|
result += ((encoding & 0x70) == DW_EH_PE_pcrel
|
2003-04-13 16:45:10 +00:00
|
|
|
|
? (_Unwind_Internal_Ptr) u : base);
|
2001-11-16 01:27:24 +00:00
|
|
|
|
if (encoding & DW_EH_PE_indirect)
|
2003-04-13 16:45:10 +00:00
|
|
|
|
result = *(_Unwind_Internal_Ptr *) result;
|
2001-11-16 01:27:24 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
*val = result;
|
|
|
|
|
return p;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifndef NO_BASE_OF_ENCODED_VALUE
|
|
|
|
|
|
|
|
|
|
/* Like read_encoded_value_with_base, but get the base from the context
|
|
|
|
|
rather than providing it directly. */
|
|
|
|
|
|
2004-03-10 10:04:19 +00:00
|
|
|
|
STATIC const unsigned char *
|
2001-11-16 01:27:24 +00:00
|
|
|
|
read_encoded_value (struct _Unwind_Context *context, unsigned char encoding,
|
|
|
|
|
const unsigned char *p, _Unwind_Ptr *val)
|
|
|
|
|
{
|
|
|
|
|
return read_encoded_value_with_base (encoding,
|
|
|
|
|
base_of_encoded_value (encoding, context),
|
|
|
|
|
p, val);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif
|
2004-03-10 10:04:19 +00:00
|
|
|
|
#endif /* _LIBC */
|