blob: b72dc3ff4c3866cc6d1ba7765b659e5f364d7ee0 [file] [log] [blame]
Ian Rogers87e552d2012-08-31 15:54:48 -07001/*
2 * Copyright (C) 2012 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "common_throws.h"
18
Ian Rogers22d5e732014-07-15 22:23:51 -070019#include <sstream>
20
Andreas Gampe57943812017-12-06 21:39:13 -080021#include <android-base/logging.h>
22#include <android-base/stringprintf.h>
Andreas Gampe103992b2016-01-04 15:32:43 -080023
Mathieu Chartierc7853442015-03-27 14:35:38 -070024#include "art_field-inl.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070025#include "art_method-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080026#include "class_linker-inl.h"
Vladimir Marko516e20f2018-04-09 18:33:55 +010027#include "debug_print.h"
David Sehr9e734c72018-01-04 17:56:19 -080028#include "dex/dex_file-inl.h"
29#include "dex/dex_instruction-inl.h"
David Sehr8c0961f2018-01-23 16:11:38 -080030#include "dex/invoke_type.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070031#include "mirror/class-inl.h"
Narayan Kamath208f8572016-08-03 12:46:58 +010032#include "mirror/method_type.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080033#include "mirror/object-inl.h"
34#include "mirror/object_array-inl.h"
Andreas Gampe373a9b52017-10-18 09:01:57 -070035#include "nativehelper/scoped_local_ref.h"
Mathieu Chartier6b3d12b2016-10-13 13:59:58 -070036#include "obj_ptr-inl.h"
Ian Rogers87e552d2012-08-31 15:54:48 -070037#include "thread.h"
Nicolas Geoffray6589af12017-11-13 15:16:22 +000038#include "vdex_file.h"
Sebastien Hertz2d6ba512013-05-17 11:31:37 +020039#include "verifier/method_verifier.h"
Andreas Gampea7c83ac2017-09-11 08:14:23 -070040#include "well_known_classes.h"
Ian Rogers87e552d2012-08-31 15:54:48 -070041
Ian Rogers87e552d2012-08-31 15:54:48 -070042namespace art {
43
Andreas Gampe46ee31b2016-12-14 10:11:49 -080044using android::base::StringAppendV;
45using android::base::StringPrintf;
46
Mathieu Chartier6b3d12b2016-10-13 13:59:58 -070047static void AddReferrerLocation(std::ostream& os, ObjPtr<mirror::Class> referrer)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -070048 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -070049 if (referrer != nullptr) {
Mathieu Chartierf8322842014-05-16 10:59:25 -070050 std::string location(referrer->GetLocation());
Ian Rogers87e552d2012-08-31 15:54:48 -070051 if (!location.empty()) {
David Sehr709b0702016-10-13 09:12:37 -070052 os << " (declaration of '" << referrer->PrettyDescriptor()
53 << "' appears in " << location << ")";
Ian Rogers87e552d2012-08-31 15:54:48 -070054 }
55 }
56}
57
Orion Hodson928033d2018-02-07 05:30:54 +000058static void ThrowException(const char* exception_descriptor) REQUIRES_SHARED(Locks::mutator_lock_) {
59 Thread* self = Thread::Current();
60 self->ThrowNewException(exception_descriptor, nullptr);
61}
62
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +000063static void ThrowException(const char* exception_descriptor,
Mathieu Chartier6b3d12b2016-10-13 13:59:58 -070064 ObjPtr<mirror::Class> referrer,
65 const char* fmt,
66 va_list* args = nullptr)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -070067 REQUIRES_SHARED(Locks::mutator_lock_) {
Ian Rogers87e552d2012-08-31 15:54:48 -070068 std::ostringstream msg;
Mathieu Chartier2cebb242015-04-21 16:50:40 -070069 if (args != nullptr) {
Ian Rogers62d6c772013-02-27 08:32:07 -080070 std::string vmsg;
71 StringAppendV(&vmsg, fmt, *args);
72 msg << vmsg;
73 } else {
74 msg << fmt;
75 }
76 AddReferrerLocation(msg, referrer);
77 Thread* self = Thread::Current();
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +000078 self->ThrowNewException(exception_descriptor, msg.str().c_str());
Ian Rogers87e552d2012-08-31 15:54:48 -070079}
80
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +000081static void ThrowWrappedException(const char* exception_descriptor,
Mathieu Chartier6b3d12b2016-10-13 13:59:58 -070082 ObjPtr<mirror::Class> referrer,
83 const char* fmt,
84 va_list* args = nullptr)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -070085 REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampe329d1882014-04-08 10:32:19 -070086 std::ostringstream msg;
Mathieu Chartier2cebb242015-04-21 16:50:40 -070087 if (args != nullptr) {
Andreas Gampe329d1882014-04-08 10:32:19 -070088 std::string vmsg;
89 StringAppendV(&vmsg, fmt, *args);
90 msg << vmsg;
91 } else {
92 msg << fmt;
93 }
94 AddReferrerLocation(msg, referrer);
95 Thread* self = Thread::Current();
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +000096 self->ThrowNewWrappedException(exception_descriptor, msg.str().c_str());
Andreas Gampe329d1882014-04-08 10:32:19 -070097}
98
Sebastien Hertz56adf602013-07-09 17:27:07 +020099// AbstractMethodError
100
Mathieu Chartiere401d142015-04-22 13:56:20 -0700101void ThrowAbstractMethodError(ArtMethod* method) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700102 ThrowException("Ljava/lang/AbstractMethodError;", nullptr,
Sebastien Hertz56adf602013-07-09 17:27:07 +0200103 StringPrintf("abstract method \"%s\"",
David Sehr709b0702016-10-13 09:12:37 -0700104 ArtMethod::PrettyMethod(method).c_str()).c_str());
Sebastien Hertz56adf602013-07-09 17:27:07 +0200105}
106
Alex Light705ad492015-09-21 11:36:30 -0700107void ThrowAbstractMethodError(uint32_t method_idx, const DexFile& dex_file) {
108 ThrowException("Ljava/lang/AbstractMethodError;", /* referrer */ nullptr,
109 StringPrintf("abstract method \"%s\"",
David Sehr709b0702016-10-13 09:12:37 -0700110 dex_file.PrettyMethod(method_idx,
111 /* with_signature */ true).c_str()).c_str());
Alex Light705ad492015-09-21 11:36:30 -0700112}
113
Ian Rogers62d6c772013-02-27 08:32:07 -0800114// ArithmeticException
115
Sebastien Hertz0a3b8632013-06-26 11:16:01 +0200116void ThrowArithmeticExceptionDivideByZero() {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700117 ThrowException("Ljava/lang/ArithmeticException;", nullptr, "divide by zero");
Ian Rogers62d6c772013-02-27 08:32:07 -0800118}
119
120// ArrayIndexOutOfBoundsException
121
122void ThrowArrayIndexOutOfBoundsException(int index, int length) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700123 ThrowException("Ljava/lang/ArrayIndexOutOfBoundsException;", nullptr,
Ian Rogers62d6c772013-02-27 08:32:07 -0800124 StringPrintf("length=%d; index=%d", length, index).c_str());
125}
126
127// ArrayStoreException
128
Mathieu Chartier6b3d12b2016-10-13 13:59:58 -0700129void ThrowArrayStoreException(ObjPtr<mirror::Class> element_class,
130 ObjPtr<mirror::Class> array_class) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700131 ThrowException("Ljava/lang/ArrayStoreException;", nullptr,
Ian Rogers62d6c772013-02-27 08:32:07 -0800132 StringPrintf("%s cannot be stored in an array of type %s",
David Sehr709b0702016-10-13 09:12:37 -0700133 mirror::Class::PrettyDescriptor(element_class).c_str(),
134 mirror::Class::PrettyDescriptor(array_class).c_str()).c_str());
Ian Rogers62d6c772013-02-27 08:32:07 -0800135}
136
Orion Hodsonc069a302017-01-18 09:23:12 +0000137// BootstrapMethodError
138
139void ThrowBootstrapMethodError(const char* fmt, ...) {
140 va_list args;
141 va_start(args, fmt);
142 ThrowException("Ljava/lang/BootstrapMethodError;", nullptr, fmt, &args);
143 va_end(args);
144}
145
146void ThrowWrappedBootstrapMethodError(const char* fmt, ...) {
147 va_list args;
148 va_start(args, fmt);
149 ThrowWrappedException("Ljava/lang/BootstrapMethodError;", nullptr, fmt, &args);
150 va_end(args);
151}
152
Ian Rogers62d6c772013-02-27 08:32:07 -0800153// ClassCastException
154
Mathieu Chartier6b3d12b2016-10-13 13:59:58 -0700155void ThrowClassCastException(ObjPtr<mirror::Class> dest_type, ObjPtr<mirror::Class> src_type) {
Vladimir Marko516e20f2018-04-09 18:33:55 +0100156 DumpB77342775DebugData(dest_type, src_type);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700157 ThrowException("Ljava/lang/ClassCastException;", nullptr,
Ian Rogers62d6c772013-02-27 08:32:07 -0800158 StringPrintf("%s cannot be cast to %s",
David Sehr709b0702016-10-13 09:12:37 -0700159 mirror::Class::PrettyDescriptor(src_type).c_str(),
160 mirror::Class::PrettyDescriptor(dest_type).c_str()).c_str());
Ian Rogers62d6c772013-02-27 08:32:07 -0800161}
162
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000163void ThrowClassCastException(const char* msg) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700164 ThrowException("Ljava/lang/ClassCastException;", nullptr, msg);
Ian Rogers62d6c772013-02-27 08:32:07 -0800165}
166
167// ClassCircularityError
168
Mathieu Chartier6b3d12b2016-10-13 13:59:58 -0700169void ThrowClassCircularityError(ObjPtr<mirror::Class> c) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800170 std::ostringstream msg;
David Sehr709b0702016-10-13 09:12:37 -0700171 msg << mirror::Class::PrettyDescriptor(c);
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000172 ThrowException("Ljava/lang/ClassCircularityError;", c, msg.str().c_str());
Ian Rogers62d6c772013-02-27 08:32:07 -0800173}
174
Mathieu Chartier6b3d12b2016-10-13 13:59:58 -0700175void ThrowClassCircularityError(ObjPtr<mirror::Class> c, const char* fmt, ...) {
Roland Levillain989ab3b2016-05-18 15:52:54 +0100176 va_list args;
177 va_start(args, fmt);
178 ThrowException("Ljava/lang/ClassCircularityError;", c, fmt, &args);
179 va_end(args);
180}
181
Ian Rogers62d6c772013-02-27 08:32:07 -0800182// ClassFormatError
183
Mathieu Chartier6b3d12b2016-10-13 13:59:58 -0700184void ThrowClassFormatError(ObjPtr<mirror::Class> referrer, const char* fmt, ...) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800185 va_list args;
186 va_start(args, fmt);
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000187 ThrowException("Ljava/lang/ClassFormatError;", referrer, fmt, &args);
Roland Levillainab880f42016-05-12 16:24:36 +0100188 va_end(args);
189}
Ian Rogers62d6c772013-02-27 08:32:07 -0800190
Ian Rogers87e552d2012-08-31 15:54:48 -0700191// IllegalAccessError
192
Mathieu Chartier6b3d12b2016-10-13 13:59:58 -0700193void ThrowIllegalAccessErrorClass(ObjPtr<mirror::Class> referrer, ObjPtr<mirror::Class> accessed) {
Ian Rogers87e552d2012-08-31 15:54:48 -0700194 std::ostringstream msg;
David Sehr709b0702016-10-13 09:12:37 -0700195 msg << "Illegal class access: '" << mirror::Class::PrettyDescriptor(referrer)
196 << "' attempting to access '" << mirror::Class::PrettyDescriptor(accessed) << "'";
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000197 ThrowException("Ljava/lang/IllegalAccessError;", referrer, msg.str().c_str());
Ian Rogers87e552d2012-08-31 15:54:48 -0700198}
199
Mathieu Chartier6b3d12b2016-10-13 13:59:58 -0700200void ThrowIllegalAccessErrorClassForMethodDispatch(ObjPtr<mirror::Class> referrer,
201 ObjPtr<mirror::Class> accessed,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700202 ArtMethod* called,
Ian Rogers87e552d2012-08-31 15:54:48 -0700203 InvokeType type) {
204 std::ostringstream msg;
David Sehr709b0702016-10-13 09:12:37 -0700205 msg << "Illegal class access ('" << mirror::Class::PrettyDescriptor(referrer)
206 << "' attempting to access '"
207 << mirror::Class::PrettyDescriptor(accessed) << "') in attempt to invoke " << type
208 << " method " << ArtMethod::PrettyMethod(called).c_str();
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000209 ThrowException("Ljava/lang/IllegalAccessError;", referrer, msg.str().c_str());
Ian Rogers87e552d2012-08-31 15:54:48 -0700210}
211
Mathieu Chartier6b3d12b2016-10-13 13:59:58 -0700212void ThrowIllegalAccessErrorMethod(ObjPtr<mirror::Class> referrer, ArtMethod* accessed) {
Ian Rogers87e552d2012-08-31 15:54:48 -0700213 std::ostringstream msg;
David Sehr709b0702016-10-13 09:12:37 -0700214 msg << "Method '" << ArtMethod::PrettyMethod(accessed) << "' is inaccessible to class '"
215 << mirror::Class::PrettyDescriptor(referrer) << "'";
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000216 ThrowException("Ljava/lang/IllegalAccessError;", referrer, msg.str().c_str());
Ian Rogers87e552d2012-08-31 15:54:48 -0700217}
218
Mathieu Chartier6b3d12b2016-10-13 13:59:58 -0700219void ThrowIllegalAccessErrorField(ObjPtr<mirror::Class> referrer, ArtField* accessed) {
Ian Rogers87e552d2012-08-31 15:54:48 -0700220 std::ostringstream msg;
David Sehr709b0702016-10-13 09:12:37 -0700221 msg << "Field '" << ArtField::PrettyField(accessed, false) << "' is inaccessible to class '"
222 << mirror::Class::PrettyDescriptor(referrer) << "'";
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000223 ThrowException("Ljava/lang/IllegalAccessError;", referrer, msg.str().c_str());
Ian Rogers87e552d2012-08-31 15:54:48 -0700224}
225
Mathieu Chartiere401d142015-04-22 13:56:20 -0700226void ThrowIllegalAccessErrorFinalField(ArtMethod* referrer, ArtField* accessed) {
Ian Rogers87e552d2012-08-31 15:54:48 -0700227 std::ostringstream msg;
David Sehr709b0702016-10-13 09:12:37 -0700228 msg << "Final field '" << ArtField::PrettyField(accessed, false)
229 << "' cannot be written to by method '" << ArtMethod::PrettyMethod(referrer) << "'";
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000230 ThrowException("Ljava/lang/IllegalAccessError;",
Mathieu Chartiere401d142015-04-22 13:56:20 -0700231 referrer != nullptr ? referrer->GetDeclaringClass() : nullptr,
Ian Rogers62d6c772013-02-27 08:32:07 -0800232 msg.str().c_str());
Ian Rogers87e552d2012-08-31 15:54:48 -0700233}
234
Mathieu Chartier6b3d12b2016-10-13 13:59:58 -0700235void ThrowIllegalAccessError(ObjPtr<mirror::Class> referrer, const char* fmt, ...) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800236 va_list args;
237 va_start(args, fmt);
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000238 ThrowException("Ljava/lang/IllegalAccessError;", referrer, fmt, &args);
Ian Rogers62d6c772013-02-27 08:32:07 -0800239 va_end(args);
240}
241
Jeff Hao11d5d8f2014-03-26 15:08:20 -0700242// IllegalAccessException
243
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000244void ThrowIllegalAccessException(const char* msg) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700245 ThrowException("Ljava/lang/IllegalAccessException;", nullptr, msg);
Jeff Hao11d5d8f2014-03-26 15:08:20 -0700246}
247
Ian Rogers62d6c772013-02-27 08:32:07 -0800248// IllegalArgumentException
249
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000250void ThrowIllegalArgumentException(const char* msg) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700251 ThrowException("Ljava/lang/IllegalArgumentException;", nullptr, msg);
Ian Rogers62d6c772013-02-27 08:32:07 -0800252}
253
Orion Hodson928033d2018-02-07 05:30:54 +0000254// IllegalStateException
255
256void ThrowIllegalStateException(const char* msg) {
257 ThrowException("Ljava/lang/IllegalStateException;", nullptr, msg);
258}
Ian Rogers62d6c772013-02-27 08:32:07 -0800259
Ian Rogers87e552d2012-08-31 15:54:48 -0700260// IncompatibleClassChangeError
261
262void ThrowIncompatibleClassChangeError(InvokeType expected_type, InvokeType found_type,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700263 ArtMethod* method, ArtMethod* referrer) {
Ian Rogers87e552d2012-08-31 15:54:48 -0700264 std::ostringstream msg;
David Sehr709b0702016-10-13 09:12:37 -0700265 msg << "The method '" << ArtMethod::PrettyMethod(method) << "' was expected to be of type "
Ian Rogers87e552d2012-08-31 15:54:48 -0700266 << expected_type << " but instead was found to be of type " << found_type;
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000267 ThrowException("Ljava/lang/IncompatibleClassChangeError;",
Mathieu Chartiere401d142015-04-22 13:56:20 -0700268 referrer != nullptr ? referrer->GetDeclaringClass() : nullptr,
Ian Rogers62d6c772013-02-27 08:32:07 -0800269 msg.str().c_str());
Ian Rogers87e552d2012-08-31 15:54:48 -0700270}
271
Alex Light705ad492015-09-21 11:36:30 -0700272void ThrowIncompatibleClassChangeErrorClassForInterfaceSuper(ArtMethod* method,
Mathieu Chartier6b3d12b2016-10-13 13:59:58 -0700273 ObjPtr<mirror::Class> target_class,
274 ObjPtr<mirror::Object> this_object,
Alex Light705ad492015-09-21 11:36:30 -0700275 ArtMethod* referrer) {
276 // Referrer is calling interface_method on this_object, however, the interface_method isn't
277 // implemented by this_object.
278 CHECK(this_object != nullptr);
279 std::ostringstream msg;
David Sehr709b0702016-10-13 09:12:37 -0700280 msg << "Class '" << mirror::Class::PrettyDescriptor(this_object->GetClass())
281 << "' does not implement interface '" << mirror::Class::PrettyDescriptor(target_class)
282 << "' in call to '"
283 << ArtMethod::PrettyMethod(method) << "'";
Vladimir Marko516e20f2018-04-09 18:33:55 +0100284 DumpB77342775DebugData(target_class, this_object->GetClass());
Alex Light705ad492015-09-21 11:36:30 -0700285 ThrowException("Ljava/lang/IncompatibleClassChangeError;",
286 referrer != nullptr ? referrer->GetDeclaringClass() : nullptr,
287 msg.str().c_str());
288}
289
Mathieu Chartiere401d142015-04-22 13:56:20 -0700290void ThrowIncompatibleClassChangeErrorClassForInterfaceDispatch(ArtMethod* interface_method,
Mathieu Chartier6b3d12b2016-10-13 13:59:58 -0700291 ObjPtr<mirror::Object> this_object,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700292 ArtMethod* referrer) {
Ian Rogers87e552d2012-08-31 15:54:48 -0700293 // Referrer is calling interface_method on this_object, however, the interface_method isn't
294 // implemented by this_object.
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700295 CHECK(this_object != nullptr);
Ian Rogers87e552d2012-08-31 15:54:48 -0700296 std::ostringstream msg;
David Sehr709b0702016-10-13 09:12:37 -0700297 msg << "Class '" << mirror::Class::PrettyDescriptor(this_object->GetClass())
Ian Rogers87e552d2012-08-31 15:54:48 -0700298 << "' does not implement interface '"
David Sehr709b0702016-10-13 09:12:37 -0700299 << mirror::Class::PrettyDescriptor(interface_method->GetDeclaringClass())
300 << "' in call to '" << ArtMethod::PrettyMethod(interface_method) << "'";
Vladimir Marko516e20f2018-04-09 18:33:55 +0100301 DumpB77342775DebugData(interface_method->GetDeclaringClass(), this_object->GetClass());
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000302 ThrowException("Ljava/lang/IncompatibleClassChangeError;",
Mathieu Chartiere401d142015-04-22 13:56:20 -0700303 referrer != nullptr ? referrer->GetDeclaringClass() : nullptr,
Ian Rogers62d6c772013-02-27 08:32:07 -0800304 msg.str().c_str());
Ian Rogers87e552d2012-08-31 15:54:48 -0700305}
306
Mathieu Chartierc7853442015-03-27 14:35:38 -0700307void ThrowIncompatibleClassChangeErrorField(ArtField* resolved_field, bool is_static,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700308 ArtMethod* referrer) {
Ian Rogers87e552d2012-08-31 15:54:48 -0700309 std::ostringstream msg;
David Sehr709b0702016-10-13 09:12:37 -0700310 msg << "Expected '" << ArtField::PrettyField(resolved_field) << "' to be a "
Ian Rogersb726dcb2012-09-05 08:57:23 -0700311 << (is_static ? "static" : "instance") << " field" << " rather than a "
312 << (is_static ? "instance" : "static") << " field";
Mathieu Chartiere401d142015-04-22 13:56:20 -0700313 ThrowException("Ljava/lang/IncompatibleClassChangeError;", referrer->GetDeclaringClass(),
Ian Rogers62d6c772013-02-27 08:32:07 -0800314 msg.str().c_str());
315}
316
Mathieu Chartier6b3d12b2016-10-13 13:59:58 -0700317void ThrowIncompatibleClassChangeError(ObjPtr<mirror::Class> referrer, const char* fmt, ...) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800318 va_list args;
319 va_start(args, fmt);
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000320 ThrowException("Ljava/lang/IncompatibleClassChangeError;", referrer, fmt, &args);
Ian Rogers62d6c772013-02-27 08:32:07 -0800321 va_end(args);
322}
323
Alex Light9139e002015-10-09 15:59:48 -0700324void ThrowIncompatibleClassChangeErrorForMethodConflict(ArtMethod* method) {
325 DCHECK(method != nullptr);
326 ThrowException("Ljava/lang/IncompatibleClassChangeError;",
327 /*referrer*/nullptr,
328 StringPrintf("Conflicting default method implementations %s",
David Sehr709b0702016-10-13 09:12:37 -0700329 ArtMethod::PrettyMethod(method).c_str()).c_str());
Alex Light9139e002015-10-09 15:59:48 -0700330}
331
Orion Hodson928033d2018-02-07 05:30:54 +0000332// IndexOutOfBoundsException
333
334void ThrowIndexOutOfBoundsException(int index, int length) {
335 ThrowException("Ljava/lang/IndexOutOfBoundsException;", nullptr,
336 StringPrintf("length=%d; index=%d", length, index).c_str());
337}
338
Alex Lightdb01a092017-04-03 15:39:55 -0700339// InternalError
340
341void ThrowInternalError(const char* fmt, ...) {
342 va_list args;
343 va_start(args, fmt);
344 ThrowException("Ljava/lang/InternalError;", nullptr, fmt, &args);
345 va_end(args);
346}
Alex Light9139e002015-10-09 15:59:48 -0700347
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700348// IOException
349
350void ThrowIOException(const char* fmt, ...) {
351 va_list args;
352 va_start(args, fmt);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700353 ThrowException("Ljava/io/IOException;", nullptr, fmt, &args);
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700354 va_end(args);
355}
356
Andreas Gampe329d1882014-04-08 10:32:19 -0700357void ThrowWrappedIOException(const char* fmt, ...) {
358 va_list args;
359 va_start(args, fmt);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700360 ThrowWrappedException("Ljava/io/IOException;", nullptr, fmt, &args);
Andreas Gampe329d1882014-04-08 10:32:19 -0700361 va_end(args);
362}
363
Ian Rogers62d6c772013-02-27 08:32:07 -0800364// LinkageError
365
Mathieu Chartier6b3d12b2016-10-13 13:59:58 -0700366void ThrowLinkageError(ObjPtr<mirror::Class> referrer, const char* fmt, ...) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800367 va_list args;
368 va_start(args, fmt);
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000369 ThrowException("Ljava/lang/LinkageError;", referrer, fmt, &args);
Ian Rogers62d6c772013-02-27 08:32:07 -0800370 va_end(args);
371}
372
Mathieu Chartier6b3d12b2016-10-13 13:59:58 -0700373void ThrowWrappedLinkageError(ObjPtr<mirror::Class> referrer, const char* fmt, ...) {
Vladimir Markod5e5a0e2015-05-08 12:26:59 +0100374 va_list args;
375 va_start(args, fmt);
376 ThrowWrappedException("Ljava/lang/LinkageError;", referrer, fmt, &args);
377 va_end(args);
378}
379
Ian Rogers62d6c772013-02-27 08:32:07 -0800380// NegativeArraySizeException
381
382void ThrowNegativeArraySizeException(int size) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700383 ThrowException("Ljava/lang/NegativeArraySizeException;", nullptr,
Brian Carlstromea46f952013-07-30 01:26:50 -0700384 StringPrintf("%d", size).c_str());
Ian Rogers62d6c772013-02-27 08:32:07 -0800385}
386
387void ThrowNegativeArraySizeException(const char* msg) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700388 ThrowException("Ljava/lang/NegativeArraySizeException;", nullptr, msg);
Ian Rogers62d6c772013-02-27 08:32:07 -0800389}
390
391// NoSuchFieldError
392
Mathieu Chartier6b3d12b2016-10-13 13:59:58 -0700393void ThrowNoSuchFieldError(const StringPiece& scope, ObjPtr<mirror::Class> c,
Mathieu Chartier4e067782015-05-13 13:13:24 -0700394 const StringPiece& type, const StringPiece& name) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800395 std::ostringstream msg;
Ian Rogers1ff3c982014-08-12 02:30:58 -0700396 std::string temp;
Ian Rogers62d6c772013-02-27 08:32:07 -0800397 msg << "No " << scope << "field " << name << " of type " << type
Ian Rogers1ff3c982014-08-12 02:30:58 -0700398 << " in class " << c->GetDescriptor(&temp) << " or its superclasses";
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000399 ThrowException("Ljava/lang/NoSuchFieldError;", c, msg.str().c_str());
Ian Rogers87e552d2012-08-31 15:54:48 -0700400}
401
Mathieu Chartier6b3d12b2016-10-13 13:59:58 -0700402void ThrowNoSuchFieldException(ObjPtr<mirror::Class> c, const StringPiece& name) {
Mathieu Chartier4e067782015-05-13 13:13:24 -0700403 std::ostringstream msg;
404 std::string temp;
405 msg << "No field " << name << " in class " << c->GetDescriptor(&temp);
406 ThrowException("Ljava/lang/NoSuchFieldException;", c, msg.str().c_str());
407}
408
Ian Rogers87e552d2012-08-31 15:54:48 -0700409// NoSuchMethodError
410
Mathieu Chartier6b3d12b2016-10-13 13:59:58 -0700411void ThrowNoSuchMethodError(InvokeType type, ObjPtr<mirror::Class> c, const StringPiece& name,
Ian Rogersd91d6d62013-09-25 20:26:14 -0700412 const Signature& signature) {
Ian Rogers87e552d2012-08-31 15:54:48 -0700413 std::ostringstream msg;
Ian Rogers1ff3c982014-08-12 02:30:58 -0700414 std::string temp;
Ian Rogers87e552d2012-08-31 15:54:48 -0700415 msg << "No " << type << " method " << name << signature
Ian Rogers1ff3c982014-08-12 02:30:58 -0700416 << " in class " << c->GetDescriptor(&temp) << " or its super classes";
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000417 ThrowException("Ljava/lang/NoSuchMethodError;", c, msg.str().c_str());
Ian Rogers87e552d2012-08-31 15:54:48 -0700418}
419
Ian Rogers62d6c772013-02-27 08:32:07 -0800420// NullPointerException
421
Mathieu Chartierc7853442015-03-27 14:35:38 -0700422void ThrowNullPointerExceptionForFieldAccess(ArtField* field, bool is_read) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800423 std::ostringstream msg;
424 msg << "Attempt to " << (is_read ? "read from" : "write to")
David Sehr709b0702016-10-13 09:12:37 -0700425 << " field '" << ArtField::PrettyField(field, true) << "' on a null object reference";
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700426 ThrowException("Ljava/lang/NullPointerException;", nullptr, msg.str().c_str());
Ian Rogers62d6c772013-02-27 08:32:07 -0800427}
428
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000429static void ThrowNullPointerExceptionForMethodAccessImpl(uint32_t method_idx,
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200430 const DexFile& dex_file,
431 InvokeType type)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700432 REQUIRES_SHARED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800433 std::ostringstream msg;
434 msg << "Attempt to invoke " << type << " method '"
David Sehr709b0702016-10-13 09:12:37 -0700435 << dex_file.PrettyMethod(method_idx, true) << "' on a null object reference";
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700436 ThrowException("Ljava/lang/NullPointerException;", nullptr, msg.str().c_str());
Ian Rogers62d6c772013-02-27 08:32:07 -0800437}
438
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000439void ThrowNullPointerExceptionForMethodAccess(uint32_t method_idx,
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200440 InvokeType type) {
Mathieu Chartier6b3d12b2016-10-13 13:59:58 -0700441 ObjPtr<mirror::DexCache> dex_cache =
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000442 Thread::Current()->GetCurrentMethod(nullptr)->GetDeclaringClass()->GetDexCache();
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200443 const DexFile& dex_file = *dex_cache->GetDexFile();
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000444 ThrowNullPointerExceptionForMethodAccessImpl(method_idx, dex_file, type);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200445}
446
Mathieu Chartiere401d142015-04-22 13:56:20 -0700447void ThrowNullPointerExceptionForMethodAccess(ArtMethod* method,
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200448 InvokeType type) {
Mathieu Chartier6b3d12b2016-10-13 13:59:58 -0700449 ObjPtr<mirror::DexCache> dex_cache = method->GetDeclaringClass()->GetDexCache();
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200450 const DexFile& dex_file = *dex_cache->GetDexFile();
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000451 ThrowNullPointerExceptionForMethodAccessImpl(method->GetDexMethodIndex(),
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200452 dex_file, type);
453}
454
Vladimir Marko953437b2016-08-24 08:30:46 +0000455static bool IsValidReadBarrierImplicitCheck(uintptr_t addr) {
456 DCHECK(kEmitCompilerReadBarrier);
457 uint32_t monitor_offset = mirror::Object::MonitorOffset().Uint32Value();
Vladimir Marko33bff252017-11-01 14:35:42 +0000458 if (kUseBakerReadBarrier &&
459 (kRuntimeISA == InstructionSet::kX86 || kRuntimeISA == InstructionSet::kX86_64)) {
Vladimir Marko953437b2016-08-24 08:30:46 +0000460 constexpr uint32_t gray_byte_position = LockWord::kReadBarrierStateShift / kBitsPerByte;
461 monitor_offset += gray_byte_position;
462 }
463 return addr == monitor_offset;
464}
465
Nicolas Geoffray13449142017-12-07 22:26:24 +0000466static bool IsValidImplicitCheck(uintptr_t addr, const Instruction& instr)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700467 REQUIRES_SHARED(Locks::mutator_lock_) {
Nicolas Geoffraye8e11272016-06-28 18:08:46 +0100468 if (!CanDoImplicitNullCheckOn(addr)) {
469 return false;
470 }
471
472 switch (instr.Opcode()) {
473 case Instruction::INVOKE_DIRECT:
474 case Instruction::INVOKE_DIRECT_RANGE:
475 case Instruction::INVOKE_VIRTUAL:
476 case Instruction::INVOKE_VIRTUAL_RANGE:
477 case Instruction::INVOKE_INTERFACE:
478 case Instruction::INVOKE_INTERFACE_RANGE:
Orion Hodsonac141392017-01-13 11:53:47 +0000479 case Instruction::INVOKE_POLYMORPHIC:
480 case Instruction::INVOKE_POLYMORPHIC_RANGE:
Nicolas Geoffraye8e11272016-06-28 18:08:46 +0100481 case Instruction::INVOKE_VIRTUAL_QUICK:
482 case Instruction::INVOKE_VIRTUAL_RANGE_QUICK: {
483 // Without inlining, we could just check that the offset is the class offset.
484 // However, when inlining, the compiler can (validly) merge the null check with a field access
485 // on the same object. Note that the stack map at the NPE will reflect the invoke's location,
486 // which is the caller.
487 return true;
488 }
489
Vladimir Marko953437b2016-08-24 08:30:46 +0000490 case Instruction::IGET_OBJECT:
491 if (kEmitCompilerReadBarrier && IsValidReadBarrierImplicitCheck(addr)) {
492 return true;
493 }
494 FALLTHROUGH_INTENDED;
Nicolas Geoffraye8e11272016-06-28 18:08:46 +0100495 case Instruction::IGET:
496 case Instruction::IGET_WIDE:
Nicolas Geoffraye8e11272016-06-28 18:08:46 +0100497 case Instruction::IGET_BOOLEAN:
498 case Instruction::IGET_BYTE:
499 case Instruction::IGET_CHAR:
500 case Instruction::IGET_SHORT:
501 case Instruction::IPUT:
502 case Instruction::IPUT_WIDE:
503 case Instruction::IPUT_OBJECT:
504 case Instruction::IPUT_BOOLEAN:
505 case Instruction::IPUT_BYTE:
506 case Instruction::IPUT_CHAR:
507 case Instruction::IPUT_SHORT: {
Nicolas Geoffray13449142017-12-07 22:26:24 +0000508 // We might be doing an implicit null check with an offset that doesn't correspond
509 // to the instruction, for example with two field accesses and the first one being
510 // eliminated or re-ordered.
511 return true;
Nicolas Geoffraye8e11272016-06-28 18:08:46 +0100512 }
513
Vladimir Marko953437b2016-08-24 08:30:46 +0000514 case Instruction::IGET_OBJECT_QUICK:
515 if (kEmitCompilerReadBarrier && IsValidReadBarrierImplicitCheck(addr)) {
516 return true;
517 }
518 FALLTHROUGH_INTENDED;
Nicolas Geoffraye8e11272016-06-28 18:08:46 +0100519 case Instruction::IGET_QUICK:
520 case Instruction::IGET_BOOLEAN_QUICK:
521 case Instruction::IGET_BYTE_QUICK:
522 case Instruction::IGET_CHAR_QUICK:
523 case Instruction::IGET_SHORT_QUICK:
524 case Instruction::IGET_WIDE_QUICK:
Nicolas Geoffraye8e11272016-06-28 18:08:46 +0100525 case Instruction::IPUT_QUICK:
526 case Instruction::IPUT_BOOLEAN_QUICK:
527 case Instruction::IPUT_BYTE_QUICK:
528 case Instruction::IPUT_CHAR_QUICK:
529 case Instruction::IPUT_SHORT_QUICK:
530 case Instruction::IPUT_WIDE_QUICK:
531 case Instruction::IPUT_OBJECT_QUICK: {
Nicolas Geoffray13449142017-12-07 22:26:24 +0000532 // We might be doing an implicit null check with an offset that doesn't correspond
533 // to the instruction, for example with two field accesses and the first one being
534 // eliminated or re-ordered.
535 return true;
Nicolas Geoffraye8e11272016-06-28 18:08:46 +0100536 }
537
Vladimir Marko953437b2016-08-24 08:30:46 +0000538 case Instruction::AGET_OBJECT:
539 if (kEmitCompilerReadBarrier && IsValidReadBarrierImplicitCheck(addr)) {
540 return true;
541 }
542 FALLTHROUGH_INTENDED;
Nicolas Geoffraye8e11272016-06-28 18:08:46 +0100543 case Instruction::AGET:
544 case Instruction::AGET_WIDE:
Nicolas Geoffraye8e11272016-06-28 18:08:46 +0100545 case Instruction::AGET_BOOLEAN:
546 case Instruction::AGET_BYTE:
547 case Instruction::AGET_CHAR:
548 case Instruction::AGET_SHORT:
549 case Instruction::APUT:
550 case Instruction::APUT_WIDE:
551 case Instruction::APUT_OBJECT:
552 case Instruction::APUT_BOOLEAN:
553 case Instruction::APUT_BYTE:
554 case Instruction::APUT_CHAR:
Nicolas Geoffray350cc992016-06-29 21:45:10 +0100555 case Instruction::APUT_SHORT:
556 case Instruction::FILL_ARRAY_DATA:
Nicolas Geoffraye8e11272016-06-28 18:08:46 +0100557 case Instruction::ARRAY_LENGTH: {
Nicolas Geoffray350cc992016-06-29 21:45:10 +0100558 // The length access should crash. We currently do not do implicit checks on
559 // the array access itself.
Vladimir Marko953437b2016-08-24 08:30:46 +0000560 return (addr == 0u) || (addr == mirror::Array::LengthOffset().Uint32Value());
Nicolas Geoffraye8e11272016-06-28 18:08:46 +0100561 }
562
563 default: {
564 // We have covered all the cases where an NPE could occur.
565 // Note that this must be kept in sync with the compiler, and adding
566 // any new way to do implicit checks in the compiler should also update
567 // this code.
568 return false;
569 }
570 }
571}
572
573void ThrowNullPointerExceptionFromDexPC(bool check_address, uintptr_t addr) {
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000574 uint32_t throw_dex_pc;
Mathieu Chartiere401d142015-04-22 13:56:20 -0700575 ArtMethod* method = Thread::Current()->GetCurrentMethod(&throw_dex_pc);
David Sehr0225f8e2018-01-31 08:52:24 +0000576 CodeItemInstructionAccessor accessor(method->DexInstructions());
Mathieu Chartier808c7a52017-12-15 11:19:33 -0800577 CHECK_LT(throw_dex_pc, accessor.InsnsSizeInCodeUnits());
578 const Instruction& instr = accessor.InstructionAt(throw_dex_pc);
579 if (check_address && !IsValidImplicitCheck(addr, instr)) {
Nicolas Geoffraye8e11272016-06-28 18:08:46 +0100580 const DexFile* dex_file = method->GetDeclaringClass()->GetDexCache()->GetDexFile();
581 LOG(FATAL) << "Invalid address for an implicit NullPointerException check: "
582 << "0x" << std::hex << addr << std::dec
583 << ", at "
Mathieu Chartier808c7a52017-12-15 11:19:33 -0800584 << instr.DumpString(dex_file)
Nicolas Geoffraye8e11272016-06-28 18:08:46 +0100585 << " in "
David Sehr709b0702016-10-13 09:12:37 -0700586 << method->PrettyMethod();
Nicolas Geoffraye8e11272016-06-28 18:08:46 +0100587 }
588
Mathieu Chartier808c7a52017-12-15 11:19:33 -0800589 switch (instr.Opcode()) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800590 case Instruction::INVOKE_DIRECT:
Mathieu Chartier808c7a52017-12-15 11:19:33 -0800591 ThrowNullPointerExceptionForMethodAccess(instr.VRegB_35c(), kDirect);
Sebastien Hertz75b2a4a2013-05-21 09:25:10 +0200592 break;
Ian Rogers62d6c772013-02-27 08:32:07 -0800593 case Instruction::INVOKE_DIRECT_RANGE:
Mathieu Chartier808c7a52017-12-15 11:19:33 -0800594 ThrowNullPointerExceptionForMethodAccess(instr.VRegB_3rc(), kDirect);
Ian Rogers62d6c772013-02-27 08:32:07 -0800595 break;
596 case Instruction::INVOKE_VIRTUAL:
Mathieu Chartier808c7a52017-12-15 11:19:33 -0800597 ThrowNullPointerExceptionForMethodAccess(instr.VRegB_35c(), kVirtual);
Sebastien Hertz75b2a4a2013-05-21 09:25:10 +0200598 break;
Ian Rogers62d6c772013-02-27 08:32:07 -0800599 case Instruction::INVOKE_VIRTUAL_RANGE:
Mathieu Chartier808c7a52017-12-15 11:19:33 -0800600 ThrowNullPointerExceptionForMethodAccess(instr.VRegB_3rc(), kVirtual);
Ian Rogers62d6c772013-02-27 08:32:07 -0800601 break;
602 case Instruction::INVOKE_INTERFACE:
Mathieu Chartier808c7a52017-12-15 11:19:33 -0800603 ThrowNullPointerExceptionForMethodAccess(instr.VRegB_35c(), kInterface);
Sebastien Hertz75b2a4a2013-05-21 09:25:10 +0200604 break;
Ian Rogers62d6c772013-02-27 08:32:07 -0800605 case Instruction::INVOKE_INTERFACE_RANGE:
Mathieu Chartier808c7a52017-12-15 11:19:33 -0800606 ThrowNullPointerExceptionForMethodAccess(instr.VRegB_3rc(), kInterface);
Ian Rogers62d6c772013-02-27 08:32:07 -0800607 break;
Orion Hodsonac141392017-01-13 11:53:47 +0000608 case Instruction::INVOKE_POLYMORPHIC:
Mathieu Chartier808c7a52017-12-15 11:19:33 -0800609 ThrowNullPointerExceptionForMethodAccess(instr.VRegB_45cc(), kVirtual);
Orion Hodsonac141392017-01-13 11:53:47 +0000610 break;
611 case Instruction::INVOKE_POLYMORPHIC_RANGE:
Mathieu Chartier808c7a52017-12-15 11:19:33 -0800612 ThrowNullPointerExceptionForMethodAccess(instr.VRegB_4rcc(), kVirtual);
Orion Hodsonac141392017-01-13 11:53:47 +0000613 break;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200614 case Instruction::INVOKE_VIRTUAL_QUICK:
615 case Instruction::INVOKE_VIRTUAL_RANGE_QUICK: {
Nicolas Geoffray6589af12017-11-13 15:16:22 +0000616 uint16_t method_idx = method->GetIndexFromQuickening(throw_dex_pc);
617 if (method_idx != DexFile::kDexNoIndex16) {
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200618 // NPE with precise message.
Nicolas Geoffray6589af12017-11-13 15:16:22 +0000619 ThrowNullPointerExceptionForMethodAccess(method_idx, kVirtual);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200620 } else {
621 // NPE with imprecise message.
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000622 ThrowNullPointerException("Attempt to invoke a virtual method on a null object reference");
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200623 }
624 break;
625 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800626 case Instruction::IGET:
627 case Instruction::IGET_WIDE:
628 case Instruction::IGET_OBJECT:
629 case Instruction::IGET_BOOLEAN:
630 case Instruction::IGET_BYTE:
631 case Instruction::IGET_CHAR:
632 case Instruction::IGET_SHORT: {
Mathieu Chartierc7853442015-03-27 14:35:38 -0700633 ArtField* field =
Mathieu Chartier808c7a52017-12-15 11:19:33 -0800634 Runtime::Current()->GetClassLinker()->ResolveField(instr.VRegC_22c(), method, false);
Andreas Gampe71307442018-02-06 13:38:03 -0800635 Thread::Current()->ClearException(); // Resolution may fail, ignore.
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000636 ThrowNullPointerExceptionForFieldAccess(field, true /* read */);
Ian Rogers62d6c772013-02-27 08:32:07 -0800637 break;
638 }
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200639 case Instruction::IGET_QUICK:
Mathieu Chartierffc605c2014-12-10 10:35:44 -0800640 case Instruction::IGET_BOOLEAN_QUICK:
641 case Instruction::IGET_BYTE_QUICK:
642 case Instruction::IGET_CHAR_QUICK:
643 case Instruction::IGET_SHORT_QUICK:
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200644 case Instruction::IGET_WIDE_QUICK:
645 case Instruction::IGET_OBJECT_QUICK: {
Nicolas Geoffray6589af12017-11-13 15:16:22 +0000646 uint16_t field_idx = method->GetIndexFromQuickening(throw_dex_pc);
647 ArtField* field = nullptr;
648 CHECK_NE(field_idx, DexFile::kDexNoIndex16);
649 field = Runtime::Current()->GetClassLinker()->ResolveField(
650 field_idx, method, /* is_static */ false);
651 Thread::Current()->ClearException(); // Resolution may fail, ignore.
652 ThrowNullPointerExceptionForFieldAccess(field, true /* read */);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200653 break;
654 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800655 case Instruction::IPUT:
656 case Instruction::IPUT_WIDE:
657 case Instruction::IPUT_OBJECT:
658 case Instruction::IPUT_BOOLEAN:
659 case Instruction::IPUT_BYTE:
660 case Instruction::IPUT_CHAR:
661 case Instruction::IPUT_SHORT: {
Nicolas Geoffray6589af12017-11-13 15:16:22 +0000662 ArtField* field = Runtime::Current()->GetClassLinker()->ResolveField(
663 instr.VRegC_22c(), method, /* is_static */ false);
Andreas Gampe71307442018-02-06 13:38:03 -0800664 Thread::Current()->ClearException(); // Resolution may fail, ignore.
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000665 ThrowNullPointerExceptionForFieldAccess(field, false /* write */);
Ian Rogers62d6c772013-02-27 08:32:07 -0800666 break;
667 }
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200668 case Instruction::IPUT_QUICK:
Fred Shih37f05ef2014-07-16 18:38:08 -0700669 case Instruction::IPUT_BOOLEAN_QUICK:
670 case Instruction::IPUT_BYTE_QUICK:
671 case Instruction::IPUT_CHAR_QUICK:
672 case Instruction::IPUT_SHORT_QUICK:
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200673 case Instruction::IPUT_WIDE_QUICK:
674 case Instruction::IPUT_OBJECT_QUICK: {
Nicolas Geoffray6589af12017-11-13 15:16:22 +0000675 uint16_t field_idx = method->GetIndexFromQuickening(throw_dex_pc);
676 ArtField* field = nullptr;
677 CHECK_NE(field_idx, DexFile::kDexNoIndex16);
678 field = Runtime::Current()->GetClassLinker()->ResolveField(
679 field_idx, method, /* is_static */ false);
680 Thread::Current()->ClearException(); // Resolution may fail, ignore.
681 ThrowNullPointerExceptionForFieldAccess(field, false /* write */);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200682 break;
683 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800684 case Instruction::AGET:
685 case Instruction::AGET_WIDE:
686 case Instruction::AGET_OBJECT:
687 case Instruction::AGET_BOOLEAN:
688 case Instruction::AGET_BYTE:
689 case Instruction::AGET_CHAR:
690 case Instruction::AGET_SHORT:
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700691 ThrowException("Ljava/lang/NullPointerException;", nullptr,
Ian Rogers62d6c772013-02-27 08:32:07 -0800692 "Attempt to read from null array");
693 break;
694 case Instruction::APUT:
695 case Instruction::APUT_WIDE:
696 case Instruction::APUT_OBJECT:
697 case Instruction::APUT_BOOLEAN:
698 case Instruction::APUT_BYTE:
699 case Instruction::APUT_CHAR:
700 case Instruction::APUT_SHORT:
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700701 ThrowException("Ljava/lang/NullPointerException;", nullptr,
Ian Rogers62d6c772013-02-27 08:32:07 -0800702 "Attempt to write to null array");
703 break;
704 case Instruction::ARRAY_LENGTH:
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700705 ThrowException("Ljava/lang/NullPointerException;", nullptr,
Ian Rogers62d6c772013-02-27 08:32:07 -0800706 "Attempt to get length of null array");
707 break;
Nicolas Geoffraye8e11272016-06-28 18:08:46 +0100708 case Instruction::FILL_ARRAY_DATA: {
709 ThrowException("Ljava/lang/NullPointerException;", nullptr,
710 "Attempt to write to null array");
711 break;
712 }
Nicolas Geoffray7f0ae732016-06-29 14:54:35 +0100713 case Instruction::MONITOR_ENTER:
714 case Instruction::MONITOR_EXIT: {
715 ThrowException("Ljava/lang/NullPointerException;", nullptr,
716 "Attempt to do a synchronize operation on a null object");
717 break;
718 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800719 default: {
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000720 const DexFile* dex_file =
721 method->GetDeclaringClass()->GetDexCache()->GetDexFile();
Nicolas Geoffraye8e11272016-06-28 18:08:46 +0100722 LOG(FATAL) << "NullPointerException at an unexpected instruction: "
Mathieu Chartier808c7a52017-12-15 11:19:33 -0800723 << instr.DumpString(dex_file)
Nicolas Geoffraye8e11272016-06-28 18:08:46 +0100724 << " in "
David Sehr709b0702016-10-13 09:12:37 -0700725 << method->PrettyMethod();
Ian Rogers62d6c772013-02-27 08:32:07 -0800726 break;
727 }
728 }
729}
730
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000731void ThrowNullPointerException(const char* msg) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700732 ThrowException("Ljava/lang/NullPointerException;", nullptr, msg);
Ian Rogers62d6c772013-02-27 08:32:07 -0800733}
734
Orion Hodson928033d2018-02-07 05:30:54 +0000735// ReadOnlyBufferException
736
737void ThrowReadOnlyBufferException() {
738 Thread::Current()->ThrowNewException("Ljava/nio/ReadOnlyBufferException;", nullptr);
739}
740
Ian Rogers62d6c772013-02-27 08:32:07 -0800741// RuntimeException
742
743void ThrowRuntimeException(const char* fmt, ...) {
744 va_list args;
745 va_start(args, fmt);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700746 ThrowException("Ljava/lang/RuntimeException;", nullptr, fmt, &args);
Ian Rogers62d6c772013-02-27 08:32:07 -0800747 va_end(args);
748}
749
Leonard Mosescueb842212016-10-06 17:26:36 -0700750// SecurityException
751
752void ThrowSecurityException(const char* fmt, ...) {
753 va_list args;
754 va_start(args, fmt);
755 ThrowException("Ljava/lang/SecurityException;", nullptr, fmt, &args);
756 va_end(args);
757}
758
Andreas Gampe103992b2016-01-04 15:32:43 -0800759// Stack overflow.
760
761void ThrowStackOverflowError(Thread* self) {
762 if (self->IsHandlingStackOverflow()) {
763 LOG(ERROR) << "Recursive stack overflow.";
764 // We don't fail here because SetStackEndForStackOverflow will print better diagnostics.
765 }
766
767 self->SetStackEndForStackOverflow(); // Allow space on the stack for constructor to execute.
768 JNIEnvExt* env = self->GetJniEnv();
769 std::string msg("stack size ");
770 msg += PrettySize(self->GetStackSize());
771
772 // Avoid running Java code for exception initialization.
773 // TODO: Checks to make this a bit less brittle.
774
775 std::string error_msg;
776
777 // Allocate an uninitialized object.
778 ScopedLocalRef<jobject> exc(env,
779 env->AllocObject(WellKnownClasses::java_lang_StackOverflowError));
780 if (exc.get() != nullptr) {
781 // "Initialize".
782 // StackOverflowError -> VirtualMachineError -> Error -> Throwable -> Object.
783 // Only Throwable has "custom" fields:
784 // String detailMessage.
785 // Throwable cause (= this).
786 // List<Throwable> suppressedExceptions (= Collections.emptyList()).
787 // Object stackState;
788 // StackTraceElement[] stackTrace;
789 // Only Throwable has a non-empty constructor:
790 // this.stackTrace = EmptyArray.STACK_TRACE_ELEMENT;
791 // fillInStackTrace();
792
793 // detailMessage.
794 // TODO: Use String::FromModifiedUTF...?
795 ScopedLocalRef<jstring> s(env, env->NewStringUTF(msg.c_str()));
796 if (s.get() != nullptr) {
797 env->SetObjectField(exc.get(), WellKnownClasses::java_lang_Throwable_detailMessage, s.get());
798
799 // cause.
800 env->SetObjectField(exc.get(), WellKnownClasses::java_lang_Throwable_cause, exc.get());
801
802 // suppressedExceptions.
803 ScopedLocalRef<jobject> emptylist(env, env->GetStaticObjectField(
804 WellKnownClasses::java_util_Collections,
805 WellKnownClasses::java_util_Collections_EMPTY_LIST));
806 CHECK(emptylist.get() != nullptr);
807 env->SetObjectField(exc.get(),
808 WellKnownClasses::java_lang_Throwable_suppressedExceptions,
809 emptylist.get());
810
811 // stackState is set as result of fillInStackTrace. fillInStackTrace calls
812 // nativeFillInStackTrace.
813 ScopedLocalRef<jobject> stack_state_val(env, nullptr);
814 {
815 ScopedObjectAccessUnchecked soa(env);
816 stack_state_val.reset(soa.Self()->CreateInternalStackTrace<false>(soa));
817 }
818 if (stack_state_val.get() != nullptr) {
819 env->SetObjectField(exc.get(),
820 WellKnownClasses::java_lang_Throwable_stackState,
821 stack_state_val.get());
822
823 // stackTrace.
824 ScopedLocalRef<jobject> stack_trace_elem(env, env->GetStaticObjectField(
825 WellKnownClasses::libcore_util_EmptyArray,
826 WellKnownClasses::libcore_util_EmptyArray_STACK_TRACE_ELEMENT));
827 env->SetObjectField(exc.get(),
828 WellKnownClasses::java_lang_Throwable_stackTrace,
829 stack_trace_elem.get());
830 } else {
831 error_msg = "Could not create stack trace.";
832 }
833 // Throw the exception.
Mathieu Chartierc4f39252016-10-05 18:32:08 -0700834 self->SetException(self->DecodeJObject(exc.get())->AsThrowable());
Andreas Gampe103992b2016-01-04 15:32:43 -0800835 } else {
836 // Could not allocate a string object.
837 error_msg = "Couldn't throw new StackOverflowError because JNI NewStringUTF failed.";
838 }
839 } else {
840 error_msg = "Could not allocate StackOverflowError object.";
841 }
842
843 if (!error_msg.empty()) {
844 LOG(WARNING) << error_msg;
845 CHECK(self->IsExceptionPending());
846 }
847
848 bool explicit_overflow_check = Runtime::Current()->ExplicitStackOverflowChecks();
849 self->ResetDefaultStackEnd(); // Return to default stack size.
850
851 // And restore protection if implicit checks are on.
852 if (!explicit_overflow_check) {
853 self->ProtectStack();
854 }
855}
856
Vladimir Marko87f3fcb2016-04-28 15:52:11 +0100857// StringIndexOutOfBoundsException
858
859void ThrowStringIndexOutOfBoundsException(int index, int length) {
860 ThrowException("Ljava/lang/StringIndexOutOfBoundsException;", nullptr,
861 StringPrintf("length=%d; index=%d", length, index).c_str());
862}
863
Orion Hodson928033d2018-02-07 05:30:54 +0000864// UnsupportedOperationException
865
866void ThrowUnsupportedOperationException() {
867 ThrowException("Ljava/lang/UnsupportedOperationException;");
868}
869
Ian Rogers62d6c772013-02-27 08:32:07 -0800870// VerifyError
871
Mathieu Chartier6b3d12b2016-10-13 13:59:58 -0700872void ThrowVerifyError(ObjPtr<mirror::Class> referrer, const char* fmt, ...) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800873 va_list args;
874 va_start(args, fmt);
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000875 ThrowException("Ljava/lang/VerifyError;", referrer, fmt, &args);
Ian Rogers62d6c772013-02-27 08:32:07 -0800876 va_end(args);
Ian Rogers87e552d2012-08-31 15:54:48 -0700877}
878
Narayan Kamath208f8572016-08-03 12:46:58 +0100879// WrongMethodTypeException
880
Orion Hodson928033d2018-02-07 05:30:54 +0000881void ThrowWrongMethodTypeException(mirror::MethodType* expected_type,
882 mirror::MethodType* actual_type) {
Narayan Kamath208f8572016-08-03 12:46:58 +0100883 ThrowException("Ljava/lang/invoke/WrongMethodTypeException;",
884 nullptr,
Narayan Kamath3e0dce02016-10-31 13:55:55 +0000885 StringPrintf("Expected %s but was %s",
Orion Hodson928033d2018-02-07 05:30:54 +0000886 expected_type->PrettyDescriptor().c_str(),
887 actual_type->PrettyDescriptor().c_str()).c_str());
Narayan Kamath208f8572016-08-03 12:46:58 +0100888}
889
Ian Rogers87e552d2012-08-31 15:54:48 -0700890} // namespace art