summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Ballman <aaron@aaronballman.com>2014-09-11 17:26:43 +0000
committerAaron Ballman <aaron@aaronballman.com>2014-09-11 17:26:43 +0000
commit68fcfa16650b79a767953a9a4b684d228bd5920c (patch)
tree2a6536dd1fd6b9be870011c4fcd88b90e8870458
parenta9fe4b0fd816e810d97801fe71ec63ed4cad0b0e (diff)
Adding ABI support for __cxa_throw_bad_array_new_length.
git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@217604 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--CREDITS.TXT4
-rw-r--r--include/cxxabi.h1
-rw-r--r--src/cxa_aux_runtime.cpp5
-rw-r--r--test/test_aux_runtime_op_array_new.cpp38
4 files changed, 48 insertions, 0 deletions
diff --git a/CREDITS.TXT b/CREDITS.TXT
index 6e491c5..9c910fc 100644
--- a/CREDITS.TXT
+++ b/CREDITS.TXT
@@ -8,6 +8,10 @@ beautification by scripts. The fields are: name (N), email (E), web-address
(W), PGP key ID and fingerprint (P), description (D), and snail-mail address
(S).
+N: Aaron Ballman
+E: aaron@aaronballman.com
+D: Minor patches
+
N: Logan Chien
E: logan.chien@mediatek.com
D: ARM EHABI Unwind & Exception Handling
diff --git a/include/cxxabi.h b/include/cxxabi.h
index 867ba72..46d6730 100644
--- a/include/cxxabi.h
+++ b/include/cxxabi.h
@@ -66,6 +66,7 @@ extern LIBCXXABI_NORETURN void __cxa_rethrow();
// 2.6 Auxiliary Runtime APIs
extern LIBCXXABI_NORETURN void __cxa_bad_cast(void);
extern LIBCXXABI_NORETURN void __cxa_bad_typeid(void);
+extern LIBCXXABI_NORETURN void __cxa_throw_bad_array_new_length(void);
diff --git a/src/cxa_aux_runtime.cpp b/src/cxa_aux_runtime.cpp
index 15fede0..7fec810 100644
--- a/src/cxa_aux_runtime.cpp
+++ b/src/cxa_aux_runtime.cpp
@@ -11,6 +11,7 @@
//===----------------------------------------------------------------------===//
#include "cxxabi.h"
+#include <new>
#include <typeinfo>
namespace __cxxabiv1
@@ -29,6 +30,10 @@ void __cxa_bad_typeid(void) {
throw std::bad_typeid();
}
+LIBCXXABI_NORETURN
+void __cxa_throw_bad_array_new_length(void) {
+ throw std::bad_array_new_length();
+}
} // extern "C"
} // abi
diff --git a/test/test_aux_runtime_op_array_new.cpp b/test/test_aux_runtime_op_array_new.cpp
new file mode 100644
index 0000000..8d9f547
--- /dev/null
+++ b/test/test_aux_runtime_op_array_new.cpp
@@ -0,0 +1,38 @@
+//===-------------------------- test_aux_runtime_op_array_new.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.
+//
+//===----------------------------------------------------------------------===//
+
+#include <iostream>
+#include <cxxabi.h>
+
+// If the expression passed to operator new[] would result in an overflow, the
+// allocation function is not called, and a std::bad_array_new_length exception
+// is thrown instead (5.3.4p7).
+bool bad_array_new_length_test() {
+ try {
+ // We test this directly because Clang does not currently codegen the
+ // correct call to __cxa_bad_array_new_length, so this test would result
+ // in passing -1 to ::operator new[], which would then throw a
+ // std::bad_alloc, causing the test to fail.
+ __cxxabiv1::__cxa_throw_bad_array_new_length();
+ } catch ( const std::bad_array_new_length &banl ) {
+ return true;
+ }
+ return false;
+}
+
+int main(int argc, char *argv []) {
+ int ret_val = 0;
+
+ if ( !bad_array_new_length_test ()) {
+ std::cerr << "Bad array new length test failed!" << std::endl;
+ ret_val = 1;
+ }
+
+ return ret_val;
+}