diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2016-11-02 23:41:51 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2016-11-02 23:41:51 +0000 |
commit | 80b64f0861e1e7370bca2ccc9b95a848b7e1e815 (patch) | |
tree | c066b85be069bf33b947690cac275c4503483102 /libcxxabi/test/catch_member_function_pointer_02.pass.cpp | |
parent | 5fc6f9459190fa1c9cb5e117c74aee45c80703ed (diff) | |
download | bcm5719-llvm-80b64f0861e1e7370bca2ccc9b95a848b7e1e815.tar.gz bcm5719-llvm-80b64f0861e1e7370bca2ccc9b95a848b7e1e815.zip |
[p0012] Implement ABI support for throwing a noexcept function pointer and
catching as non-noexcept
This implements the following proposal from cxx-abi-dev:
http://sourcerytools.com/pipermail/cxx-abi-dev/2016-October/002988.html
... which is necessary for complete support of http://wg21.link/p0012,
specifically throwing noexcept function and member function pointers and
catching them as non-noexcept pointers.
Differential Review: https://reviews.llvm.org/D26178
llvm-svn: 285867
Diffstat (limited to 'libcxxabi/test/catch_member_function_pointer_02.pass.cpp')
-rw-r--r-- | libcxxabi/test/catch_member_function_pointer_02.pass.cpp | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/libcxxabi/test/catch_member_function_pointer_02.pass.cpp b/libcxxabi/test/catch_member_function_pointer_02.pass.cpp new file mode 100644 index 00000000000..860d8ed28f8 --- /dev/null +++ b/libcxxabi/test/catch_member_function_pointer_02.pass.cpp @@ -0,0 +1,68 @@ +//===--------------- catch_member_function_pointer_02.cpp -----------------===// +// +// The LLVM Compiler Infrastructure +// +// This file is dual licensed under the MIT and the University of Illinois Open +// Source Licenses. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// + +// Can a noexcept member function pointer be caught by a non-noexcept catch +// clause? +// UNSUPPORTED: c++98, c++03, c++11, c++14 +// UNSUPPORTED: libcxxabi-no-exceptions, libcxxabi-no-qualified-function-types + +#include <cassert> + +struct X { + template<bool Noexcept> void f() noexcept(Noexcept) {} +}; +template<bool Noexcept> using FnType = void (X::*)() noexcept(Noexcept); + +template<bool ThrowNoexcept, bool CatchNoexcept> +void check() +{ + try + { + auto p = &X::f<ThrowNoexcept>; + throw p; + assert(false); + } + catch (FnType<CatchNoexcept> p) + { + assert(ThrowNoexcept || !CatchNoexcept); + assert(p == &X::f<ThrowNoexcept>); + } + catch (...) + { + assert(!ThrowNoexcept && CatchNoexcept); + } +} + +void check_deep() { + FnType<true> p = &X::f<true>; + try + { + throw &p; + } + catch (FnType<false> *q) + { + assert(false); + } + catch (FnType<true> *q) + { + } + catch (...) + { + assert(false); + } +} + +int main() +{ + check<false, false>(); + check<false, true>(); + check<true, false>(); + check<true, true>(); + check_deep(); +} |