Add runtime support routines to runtime_support_llvm.h and utils_llvm.
E.g., to pass compiler_test, add
art_throw_null_pointer_exception_from_code.
Change-Id: Ib8a367fd52ee82dcafe8f916050f0b59e5eda3bb
diff --git a/src/compiler_llvm/utils_llvm.cc b/src/compiler_llvm/utils_llvm.cc
index 93fad37..ca50f6f 100644
--- a/src/compiler_llvm/utils_llvm.cc
+++ b/src/compiler_llvm/utils_llvm.cc
@@ -122,6 +122,13 @@
DEF("art_push_shadow_frame_from_code", art_push_shadow_frame_from_code)
DEF("art_pop_shadow_frame_from_code", art_pop_shadow_frame_from_code)
DEF("art_is_exception_pending_from_code", art_is_exception_pending_from_code)
+ DEF("art_throw_div_zero_from_code", art_throw_div_zero_from_code)
+ DEF("art_throw_array_bounds_from_code", art_throw_array_bounds_from_code)
+ DEF("art_throw_no_such_method_from_code", art_throw_no_such_method_from_code)
+ DEF("art_throw_null_pointer_exception_from_code", art_throw_null_pointer_exception_from_code)
+ DEF("art_throw_stack_overflow_from_code", art_throw_stack_overflow_from_code)
+ DEF("art_throw_exception_from_code", art_throw_exception_from_code)
+ DEF("art_find_catch_block_from_code", art_find_catch_block_from_code)
DEF("art_test_suspend_from_code", art_test_suspend_from_code)
DEF("art_set_current_thread_from_code", art_set_current_thread_from_code)
DEF("printf", printf)