Ian Rogers | 87e552d | 2012-08-31 15:54:48 -0700 | [diff] [blame] | 1 | /* |
| 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 Hughes | 07ed66b | 2012-12-12 18:34:25 -0800 | [diff] [blame] | 19 | #include "base/logging.h" |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 20 | #include "class_linker-inl.h" |
Ian Rogers | 4f6ad8a | 2013-03-18 15:27:28 -0700 | [diff] [blame] | 21 | #include "dex_file-inl.h" |
Sebastien Hertz | 75b2a4a | 2013-05-21 09:25:10 +0200 | [diff] [blame] | 22 | #include "dex_instruction-inl.h" |
Ian Rogers | 87e552d | 2012-08-31 15:54:48 -0700 | [diff] [blame] | 23 | #include "invoke_type.h" |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 24 | #include "mirror/art_method-inl.h" |
Ian Rogers | 4f6ad8a | 2013-03-18 15:27:28 -0700 | [diff] [blame] | 25 | #include "mirror/class-inl.h" |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 26 | #include "mirror/object-inl.h" |
| 27 | #include "mirror/object_array-inl.h" |
Ian Rogers | 87e552d | 2012-08-31 15:54:48 -0700 | [diff] [blame] | 28 | #include "object_utils.h" |
| 29 | #include "thread.h" |
Sebastien Hertz | 2d6ba51 | 2013-05-17 11:31:37 +0200 | [diff] [blame] | 30 | #include "verifier/method_verifier.h" |
Ian Rogers | 87e552d | 2012-08-31 15:54:48 -0700 | [diff] [blame] | 31 | |
| 32 | #include <sstream> |
| 33 | |
| 34 | namespace art { |
| 35 | |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 36 | static void AddReferrerLocation(std::ostream& os, const mirror::Class* referrer) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 37 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Ian Rogers | 87e552d | 2012-08-31 15:54:48 -0700 | [diff] [blame] | 38 | 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 Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 48 | static 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 Rogers | 87e552d | 2012-08-31 15:54:48 -0700 | [diff] [blame] | 51 | std::ostringstream msg; |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 52 | 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 Rogers | 87e552d | 2012-08-31 15:54:48 -0700 | [diff] [blame] | 66 | } |
| 67 | } |
| 68 | |
Sebastien Hertz | 56adf60 | 2013-07-09 17:27:07 +0200 | [diff] [blame] | 69 | // AbstractMethodError |
| 70 | |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 71 | void ThrowAbstractMethodError(const mirror::ArtMethod* method) { |
Sebastien Hertz | 56adf60 | 2013-07-09 17:27:07 +0200 | [diff] [blame] | 72 | ThrowException(NULL, "Ljava/lang/AbstractMethodError;", NULL, |
| 73 | StringPrintf("abstract method \"%s\"", |
| 74 | PrettyMethod(method).c_str()).c_str()); |
| 75 | } |
| 76 | |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 77 | // ArithmeticException |
| 78 | |
Sebastien Hertz | 0a3b863 | 2013-06-26 11:16:01 +0200 | [diff] [blame] | 79 | void ThrowArithmeticExceptionDivideByZero() { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 80 | ThrowException(NULL, "Ljava/lang/ArithmeticException;", NULL, "divide by zero"); |
| 81 | } |
| 82 | |
| 83 | // ArrayIndexOutOfBoundsException |
| 84 | |
| 85 | void 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 | |
| 92 | void 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 | |
| 102 | void 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 | |
| 109 | void ThrowClassCastException(const ThrowLocation* throw_location, const char* msg) { |
| 110 | ThrowException(throw_location, "Ljava/lang/ClassCastException;", NULL, msg); |
| 111 | } |
| 112 | |
| 113 | // ClassCircularityError |
| 114 | |
| 115 | void 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 | |
| 123 | void 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 Rogers | 87e552d | 2012-08-31 15:54:48 -0700 | [diff] [blame] | 129 | // IllegalAccessError |
| 130 | |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 131 | void ThrowIllegalAccessErrorClass(mirror::Class* referrer, mirror::Class* accessed) { |
Ian Rogers | 87e552d | 2012-08-31 15:54:48 -0700 | [diff] [blame] | 132 | std::ostringstream msg; |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 133 | msg << "Illegal class access: '" << PrettyDescriptor(referrer) << "' attempting to access '" |
Ian Rogers | 87e552d | 2012-08-31 15:54:48 -0700 | [diff] [blame] | 134 | << PrettyDescriptor(accessed) << "'"; |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 135 | ThrowException(NULL, "Ljava/lang/IllegalAccessError;", referrer, msg.str().c_str()); |
Ian Rogers | 87e552d | 2012-08-31 15:54:48 -0700 | [diff] [blame] | 136 | } |
| 137 | |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 138 | void ThrowIllegalAccessErrorClassForMethodDispatch(mirror::Class* referrer, mirror::Class* accessed, |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 139 | const mirror::ArtMethod* called, |
Ian Rogers | 87e552d | 2012-08-31 15:54:48 -0700 | [diff] [blame] | 140 | InvokeType type) { |
| 141 | std::ostringstream msg; |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 142 | msg << "Illegal class access ('" << PrettyDescriptor(referrer) << "' attempting to access '" |
| 143 | << PrettyDescriptor(accessed) << "') in attempt to invoke " << type |
Ian Rogers | 87e552d | 2012-08-31 15:54:48 -0700 | [diff] [blame] | 144 | << " method " << PrettyMethod(called).c_str(); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 145 | ThrowException(NULL, "Ljava/lang/IllegalAccessError;", referrer, msg.str().c_str()); |
Ian Rogers | 87e552d | 2012-08-31 15:54:48 -0700 | [diff] [blame] | 146 | } |
| 147 | |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 148 | void ThrowIllegalAccessErrorMethod(mirror::Class* referrer, mirror::ArtMethod* accessed) { |
Ian Rogers | 87e552d | 2012-08-31 15:54:48 -0700 | [diff] [blame] | 149 | std::ostringstream msg; |
| 150 | msg << "Method '" << PrettyMethod(accessed) << "' is inaccessible to class '" |
| 151 | << PrettyDescriptor(referrer) << "'"; |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 152 | ThrowException(NULL, "Ljava/lang/IllegalAccessError;", referrer, msg.str().c_str()); |
Ian Rogers | 87e552d | 2012-08-31 15:54:48 -0700 | [diff] [blame] | 153 | } |
| 154 | |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 155 | void ThrowIllegalAccessErrorField(mirror::Class* referrer, mirror::ArtField* accessed) { |
Ian Rogers | 87e552d | 2012-08-31 15:54:48 -0700 | [diff] [blame] | 156 | std::ostringstream msg; |
| 157 | msg << "Field '" << PrettyField(accessed, false) << "' is inaccessible to class '" |
| 158 | << PrettyDescriptor(referrer) << "'"; |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 159 | ThrowException(NULL, "Ljava/lang/IllegalAccessError;", referrer, msg.str().c_str()); |
Ian Rogers | 87e552d | 2012-08-31 15:54:48 -0700 | [diff] [blame] | 160 | } |
| 161 | |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 162 | void ThrowIllegalAccessErrorFinalField(const mirror::ArtMethod* referrer, |
| 163 | mirror::ArtField* accessed) { |
Ian Rogers | 87e552d | 2012-08-31 15:54:48 -0700 | [diff] [blame] | 164 | std::ostringstream msg; |
| 165 | msg << "Final field '" << PrettyField(accessed, false) << "' cannot be written to by method '" |
| 166 | << PrettyMethod(referrer) << "'"; |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 167 | ThrowException(NULL, "Ljava/lang/IllegalAccessError;", |
| 168 | referrer != NULL ? referrer->GetClass() : NULL, |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 169 | msg.str().c_str()); |
Ian Rogers | 87e552d | 2012-08-31 15:54:48 -0700 | [diff] [blame] | 170 | } |
| 171 | |
Brian Carlstrom | 2ce745c | 2013-07-17 17:44:30 -0700 | [diff] [blame] | 172 | void ThrowIllegalAccessError(mirror::Class* referrer, const char* fmt, ...) { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 173 | 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 | |
| 181 | void ThrowIllegalArgumentException(const ThrowLocation* throw_location, const char* msg) { |
| 182 | ThrowException(throw_location, "Ljava/lang/IllegalArgumentException;", NULL, msg); |
| 183 | } |
| 184 | |
| 185 | |
Ian Rogers | 87e552d | 2012-08-31 15:54:48 -0700 | [diff] [blame] | 186 | // IncompatibleClassChangeError |
| 187 | |
| 188 | void ThrowIncompatibleClassChangeError(InvokeType expected_type, InvokeType found_type, |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 189 | mirror::ArtMethod* method, |
| 190 | const mirror::ArtMethod* referrer) { |
Ian Rogers | 87e552d | 2012-08-31 15:54:48 -0700 | [diff] [blame] | 191 | 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 Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 194 | ThrowException(NULL, "Ljava/lang/IncompatibleClassChangeError;", |
| 195 | referrer != NULL ? referrer->GetClass() : NULL, |
| 196 | msg.str().c_str()); |
Ian Rogers | 87e552d | 2012-08-31 15:54:48 -0700 | [diff] [blame] | 197 | } |
| 198 | |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 199 | void ThrowIncompatibleClassChangeErrorClassForInterfaceDispatch(const mirror::ArtMethod* interface_method, |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 200 | mirror::Object* this_object, |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 201 | const mirror::ArtMethod* referrer) { |
Ian Rogers | 87e552d | 2012-08-31 15:54:48 -0700 | [diff] [blame] | 202 | // 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 Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 210 | ThrowException(NULL, "Ljava/lang/IncompatibleClassChangeError;", |
| 211 | referrer != NULL ? referrer->GetClass() : NULL, |
| 212 | msg.str().c_str()); |
Ian Rogers | 87e552d | 2012-08-31 15:54:48 -0700 | [diff] [blame] | 213 | } |
| 214 | |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 215 | void ThrowIncompatibleClassChangeErrorField(const mirror::ArtField* resolved_field, bool is_static, |
| 216 | const mirror::ArtMethod* referrer) { |
Ian Rogers | 87e552d | 2012-08-31 15:54:48 -0700 | [diff] [blame] | 217 | std::ostringstream msg; |
| 218 | msg << "Expected '" << PrettyField(resolved_field) << "' to be a " |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 219 | << (is_static ? "static" : "instance") << " field" << " rather than a " |
| 220 | << (is_static ? "instance" : "static") << " field"; |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 221 | ThrowException(NULL, "Ljava/lang/IncompatibleClassChangeError;", referrer->GetClass(), |
| 222 | msg.str().c_str()); |
| 223 | } |
| 224 | |
Brian Carlstrom | 2ce745c | 2013-07-17 17:44:30 -0700 | [diff] [blame] | 225 | void ThrowIncompatibleClassChangeError(const mirror::Class* referrer, const char* fmt, ...) { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 226 | va_list args; |
| 227 | va_start(args, fmt); |
| 228 | ThrowException(NULL, "Ljava/lang/IncompatibleClassChangeError;", referrer, fmt, &args); |
| 229 | va_end(args); |
| 230 | } |
| 231 | |
Ian Rogers | 8d31bbd | 2013-10-13 10:44:14 -0700 | [diff] [blame] | 232 | // IOException |
| 233 | |
| 234 | void 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 Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 241 | // LinkageError |
| 242 | |
| 243 | void 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 | |
| 252 | void ThrowNegativeArraySizeException(int size) { |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 253 | ThrowException(NULL, "Ljava/lang/NegativeArraySizeException;", NULL, |
| 254 | StringPrintf("%d", size).c_str()); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 255 | } |
| 256 | |
| 257 | void ThrowNegativeArraySizeException(const char* msg) { |
| 258 | ThrowException(NULL, "Ljava/lang/NegativeArraySizeException;", NULL, msg); |
| 259 | } |
| 260 | |
| 261 | // NoSuchFieldError |
| 262 | |
| 263 | void 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 Rogers | 87e552d | 2012-08-31 15:54:48 -0700 | [diff] [blame] | 271 | } |
| 272 | |
| 273 | // NoSuchMethodError |
| 274 | |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 275 | void ThrowNoSuchMethodError(InvokeType type, mirror::Class* c, const StringPiece& name, |
Ian Rogers | d91d6d6 | 2013-09-25 20:26:14 -0700 | [diff] [blame] | 276 | const Signature& signature) { |
Ian Rogers | 87e552d | 2012-08-31 15:54:48 -0700 | [diff] [blame] | 277 | std::ostringstream msg; |
| 278 | ClassHelper kh(c); |
| 279 | msg << "No " << type << " method " << name << signature |
| 280 | << " in class " << kh.GetDescriptor() << " or its super classes"; |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 281 | ThrowException(NULL, "Ljava/lang/NoSuchMethodError;", c, msg.str().c_str()); |
Ian Rogers | 87e552d | 2012-08-31 15:54:48 -0700 | [diff] [blame] | 282 | } |
| 283 | |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 284 | void 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 Rogers | 4445a7e | 2012-10-05 17:19:13 -0700 | [diff] [blame] | 288 | const DexFile& dex_file = *dex_cache->GetDexFile(); |
Ian Rogers | 87e552d | 2012-08-31 15:54:48 -0700 | [diff] [blame] | 289 | std::ostringstream msg; |
| 290 | msg << "No method '" << PrettyMethod(method_idx, dex_file, true) << "'"; |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 291 | ThrowException(&throw_location, "Ljava/lang/NoSuchMethodError;", |
| 292 | throw_location.GetMethod()->GetDeclaringClass(), msg.str().c_str()); |
| 293 | } |
| 294 | |
| 295 | // NullPointerException |
| 296 | |
| 297 | void ThrowNullPointerExceptionForFieldAccess(const ThrowLocation& throw_location, |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 298 | mirror::ArtField* field, bool is_read) { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 299 | 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 Hertz | 2d6ba51 | 2013-05-17 11:31:37 +0200 | [diff] [blame] | 305 | static 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 Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 310 | 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 Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 316 | void ThrowNullPointerExceptionForMethodAccess(const ThrowLocation& throw_location, |
| 317 | uint32_t method_idx, |
Sebastien Hertz | 2d6ba51 | 2013-05-17 11:31:37 +0200 | [diff] [blame] | 318 | 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 | |
| 325 | void ThrowNullPointerExceptionForMethodAccess(const ThrowLocation& throw_location, |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 326 | mirror::ArtMethod* method, |
Sebastien Hertz | 2d6ba51 | 2013-05-17 11:31:37 +0200 | [diff] [blame] | 327 | 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 Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 334 | void 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 Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 339 | switch (instr->Opcode()) { |
| 340 | case Instruction::INVOKE_DIRECT: |
Sebastien Hertz | 75b2a4a | 2013-05-21 09:25:10 +0200 | [diff] [blame] | 341 | ThrowNullPointerExceptionForMethodAccess(throw_location, instr->VRegB_35c(), kDirect); |
| 342 | break; |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 343 | case Instruction::INVOKE_DIRECT_RANGE: |
Sebastien Hertz | 75b2a4a | 2013-05-21 09:25:10 +0200 | [diff] [blame] | 344 | ThrowNullPointerExceptionForMethodAccess(throw_location, instr->VRegB_3rc(), kDirect); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 345 | break; |
| 346 | case Instruction::INVOKE_VIRTUAL: |
Sebastien Hertz | 75b2a4a | 2013-05-21 09:25:10 +0200 | [diff] [blame] | 347 | ThrowNullPointerExceptionForMethodAccess(throw_location, instr->VRegB_35c(), kVirtual); |
| 348 | break; |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 349 | case Instruction::INVOKE_VIRTUAL_RANGE: |
Sebastien Hertz | 75b2a4a | 2013-05-21 09:25:10 +0200 | [diff] [blame] | 350 | ThrowNullPointerExceptionForMethodAccess(throw_location, instr->VRegB_3rc(), kVirtual); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 351 | break; |
| 352 | case Instruction::INVOKE_INTERFACE: |
Sebastien Hertz | 75b2a4a | 2013-05-21 09:25:10 +0200 | [diff] [blame] | 353 | ThrowNullPointerExceptionForMethodAccess(throw_location, instr->VRegB_35c(), kInterface); |
| 354 | break; |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 355 | case Instruction::INVOKE_INTERFACE_RANGE: |
Sebastien Hertz | 75b2a4a | 2013-05-21 09:25:10 +0200 | [diff] [blame] | 356 | ThrowNullPointerExceptionForMethodAccess(throw_location, instr->VRegB_3rc(), kInterface); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 357 | break; |
Sebastien Hertz | 2d6ba51 | 2013-05-17 11:31:37 +0200 | [diff] [blame] | 358 | 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 Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 362 | mirror::ArtMethod* method = |
Sebastien Hertz | 2d6ba51 | 2013-05-17 11:31:37 +0200 | [diff] [blame] | 363 | 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 Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 375 | 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 Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 382 | mirror::ArtField* field = |
Sebastien Hertz | 75b2a4a | 2013-05-21 09:25:10 +0200 | [diff] [blame] | 383 | Runtime::Current()->GetClassLinker()->ResolveField(instr->VRegC_22c(), |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 384 | throw_location.GetMethod(), false); |
| 385 | ThrowNullPointerExceptionForFieldAccess(throw_location, field, true /* read */); |
| 386 | break; |
| 387 | } |
Sebastien Hertz | 2d6ba51 | 2013-05-17 11:31:37 +0200 | [diff] [blame] | 388 | 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 Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 393 | mirror::ArtField* field = |
Sebastien Hertz | 2d6ba51 | 2013-05-17 11:31:37 +0200 | [diff] [blame] | 394 | 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 Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 406 | 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 Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 413 | mirror::ArtField* field = |
Sebastien Hertz | 75b2a4a | 2013-05-21 09:25:10 +0200 | [diff] [blame] | 414 | Runtime::Current()->GetClassLinker()->ResolveField(instr->VRegC_22c(), |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 415 | throw_location.GetMethod(), false); |
| 416 | ThrowNullPointerExceptionForFieldAccess(throw_location, field, false /* write */); |
| 417 | break; |
| 418 | } |
Sebastien Hertz | 2d6ba51 | 2013-05-17 11:31:37 +0200 | [diff] [blame] | 419 | 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 Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 424 | mirror::ArtField* field = |
Sebastien Hertz | 2d6ba51 | 2013-05-17 11:31:37 +0200 | [diff] [blame] | 425 | 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 Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 437 | 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 | |
| 474 | void ThrowNullPointerException(const ThrowLocation* throw_location, const char* msg) { |
| 475 | ThrowException(throw_location, "Ljava/lang/NullPointerException;", NULL, msg); |
| 476 | } |
| 477 | |
| 478 | // RuntimeException |
| 479 | |
| 480 | void 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 | |
| 489 | void 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 Rogers | 87e552d | 2012-08-31 15:54:48 -0700 | [diff] [blame] | 494 | } |
| 495 | |
| 496 | } // namespace art |