Skip to content

Commit f0aa7c4

Browse files
committed
Revert "Use dwarf exceptions on i686 as well"
This reverts commit ca43ab5. It was reported in #8 that the dwarf unwinding on i686 doesn't always work. This commit adds a testcase for the case that didn't work previously.
1 parent bc8c9c3 commit f0aa7c4

File tree

4 files changed

+42
-4
lines changed

4 files changed

+42
-4
lines changed

Dockerfile.dev

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ COPY test/*.cpp ./test/
7575
RUN cd test && \
7676
for arch in $TOOLCHAIN_ARCHS; do \
7777
mkdir -p $arch && \
78-
for test in hello-cpp hello-exception tlstest-main; do \
78+
for test in hello-cpp hello-exception tlstest-main exception-locale; do \
7979
$arch-w64-mingw32-clang++ $test.cpp -o $arch/$test.exe || exit 1; \
8080
done; \
8181
for test in tlstest-lib; do \

run-tests.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ TESTS_C="hello hello-tls crt-test setjmp"
1616
TESTS_C_DLL="autoimport-lib"
1717
TESTS_C_LINK_DLL="autoimport-main"
1818
TESTS_C_NO_BUILTIN="crt-test"
19-
TESTS_CPP="hello-cpp hello-exception tlstest-main"
19+
TESTS_CPP="hello-cpp hello-exception tlstest-main exception-locale"
2020
TESTS_CPP_DLL="tlstest-lib"
2121
TESTS_SSP="ssp"
2222
for arch in $ARCHS; do

test/exception-locale.cpp

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
/*
2+
* Copyright (c) 2018 SquallATF
3+
*
4+
* This file is part of llvm-mingw.
5+
*
6+
* Permission to use, copy, modify, and/or distribute this software for any
7+
* purpose with or without fee is hereby granted, provided that the above
8+
* copyright notice and this permission notice appear in all copies.
9+
*
10+
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11+
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12+
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13+
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14+
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15+
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16+
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17+
*/
18+
19+
#include <iostream>
20+
#include <typeinfo>
21+
22+
int main(int argc, char *argv[]) {
23+
try {
24+
std::locale loc("test");
25+
} catch (std::runtime_error& e) {
26+
std::cerr << "Caught " << e.what() << std::endl;
27+
std::cerr << "Type " << typeid(e).name() << std::endl;
28+
} catch (...) {
29+
std::cerr << "catch all" << std::endl;
30+
}
31+
32+
return 0;
33+
}

wrappers/clang-target-wrapper.sh

+7-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,13 @@ esac
1010
ARCH=$(echo $TARGET | sed 's/-.*//')
1111
case $ARCH in
1212
i686)
13-
# Dwarf is the default here.
14-
ARCH_FLAGS=
13+
# Dwarf is the default for i686, but libunwind sometimes fails to
14+
# to unwind correctly on i686. This issue might be related to cases
15+
# of DW_CFA_GNU_args_size (which were adjusted in libunwind SVN r337312).
16+
# The issue can be reproduced with test/exception-locale.cpp.
17+
# The issue goes away if building libunwind/libcxxabi/libcxx and the
18+
# test example with -mstack-alignment=16 -mstackrealign.
19+
ARCH_FLAGS=-fsjlj-exceptions
1520
;;
1621
x86_64)
1722
# SEH is the default here.

0 commit comments

Comments
 (0)