diff options
Diffstat (limited to 'runtime/common_throws.h')
-rw-r--r-- | runtime/common_throws.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/runtime/common_throws.h b/runtime/common_throws.h index 85fe2b3997..39c4e52b15 100644 --- a/runtime/common_throws.h +++ b/runtime/common_throws.h @@ -27,6 +27,7 @@ namespace mirror { } // namespace mirror class ArtField; class ArtMethod; +class DexFile; class Signature; class StringPiece; @@ -35,6 +36,9 @@ class StringPiece; void ThrowAbstractMethodError(ArtMethod* method) SHARED_REQUIRES(Locks::mutator_lock_) COLD_ATTR; +void ThrowAbstractMethodError(uint32_t method_idx, const DexFile& dex_file) + SHARED_REQUIRES(Locks::mutator_lock_) COLD_ATTR; + // ArithmeticException void ThrowArithmeticExceptionDivideByZero() SHARED_REQUIRES(Locks::mutator_lock_) COLD_ATTR; @@ -107,6 +111,12 @@ void ThrowIncompatibleClassChangeError(InvokeType expected_type, InvokeType foun ArtMethod* method, ArtMethod* referrer) SHARED_REQUIRES(Locks::mutator_lock_) COLD_ATTR; +void ThrowIncompatibleClassChangeErrorClassForInterfaceSuper(ArtMethod* method, + mirror::Class* target_class, + mirror::Object* this_object, + ArtMethod* referrer) + SHARED_REQUIRES(Locks::mutator_lock_) COLD_ATTR; + void ThrowIncompatibleClassChangeErrorClassForInterfaceDispatch(ArtMethod* interface_method, mirror::Object* this_object, ArtMethod* referrer) |