blob: dd832df373e170025f9cb04e3c2066ef0bc98c4f [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
Elliott Hughes07ed66b2012-12-12 18:34:25 -080019#include "base/logging.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080020#include "class_linker-inl.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070021#include "dex_file-inl.h"
Sebastien Hertz75b2a4a2013-05-21 09:25:10 +020022#include "dex_instruction-inl.h"
Ian Rogers87e552d2012-08-31 15:54:48 -070023#include "invoke_type.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070024#include "mirror/art_method-inl.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070025#include "mirror/class-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080026#include "mirror/object-inl.h"
27#include "mirror/object_array-inl.h"
Ian Rogers87e552d2012-08-31 15:54:48 -070028#include "object_utils.h"
29#include "thread.h"
Sebastien Hertz2d6ba512013-05-17 11:31:37 +020030#include "verifier/method_verifier.h"
Ian Rogers87e552d2012-08-31 15:54:48 -070031
32#include <sstream>
33
34namespace art {
35
Ian Rogers62d6c772013-02-27 08:32:07 -080036static void AddReferrerLocation(std::ostream& os, const mirror::Class* referrer)
Ian Rogersb726dcb2012-09-05 08:57:23 -070037 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers87e552d2012-08-31 15:54:48 -070038 if (referrer != NULL) {
39 ClassHelper kh(referrer);
40 std::string location(kh.GetLocation());
41 if (!location.empty()) {
42 os << " (declaration of '" << PrettyDescriptor(referrer)
43 << "' appears in " << location << ")";
44 }
45 }
46}
47
Ian Rogers62d6c772013-02-27 08:32:07 -080048static void ThrowException(const ThrowLocation* throw_location, const char* exception_descriptor,
49 const mirror::Class* referrer, const char* fmt, va_list* args = NULL)
50 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers87e552d2012-08-31 15:54:48 -070051 std::ostringstream msg;
Ian Rogers62d6c772013-02-27 08:32:07 -080052 if (args != NULL) {
53 std::string vmsg;
54 StringAppendV(&vmsg, fmt, *args);
55 msg << vmsg;
56 } else {
57 msg << fmt;
58 }
59 AddReferrerLocation(msg, referrer);
60 Thread* self = Thread::Current();
61 if (throw_location == NULL) {
62 ThrowLocation computed_throw_location = self->GetCurrentLocationForThrow();
63 self->ThrowNewException(computed_throw_location, exception_descriptor, msg.str().c_str());
64 } else {
65 self->ThrowNewException(*throw_location, exception_descriptor, msg.str().c_str());
Ian Rogers87e552d2012-08-31 15:54:48 -070066 }
67}
68
Sebastien Hertz56adf602013-07-09 17:27:07 +020069// AbstractMethodError
70
Brian Carlstromea46f952013-07-30 01:26:50 -070071void ThrowAbstractMethodError(const mirror::ArtMethod* method) {
Sebastien Hertz56adf602013-07-09 17:27:07 +020072 ThrowException(NULL, "Ljava/lang/AbstractMethodError;", NULL,
73 StringPrintf("abstract method \"%s\"",
74 PrettyMethod(method).c_str()).c_str());
75}
76
Ian Rogers62d6c772013-02-27 08:32:07 -080077// ArithmeticException
78
Sebastien Hertz0a3b8632013-06-26 11:16:01 +020079void ThrowArithmeticExceptionDivideByZero() {
Ian Rogers62d6c772013-02-27 08:32:07 -080080 ThrowException(NULL, "Ljava/lang/ArithmeticException;", NULL, "divide by zero");
81}
82
83// ArrayIndexOutOfBoundsException
84
85void ThrowArrayIndexOutOfBoundsException(int index, int length) {
86 ThrowException(NULL, "Ljava/lang/ArrayIndexOutOfBoundsException;", NULL,
87 StringPrintf("length=%d; index=%d", length, index).c_str());
88}
89
90// ArrayStoreException
91
92void ThrowArrayStoreException(const mirror::Class* element_class,
93 const mirror::Class* array_class) {
94 ThrowException(NULL, "Ljava/lang/ArrayStoreException;", NULL,
95 StringPrintf("%s cannot be stored in an array of type %s",
96 PrettyDescriptor(element_class).c_str(),
97 PrettyDescriptor(array_class).c_str()).c_str());
98}
99
100// ClassCastException
101
102void ThrowClassCastException(const mirror::Class* dest_type, const mirror::Class* src_type) {
103 ThrowException(NULL, "Ljava/lang/ClassCastException;", NULL,
104 StringPrintf("%s cannot be cast to %s",
105 PrettyDescriptor(src_type).c_str(),
106 PrettyDescriptor(dest_type).c_str()).c_str());
107}
108
109void ThrowClassCastException(const ThrowLocation* throw_location, const char* msg) {
110 ThrowException(throw_location, "Ljava/lang/ClassCastException;", NULL, msg);
111}
112
113// ClassCircularityError
114
115void ThrowClassCircularityError(mirror::Class* c) {
116 std::ostringstream msg;
117 msg << PrettyDescriptor(c);
118 ThrowException(NULL, "Ljava/lang/ClassCircularityError;", c, msg.str().c_str());
119}
120
121// ClassFormatError
122
123void ThrowClassFormatError(const mirror::Class* referrer, const char* fmt, ...) {
124 va_list args;
125 va_start(args, fmt);
126 ThrowException(NULL, "Ljava/lang/ClassFormatError;", referrer, fmt, &args);
127 va_end(args);}
128
Ian Rogers87e552d2012-08-31 15:54:48 -0700129// IllegalAccessError
130
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800131void ThrowIllegalAccessErrorClass(mirror::Class* referrer, mirror::Class* accessed) {
Ian Rogers87e552d2012-08-31 15:54:48 -0700132 std::ostringstream msg;
Ian Rogersb726dcb2012-09-05 08:57:23 -0700133 msg << "Illegal class access: '" << PrettyDescriptor(referrer) << "' attempting to access '"
Ian Rogers87e552d2012-08-31 15:54:48 -0700134 << PrettyDescriptor(accessed) << "'";
Ian Rogers62d6c772013-02-27 08:32:07 -0800135 ThrowException(NULL, "Ljava/lang/IllegalAccessError;", referrer, msg.str().c_str());
Ian Rogers87e552d2012-08-31 15:54:48 -0700136}
137
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800138void ThrowIllegalAccessErrorClassForMethodDispatch(mirror::Class* referrer, mirror::Class* accessed,
Brian Carlstromea46f952013-07-30 01:26:50 -0700139 const mirror::ArtMethod* called,
Ian Rogers87e552d2012-08-31 15:54:48 -0700140 InvokeType type) {
141 std::ostringstream msg;
Ian Rogersb726dcb2012-09-05 08:57:23 -0700142 msg << "Illegal class access ('" << PrettyDescriptor(referrer) << "' attempting to access '"
143 << PrettyDescriptor(accessed) << "') in attempt to invoke " << type
Ian Rogers87e552d2012-08-31 15:54:48 -0700144 << " method " << PrettyMethod(called).c_str();
Ian Rogers62d6c772013-02-27 08:32:07 -0800145 ThrowException(NULL, "Ljava/lang/IllegalAccessError;", referrer, msg.str().c_str());
Ian Rogers87e552d2012-08-31 15:54:48 -0700146}
147
Brian Carlstromea46f952013-07-30 01:26:50 -0700148void ThrowIllegalAccessErrorMethod(mirror::Class* referrer, mirror::ArtMethod* accessed) {
Ian Rogers87e552d2012-08-31 15:54:48 -0700149 std::ostringstream msg;
150 msg << "Method '" << PrettyMethod(accessed) << "' is inaccessible to class '"
151 << PrettyDescriptor(referrer) << "'";
Ian Rogers62d6c772013-02-27 08:32:07 -0800152 ThrowException(NULL, "Ljava/lang/IllegalAccessError;", referrer, msg.str().c_str());
Ian Rogers87e552d2012-08-31 15:54:48 -0700153}
154
Brian Carlstromea46f952013-07-30 01:26:50 -0700155void ThrowIllegalAccessErrorField(mirror::Class* referrer, mirror::ArtField* accessed) {
Ian Rogers87e552d2012-08-31 15:54:48 -0700156 std::ostringstream msg;
157 msg << "Field '" << PrettyField(accessed, false) << "' is inaccessible to class '"
158 << PrettyDescriptor(referrer) << "'";
Ian Rogers62d6c772013-02-27 08:32:07 -0800159 ThrowException(NULL, "Ljava/lang/IllegalAccessError;", referrer, msg.str().c_str());
Ian Rogers87e552d2012-08-31 15:54:48 -0700160}
161
Brian Carlstromea46f952013-07-30 01:26:50 -0700162void ThrowIllegalAccessErrorFinalField(const mirror::ArtMethod* referrer,
163 mirror::ArtField* accessed) {
Ian Rogers87e552d2012-08-31 15:54:48 -0700164 std::ostringstream msg;
165 msg << "Final field '" << PrettyField(accessed, false) << "' cannot be written to by method '"
166 << PrettyMethod(referrer) << "'";
Brian Carlstromea46f952013-07-30 01:26:50 -0700167 ThrowException(NULL, "Ljava/lang/IllegalAccessError;",
168 referrer != NULL ? referrer->GetClass() : NULL,
Ian Rogers62d6c772013-02-27 08:32:07 -0800169 msg.str().c_str());
Ian Rogers87e552d2012-08-31 15:54:48 -0700170}
171
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700172void ThrowIllegalAccessError(mirror::Class* referrer, const char* fmt, ...) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800173 va_list args;
174 va_start(args, fmt);
175 ThrowException(NULL, "Ljava/lang/IllegalAccessError;", referrer, fmt, &args);
176 va_end(args);
177}
178
179// IllegalArgumentException
180
181void ThrowIllegalArgumentException(const ThrowLocation* throw_location, const char* msg) {
182 ThrowException(throw_location, "Ljava/lang/IllegalArgumentException;", NULL, msg);
183}
184
185
Ian Rogers87e552d2012-08-31 15:54:48 -0700186// IncompatibleClassChangeError
187
188void ThrowIncompatibleClassChangeError(InvokeType expected_type, InvokeType found_type,
Brian Carlstromea46f952013-07-30 01:26:50 -0700189 mirror::ArtMethod* method,
190 const mirror::ArtMethod* referrer) {
Ian Rogers87e552d2012-08-31 15:54:48 -0700191 std::ostringstream msg;
192 msg << "The method '" << PrettyMethod(method) << "' was expected to be of type "
193 << expected_type << " but instead was found to be of type " << found_type;
Ian Rogers62d6c772013-02-27 08:32:07 -0800194 ThrowException(NULL, "Ljava/lang/IncompatibleClassChangeError;",
195 referrer != NULL ? referrer->GetClass() : NULL,
196 msg.str().c_str());
Ian Rogers87e552d2012-08-31 15:54:48 -0700197}
198
Brian Carlstromea46f952013-07-30 01:26:50 -0700199void ThrowIncompatibleClassChangeErrorClassForInterfaceDispatch(const mirror::ArtMethod* interface_method,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800200 mirror::Object* this_object,
Brian Carlstromea46f952013-07-30 01:26:50 -0700201 const mirror::ArtMethod* referrer) {
Ian Rogers87e552d2012-08-31 15:54:48 -0700202 // Referrer is calling interface_method on this_object, however, the interface_method isn't
203 // implemented by this_object.
204 CHECK(this_object != NULL);
205 std::ostringstream msg;
206 msg << "Class '" << PrettyDescriptor(this_object->GetClass())
207 << "' does not implement interface '"
208 << PrettyDescriptor(interface_method->GetDeclaringClass())
209 << "' in call to '" << PrettyMethod(interface_method) << "'";
Ian Rogers62d6c772013-02-27 08:32:07 -0800210 ThrowException(NULL, "Ljava/lang/IncompatibleClassChangeError;",
211 referrer != NULL ? referrer->GetClass() : NULL,
212 msg.str().c_str());
Ian Rogers87e552d2012-08-31 15:54:48 -0700213}
214
Brian Carlstromea46f952013-07-30 01:26:50 -0700215void ThrowIncompatibleClassChangeErrorField(const mirror::ArtField* resolved_field, bool is_static,
216 const mirror::ArtMethod* referrer) {
Ian Rogers87e552d2012-08-31 15:54:48 -0700217 std::ostringstream msg;
218 msg << "Expected '" << PrettyField(resolved_field) << "' to be a "
Ian Rogersb726dcb2012-09-05 08:57:23 -0700219 << (is_static ? "static" : "instance") << " field" << " rather than a "
220 << (is_static ? "instance" : "static") << " field";
Ian Rogers62d6c772013-02-27 08:32:07 -0800221 ThrowException(NULL, "Ljava/lang/IncompatibleClassChangeError;", referrer->GetClass(),
222 msg.str().c_str());
223}
224
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700225void ThrowIncompatibleClassChangeError(const mirror::Class* referrer, const char* fmt, ...) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800226 va_list args;
227 va_start(args, fmt);
228 ThrowException(NULL, "Ljava/lang/IncompatibleClassChangeError;", referrer, fmt, &args);
229 va_end(args);
230}
231
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700232// IOException
233
234void ThrowIOException(const char* fmt, ...) {
235 va_list args;
236 va_start(args, fmt);
237 ThrowException(NULL, "Ljava/io/IOException;", NULL, fmt, &args);
238 va_end(args);
239}
240
Ian Rogers62d6c772013-02-27 08:32:07 -0800241// LinkageError
242
243void ThrowLinkageError(const mirror::Class* referrer, const char* fmt, ...) {
244 va_list args;
245 va_start(args, fmt);
246 ThrowException(NULL, "Ljava/lang/LinkageError;", referrer, fmt, &args);
247 va_end(args);
248}
249
250// NegativeArraySizeException
251
252void ThrowNegativeArraySizeException(int size) {
Brian Carlstromea46f952013-07-30 01:26:50 -0700253 ThrowException(NULL, "Ljava/lang/NegativeArraySizeException;", NULL,
254 StringPrintf("%d", size).c_str());
Ian Rogers62d6c772013-02-27 08:32:07 -0800255}
256
257void ThrowNegativeArraySizeException(const char* msg) {
258 ThrowException(NULL, "Ljava/lang/NegativeArraySizeException;", NULL, msg);
259}
260
261// NoSuchFieldError
262
263void ThrowNoSuchFieldError(const StringPiece& scope, mirror::Class* c,
264 const StringPiece& type, const StringPiece& name)
265 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
266 ClassHelper kh(c);
267 std::ostringstream msg;
268 msg << "No " << scope << "field " << name << " of type " << type
269 << " in class " << kh.GetDescriptor() << " or its superclasses";
270 ThrowException(NULL, "Ljava/lang/NoSuchFieldError;", c, msg.str().c_str());
Ian Rogers87e552d2012-08-31 15:54:48 -0700271}
272
273// NoSuchMethodError
274
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800275void ThrowNoSuchMethodError(InvokeType type, mirror::Class* c, const StringPiece& name,
Ian Rogersd91d6d62013-09-25 20:26:14 -0700276 const Signature& signature) {
Ian Rogers87e552d2012-08-31 15:54:48 -0700277 std::ostringstream msg;
278 ClassHelper kh(c);
279 msg << "No " << type << " method " << name << signature
280 << " in class " << kh.GetDescriptor() << " or its super classes";
Ian Rogers62d6c772013-02-27 08:32:07 -0800281 ThrowException(NULL, "Ljava/lang/NoSuchMethodError;", c, msg.str().c_str());
Ian Rogers87e552d2012-08-31 15:54:48 -0700282}
283
Ian Rogers62d6c772013-02-27 08:32:07 -0800284void ThrowNoSuchMethodError(uint32_t method_idx) {
285 Thread* self = Thread::Current();
286 ThrowLocation throw_location = self->GetCurrentLocationForThrow();
287 mirror::DexCache* dex_cache = throw_location.GetMethod()->GetDeclaringClass()->GetDexCache();
Ian Rogers4445a7e2012-10-05 17:19:13 -0700288 const DexFile& dex_file = *dex_cache->GetDexFile();
Ian Rogers87e552d2012-08-31 15:54:48 -0700289 std::ostringstream msg;
290 msg << "No method '" << PrettyMethod(method_idx, dex_file, true) << "'";
Ian Rogers62d6c772013-02-27 08:32:07 -0800291 ThrowException(&throw_location, "Ljava/lang/NoSuchMethodError;",
292 throw_location.GetMethod()->GetDeclaringClass(), msg.str().c_str());
293}
294
295// NullPointerException
296
297void ThrowNullPointerExceptionForFieldAccess(const ThrowLocation& throw_location,
Brian Carlstromea46f952013-07-30 01:26:50 -0700298 mirror::ArtField* field, bool is_read) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800299 std::ostringstream msg;
300 msg << "Attempt to " << (is_read ? "read from" : "write to")
301 << " field '" << PrettyField(field, true) << "' on a null object reference";
302 ThrowException(&throw_location, "Ljava/lang/NullPointerException;", NULL, msg.str().c_str());
303}
304
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200305static void ThrowNullPointerExceptionForMethodAccessImpl(const ThrowLocation& throw_location,
306 uint32_t method_idx,
307 const DexFile& dex_file,
308 InvokeType type)
309 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800310 std::ostringstream msg;
311 msg << "Attempt to invoke " << type << " method '"
312 << PrettyMethod(method_idx, dex_file, true) << "' on a null object reference";
313 ThrowException(&throw_location, "Ljava/lang/NullPointerException;", NULL, msg.str().c_str());
314}
315
Brian Carlstromea46f952013-07-30 01:26:50 -0700316void ThrowNullPointerExceptionForMethodAccess(const ThrowLocation& throw_location,
317 uint32_t method_idx,
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200318 InvokeType type) {
319 mirror::DexCache* dex_cache = throw_location.GetMethod()->GetDeclaringClass()->GetDexCache();
320 const DexFile& dex_file = *dex_cache->GetDexFile();
321 ThrowNullPointerExceptionForMethodAccessImpl(throw_location, method_idx,
322 dex_file, type);
323}
324
325void ThrowNullPointerExceptionForMethodAccess(const ThrowLocation& throw_location,
Brian Carlstromea46f952013-07-30 01:26:50 -0700326 mirror::ArtMethod* method,
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200327 InvokeType type) {
328 mirror::DexCache* dex_cache = method->GetDeclaringClass()->GetDexCache();
329 const DexFile& dex_file = *dex_cache->GetDexFile();
330 ThrowNullPointerExceptionForMethodAccessImpl(throw_location, method->GetDexMethodIndex(),
331 dex_file, type);
332}
333
Ian Rogers62d6c772013-02-27 08:32:07 -0800334void ThrowNullPointerExceptionFromDexPC(const ThrowLocation& throw_location) {
335 const DexFile::CodeItem* code = MethodHelper(throw_location.GetMethod()).GetCodeItem();
336 uint32_t throw_dex_pc = throw_location.GetDexPc();
337 CHECK_LT(throw_dex_pc, code->insns_size_in_code_units_);
338 const Instruction* instr = Instruction::At(&code->insns_[throw_dex_pc]);
Ian Rogers62d6c772013-02-27 08:32:07 -0800339 switch (instr->Opcode()) {
340 case Instruction::INVOKE_DIRECT:
Sebastien Hertz75b2a4a2013-05-21 09:25:10 +0200341 ThrowNullPointerExceptionForMethodAccess(throw_location, instr->VRegB_35c(), kDirect);
342 break;
Ian Rogers62d6c772013-02-27 08:32:07 -0800343 case Instruction::INVOKE_DIRECT_RANGE:
Sebastien Hertz75b2a4a2013-05-21 09:25:10 +0200344 ThrowNullPointerExceptionForMethodAccess(throw_location, instr->VRegB_3rc(), kDirect);
Ian Rogers62d6c772013-02-27 08:32:07 -0800345 break;
346 case Instruction::INVOKE_VIRTUAL:
Sebastien Hertz75b2a4a2013-05-21 09:25:10 +0200347 ThrowNullPointerExceptionForMethodAccess(throw_location, instr->VRegB_35c(), kVirtual);
348 break;
Ian Rogers62d6c772013-02-27 08:32:07 -0800349 case Instruction::INVOKE_VIRTUAL_RANGE:
Sebastien Hertz75b2a4a2013-05-21 09:25:10 +0200350 ThrowNullPointerExceptionForMethodAccess(throw_location, instr->VRegB_3rc(), kVirtual);
Ian Rogers62d6c772013-02-27 08:32:07 -0800351 break;
352 case Instruction::INVOKE_INTERFACE:
Sebastien Hertz75b2a4a2013-05-21 09:25:10 +0200353 ThrowNullPointerExceptionForMethodAccess(throw_location, instr->VRegB_35c(), kInterface);
354 break;
Ian Rogers62d6c772013-02-27 08:32:07 -0800355 case Instruction::INVOKE_INTERFACE_RANGE:
Sebastien Hertz75b2a4a2013-05-21 09:25:10 +0200356 ThrowNullPointerExceptionForMethodAccess(throw_location, instr->VRegB_3rc(), kInterface);
Ian Rogers62d6c772013-02-27 08:32:07 -0800357 break;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200358 case Instruction::INVOKE_VIRTUAL_QUICK:
359 case Instruction::INVOKE_VIRTUAL_RANGE_QUICK: {
360 // Since we replaced the method index, we ask the verifier to tell us which
361 // method is invoked at this location.
Brian Carlstromea46f952013-07-30 01:26:50 -0700362 mirror::ArtMethod* method =
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200363 verifier::MethodVerifier::FindInvokedMethodAtDexPc(throw_location.GetMethod(),
364 throw_location.GetDexPc());
365 if (method != NULL) {
366 // NPE with precise message.
367 ThrowNullPointerExceptionForMethodAccess(throw_location, method, kVirtual);
368 } else {
369 // NPE with imprecise message.
370 ThrowNullPointerException(&throw_location,
371 "Attempt to invoke a virtual method on a null object reference");
372 }
373 break;
374 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800375 case Instruction::IGET:
376 case Instruction::IGET_WIDE:
377 case Instruction::IGET_OBJECT:
378 case Instruction::IGET_BOOLEAN:
379 case Instruction::IGET_BYTE:
380 case Instruction::IGET_CHAR:
381 case Instruction::IGET_SHORT: {
Brian Carlstromea46f952013-07-30 01:26:50 -0700382 mirror::ArtField* field =
Sebastien Hertz75b2a4a2013-05-21 09:25:10 +0200383 Runtime::Current()->GetClassLinker()->ResolveField(instr->VRegC_22c(),
Ian Rogers62d6c772013-02-27 08:32:07 -0800384 throw_location.GetMethod(), false);
385 ThrowNullPointerExceptionForFieldAccess(throw_location, field, true /* read */);
386 break;
387 }
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200388 case Instruction::IGET_QUICK:
389 case Instruction::IGET_WIDE_QUICK:
390 case Instruction::IGET_OBJECT_QUICK: {
391 // Since we replaced the field index, we ask the verifier to tell us which
392 // field is accessed at this location.
Brian Carlstromea46f952013-07-30 01:26:50 -0700393 mirror::ArtField* field =
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200394 verifier::MethodVerifier::FindAccessedFieldAtDexPc(throw_location.GetMethod(),
395 throw_location.GetDexPc());
396 if (field != NULL) {
397 // NPE with precise message.
398 ThrowNullPointerExceptionForFieldAccess(throw_location, field, true /* read */);
399 } else {
400 // NPE with imprecise message.
401 ThrowNullPointerException(&throw_location,
402 "Attempt to read from a field on a null object reference");
403 }
404 break;
405 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800406 case Instruction::IPUT:
407 case Instruction::IPUT_WIDE:
408 case Instruction::IPUT_OBJECT:
409 case Instruction::IPUT_BOOLEAN:
410 case Instruction::IPUT_BYTE:
411 case Instruction::IPUT_CHAR:
412 case Instruction::IPUT_SHORT: {
Brian Carlstromea46f952013-07-30 01:26:50 -0700413 mirror::ArtField* field =
Sebastien Hertz75b2a4a2013-05-21 09:25:10 +0200414 Runtime::Current()->GetClassLinker()->ResolveField(instr->VRegC_22c(),
Ian Rogers62d6c772013-02-27 08:32:07 -0800415 throw_location.GetMethod(), false);
416 ThrowNullPointerExceptionForFieldAccess(throw_location, field, false /* write */);
417 break;
418 }
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200419 case Instruction::IPUT_QUICK:
420 case Instruction::IPUT_WIDE_QUICK:
421 case Instruction::IPUT_OBJECT_QUICK: {
422 // Since we replaced the field index, we ask the verifier to tell us which
423 // field is accessed at this location.
Brian Carlstromea46f952013-07-30 01:26:50 -0700424 mirror::ArtField* field =
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200425 verifier::MethodVerifier::FindAccessedFieldAtDexPc(throw_location.GetMethod(),
426 throw_location.GetDexPc());
427 if (field != NULL) {
428 // NPE with precise message.
429 ThrowNullPointerExceptionForFieldAccess(throw_location, field, false /* write */);
430 } else {
431 // NPE with imprecise message.
432 ThrowNullPointerException(&throw_location,
433 "Attempt to write to a field on a null object reference");
434 }
435 break;
436 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800437 case Instruction::AGET:
438 case Instruction::AGET_WIDE:
439 case Instruction::AGET_OBJECT:
440 case Instruction::AGET_BOOLEAN:
441 case Instruction::AGET_BYTE:
442 case Instruction::AGET_CHAR:
443 case Instruction::AGET_SHORT:
444 ThrowException(&throw_location, "Ljava/lang/NullPointerException;", NULL,
445 "Attempt to read from null array");
446 break;
447 case Instruction::APUT:
448 case Instruction::APUT_WIDE:
449 case Instruction::APUT_OBJECT:
450 case Instruction::APUT_BOOLEAN:
451 case Instruction::APUT_BYTE:
452 case Instruction::APUT_CHAR:
453 case Instruction::APUT_SHORT:
454 ThrowException(&throw_location, "Ljava/lang/NullPointerException;", NULL,
455 "Attempt to write to null array");
456 break;
457 case Instruction::ARRAY_LENGTH:
458 ThrowException(&throw_location, "Ljava/lang/NullPointerException;", NULL,
459 "Attempt to get length of null array");
460 break;
461 default: {
462 // TODO: We should have covered all the cases where we expect a NPE above, this
463 // message/logging is so we can improve any cases we've missed in the future.
464 const DexFile& dex_file =
465 *throw_location.GetMethod()->GetDeclaringClass()->GetDexCache()->GetDexFile();
466 ThrowException(&throw_location, "Ljava/lang/NullPointerException;", NULL,
467 StringPrintf("Null pointer exception during instruction '%s'",
468 instr->DumpString(&dex_file).c_str()).c_str());
469 break;
470 }
471 }
472}
473
474void ThrowNullPointerException(const ThrowLocation* throw_location, const char* msg) {
475 ThrowException(throw_location, "Ljava/lang/NullPointerException;", NULL, msg);
476}
477
478// RuntimeException
479
480void ThrowRuntimeException(const char* fmt, ...) {
481 va_list args;
482 va_start(args, fmt);
483 ThrowException(NULL, "Ljava/lang/RuntimeException;", NULL, fmt, &args);
484 va_end(args);
485}
486
487// VerifyError
488
489void ThrowVerifyError(const mirror::Class* referrer, const char* fmt, ...) {
490 va_list args;
491 va_start(args, fmt);
492 ThrowException(NULL, "Ljava/lang/VerifyError;", referrer, fmt, &args);
493 va_end(args);
Ian Rogers87e552d2012-08-31 15:54:48 -0700494}
495
496} // namespace art