summaryrefslogtreecommitdiffstats
path: root/contrib/libcxxrt/dwarf_eh.h
diff options
context:
space:
mode:
authordim <dim@FreeBSD.org>2015-03-01 00:47:37 +0000
committerdim <dim@FreeBSD.org>2015-03-01 00:47:37 +0000
commit0611c6ea5b0fbf68ba4207fe5548eb7524ba233e (patch)
treeb3f392b102fc9194f94fa882bbd3ea539346a09d /contrib/libcxxrt/dwarf_eh.h
parentc3632bcc5019dddc0cd98f332c90aacc001b67c2 (diff)
downloadFreeBSD-src-0611c6ea5b0fbf68ba4207fe5548eb7524ba233e.zip
FreeBSD-src-0611c6ea5b0fbf68ba4207fe5548eb7524ba233e.tar.gz
MFC r279307:
Make libcxxrt's parsing of DWARF exception handling tables work on architectures with strict alignment, by using memcpy() instead of directly reading fields. Reported by: Daisuke Aoyama <aoyama@peach.ne.jp> Reviewed by: imp, bapt Tested by: bapt Differential Revision: https://reviews.freebsd.org/D1967 MFC r279310: Since newer versions of compiler-rt require unwind.h, and we want to use the copy in libcxxrt for it, fix the arm-specific header to define the _Unwind_Action type. Submitted by: andrew
Diffstat (limited to 'contrib/libcxxrt/dwarf_eh.h')
-rw-r--r--contrib/libcxxrt/dwarf_eh.h18
1 files changed, 8 insertions, 10 deletions
diff --git a/contrib/libcxxrt/dwarf_eh.h b/contrib/libcxxrt/dwarf_eh.h
index af533b3..da86846 100644
--- a/contrib/libcxxrt/dwarf_eh.h
+++ b/contrib/libcxxrt/dwarf_eh.h
@@ -218,15 +218,17 @@ static int64_t read_sleb128(dw_eh_ptr_t *data)
static uint64_t read_value(char encoding, dw_eh_ptr_t *data)
{
enum dwarf_data_encoding type = get_encoding(encoding);
- uint64_t v;
switch (type)
{
// Read fixed-length types
#define READ(dwarf, type) \
case dwarf:\
- v = static_cast<uint64_t>(*reinterpret_cast<type*>(*data));\
- *data += sizeof(type);\
- break;
+ {\
+ type t;\
+ memcpy(&t, *data, sizeof t);\
+ *data += sizeof t;\
+ return static_cast<uint64_t>(t);\
+ }
READ(DW_EH_PE_udata2, uint16_t)
READ(DW_EH_PE_udata4, uint32_t)
READ(DW_EH_PE_udata8, uint64_t)
@@ -237,15 +239,11 @@ static uint64_t read_value(char encoding, dw_eh_ptr_t *data)
#undef READ
// Read variable-length types
case DW_EH_PE_sleb128:
- v = read_sleb128(data);
- break;
+ return read_sleb128(data);
case DW_EH_PE_uleb128:
- v = read_uleb128(data);
- break;
+ return read_uleb128(data);
default: abort();
}
-
- return v;
}
/**
OpenPOWER on IntegriCloud