src/share/vm/classfile/verifier.cpp

Thu, 25 Aug 2016 09:23:45 -0400

author
zgu
date
Thu, 25 Aug 2016 09:23:45 -0400
changeset 9969
40f45911050f
parent 9530
9fce84e6f51a
child 10012
73d58f4c918a
permissions
-rw-r--r--

8148854: Class names "SomeClass" and "LSomeClass;" treated by JVM as an equivalent
Summary: Added default format checking of class names loaded by the app class loader
Reviewed-by: andrew

duke@435 1 /*
coleenp@9530 2 * Copyright (c) 1998, 2018, Oracle and/or its affiliates. All rights reserved.
duke@435 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 *
duke@435 5 * This code is free software; you can redistribute it and/or modify it
duke@435 6 * under the terms of the GNU General Public License version 2 only, as
duke@435 7 * published by the Free Software Foundation.
duke@435 8 *
duke@435 9 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 * version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 * accompanied this code).
duke@435 14 *
duke@435 15 * You should have received a copy of the GNU General Public License version
duke@435 16 * 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 *
trims@1907 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 20 * or visit www.oracle.com if you need additional information or have any
trims@1907 21 * questions.
duke@435 22 *
duke@435 23 */
duke@435 24
stefank@2314 25 #include "precompiled.hpp"
stefank@2314 26 #include "classfile/classFileStream.hpp"
stefank@2314 27 #include "classfile/javaClasses.hpp"
stefank@2314 28 #include "classfile/stackMapTable.hpp"
kamg@3992 29 #include "classfile/stackMapFrame.hpp"
kamg@3992 30 #include "classfile/stackMapTableFormat.hpp"
stefank@2314 31 #include "classfile/systemDictionary.hpp"
stefank@2314 32 #include "classfile/verifier.hpp"
stefank@2314 33 #include "classfile/vmSymbols.hpp"
kamg@3992 34 #include "interpreter/bytecodes.hpp"
stefank@2314 35 #include "interpreter/bytecodeStream.hpp"
stefank@2314 36 #include "memory/oopFactory.hpp"
stefank@2314 37 #include "memory/resourceArea.hpp"
stefank@2314 38 #include "oops/instanceKlass.hpp"
stefank@2314 39 #include "oops/oop.inline.hpp"
stefank@2314 40 #include "oops/typeArrayOop.hpp"
stefank@2314 41 #include "prims/jvm.h"
stefank@2314 42 #include "runtime/fieldDescriptor.hpp"
stefank@2314 43 #include "runtime/handles.inline.hpp"
stefank@2314 44 #include "runtime/interfaceSupport.hpp"
stefank@2314 45 #include "runtime/javaCalls.hpp"
goetz@6911 46 #include "runtime/orderAccess.inline.hpp"
stefank@2314 47 #include "runtime/os.hpp"
stefank@2314 48 #ifdef TARGET_ARCH_x86
stefank@2314 49 # include "bytes_x86.hpp"
stefank@2314 50 #endif
stefank@2314 51 #ifdef TARGET_ARCH_sparc
stefank@2314 52 # include "bytes_sparc.hpp"
stefank@2314 53 #endif
stefank@2314 54 #ifdef TARGET_ARCH_zero
stefank@2314 55 # include "bytes_zero.hpp"
stefank@2314 56 #endif
bobv@2508 57 #ifdef TARGET_ARCH_arm
bobv@2508 58 # include "bytes_arm.hpp"
bobv@2508 59 #endif
bobv@2508 60 #ifdef TARGET_ARCH_ppc
bobv@2508 61 # include "bytes_ppc.hpp"
bobv@2508 62 #endif
duke@435 63
hseigel@4816 64 #define NOFAILOVER_MAJOR_VERSION 51
hseigel@4816 65 #define NONZERO_PADDING_BYTES_IN_SWITCH_MAJOR_VERSION 51
bharadwaj@4895 66 #define STATIC_METHOD_IN_INTERFACE_MAJOR_VERSION 52
kamg@1915 67
duke@435 68 // Access to external entry for VerifyClassCodes - old byte code verifier
duke@435 69
duke@435 70 extern "C" {
duke@435 71 typedef jboolean (*verify_byte_codes_fn_t)(JNIEnv *, jclass, char *, jint);
duke@435 72 typedef jboolean (*verify_byte_codes_fn_new_t)(JNIEnv *, jclass, char *, jint, jint);
duke@435 73 }
duke@435 74
duke@435 75 static void* volatile _verify_byte_codes_fn = NULL;
duke@435 76
duke@435 77 static volatile jint _is_new_verify_byte_codes_fn = (jint) true;
duke@435 78
duke@435 79 static void* verify_byte_codes_fn() {
duke@435 80 if (_verify_byte_codes_fn == NULL) {
duke@435 81 void *lib_handle = os::native_java_library();
ikrylov@2322 82 void *func = os::dll_lookup(lib_handle, "VerifyClassCodesForMajorVersion");
duke@435 83 OrderAccess::release_store_ptr(&_verify_byte_codes_fn, func);
duke@435 84 if (func == NULL) {
duke@435 85 OrderAccess::release_store(&_is_new_verify_byte_codes_fn, false);
ikrylov@2322 86 func = os::dll_lookup(lib_handle, "VerifyClassCodes");
duke@435 87 OrderAccess::release_store_ptr(&_verify_byte_codes_fn, func);
duke@435 88 }
duke@435 89 }
duke@435 90 return (void*)_verify_byte_codes_fn;
duke@435 91 }
duke@435 92
duke@435 93
duke@435 94 // Methods in Verifier
duke@435 95
acorn@1408 96 bool Verifier::should_verify_for(oop class_loader, bool should_verify_class) {
acorn@1408 97 return (class_loader == NULL || !should_verify_class) ?
duke@435 98 BytecodeVerificationLocal : BytecodeVerificationRemote;
duke@435 99 }
duke@435 100
zgu@9969 101 bool Verifier::relax_access_for(oop loader) {
duke@435 102 bool trusted = java_lang_ClassLoader::is_trusted_loader(loader);
duke@435 103 bool need_verify =
duke@435 104 // verifyAll
duke@435 105 (BytecodeVerificationLocal && BytecodeVerificationRemote) ||
duke@435 106 // verifyRemote
duke@435 107 (!BytecodeVerificationLocal && BytecodeVerificationRemote && !trusted);
duke@435 108 return !need_verify;
duke@435 109 }
duke@435 110
acorn@1408 111 bool Verifier::verify(instanceKlassHandle klass, Verifier::Mode mode, bool should_verify_class, TRAPS) {
coleenp@2497 112 HandleMark hm;
duke@435 113 ResourceMark rm(THREAD);
duke@435 114
coleenp@2497 115 Symbol* exception_name = NULL;
duke@435 116 const size_t message_buffer_len = klass->name()->utf8_length() + 1024;
duke@435 117 char* message_buffer = NEW_RESOURCE_ARRAY(char, message_buffer_len);
kamg@3992 118 char* exception_message = message_buffer;
duke@435 119
duke@435 120 const char* klassName = klass->external_name();
kamg@3992 121 bool can_failover = FailOverToOldVerifier &&
kamg@3992 122 klass->major_version() < NOFAILOVER_MAJOR_VERSION;
duke@435 123
duke@435 124 // If the class should be verified, first see if we can use the split
duke@435 125 // verifier. If not, or if verification fails and FailOverToOldVerifier
duke@435 126 // is set, then call the inference verifier.
acorn@1408 127 if (is_eligible_for_verification(klass, should_verify_class)) {
duke@435 128 if (TraceClassInitialization) {
duke@435 129 tty->print_cr("Start class verification for: %s", klassName);
duke@435 130 }
hseigel@4819 131 if (klass->major_version() >= STACKMAP_ATTRIBUTE_MAJOR_VERSION) {
kamg@3992 132 ClassVerifier split_verifier(klass, THREAD);
kamg@3992 133 split_verifier.verify_class(THREAD);
kamg@3992 134 exception_name = split_verifier.result();
kamg@3992 135 if (can_failover && !HAS_PENDING_EXCEPTION &&
duke@435 136 (exception_name == vmSymbols::java_lang_VerifyError() ||
duke@435 137 exception_name == vmSymbols::java_lang_ClassFormatError())) {
kamg@3992 138 if (TraceClassInitialization || VerboseVerification) {
duke@435 139 tty->print_cr(
duke@435 140 "Fail over class verification to old verifier for: %s", klassName);
duke@435 141 }
duke@435 142 exception_name = inference_verify(
duke@435 143 klass, message_buffer, message_buffer_len, THREAD);
duke@435 144 }
kamg@3992 145 if (exception_name != NULL) {
kamg@3992 146 exception_message = split_verifier.exception_message();
kamg@3992 147 }
duke@435 148 } else {
duke@435 149 exception_name = inference_verify(
duke@435 150 klass, message_buffer, message_buffer_len, THREAD);
duke@435 151 }
duke@435 152
kamg@3992 153 if (TraceClassInitialization || VerboseVerification) {
duke@435 154 if (HAS_PENDING_EXCEPTION) {
duke@435 155 tty->print("Verification for %s has", klassName);
duke@435 156 tty->print_cr(" exception pending %s ",
coleenp@4037 157 InstanceKlass::cast(PENDING_EXCEPTION->klass())->external_name());
coleenp@2497 158 } else if (exception_name != NULL) {
duke@435 159 tty->print_cr("Verification for %s failed", klassName);
duke@435 160 }
duke@435 161 tty->print_cr("End class verification for: %s", klassName);
duke@435 162 }
duke@435 163 }
duke@435 164
duke@435 165 if (HAS_PENDING_EXCEPTION) {
duke@435 166 return false; // use the existing exception
coleenp@2497 167 } else if (exception_name == NULL) {
duke@435 168 return true; // verifcation succeeded
duke@435 169 } else { // VerifyError or ClassFormatError to be created and thrown
duke@435 170 ResourceMark rm(THREAD);
duke@435 171 instanceKlassHandle kls =
duke@435 172 SystemDictionary::resolve_or_fail(exception_name, true, CHECK_false);
duke@435 173 while (!kls.is_null()) {
duke@435 174 if (kls == klass) {
duke@435 175 // If the class being verified is the exception we're creating
duke@435 176 // or one of it's superclasses, we're in trouble and are going
duke@435 177 // to infinitely recurse when we try to initialize the exception.
duke@435 178 // So bail out here by throwing the preallocated VM error.
duke@435 179 THROW_OOP_(Universe::virtual_machine_error_instance(), false);
duke@435 180 }
duke@435 181 kls = kls->super();
duke@435 182 }
duke@435 183 message_buffer[message_buffer_len - 1] = '\0'; // just to be sure
kamg@3992 184 THROW_MSG_(exception_name, exception_message, false);
duke@435 185 }
duke@435 186 }
duke@435 187
acorn@1408 188 bool Verifier::is_eligible_for_verification(instanceKlassHandle klass, bool should_verify_class) {
coleenp@2497 189 Symbol* name = klass->name();
coleenp@4037 190 Klass* refl_magic_klass = SystemDictionary::reflect_MagicAccessorImpl_klass();
acorn@5622 191
acorn@5622 192 bool is_reflect = refl_magic_klass != NULL && klass->is_subtype_of(refl_magic_klass);
duke@435 193
acorn@1408 194 return (should_verify_for(klass->class_loader(), should_verify_class) &&
duke@435 195 // return if the class is a bootstrapping class
acorn@1408 196 // or defineClass specified not to verify by default (flags override passed arg)
duke@435 197 // We need to skip the following four for bootstraping
duke@435 198 name != vmSymbols::java_lang_Object() &&
duke@435 199 name != vmSymbols::java_lang_Class() &&
duke@435 200 name != vmSymbols::java_lang_String() &&
duke@435 201 name != vmSymbols::java_lang_Throwable() &&
duke@435 202
duke@435 203 // Can not verify the bytecodes for shared classes because they have
duke@435 204 // already been rewritten to contain constant pool cache indices,
duke@435 205 // which the verifier can't understand.
duke@435 206 // Shared classes shouldn't have stackmaps either.
duke@435 207 !klass()->is_shared() &&
duke@435 208
duke@435 209 // As of the fix for 4486457 we disable verification for all of the
duke@435 210 // dynamically-generated bytecodes associated with the 1.4
duke@435 211 // reflection implementation, not just those associated with
duke@435 212 // sun/reflect/SerializationConstructorAccessor.
duke@435 213 // NOTE: this is called too early in the bootstrapping process to be
duke@435 214 // guarded by Universe::is_gte_jdk14x_version()/UseNewReflection.
acorn@5622 215 // Also for lambda generated code, gte jdk8
minqi@6116 216 (!is_reflect || VerifyReflectionBytecodes));
duke@435 217 }
duke@435 218
coleenp@2497 219 Symbol* Verifier::inference_verify(
duke@435 220 instanceKlassHandle klass, char* message, size_t message_len, TRAPS) {
duke@435 221 JavaThread* thread = (JavaThread*)THREAD;
duke@435 222 JNIEnv *env = thread->jni_environment();
duke@435 223
duke@435 224 void* verify_func = verify_byte_codes_fn();
duke@435 225
duke@435 226 if (verify_func == NULL) {
duke@435 227 jio_snprintf(message, message_len, "Could not link verifier");
duke@435 228 return vmSymbols::java_lang_VerifyError();
duke@435 229 }
duke@435 230
duke@435 231 ResourceMark rm(THREAD);
kamg@3992 232 if (VerboseVerification) {
duke@435 233 tty->print_cr("Verifying class %s with old format", klass->external_name());
duke@435 234 }
duke@435 235
duke@435 236 jclass cls = (jclass) JNIHandles::make_local(env, klass->java_mirror());
duke@435 237 jint result;
duke@435 238
duke@435 239 {
duke@435 240 HandleMark hm(thread);
duke@435 241 ThreadToNativeFromVM ttn(thread);
duke@435 242 // ThreadToNativeFromVM takes care of changing thread_state, so safepoint
duke@435 243 // code knows that we have left the VM
duke@435 244
duke@435 245 if (_is_new_verify_byte_codes_fn) {
duke@435 246 verify_byte_codes_fn_new_t func =
duke@435 247 CAST_TO_FN_PTR(verify_byte_codes_fn_new_t, verify_func);
duke@435 248 result = (*func)(env, cls, message, (int)message_len,
duke@435 249 klass->major_version());
duke@435 250 } else {
duke@435 251 verify_byte_codes_fn_t func =
duke@435 252 CAST_TO_FN_PTR(verify_byte_codes_fn_t, verify_func);
duke@435 253 result = (*func)(env, cls, message, (int)message_len);
duke@435 254 }
duke@435 255 }
duke@435 256
duke@435 257 JNIHandles::destroy_local(cls);
duke@435 258
duke@435 259 // These numbers are chosen so that VerifyClassCodes interface doesn't need
duke@435 260 // to be changed (still return jboolean (unsigned char)), and result is
duke@435 261 // 1 when verification is passed.
duke@435 262 if (result == 0) {
duke@435 263 return vmSymbols::java_lang_VerifyError();
duke@435 264 } else if (result == 1) {
coleenp@2497 265 return NULL; // verified.
duke@435 266 } else if (result == 2) {
coleenp@2497 267 THROW_MSG_(vmSymbols::java_lang_OutOfMemoryError(), message, NULL);
duke@435 268 } else if (result == 3) {
duke@435 269 return vmSymbols::java_lang_ClassFormatError();
duke@435 270 } else {
duke@435 271 ShouldNotReachHere();
coleenp@2497 272 return NULL;
duke@435 273 }
duke@435 274 }
duke@435 275
kamg@3992 276 TypeOrigin TypeOrigin::null() {
kamg@3992 277 return TypeOrigin();
kamg@3992 278 }
kamg@3992 279 TypeOrigin TypeOrigin::local(u2 index, StackMapFrame* frame) {
kamg@3992 280 assert(frame != NULL, "Must have a frame");
kamg@3992 281 return TypeOrigin(CF_LOCALS, index, StackMapFrame::copy(frame),
kamg@3992 282 frame->local_at(index));
kamg@3992 283 }
kamg@3992 284 TypeOrigin TypeOrigin::stack(u2 index, StackMapFrame* frame) {
kamg@3992 285 assert(frame != NULL, "Must have a frame");
kamg@3992 286 return TypeOrigin(CF_STACK, index, StackMapFrame::copy(frame),
kamg@3992 287 frame->stack_at(index));
kamg@3992 288 }
kamg@3992 289 TypeOrigin TypeOrigin::sm_local(u2 index, StackMapFrame* frame) {
kamg@3992 290 assert(frame != NULL, "Must have a frame");
kamg@3992 291 return TypeOrigin(SM_LOCALS, index, StackMapFrame::copy(frame),
kamg@3992 292 frame->local_at(index));
kamg@3992 293 }
kamg@3992 294 TypeOrigin TypeOrigin::sm_stack(u2 index, StackMapFrame* frame) {
kamg@3992 295 assert(frame != NULL, "Must have a frame");
kamg@3992 296 return TypeOrigin(SM_STACK, index, StackMapFrame::copy(frame),
kamg@3992 297 frame->stack_at(index));
kamg@3992 298 }
kamg@3992 299 TypeOrigin TypeOrigin::bad_index(u2 index) {
kamg@3992 300 return TypeOrigin(BAD_INDEX, index, NULL, VerificationType::bogus_type());
kamg@3992 301 }
kamg@3992 302 TypeOrigin TypeOrigin::cp(u2 index, VerificationType vt) {
kamg@3992 303 return TypeOrigin(CONST_POOL, index, NULL, vt);
kamg@3992 304 }
kamg@3992 305 TypeOrigin TypeOrigin::signature(VerificationType vt) {
kamg@3992 306 return TypeOrigin(SIG, 0, NULL, vt);
kamg@3992 307 }
kamg@3992 308 TypeOrigin TypeOrigin::implicit(VerificationType t) {
kamg@3992 309 return TypeOrigin(IMPLICIT, 0, NULL, t);
kamg@3992 310 }
kamg@3992 311 TypeOrigin TypeOrigin::frame(StackMapFrame* frame) {
kamg@3992 312 return TypeOrigin(FRAME_ONLY, 0, StackMapFrame::copy(frame),
kamg@3992 313 VerificationType::bogus_type());
kamg@3992 314 }
kamg@3992 315
kamg@3992 316 void TypeOrigin::reset_frame() {
kamg@3992 317 if (_frame != NULL) {
kamg@3992 318 _frame->restore();
kamg@3992 319 }
kamg@3992 320 }
kamg@3992 321
kamg@3992 322 void TypeOrigin::details(outputStream* ss) const {
kamg@3992 323 _type.print_on(ss);
kamg@3992 324 switch (_origin) {
kamg@3992 325 case CF_LOCALS:
kamg@3992 326 ss->print(" (current frame, locals[%d])", _index);
kamg@3992 327 break;
kamg@3992 328 case CF_STACK:
kamg@3992 329 ss->print(" (current frame, stack[%d])", _index);
kamg@3992 330 break;
kamg@3992 331 case SM_LOCALS:
kamg@3992 332 ss->print(" (stack map, locals[%d])", _index);
kamg@3992 333 break;
kamg@3992 334 case SM_STACK:
kamg@3992 335 ss->print(" (stack map, stack[%d])", _index);
kamg@3992 336 break;
kamg@3992 337 case CONST_POOL:
kamg@3992 338 ss->print(" (constant pool %d)", _index);
kamg@3992 339 break;
kamg@3992 340 case SIG:
kamg@3992 341 ss->print(" (from method signature)");
kamg@3992 342 break;
kamg@3992 343 case IMPLICIT:
kamg@3992 344 case FRAME_ONLY:
kamg@3992 345 case NONE:
kamg@3992 346 default:
kamg@3992 347 ;
kamg@3992 348 }
kamg@3992 349 }
kamg@3992 350
kamg@3992 351 #ifdef ASSERT
kamg@3992 352 void TypeOrigin::print_on(outputStream* str) const {
kamg@3992 353 str->print("{%d,%d,%p:", _origin, _index, _frame);
kamg@3992 354 if (_frame != NULL) {
kamg@3992 355 _frame->print_on(str);
kamg@3992 356 } else {
kamg@3992 357 str->print("null");
kamg@3992 358 }
kamg@3992 359 str->print(",");
kamg@3992 360 _type.print_on(str);
kamg@3992 361 str->print("}");
kamg@3992 362 }
kamg@3992 363 #endif
kamg@3992 364
minqi@5097 365 void ErrorContext::details(outputStream* ss, const Method* method) const {
kamg@3992 366 if (is_valid()) {
drchase@6680 367 ss->cr();
kamg@3992 368 ss->print_cr("Exception Details:");
kamg@3992 369 location_details(ss, method);
kamg@3992 370 reason_details(ss);
kamg@3992 371 frame_details(ss);
kamg@3992 372 bytecode_details(ss, method);
kamg@3992 373 handler_details(ss, method);
kamg@3992 374 stackmap_details(ss, method);
kamg@3992 375 }
kamg@3992 376 }
kamg@3992 377
kamg@3992 378 void ErrorContext::reason_details(outputStream* ss) const {
kamg@3992 379 streamIndentor si(ss);
kamg@3992 380 ss->indent().print_cr("Reason:");
kamg@3992 381 streamIndentor si2(ss);
drchase@6680 382 ss->indent().print("%s", "");
kamg@3992 383 switch (_fault) {
kamg@3992 384 case INVALID_BYTECODE:
kamg@3992 385 ss->print("Error exists in the bytecode");
kamg@3992 386 break;
kamg@3992 387 case WRONG_TYPE:
kamg@3992 388 if (_expected.is_valid()) {
kamg@3992 389 ss->print("Type ");
kamg@3992 390 _type.details(ss);
kamg@3992 391 ss->print(" is not assignable to ");
kamg@3992 392 _expected.details(ss);
kamg@3992 393 } else {
kamg@3992 394 ss->print("Invalid type: ");
kamg@3992 395 _type.details(ss);
kamg@3992 396 }
kamg@3992 397 break;
kamg@3992 398 case FLAGS_MISMATCH:
kamg@3992 399 if (_expected.is_valid()) {
kamg@3992 400 ss->print("Current frame's flags are not assignable "
kamg@3992 401 "to stack map frame's.");
kamg@3992 402 } else {
kamg@3992 403 ss->print("Current frame's flags are invalid in this context.");
kamg@3992 404 }
kamg@3992 405 break;
kamg@3992 406 case BAD_CP_INDEX:
kamg@3992 407 ss->print("Constant pool index %d is invalid", _type.index());
kamg@3992 408 break;
kamg@3992 409 case BAD_LOCAL_INDEX:
kamg@3992 410 ss->print("Local index %d is invalid", _type.index());
kamg@3992 411 break;
kamg@3992 412 case LOCALS_SIZE_MISMATCH:
kamg@3992 413 ss->print("Current frame's local size doesn't match stackmap.");
kamg@3992 414 break;
kamg@3992 415 case STACK_SIZE_MISMATCH:
kamg@3992 416 ss->print("Current frame's stack size doesn't match stackmap.");
kamg@3992 417 break;
kamg@3992 418 case STACK_OVERFLOW:
kamg@3992 419 ss->print("Exceeded max stack size.");
kamg@3992 420 break;
kamg@3992 421 case STACK_UNDERFLOW:
kamg@3992 422 ss->print("Attempt to pop empty stack.");
kamg@3992 423 break;
kamg@3992 424 case MISSING_STACKMAP:
kamg@3992 425 ss->print("Expected stackmap frame at this location.");
kamg@3992 426 break;
kamg@3992 427 case BAD_STACKMAP:
kamg@3992 428 ss->print("Invalid stackmap specification.");
kamg@3992 429 break;
kamg@3992 430 case UNKNOWN:
kamg@3992 431 default:
kamg@3992 432 ShouldNotReachHere();
kamg@3992 433 ss->print_cr("Unknown");
kamg@3992 434 }
drchase@6680 435 ss->cr();
kamg@3992 436 }
kamg@3992 437
minqi@5097 438 void ErrorContext::location_details(outputStream* ss, const Method* method) const {
kamg@3992 439 if (_bci != -1 && method != NULL) {
kamg@3992 440 streamIndentor si(ss);
kamg@3992 441 const char* bytecode_name = "<invalid>";
kamg@3992 442 if (method->validate_bci_from_bcx(_bci) != -1) {
kamg@3992 443 Bytecodes::Code code = Bytecodes::code_or_bp_at(method->bcp_from(_bci));
kamg@3992 444 if (Bytecodes::is_defined(code)) {
kamg@3992 445 bytecode_name = Bytecodes::name(code);
kamg@3992 446 } else {
kamg@3992 447 bytecode_name = "<illegal>";
kamg@3992 448 }
kamg@3992 449 }
coleenp@4251 450 InstanceKlass* ik = method->method_holder();
kamg@3992 451 ss->indent().print_cr("Location:");
kamg@3992 452 streamIndentor si2(ss);
kamg@3992 453 ss->indent().print_cr("%s.%s%s @%d: %s",
kamg@3992 454 ik->name()->as_C_string(), method->name()->as_C_string(),
kamg@3992 455 method->signature()->as_C_string(), _bci, bytecode_name);
kamg@3992 456 }
kamg@3992 457 }
kamg@3992 458
kamg@3992 459 void ErrorContext::frame_details(outputStream* ss) const {
kamg@3992 460 streamIndentor si(ss);
kamg@3992 461 if (_type.is_valid() && _type.frame() != NULL) {
kamg@3992 462 ss->indent().print_cr("Current Frame:");
kamg@3992 463 streamIndentor si2(ss);
kamg@3992 464 _type.frame()->print_on(ss);
kamg@3992 465 }
kamg@3992 466 if (_expected.is_valid() && _expected.frame() != NULL) {
kamg@3992 467 ss->indent().print_cr("Stackmap Frame:");
kamg@3992 468 streamIndentor si2(ss);
kamg@3992 469 _expected.frame()->print_on(ss);
kamg@3992 470 }
kamg@3992 471 }
kamg@3992 472
minqi@5097 473 void ErrorContext::bytecode_details(outputStream* ss, const Method* method) const {
kamg@3992 474 if (method != NULL) {
kamg@3992 475 streamIndentor si(ss);
kamg@3992 476 ss->indent().print_cr("Bytecode:");
kamg@3992 477 streamIndentor si2(ss);
kamg@3992 478 ss->print_data(method->code_base(), method->code_size(), false);
kamg@3992 479 }
kamg@3992 480 }
kamg@3992 481
minqi@5097 482 void ErrorContext::handler_details(outputStream* ss, const Method* method) const {
kamg@3992 483 if (method != NULL) {
kamg@3992 484 streamIndentor si(ss);
kamg@3992 485 ExceptionTable table(method);
kamg@3992 486 if (table.length() > 0) {
kamg@3992 487 ss->indent().print_cr("Exception Handler Table:");
kamg@3992 488 streamIndentor si2(ss);
kamg@3992 489 for (int i = 0; i < table.length(); ++i) {
kamg@3992 490 ss->indent().print_cr("bci [%d, %d] => handler: %d", table.start_pc(i),
kamg@3992 491 table.end_pc(i), table.handler_pc(i));
kamg@3992 492 }
kamg@3992 493 }
kamg@3992 494 }
kamg@3992 495 }
kamg@3992 496
minqi@5097 497 void ErrorContext::stackmap_details(outputStream* ss, const Method* method) const {
kamg@3992 498 if (method != NULL && method->has_stackmap_table()) {
kamg@3992 499 streamIndentor si(ss);
kamg@3992 500 ss->indent().print_cr("Stackmap Table:");
coleenp@4037 501 Array<u1>* data = method->stackmap_data();
kamg@3992 502 stack_map_table* sm_table =
coleenp@4037 503 stack_map_table::at((address)data->adr_at(0));
kamg@3992 504 stack_map_frame* sm_frame = sm_table->entries();
kamg@3992 505 streamIndentor si2(ss);
kamg@3992 506 int current_offset = -1;
shshahma@8676 507 address end_of_sm_table = (address)sm_table + method->stackmap_data()->length();
kamg@3992 508 for (u2 i = 0; i < sm_table->number_of_entries(); ++i) {
kamg@3992 509 ss->indent();
shshahma@8676 510 if (!sm_frame->verify((address)sm_frame, end_of_sm_table)) {
hseigel@8570 511 sm_frame->print_truncated(ss, current_offset);
hseigel@8570 512 return;
hseigel@8570 513 }
kamg@3992 514 sm_frame->print_on(ss, current_offset);
drchase@6680 515 ss->cr();
kamg@3992 516 current_offset += sm_frame->offset_delta();
kamg@3992 517 sm_frame = sm_frame->next();
kamg@3992 518 }
kamg@3992 519 }
kamg@3992 520 }
kamg@3992 521
duke@435 522 // Methods in ClassVerifier
duke@435 523
duke@435 524 ClassVerifier::ClassVerifier(
kamg@3992 525 instanceKlassHandle klass, TRAPS)
kamg@3992 526 : _thread(THREAD), _exception_type(NULL), _message(NULL), _klass(klass) {
duke@435 527 _this_type = VerificationType::reference_type(klass->name());
coleenp@2497 528 // Create list to hold symbols in reference area.
coleenp@2497 529 _symbols = new GrowableArray<Symbol*>(100, 0, NULL);
duke@435 530 }
duke@435 531
duke@435 532 ClassVerifier::~ClassVerifier() {
coleenp@2497 533 // Decrement the reference count for any symbols created.
coleenp@2497 534 for (int i = 0; i < _symbols->length(); i++) {
coleenp@2497 535 Symbol* s = _symbols->at(i);
coleenp@2497 536 s->decrement_refcount();
coleenp@2497 537 }
duke@435 538 }
duke@435 539
kamg@2297 540 VerificationType ClassVerifier::object_type() const {
kamg@2297 541 return VerificationType::reference_type(vmSymbols::java_lang_Object());
kamg@2297 542 }
kamg@2297 543
kamg@3992 544 TypeOrigin ClassVerifier::ref_ctx(const char* sig, TRAPS) {
kamg@3992 545 VerificationType vt = VerificationType::reference_type(
kamg@3992 546 create_temporary_symbol(sig, (int)strlen(sig), THREAD));
kamg@3992 547 return TypeOrigin::implicit(vt);
kamg@3992 548 }
kamg@3992 549
duke@435 550 void ClassVerifier::verify_class(TRAPS) {
kamg@3992 551 if (VerboseVerification) {
duke@435 552 tty->print_cr("Verifying class %s with new format",
duke@435 553 _klass->external_name());
duke@435 554 }
duke@435 555
coleenp@4037 556 Array<Method*>* methods = _klass->methods();
duke@435 557 int num_methods = methods->length();
duke@435 558
duke@435 559 for (int index = 0; index < num_methods; index++) {
jrose@1925 560 // Check for recursive re-verification before each method.
jrose@1925 561 if (was_recursively_verified()) return;
jrose@1925 562
coleenp@4037 563 Method* m = methods->at(index);
kamg@4245 564 if (m->is_native() || m->is_abstract() || m->is_overpass()) {
duke@435 565 // If m is native or abstract, skip it. It is checked in class file
kamg@4245 566 // parser that methods do not override a final method. Overpass methods
kamg@4245 567 // are trusted since the VM generates them.
duke@435 568 continue;
duke@435 569 }
duke@435 570 verify_method(methodHandle(THREAD, m), CHECK_VERIFY(this));
duke@435 571 }
jrose@1925 572
kamg@3992 573 if (VerboseVerification || TraceClassInitialization) {
jrose@1925 574 if (was_recursively_verified())
jrose@1925 575 tty->print_cr("Recursive verification detected for: %s",
jrose@1925 576 _klass->external_name());
jrose@1925 577 }
duke@435 578 }
duke@435 579
duke@435 580 void ClassVerifier::verify_method(methodHandle m, TRAPS) {
coleenp@4037 581 HandleMark hm(THREAD);
duke@435 582 _method = m; // initialize _method
kamg@3992 583 if (VerboseVerification) {
duke@435 584 tty->print_cr("Verifying method %s", m->name_and_sig_as_C_string());
duke@435 585 }
duke@435 586
drchase@6680 587 // For clang, the only good constant format string is a literal constant format string.
drchase@6680 588 #define bad_type_msg "Bad type on operand stack in %s"
duke@435 589
twisti@3974 590 int32_t max_stack = m->verifier_max_stack();
duke@435 591 int32_t max_locals = m->max_locals();
duke@435 592 constantPoolHandle cp(THREAD, m->constants());
duke@435 593
duke@435 594 if (!SignatureVerifier::is_valid_method_signature(m->signature())) {
duke@435 595 class_format_error("Invalid method signature");
duke@435 596 return;
duke@435 597 }
duke@435 598
duke@435 599 // Initial stack map frame: offset is 0, stack is initially empty.
duke@435 600 StackMapFrame current_frame(max_locals, max_stack, this);
duke@435 601 // Set initial locals
duke@435 602 VerificationType return_type = current_frame.set_locals_from_arg(
duke@435 603 m, current_type(), CHECK_VERIFY(this));
duke@435 604
duke@435 605 int32_t stackmap_index = 0; // index to the stackmap array
duke@435 606
duke@435 607 u4 code_length = m->code_size();
duke@435 608
duke@435 609 // Scan the bytecode and map each instruction's start offset to a number.
duke@435 610 char* code_data = generate_code_data(m, code_length, CHECK_VERIFY(this));
duke@435 611
duke@435 612 int ex_min = code_length;
duke@435 613 int ex_max = -1;
duke@435 614 // Look through each item on the exception table. Each of the fields must refer
duke@435 615 // to a legal instruction.
duke@435 616 verify_exception_handler_table(
duke@435 617 code_length, code_data, ex_min, ex_max, CHECK_VERIFY(this));
duke@435 618
duke@435 619 // Look through each entry on the local variable table and make sure
duke@435 620 // its range of code array offsets is valid. (4169817)
duke@435 621 if (m->has_localvariable_table()) {
duke@435 622 verify_local_variable_table(code_length, code_data, CHECK_VERIFY(this));
duke@435 623 }
duke@435 624
coleenp@4037 625 Array<u1>* stackmap_data = m->stackmap_data();
duke@435 626 StackMapStream stream(stackmap_data);
duke@435 627 StackMapReader reader(this, &stream, code_data, code_length, THREAD);
duke@435 628 StackMapTable stackmap_table(&reader, &current_frame, max_locals, max_stack,
duke@435 629 code_data, code_length, CHECK_VERIFY(this));
duke@435 630
kamg@3992 631 if (VerboseVerification) {
kamg@3992 632 stackmap_table.print_on(tty);
duke@435 633 }
duke@435 634
duke@435 635 RawBytecodeStream bcs(m);
duke@435 636
duke@435 637 // Scan the byte code linearly from the start to the end
duke@435 638 bool no_control_flow = false; // Set to true when there is no direct control
duke@435 639 // flow from current instruction to the next
duke@435 640 // instruction in sequence
hseigel@6761 641
duke@435 642 Bytecodes::Code opcode;
duke@435 643 while (!bcs.is_last_bytecode()) {
jrose@1925 644 // Check for recursive re-verification before each bytecode.
jrose@1925 645 if (was_recursively_verified()) return;
jrose@1925 646
duke@435 647 opcode = bcs.raw_next();
duke@435 648 u2 bci = bcs.bci();
duke@435 649
duke@435 650 // Set current frame's offset to bci
duke@435 651 current_frame.set_offset(bci);
kamg@3992 652 current_frame.set_mark();
duke@435 653
duke@435 654 // Make sure every offset in stackmap table point to the beginning to
duke@435 655 // an instruction. Match current_frame to stackmap_table entry with
duke@435 656 // the same offset if exists.
duke@435 657 stackmap_index = verify_stackmap_table(
duke@435 658 stackmap_index, bci, &current_frame, &stackmap_table,
duke@435 659 no_control_flow, CHECK_VERIFY(this));
duke@435 660
kamg@3992 661
duke@435 662 bool this_uninit = false; // Set to true when invokespecial <init> initialized 'this'
hseigel@7666 663 bool verified_exc_handlers = false;
duke@435 664
duke@435 665 // Merge with the next instruction
duke@435 666 {
duke@435 667 u2 index;
duke@435 668 int target;
duke@435 669 VerificationType type, type2;
duke@435 670 VerificationType atype;
duke@435 671
duke@435 672 #ifndef PRODUCT
kamg@3992 673 if (VerboseVerification) {
kamg@3992 674 current_frame.print_on(tty);
duke@435 675 tty->print_cr("offset = %d, opcode = %s", bci, Bytecodes::name(opcode));
duke@435 676 }
duke@435 677 #endif
duke@435 678
duke@435 679 // Make sure wide instruction is in correct format
duke@435 680 if (bcs.is_wide()) {
duke@435 681 if (opcode != Bytecodes::_iinc && opcode != Bytecodes::_iload &&
duke@435 682 opcode != Bytecodes::_aload && opcode != Bytecodes::_lload &&
duke@435 683 opcode != Bytecodes::_istore && opcode != Bytecodes::_astore &&
duke@435 684 opcode != Bytecodes::_lstore && opcode != Bytecodes::_fload &&
duke@435 685 opcode != Bytecodes::_dload && opcode != Bytecodes::_fstore &&
duke@435 686 opcode != Bytecodes::_dstore) {
kamg@3992 687 /* Unreachable? RawBytecodeStream's raw_next() returns 'illegal'
kamg@3992 688 * if we encounter a wide instruction that modifies an invalid
kamg@3992 689 * opcode (not one of the ones listed above) */
kamg@3992 690 verify_error(ErrorContext::bad_code(bci), "Bad wide instruction");
duke@435 691 return;
duke@435 692 }
duke@435 693 }
duke@435 694
hseigel@7666 695 // Look for possible jump target in exception handlers and see if it
hseigel@7666 696 // matches current_frame. Do this check here for astore*, dstore*,
hseigel@7666 697 // fstore*, istore*, and lstore* opcodes because they can change the type
hseigel@7666 698 // state by adding a local. JVM Spec says that the incoming type state
hseigel@7666 699 // should be used for this check. So, do the check here before a possible
hseigel@7666 700 // local is added to the type state.
hseigel@7666 701 if (Bytecodes::is_store_into_local(opcode) && bci >= ex_min && bci < ex_max) {
hseigel@7666 702 verify_exception_handler_targets(
hseigel@7666 703 bci, this_uninit, &current_frame, &stackmap_table, CHECK_VERIFY(this));
hseigel@7666 704 verified_exc_handlers = true;
hseigel@7666 705 }
hseigel@7666 706
duke@435 707 switch (opcode) {
duke@435 708 case Bytecodes::_nop :
duke@435 709 no_control_flow = false; break;
duke@435 710 case Bytecodes::_aconst_null :
duke@435 711 current_frame.push_stack(
duke@435 712 VerificationType::null_type(), CHECK_VERIFY(this));
duke@435 713 no_control_flow = false; break;
duke@435 714 case Bytecodes::_iconst_m1 :
duke@435 715 case Bytecodes::_iconst_0 :
duke@435 716 case Bytecodes::_iconst_1 :
duke@435 717 case Bytecodes::_iconst_2 :
duke@435 718 case Bytecodes::_iconst_3 :
duke@435 719 case Bytecodes::_iconst_4 :
duke@435 720 case Bytecodes::_iconst_5 :
duke@435 721 current_frame.push_stack(
duke@435 722 VerificationType::integer_type(), CHECK_VERIFY(this));
duke@435 723 no_control_flow = false; break;
duke@435 724 case Bytecodes::_lconst_0 :
duke@435 725 case Bytecodes::_lconst_1 :
duke@435 726 current_frame.push_stack_2(
duke@435 727 VerificationType::long_type(),
duke@435 728 VerificationType::long2_type(), CHECK_VERIFY(this));
duke@435 729 no_control_flow = false; break;
duke@435 730 case Bytecodes::_fconst_0 :
duke@435 731 case Bytecodes::_fconst_1 :
duke@435 732 case Bytecodes::_fconst_2 :
duke@435 733 current_frame.push_stack(
duke@435 734 VerificationType::float_type(), CHECK_VERIFY(this));
duke@435 735 no_control_flow = false; break;
duke@435 736 case Bytecodes::_dconst_0 :
duke@435 737 case Bytecodes::_dconst_1 :
duke@435 738 current_frame.push_stack_2(
duke@435 739 VerificationType::double_type(),
duke@435 740 VerificationType::double2_type(), CHECK_VERIFY(this));
duke@435 741 no_control_flow = false; break;
duke@435 742 case Bytecodes::_sipush :
duke@435 743 case Bytecodes::_bipush :
duke@435 744 current_frame.push_stack(
duke@435 745 VerificationType::integer_type(), CHECK_VERIFY(this));
duke@435 746 no_control_flow = false; break;
duke@435 747 case Bytecodes::_ldc :
duke@435 748 verify_ldc(
jrose@1920 749 opcode, bcs.get_index_u1(), &current_frame,
duke@435 750 cp, bci, CHECK_VERIFY(this));
duke@435 751 no_control_flow = false; break;
duke@435 752 case Bytecodes::_ldc_w :
duke@435 753 case Bytecodes::_ldc2_w :
duke@435 754 verify_ldc(
jrose@1920 755 opcode, bcs.get_index_u2(), &current_frame,
duke@435 756 cp, bci, CHECK_VERIFY(this));
duke@435 757 no_control_flow = false; break;
duke@435 758 case Bytecodes::_iload :
duke@435 759 verify_iload(bcs.get_index(), &current_frame, CHECK_VERIFY(this));
duke@435 760 no_control_flow = false; break;
duke@435 761 case Bytecodes::_iload_0 :
duke@435 762 case Bytecodes::_iload_1 :
duke@435 763 case Bytecodes::_iload_2 :
duke@435 764 case Bytecodes::_iload_3 :
duke@435 765 index = opcode - Bytecodes::_iload_0;
duke@435 766 verify_iload(index, &current_frame, CHECK_VERIFY(this));
duke@435 767 no_control_flow = false; break;
duke@435 768 case Bytecodes::_lload :
duke@435 769 verify_lload(bcs.get_index(), &current_frame, CHECK_VERIFY(this));
duke@435 770 no_control_flow = false; break;
duke@435 771 case Bytecodes::_lload_0 :
duke@435 772 case Bytecodes::_lload_1 :
duke@435 773 case Bytecodes::_lload_2 :
duke@435 774 case Bytecodes::_lload_3 :
duke@435 775 index = opcode - Bytecodes::_lload_0;
duke@435 776 verify_lload(index, &current_frame, CHECK_VERIFY(this));
duke@435 777 no_control_flow = false; break;
duke@435 778 case Bytecodes::_fload :
duke@435 779 verify_fload(bcs.get_index(), &current_frame, CHECK_VERIFY(this));
duke@435 780 no_control_flow = false; break;
duke@435 781 case Bytecodes::_fload_0 :
duke@435 782 case Bytecodes::_fload_1 :
duke@435 783 case Bytecodes::_fload_2 :
duke@435 784 case Bytecodes::_fload_3 :
duke@435 785 index = opcode - Bytecodes::_fload_0;
duke@435 786 verify_fload(index, &current_frame, CHECK_VERIFY(this));
duke@435 787 no_control_flow = false; break;
duke@435 788 case Bytecodes::_dload :
duke@435 789 verify_dload(bcs.get_index(), &current_frame, CHECK_VERIFY(this));
duke@435 790 no_control_flow = false; break;
duke@435 791 case Bytecodes::_dload_0 :
duke@435 792 case Bytecodes::_dload_1 :
duke@435 793 case Bytecodes::_dload_2 :
duke@435 794 case Bytecodes::_dload_3 :
duke@435 795 index = opcode - Bytecodes::_dload_0;
duke@435 796 verify_dload(index, &current_frame, CHECK_VERIFY(this));
duke@435 797 no_control_flow = false; break;
duke@435 798 case Bytecodes::_aload :
duke@435 799 verify_aload(bcs.get_index(), &current_frame, CHECK_VERIFY(this));
duke@435 800 no_control_flow = false; break;
duke@435 801 case Bytecodes::_aload_0 :
duke@435 802 case Bytecodes::_aload_1 :
duke@435 803 case Bytecodes::_aload_2 :
duke@435 804 case Bytecodes::_aload_3 :
duke@435 805 index = opcode - Bytecodes::_aload_0;
duke@435 806 verify_aload(index, &current_frame, CHECK_VERIFY(this));
duke@435 807 no_control_flow = false; break;
duke@435 808 case Bytecodes::_iaload :
duke@435 809 type = current_frame.pop_stack(
duke@435 810 VerificationType::integer_type(), CHECK_VERIFY(this));
duke@435 811 atype = current_frame.pop_stack(
duke@435 812 VerificationType::reference_check(), CHECK_VERIFY(this));
duke@435 813 if (!atype.is_int_array()) {
kamg@3992 814 verify_error(ErrorContext::bad_type(bci,
kamg@3992 815 current_frame.stack_top_ctx(), ref_ctx("[I", THREAD)),
kamg@3992 816 bad_type_msg, "iaload");
duke@435 817 return;
duke@435 818 }
duke@435 819 current_frame.push_stack(
duke@435 820 VerificationType::integer_type(), CHECK_VERIFY(this));
duke@435 821 no_control_flow = false; break;
duke@435 822 case Bytecodes::_baload :
duke@435 823 type = current_frame.pop_stack(
duke@435 824 VerificationType::integer_type(), CHECK_VERIFY(this));
duke@435 825 atype = current_frame.pop_stack(
duke@435 826 VerificationType::reference_check(), CHECK_VERIFY(this));
duke@435 827 if (!atype.is_bool_array() && !atype.is_byte_array()) {
kamg@3992 828 verify_error(
kamg@3992 829 ErrorContext::bad_type(bci, current_frame.stack_top_ctx()),
kamg@3992 830 bad_type_msg, "baload");
duke@435 831 return;
duke@435 832 }
duke@435 833 current_frame.push_stack(
duke@435 834 VerificationType::integer_type(), CHECK_VERIFY(this));
duke@435 835 no_control_flow = false; break;
duke@435 836 case Bytecodes::_caload :
duke@435 837 type = current_frame.pop_stack(
duke@435 838 VerificationType::integer_type(), CHECK_VERIFY(this));
duke@435 839 atype = current_frame.pop_stack(
duke@435 840 VerificationType::reference_check(), CHECK_VERIFY(this));
duke@435 841 if (!atype.is_char_array()) {
kamg@3992 842 verify_error(ErrorContext::bad_type(bci,
kamg@3992 843 current_frame.stack_top_ctx(), ref_ctx("[C", THREAD)),
kamg@3992 844 bad_type_msg, "caload");
duke@435 845 return;
duke@435 846 }
duke@435 847 current_frame.push_stack(
duke@435 848 VerificationType::integer_type(), CHECK_VERIFY(this));
duke@435 849 no_control_flow = false; break;
duke@435 850 case Bytecodes::_saload :
duke@435 851 type = current_frame.pop_stack(
duke@435 852 VerificationType::integer_type(), CHECK_VERIFY(this));
duke@435 853 atype = current_frame.pop_stack(
duke@435 854 VerificationType::reference_check(), CHECK_VERIFY(this));
duke@435 855 if (!atype.is_short_array()) {
kamg@3992 856 verify_error(ErrorContext::bad_type(bci,
kamg@3992 857 current_frame.stack_top_ctx(), ref_ctx("[S", THREAD)),
kamg@3992 858 bad_type_msg, "saload");
duke@435 859 return;
duke@435 860 }
duke@435 861 current_frame.push_stack(
duke@435 862 VerificationType::integer_type(), CHECK_VERIFY(this));
duke@435 863 no_control_flow = false; break;
duke@435 864 case Bytecodes::_laload :
duke@435 865 type = current_frame.pop_stack(
duke@435 866 VerificationType::integer_type(), CHECK_VERIFY(this));
duke@435 867 atype = current_frame.pop_stack(
duke@435 868 VerificationType::reference_check(), CHECK_VERIFY(this));
duke@435 869 if (!atype.is_long_array()) {
kamg@3992 870 verify_error(ErrorContext::bad_type(bci,
kamg@3992 871 current_frame.stack_top_ctx(), ref_ctx("[J", THREAD)),
kamg@3992 872 bad_type_msg, "laload");
duke@435 873 return;
duke@435 874 }
duke@435 875 current_frame.push_stack_2(
duke@435 876 VerificationType::long_type(),
duke@435 877 VerificationType::long2_type(), CHECK_VERIFY(this));
duke@435 878 no_control_flow = false; break;
duke@435 879 case Bytecodes::_faload :
duke@435 880 type = current_frame.pop_stack(
duke@435 881 VerificationType::integer_type(), CHECK_VERIFY(this));
duke@435 882 atype = current_frame.pop_stack(
duke@435 883 VerificationType::reference_check(), CHECK_VERIFY(this));
duke@435 884 if (!atype.is_float_array()) {
kamg@3992 885 verify_error(ErrorContext::bad_type(bci,
kamg@3992 886 current_frame.stack_top_ctx(), ref_ctx("[F", THREAD)),
kamg@3992 887 bad_type_msg, "faload");
duke@435 888 return;
duke@435 889 }
duke@435 890 current_frame.push_stack(
duke@435 891 VerificationType::float_type(), CHECK_VERIFY(this));
duke@435 892 no_control_flow = false; break;
duke@435 893 case Bytecodes::_daload :
duke@435 894 type = current_frame.pop_stack(
duke@435 895 VerificationType::integer_type(), CHECK_VERIFY(this));
duke@435 896 atype = current_frame.pop_stack(
duke@435 897 VerificationType::reference_check(), CHECK_VERIFY(this));
duke@435 898 if (!atype.is_double_array()) {
kamg@3992 899 verify_error(ErrorContext::bad_type(bci,
kamg@3992 900 current_frame.stack_top_ctx(), ref_ctx("[D", THREAD)),
kamg@3992 901 bad_type_msg, "daload");
duke@435 902 return;
duke@435 903 }
duke@435 904 current_frame.push_stack_2(
duke@435 905 VerificationType::double_type(),
duke@435 906 VerificationType::double2_type(), CHECK_VERIFY(this));
duke@435 907 no_control_flow = false; break;
duke@435 908 case Bytecodes::_aaload : {
duke@435 909 type = current_frame.pop_stack(
duke@435 910 VerificationType::integer_type(), CHECK_VERIFY(this));
duke@435 911 atype = current_frame.pop_stack(
duke@435 912 VerificationType::reference_check(), CHECK_VERIFY(this));
duke@435 913 if (!atype.is_reference_array()) {
kamg@3992 914 verify_error(ErrorContext::bad_type(bci,
kamg@3992 915 current_frame.stack_top_ctx(),
kamg@3992 916 TypeOrigin::implicit(VerificationType::reference_check())),
kamg@3992 917 bad_type_msg, "aaload");
duke@435 918 return;
duke@435 919 }
duke@435 920 if (atype.is_null()) {
duke@435 921 current_frame.push_stack(
duke@435 922 VerificationType::null_type(), CHECK_VERIFY(this));
duke@435 923 } else {
duke@435 924 VerificationType component =
coleenp@2497 925 atype.get_component(this, CHECK_VERIFY(this));
duke@435 926 current_frame.push_stack(component, CHECK_VERIFY(this));
duke@435 927 }
duke@435 928 no_control_flow = false; break;
duke@435 929 }
duke@435 930 case Bytecodes::_istore :
duke@435 931 verify_istore(bcs.get_index(), &current_frame, CHECK_VERIFY(this));
duke@435 932 no_control_flow = false; break;
duke@435 933 case Bytecodes::_istore_0 :
duke@435 934 case Bytecodes::_istore_1 :
duke@435 935 case Bytecodes::_istore_2 :
duke@435 936 case Bytecodes::_istore_3 :
duke@435 937 index = opcode - Bytecodes::_istore_0;
duke@435 938 verify_istore(index, &current_frame, CHECK_VERIFY(this));
duke@435 939 no_control_flow = false; break;
duke@435 940 case Bytecodes::_lstore :
duke@435 941 verify_lstore(bcs.get_index(), &current_frame, CHECK_VERIFY(this));
duke@435 942 no_control_flow = false; break;
duke@435 943 case Bytecodes::_lstore_0 :
duke@435 944 case Bytecodes::_lstore_1 :
duke@435 945 case Bytecodes::_lstore_2 :
duke@435 946 case Bytecodes::_lstore_3 :
duke@435 947 index = opcode - Bytecodes::_lstore_0;
duke@435 948 verify_lstore(index, &current_frame, CHECK_VERIFY(this));
duke@435 949 no_control_flow = false; break;
duke@435 950 case Bytecodes::_fstore :
duke@435 951 verify_fstore(bcs.get_index(), &current_frame, CHECK_VERIFY(this));
duke@435 952 no_control_flow = false; break;
duke@435 953 case Bytecodes::_fstore_0 :
duke@435 954 case Bytecodes::_fstore_1 :
duke@435 955 case Bytecodes::_fstore_2 :
duke@435 956 case Bytecodes::_fstore_3 :
duke@435 957 index = opcode - Bytecodes::_fstore_0;
duke@435 958 verify_fstore(index, &current_frame, CHECK_VERIFY(this));
duke@435 959 no_control_flow = false; break;
duke@435 960 case Bytecodes::_dstore :
duke@435 961 verify_dstore(bcs.get_index(), &current_frame, CHECK_VERIFY(this));
duke@435 962 no_control_flow = false; break;
duke@435 963 case Bytecodes::_dstore_0 :
duke@435 964 case Bytecodes::_dstore_1 :
duke@435 965 case Bytecodes::_dstore_2 :
duke@435 966 case Bytecodes::_dstore_3 :
duke@435 967 index = opcode - Bytecodes::_dstore_0;
duke@435 968 verify_dstore(index, &current_frame, CHECK_VERIFY(this));
duke@435 969 no_control_flow = false; break;
duke@435 970 case Bytecodes::_astore :
duke@435 971 verify_astore(bcs.get_index(), &current_frame, CHECK_VERIFY(this));
duke@435 972 no_control_flow = false; break;
duke@435 973 case Bytecodes::_astore_0 :
duke@435 974 case Bytecodes::_astore_1 :
duke@435 975 case Bytecodes::_astore_2 :
duke@435 976 case Bytecodes::_astore_3 :
duke@435 977 index = opcode - Bytecodes::_astore_0;
duke@435 978 verify_astore(index, &current_frame, CHECK_VERIFY(this));
duke@435 979 no_control_flow = false; break;
duke@435 980 case Bytecodes::_iastore :
duke@435 981 type = current_frame.pop_stack(
duke@435 982 VerificationType::integer_type(), CHECK_VERIFY(this));
duke@435 983 type2 = current_frame.pop_stack(
duke@435 984 VerificationType::integer_type(), CHECK_VERIFY(this));
duke@435 985 atype = current_frame.pop_stack(
duke@435 986 VerificationType::reference_check(), CHECK_VERIFY(this));
duke@435 987 if (!atype.is_int_array()) {
kamg@3992 988 verify_error(ErrorContext::bad_type(bci,
kamg@3992 989 current_frame.stack_top_ctx(), ref_ctx("[I", THREAD)),
kamg@3992 990 bad_type_msg, "iastore");
duke@435 991 return;
duke@435 992 }
duke@435 993 no_control_flow = false; break;
duke@435 994 case Bytecodes::_bastore :
duke@435 995 type = current_frame.pop_stack(
duke@435 996 VerificationType::integer_type(), CHECK_VERIFY(this));
duke@435 997 type2 = current_frame.pop_stack(
duke@435 998 VerificationType::integer_type(), CHECK_VERIFY(this));
duke@435 999 atype = current_frame.pop_stack(
duke@435 1000 VerificationType::reference_check(), CHECK_VERIFY(this));
duke@435 1001 if (!atype.is_bool_array() && !atype.is_byte_array()) {
kamg@3992 1002 verify_error(
kamg@3992 1003 ErrorContext::bad_type(bci, current_frame.stack_top_ctx()),
kamg@3992 1004 bad_type_msg, "bastore");
duke@435 1005 return;
duke@435 1006 }
duke@435 1007 no_control_flow = false; break;
duke@435 1008 case Bytecodes::_castore :
duke@435 1009 current_frame.pop_stack(
duke@435 1010 VerificationType::integer_type(), CHECK_VERIFY(this));
duke@435 1011 current_frame.pop_stack(
duke@435 1012 VerificationType::integer_type(), CHECK_VERIFY(this));
duke@435 1013 atype = current_frame.pop_stack(
duke@435 1014 VerificationType::reference_check(), CHECK_VERIFY(this));
duke@435 1015 if (!atype.is_char_array()) {
kamg@3992 1016 verify_error(ErrorContext::bad_type(bci,
kamg@3992 1017 current_frame.stack_top_ctx(), ref_ctx("[C", THREAD)),
kamg@3992 1018 bad_type_msg, "castore");
duke@435 1019 return;
duke@435 1020 }
duke@435 1021 no_control_flow = false; break;
duke@435 1022 case Bytecodes::_sastore :
duke@435 1023 current_frame.pop_stack(
duke@435 1024 VerificationType::integer_type(), CHECK_VERIFY(this));
duke@435 1025 current_frame.pop_stack(
duke@435 1026 VerificationType::integer_type(), CHECK_VERIFY(this));
duke@435 1027 atype = current_frame.pop_stack(
duke@435 1028 VerificationType::reference_check(), CHECK_VERIFY(this));
duke@435 1029 if (!atype.is_short_array()) {
kamg@3992 1030 verify_error(ErrorContext::bad_type(bci,
kamg@3992 1031 current_frame.stack_top_ctx(), ref_ctx("[S", THREAD)),
kamg@3992 1032 bad_type_msg, "sastore");
duke@435 1033 return;
duke@435 1034 }
duke@435 1035 no_control_flow = false; break;
duke@435 1036 case Bytecodes::_lastore :
duke@435 1037 current_frame.pop_stack_2(
duke@435 1038 VerificationType::long2_type(),
duke@435 1039 VerificationType::long_type(), CHECK_VERIFY(this));
duke@435 1040 current_frame.pop_stack(
duke@435 1041 VerificationType::integer_type(), CHECK_VERIFY(this));
duke@435 1042 atype = current_frame.pop_stack(
duke@435 1043 VerificationType::reference_check(), CHECK_VERIFY(this));
duke@435 1044 if (!atype.is_long_array()) {
kamg@3992 1045 verify_error(ErrorContext::bad_type(bci,
kamg@3992 1046 current_frame.stack_top_ctx(), ref_ctx("[J", THREAD)),
kamg@3992 1047 bad_type_msg, "lastore");
duke@435 1048 return;
duke@435 1049 }
duke@435 1050 no_control_flow = false; break;
duke@435 1051 case Bytecodes::_fastore :
duke@435 1052 current_frame.pop_stack(
duke@435 1053 VerificationType::float_type(), CHECK_VERIFY(this));
duke@435 1054 current_frame.pop_stack
duke@435 1055 (VerificationType::integer_type(), CHECK_VERIFY(this));
duke@435 1056 atype = current_frame.pop_stack(
duke@435 1057 VerificationType::reference_check(), CHECK_VERIFY(this));
duke@435 1058 if (!atype.is_float_array()) {
kamg@3992 1059 verify_error(ErrorContext::bad_type(bci,
kamg@3992 1060 current_frame.stack_top_ctx(), ref_ctx("[F", THREAD)),
kamg@3992 1061 bad_type_msg, "fastore");
duke@435 1062 return;
duke@435 1063 }
duke@435 1064 no_control_flow = false; break;
duke@435 1065 case Bytecodes::_dastore :
duke@435 1066 current_frame.pop_stack_2(
duke@435 1067 VerificationType::double2_type(),
duke@435 1068 VerificationType::double_type(), CHECK_VERIFY(this));
duke@435 1069 current_frame.pop_stack(
duke@435 1070 VerificationType::integer_type(), CHECK_VERIFY(this));
duke@435 1071 atype = current_frame.pop_stack(
duke@435 1072 VerificationType::reference_check(), CHECK_VERIFY(this));
duke@435 1073 if (!atype.is_double_array()) {
kamg@3992 1074 verify_error(ErrorContext::bad_type(bci,
kamg@3992 1075 current_frame.stack_top_ctx(), ref_ctx("[D", THREAD)),
kamg@3992 1076 bad_type_msg, "dastore");
duke@435 1077 return;
duke@435 1078 }
duke@435 1079 no_control_flow = false; break;
duke@435 1080 case Bytecodes::_aastore :
kamg@2297 1081 type = current_frame.pop_stack(object_type(), CHECK_VERIFY(this));
duke@435 1082 type2 = current_frame.pop_stack(
duke@435 1083 VerificationType::integer_type(), CHECK_VERIFY(this));
duke@435 1084 atype = current_frame.pop_stack(
duke@435 1085 VerificationType::reference_check(), CHECK_VERIFY(this));
duke@435 1086 // more type-checking is done at runtime
duke@435 1087 if (!atype.is_reference_array()) {
kamg@3992 1088 verify_error(ErrorContext::bad_type(bci,
kamg@3992 1089 current_frame.stack_top_ctx(),
kamg@3992 1090 TypeOrigin::implicit(VerificationType::reference_check())),
kamg@3992 1091 bad_type_msg, "aastore");
duke@435 1092 return;
duke@435 1093 }
duke@435 1094 // 4938384: relaxed constraint in JVMS 3nd edition.
duke@435 1095 no_control_flow = false; break;
duke@435 1096 case Bytecodes::_pop :
duke@435 1097 current_frame.pop_stack(
duke@435 1098 VerificationType::category1_check(), CHECK_VERIFY(this));
duke@435 1099 no_control_flow = false; break;
duke@435 1100 case Bytecodes::_pop2 :
duke@435 1101 type = current_frame.pop_stack(CHECK_VERIFY(this));
duke@435 1102 if (type.is_category1()) {
duke@435 1103 current_frame.pop_stack(
duke@435 1104 VerificationType::category1_check(), CHECK_VERIFY(this));
duke@435 1105 } else if (type.is_category2_2nd()) {
duke@435 1106 current_frame.pop_stack(
duke@435 1107 VerificationType::category2_check(), CHECK_VERIFY(this));
duke@435 1108 } else {
kamg@3992 1109 /* Unreachable? Would need a category2_1st on TOS
kamg@3992 1110 * which does not appear possible. */
kamg@3992 1111 verify_error(
kamg@3992 1112 ErrorContext::bad_type(bci, current_frame.stack_top_ctx()),
kamg@3992 1113 bad_type_msg, "pop2");
duke@435 1114 return;
duke@435 1115 }
duke@435 1116 no_control_flow = false; break;
duke@435 1117 case Bytecodes::_dup :
duke@435 1118 type = current_frame.pop_stack(
duke@435 1119 VerificationType::category1_check(), CHECK_VERIFY(this));
duke@435 1120 current_frame.push_stack(type, CHECK_VERIFY(this));
duke@435 1121 current_frame.push_stack(type, CHECK_VERIFY(this));
duke@435 1122 no_control_flow = false; break;
duke@435 1123 case Bytecodes::_dup_x1 :
duke@435 1124 type = current_frame.pop_stack(
duke@435 1125 VerificationType::category1_check(), CHECK_VERIFY(this));
duke@435 1126 type2 = current_frame.pop_stack(
duke@435 1127 VerificationType::category1_check(), CHECK_VERIFY(this));
duke@435 1128 current_frame.push_stack(type, CHECK_VERIFY(this));
duke@435 1129 current_frame.push_stack(type2, CHECK_VERIFY(this));
duke@435 1130 current_frame.push_stack(type, CHECK_VERIFY(this));
duke@435 1131 no_control_flow = false; break;
duke@435 1132 case Bytecodes::_dup_x2 :
duke@435 1133 {
duke@435 1134 VerificationType type3;
duke@435 1135 type = current_frame.pop_stack(
duke@435 1136 VerificationType::category1_check(), CHECK_VERIFY(this));
duke@435 1137 type2 = current_frame.pop_stack(CHECK_VERIFY(this));
duke@435 1138 if (type2.is_category1()) {
duke@435 1139 type3 = current_frame.pop_stack(
duke@435 1140 VerificationType::category1_check(), CHECK_VERIFY(this));
duke@435 1141 } else if (type2.is_category2_2nd()) {
duke@435 1142 type3 = current_frame.pop_stack(
duke@435 1143 VerificationType::category2_check(), CHECK_VERIFY(this));
duke@435 1144 } else {
kamg@3992 1145 /* Unreachable? Would need a category2_1st at stack depth 2 with
kamg@3992 1146 * a category1 on TOS which does not appear possible. */
kamg@3992 1147 verify_error(ErrorContext::bad_type(
kamg@3992 1148 bci, current_frame.stack_top_ctx()), bad_type_msg, "dup_x2");
duke@435 1149 return;
duke@435 1150 }
duke@435 1151 current_frame.push_stack(type, CHECK_VERIFY(this));
duke@435 1152 current_frame.push_stack(type3, CHECK_VERIFY(this));
duke@435 1153 current_frame.push_stack(type2, CHECK_VERIFY(this));
duke@435 1154 current_frame.push_stack(type, CHECK_VERIFY(this));
duke@435 1155 no_control_flow = false; break;
duke@435 1156 }
duke@435 1157 case Bytecodes::_dup2 :
duke@435 1158 type = current_frame.pop_stack(CHECK_VERIFY(this));
duke@435 1159 if (type.is_category1()) {
duke@435 1160 type2 = current_frame.pop_stack(
duke@435 1161 VerificationType::category1_check(), CHECK_VERIFY(this));
duke@435 1162 } else if (type.is_category2_2nd()) {
duke@435 1163 type2 = current_frame.pop_stack(
duke@435 1164 VerificationType::category2_check(), CHECK_VERIFY(this));
duke@435 1165 } else {
kamg@3992 1166 /* Unreachable? Would need a category2_1st on TOS which does not
kamg@3992 1167 * appear possible. */
kamg@3992 1168 verify_error(
kamg@3992 1169 ErrorContext::bad_type(bci, current_frame.stack_top_ctx()),
kamg@3992 1170 bad_type_msg, "dup2");
duke@435 1171 return;
duke@435 1172 }
duke@435 1173 current_frame.push_stack(type2, CHECK_VERIFY(this));
duke@435 1174 current_frame.push_stack(type, CHECK_VERIFY(this));
duke@435 1175 current_frame.push_stack(type2, CHECK_VERIFY(this));
duke@435 1176 current_frame.push_stack(type, CHECK_VERIFY(this));
duke@435 1177 no_control_flow = false; break;
duke@435 1178 case Bytecodes::_dup2_x1 :
duke@435 1179 {
duke@435 1180 VerificationType type3;
duke@435 1181 type = current_frame.pop_stack(CHECK_VERIFY(this));
duke@435 1182 if (type.is_category1()) {
duke@435 1183 type2 = current_frame.pop_stack(
duke@435 1184 VerificationType::category1_check(), CHECK_VERIFY(this));
kamg@3992 1185 } else if (type.is_category2_2nd()) {
kamg@3992 1186 type2 = current_frame.pop_stack(
kamg@3992 1187 VerificationType::category2_check(), CHECK_VERIFY(this));
duke@435 1188 } else {
kamg@3992 1189 /* Unreachable? Would need a category2_1st on TOS which does
kamg@3992 1190 * not appear possible. */
kamg@3992 1191 verify_error(
kamg@3992 1192 ErrorContext::bad_type(bci, current_frame.stack_top_ctx()),
kamg@3992 1193 bad_type_msg, "dup2_x1");
duke@435 1194 return;
duke@435 1195 }
duke@435 1196 type3 = current_frame.pop_stack(
duke@435 1197 VerificationType::category1_check(), CHECK_VERIFY(this));
duke@435 1198 current_frame.push_stack(type2, CHECK_VERIFY(this));
duke@435 1199 current_frame.push_stack(type, CHECK_VERIFY(this));
duke@435 1200 current_frame.push_stack(type3, CHECK_VERIFY(this));
duke@435 1201 current_frame.push_stack(type2, CHECK_VERIFY(this));
duke@435 1202 current_frame.push_stack(type, CHECK_VERIFY(this));
duke@435 1203 no_control_flow = false; break;
duke@435 1204 }
duke@435 1205 case Bytecodes::_dup2_x2 :
duke@435 1206 {
duke@435 1207 VerificationType type3, type4;
duke@435 1208 type = current_frame.pop_stack(CHECK_VERIFY(this));
duke@435 1209 if (type.is_category1()) {
duke@435 1210 type2 = current_frame.pop_stack(
duke@435 1211 VerificationType::category1_check(), CHECK_VERIFY(this));
duke@435 1212 } else if (type.is_category2_2nd()) {
duke@435 1213 type2 = current_frame.pop_stack(
duke@435 1214 VerificationType::category2_check(), CHECK_VERIFY(this));
duke@435 1215 } else {
kamg@3992 1216 /* Unreachable? Would need a category2_1st on TOS which does
kamg@3992 1217 * not appear possible. */
kamg@3992 1218 verify_error(
kamg@3992 1219 ErrorContext::bad_type(bci, current_frame.stack_top_ctx()),
kamg@3992 1220 bad_type_msg, "dup2_x2");
duke@435 1221 return;
duke@435 1222 }
duke@435 1223 type3 = current_frame.pop_stack(CHECK_VERIFY(this));
duke@435 1224 if (type3.is_category1()) {
duke@435 1225 type4 = current_frame.pop_stack(
duke@435 1226 VerificationType::category1_check(), CHECK_VERIFY(this));
duke@435 1227 } else if (type3.is_category2_2nd()) {
duke@435 1228 type4 = current_frame.pop_stack(
duke@435 1229 VerificationType::category2_check(), CHECK_VERIFY(this));
duke@435 1230 } else {
kamg@3992 1231 /* Unreachable? Would need a category2_1st on TOS after popping
kamg@3992 1232 * a long/double or two category 1's, which does not
kamg@3992 1233 * appear possible. */
kamg@3992 1234 verify_error(
kamg@3992 1235 ErrorContext::bad_type(bci, current_frame.stack_top_ctx()),
kamg@3992 1236 bad_type_msg, "dup2_x2");
duke@435 1237 return;
duke@435 1238 }
duke@435 1239 current_frame.push_stack(type2, CHECK_VERIFY(this));
duke@435 1240 current_frame.push_stack(type, CHECK_VERIFY(this));
duke@435 1241 current_frame.push_stack(type4, CHECK_VERIFY(this));
duke@435 1242 current_frame.push_stack(type3, CHECK_VERIFY(this));
duke@435 1243 current_frame.push_stack(type2, CHECK_VERIFY(this));
duke@435 1244 current_frame.push_stack(type, CHECK_VERIFY(this));
duke@435 1245 no_control_flow = false; break;
duke@435 1246 }
duke@435 1247 case Bytecodes::_swap :
duke@435 1248 type = current_frame.pop_stack(
duke@435 1249 VerificationType::category1_check(), CHECK_VERIFY(this));
duke@435 1250 type2 = current_frame.pop_stack(
duke@435 1251 VerificationType::category1_check(), CHECK_VERIFY(this));
duke@435 1252 current_frame.push_stack(type, CHECK_VERIFY(this));
duke@435 1253 current_frame.push_stack(type2, CHECK_VERIFY(this));
duke@435 1254 no_control_flow = false; break;
duke@435 1255 case Bytecodes::_iadd :
duke@435 1256 case Bytecodes::_isub :
duke@435 1257 case Bytecodes::_imul :
duke@435 1258 case Bytecodes::_idiv :
duke@435 1259 case Bytecodes::_irem :
duke@435 1260 case Bytecodes::_ishl :
duke@435 1261 case Bytecodes::_ishr :
duke@435 1262 case Bytecodes::_iushr :
duke@435 1263 case Bytecodes::_ior :
duke@435 1264 case Bytecodes::_ixor :
duke@435 1265 case Bytecodes::_iand :
duke@435 1266 current_frame.pop_stack(
duke@435 1267 VerificationType::integer_type(), CHECK_VERIFY(this));
duke@435 1268 // fall through
duke@435 1269 case Bytecodes::_ineg :
duke@435 1270 current_frame.pop_stack(
duke@435 1271 VerificationType::integer_type(), CHECK_VERIFY(this));
duke@435 1272 current_frame.push_stack(
duke@435 1273 VerificationType::integer_type(), CHECK_VERIFY(this));
duke@435 1274 no_control_flow = false; break;
duke@435 1275 case Bytecodes::_ladd :
duke@435 1276 case Bytecodes::_lsub :
duke@435 1277 case Bytecodes::_lmul :
duke@435 1278 case Bytecodes::_ldiv :
duke@435 1279 case Bytecodes::_lrem :
duke@435 1280 case Bytecodes::_land :
duke@435 1281 case Bytecodes::_lor :
duke@435 1282 case Bytecodes::_lxor :
duke@435 1283 current_frame.pop_stack_2(
duke@435 1284 VerificationType::long2_type(),
duke@435 1285 VerificationType::long_type(), CHECK_VERIFY(this));
duke@435 1286 // fall through
duke@435 1287 case Bytecodes::_lneg :
duke@435 1288 current_frame.pop_stack_2(
duke@435 1289 VerificationType::long2_type(),
duke@435 1290 VerificationType::long_type(), CHECK_VERIFY(this));
duke@435 1291 current_frame.push_stack_2(
duke@435 1292 VerificationType::long_type(),
duke@435 1293 VerificationType::long2_type(), CHECK_VERIFY(this));
duke@435 1294 no_control_flow = false; break;
duke@435 1295 case Bytecodes::_lshl :
duke@435 1296 case Bytecodes::_lshr :
duke@435 1297 case Bytecodes::_lushr :
duke@435 1298 current_frame.pop_stack(
duke@435 1299 VerificationType::integer_type(), CHECK_VERIFY(this));
duke@435 1300 current_frame.pop_stack_2(
duke@435 1301 VerificationType::long2_type(),
duke@435 1302 VerificationType::long_type(), CHECK_VERIFY(this));
duke@435 1303 current_frame.push_stack_2(
duke@435 1304 VerificationType::long_type(),
duke@435 1305 VerificationType::long2_type(), CHECK_VERIFY(this));
duke@435 1306 no_control_flow = false; break;
duke@435 1307 case Bytecodes::_fadd :
duke@435 1308 case Bytecodes::_fsub :
duke@435 1309 case Bytecodes::_fmul :
duke@435 1310 case Bytecodes::_fdiv :
duke@435 1311 case Bytecodes::_frem :
duke@435 1312 current_frame.pop_stack(
duke@435 1313 VerificationType::float_type(), CHECK_VERIFY(this));
duke@435 1314 // fall through
duke@435 1315 case Bytecodes::_fneg :
duke@435 1316 current_frame.pop_stack(
duke@435 1317 VerificationType::float_type(), CHECK_VERIFY(this));
duke@435 1318 current_frame.push_stack(
duke@435 1319 VerificationType::float_type(), CHECK_VERIFY(this));
duke@435 1320 no_control_flow = false; break;
duke@435 1321 case Bytecodes::_dadd :
duke@435 1322 case Bytecodes::_dsub :
duke@435 1323 case Bytecodes::_dmul :
duke@435 1324 case Bytecodes::_ddiv :
duke@435 1325 case Bytecodes::_drem :
duke@435 1326 current_frame.pop_stack_2(
duke@435 1327 VerificationType::double2_type(),
duke@435 1328 VerificationType::double_type(), CHECK_VERIFY(this));
duke@435 1329 // fall through
duke@435 1330 case Bytecodes::_dneg :
duke@435 1331 current_frame.pop_stack_2(
duke@435 1332 VerificationType::double2_type(),
duke@435 1333 VerificationType::double_type(), CHECK_VERIFY(this));
duke@435 1334 current_frame.push_stack_2(
duke@435 1335 VerificationType::double_type(),
duke@435 1336 VerificationType::double2_type(), CHECK_VERIFY(this));
duke@435 1337 no_control_flow = false; break;
duke@435 1338 case Bytecodes::_iinc :
duke@435 1339 verify_iinc(bcs.get_index(), &current_frame, CHECK_VERIFY(this));
duke@435 1340 no_control_flow = false; break;
duke@435 1341 case Bytecodes::_i2l :
duke@435 1342 type = current_frame.pop_stack(
duke@435 1343 VerificationType::integer_type(), CHECK_VERIFY(this));
duke@435 1344 current_frame.push_stack_2(
duke@435 1345 VerificationType::long_type(),
duke@435 1346 VerificationType::long2_type(), CHECK_VERIFY(this));
duke@435 1347 no_control_flow = false; break;
duke@435 1348 case Bytecodes::_l2i :
duke@435 1349 current_frame.pop_stack_2(
duke@435 1350 VerificationType::long2_type(),
duke@435 1351 VerificationType::long_type(), CHECK_VERIFY(this));
duke@435 1352 current_frame.push_stack(
duke@435 1353 VerificationType::integer_type(), CHECK_VERIFY(this));
duke@435 1354 no_control_flow = false; break;
duke@435 1355 case Bytecodes::_i2f :
duke@435 1356 current_frame.pop_stack(
duke@435 1357 VerificationType::integer_type(), CHECK_VERIFY(this));
duke@435 1358 current_frame.push_stack(
duke@435 1359 VerificationType::float_type(), CHECK_VERIFY(this));
duke@435 1360 no_control_flow = false; break;
duke@435 1361 case Bytecodes::_i2d :
duke@435 1362 current_frame.pop_stack(
duke@435 1363 VerificationType::integer_type(), CHECK_VERIFY(this));
duke@435 1364 current_frame.push_stack_2(
duke@435 1365 VerificationType::double_type(),
duke@435 1366 VerificationType::double2_type(), CHECK_VERIFY(this));
duke@435 1367 no_control_flow = false; break;
duke@435 1368 case Bytecodes::_l2f :
duke@435 1369 current_frame.pop_stack_2(
duke@435 1370 VerificationType::long2_type(),
duke@435 1371 VerificationType::long_type(), CHECK_VERIFY(this));
duke@435 1372 current_frame.push_stack(
duke@435 1373 VerificationType::float_type(), CHECK_VERIFY(this));
duke@435 1374 no_control_flow = false; break;
duke@435 1375 case Bytecodes::_l2d :
duke@435 1376 current_frame.pop_stack_2(
duke@435 1377 VerificationType::long2_type(),
duke@435 1378 VerificationType::long_type(), CHECK_VERIFY(this));
duke@435 1379 current_frame.push_stack_2(
duke@435 1380 VerificationType::double_type(),
duke@435 1381 VerificationType::double2_type(), CHECK_VERIFY(this));
duke@435 1382 no_control_flow = false; break;
duke@435 1383 case Bytecodes::_f2i :
duke@435 1384 current_frame.pop_stack(
duke@435 1385 VerificationType::float_type(), CHECK_VERIFY(this));
duke@435 1386 current_frame.push_stack(
duke@435 1387 VerificationType::integer_type(), CHECK_VERIFY(this));
duke@435 1388 no_control_flow = false; break;
duke@435 1389 case Bytecodes::_f2l :
duke@435 1390 current_frame.pop_stack(
duke@435 1391 VerificationType::float_type(), CHECK_VERIFY(this));
duke@435 1392 current_frame.push_stack_2(
duke@435 1393 VerificationType::long_type(),
duke@435 1394 VerificationType::long2_type(), CHECK_VERIFY(this));
duke@435 1395 no_control_flow = false; break;
duke@435 1396 case Bytecodes::_f2d :
duke@435 1397 current_frame.pop_stack(
duke@435 1398 VerificationType::float_type(), CHECK_VERIFY(this));
duke@435 1399 current_frame.push_stack_2(
duke@435 1400 VerificationType::double_type(),
duke@435 1401 VerificationType::double2_type(), CHECK_VERIFY(this));
duke@435 1402 no_control_flow = false; break;
duke@435 1403 case Bytecodes::_d2i :
duke@435 1404 current_frame.pop_stack_2(
duke@435 1405 VerificationType::double2_type(),
duke@435 1406 VerificationType::double_type(), CHECK_VERIFY(this));
duke@435 1407 current_frame.push_stack(
duke@435 1408 VerificationType::integer_type(), CHECK_VERIFY(this));
duke@435 1409 no_control_flow = false; break;
duke@435 1410 case Bytecodes::_d2l :
duke@435 1411 current_frame.pop_stack_2(
duke@435 1412 VerificationType::double2_type(),
duke@435 1413 VerificationType::double_type(), CHECK_VERIFY(this));
duke@435 1414 current_frame.push_stack_2(
duke@435 1415 VerificationType::long_type(),
duke@435 1416 VerificationType::long2_type(), CHECK_VERIFY(this));
duke@435 1417 no_control_flow = false; break;
duke@435 1418 case Bytecodes::_d2f :
duke@435 1419 current_frame.pop_stack_2(
duke@435 1420 VerificationType::double2_type(),
duke@435 1421 VerificationType::double_type(), CHECK_VERIFY(this));
duke@435 1422 current_frame.push_stack(
duke@435 1423 VerificationType::float_type(), CHECK_VERIFY(this));
duke@435 1424 no_control_flow = false; break;
duke@435 1425 case Bytecodes::_i2b :
duke@435 1426 case Bytecodes::_i2c :
duke@435 1427 case Bytecodes::_i2s :
duke@435 1428 current_frame.pop_stack(
duke@435 1429 VerificationType::integer_type(), CHECK_VERIFY(this));
duke@435 1430 current_frame.push_stack(
duke@435 1431 VerificationType::integer_type(), CHECK_VERIFY(this));
duke@435 1432 no_control_flow = false; break;
duke@435 1433 case Bytecodes::_lcmp :
duke@435 1434 current_frame.pop_stack_2(
duke@435 1435 VerificationType::long2_type(),
duke@435 1436 VerificationType::long_type(), CHECK_VERIFY(this));
duke@435 1437 current_frame.pop_stack_2(
duke@435 1438 VerificationType::long2_type(),
duke@435 1439 VerificationType::long_type(), CHECK_VERIFY(this));
duke@435 1440 current_frame.push_stack(
duke@435 1441 VerificationType::integer_type(), CHECK_VERIFY(this));
duke@435 1442 no_control_flow = false; break;
duke@435 1443 case Bytecodes::_fcmpl :
duke@435 1444 case Bytecodes::_fcmpg :
duke@435 1445 current_frame.pop_stack(
duke@435 1446 VerificationType::float_type(), CHECK_VERIFY(this));
duke@435 1447 current_frame.pop_stack(
duke@435 1448 VerificationType::float_type(), CHECK_VERIFY(this));
duke@435 1449 current_frame.push_stack(
duke@435 1450 VerificationType::integer_type(), CHECK_VERIFY(this));
duke@435 1451 no_control_flow = false; break;
duke@435 1452 case Bytecodes::_dcmpl :
duke@435 1453 case Bytecodes::_dcmpg :
duke@435 1454 current_frame.pop_stack_2(
duke@435 1455 VerificationType::double2_type(),
duke@435 1456 VerificationType::double_type(), CHECK_VERIFY(this));
duke@435 1457 current_frame.pop_stack_2(
duke@435 1458 VerificationType::double2_type(),
duke@435 1459 VerificationType::double_type(), CHECK_VERIFY(this));
duke@435 1460 current_frame.push_stack(
duke@435 1461 VerificationType::integer_type(), CHECK_VERIFY(this));
duke@435 1462 no_control_flow = false; break;
duke@435 1463 case Bytecodes::_if_icmpeq:
duke@435 1464 case Bytecodes::_if_icmpne:
duke@435 1465 case Bytecodes::_if_icmplt:
duke@435 1466 case Bytecodes::_if_icmpge:
duke@435 1467 case Bytecodes::_if_icmpgt:
duke@435 1468 case Bytecodes::_if_icmple:
duke@435 1469 current_frame.pop_stack(
duke@435 1470 VerificationType::integer_type(), CHECK_VERIFY(this));
duke@435 1471 // fall through
duke@435 1472 case Bytecodes::_ifeq:
duke@435 1473 case Bytecodes::_ifne:
duke@435 1474 case Bytecodes::_iflt:
duke@435 1475 case Bytecodes::_ifge:
duke@435 1476 case Bytecodes::_ifgt:
duke@435 1477 case Bytecodes::_ifle:
duke@435 1478 current_frame.pop_stack(
duke@435 1479 VerificationType::integer_type(), CHECK_VERIFY(this));
duke@435 1480 target = bcs.dest();
duke@435 1481 stackmap_table.check_jump_target(
duke@435 1482 &current_frame, target, CHECK_VERIFY(this));
duke@435 1483 no_control_flow = false; break;
duke@435 1484 case Bytecodes::_if_acmpeq :
duke@435 1485 case Bytecodes::_if_acmpne :
duke@435 1486 current_frame.pop_stack(
duke@435 1487 VerificationType::reference_check(), CHECK_VERIFY(this));
duke@435 1488 // fall through
duke@435 1489 case Bytecodes::_ifnull :
duke@435 1490 case Bytecodes::_ifnonnull :
duke@435 1491 current_frame.pop_stack(
duke@435 1492 VerificationType::reference_check(), CHECK_VERIFY(this));
duke@435 1493 target = bcs.dest();
duke@435 1494 stackmap_table.check_jump_target
duke@435 1495 (&current_frame, target, CHECK_VERIFY(this));
duke@435 1496 no_control_flow = false; break;
duke@435 1497 case Bytecodes::_goto :
duke@435 1498 target = bcs.dest();
duke@435 1499 stackmap_table.check_jump_target(
duke@435 1500 &current_frame, target, CHECK_VERIFY(this));
duke@435 1501 no_control_flow = true; break;
duke@435 1502 case Bytecodes::_goto_w :
duke@435 1503 target = bcs.dest_w();
duke@435 1504 stackmap_table.check_jump_target(
duke@435 1505 &current_frame, target, CHECK_VERIFY(this));
duke@435 1506 no_control_flow = true; break;
duke@435 1507 case Bytecodes::_tableswitch :
duke@435 1508 case Bytecodes::_lookupswitch :
duke@435 1509 verify_switch(
duke@435 1510 &bcs, code_length, code_data, &current_frame,
duke@435 1511 &stackmap_table, CHECK_VERIFY(this));
duke@435 1512 no_control_flow = true; break;
duke@435 1513 case Bytecodes::_ireturn :
duke@435 1514 type = current_frame.pop_stack(
duke@435 1515 VerificationType::integer_type(), CHECK_VERIFY(this));
kamg@3992 1516 verify_return_value(return_type, type, bci,
kamg@3992 1517 &current_frame, CHECK_VERIFY(this));
duke@435 1518 no_control_flow = true; break;
duke@435 1519 case Bytecodes::_lreturn :
duke@435 1520 type2 = current_frame.pop_stack(
duke@435 1521 VerificationType::long2_type(), CHECK_VERIFY(this));
duke@435 1522 type = current_frame.pop_stack(
duke@435 1523 VerificationType::long_type(), CHECK_VERIFY(this));
kamg@3992 1524 verify_return_value(return_type, type, bci,
kamg@3992 1525 &current_frame, CHECK_VERIFY(this));
duke@435 1526 no_control_flow = true; break;
duke@435 1527 case Bytecodes::_freturn :
duke@435 1528 type = current_frame.pop_stack(
duke@435 1529 VerificationType::float_type(), CHECK_VERIFY(this));
kamg@3992 1530 verify_return_value(return_type, type, bci,
kamg@3992 1531 &current_frame, CHECK_VERIFY(this));
duke@435 1532 no_control_flow = true; break;
duke@435 1533 case Bytecodes::_dreturn :
duke@435 1534 type2 = current_frame.pop_stack(
duke@435 1535 VerificationType::double2_type(), CHECK_VERIFY(this));
duke@435 1536 type = current_frame.pop_stack(
duke@435 1537 VerificationType::double_type(), CHECK_VERIFY(this));
kamg@3992 1538 verify_return_value(return_type, type, bci,
kamg@3992 1539 &current_frame, CHECK_VERIFY(this));
duke@435 1540 no_control_flow = true; break;
duke@435 1541 case Bytecodes::_areturn :
duke@435 1542 type = current_frame.pop_stack(
duke@435 1543 VerificationType::reference_check(), CHECK_VERIFY(this));
kamg@3992 1544 verify_return_value(return_type, type, bci,
kamg@3992 1545 &current_frame, CHECK_VERIFY(this));
duke@435 1546 no_control_flow = true; break;
duke@435 1547 case Bytecodes::_return :
duke@435 1548 if (return_type != VerificationType::bogus_type()) {
kamg@3992 1549 verify_error(ErrorContext::bad_code(bci),
kamg@3992 1550 "Method expects a return value");
duke@435 1551 return;
duke@435 1552 }
duke@435 1553 // Make sure "this" has been initialized if current method is an
duke@435 1554 // <init>
duke@435 1555 if (_method->name() == vmSymbols::object_initializer_name() &&
duke@435 1556 current_frame.flag_this_uninit()) {
kamg@3992 1557 verify_error(ErrorContext::bad_code(bci),
kamg@3992 1558 "Constructor must call super() or this() "
kamg@3992 1559 "before return");
duke@435 1560 return;
duke@435 1561 }
duke@435 1562 no_control_flow = true; break;
duke@435 1563 case Bytecodes::_getstatic :
duke@435 1564 case Bytecodes::_putstatic :
duke@435 1565 case Bytecodes::_getfield :
duke@435 1566 case Bytecodes::_putfield :
duke@435 1567 verify_field_instructions(
duke@435 1568 &bcs, &current_frame, cp, CHECK_VERIFY(this));
duke@435 1569 no_control_flow = false; break;
duke@435 1570 case Bytecodes::_invokevirtual :
duke@435 1571 case Bytecodes::_invokespecial :
duke@435 1572 case Bytecodes::_invokestatic :
duke@435 1573 verify_invoke_instructions(
hseigel@7473 1574 &bcs, code_length, &current_frame, (bci >= ex_min && bci < ex_max),
hseigel@7473 1575 &this_uninit, return_type, cp, &stackmap_table, CHECK_VERIFY(this));
duke@435 1576 no_control_flow = false; break;
duke@435 1577 case Bytecodes::_invokeinterface :
jrose@1161 1578 case Bytecodes::_invokedynamic :
duke@435 1579 verify_invoke_instructions(
hseigel@7473 1580 &bcs, code_length, &current_frame, (bci >= ex_min && bci < ex_max),
hseigel@7473 1581 &this_uninit, return_type, cp, &stackmap_table, CHECK_VERIFY(this));
duke@435 1582 no_control_flow = false; break;
duke@435 1583 case Bytecodes::_new :
duke@435 1584 {
jrose@1920 1585 index = bcs.get_index_u2();
kamg@3992 1586 verify_cp_class_type(bci, index, cp, CHECK_VERIFY(this));
duke@435 1587 VerificationType new_class_type =
duke@435 1588 cp_index_to_type(index, cp, CHECK_VERIFY(this));
duke@435 1589 if (!new_class_type.is_object()) {
kamg@3992 1590 verify_error(ErrorContext::bad_type(bci,
kamg@3992 1591 TypeOrigin::cp(index, new_class_type)),
kamg@3992 1592 "Illegal new instruction");
duke@435 1593 return;
duke@435 1594 }
duke@435 1595 type = VerificationType::uninitialized_type(bci);
duke@435 1596 current_frame.push_stack(type, CHECK_VERIFY(this));
duke@435 1597 no_control_flow = false; break;
duke@435 1598 }
duke@435 1599 case Bytecodes::_newarray :
duke@435 1600 type = get_newarray_type(bcs.get_index(), bci, CHECK_VERIFY(this));
duke@435 1601 current_frame.pop_stack(
duke@435 1602 VerificationType::integer_type(), CHECK_VERIFY(this));
duke@435 1603 current_frame.push_stack(type, CHECK_VERIFY(this));
duke@435 1604 no_control_flow = false; break;
duke@435 1605 case Bytecodes::_anewarray :
duke@435 1606 verify_anewarray(
kamg@3992 1607 bci, bcs.get_index_u2(), cp, &current_frame, CHECK_VERIFY(this));
duke@435 1608 no_control_flow = false; break;
duke@435 1609 case Bytecodes::_arraylength :
duke@435 1610 type = current_frame.pop_stack(
duke@435 1611 VerificationType::reference_check(), CHECK_VERIFY(this));
kamg@569 1612 if (!(type.is_null() || type.is_array())) {
kamg@3992 1613 verify_error(ErrorContext::bad_type(
kamg@3992 1614 bci, current_frame.stack_top_ctx()),
kamg@3992 1615 bad_type_msg, "arraylength");
duke@435 1616 }
duke@435 1617 current_frame.push_stack(
duke@435 1618 VerificationType::integer_type(), CHECK_VERIFY(this));
duke@435 1619 no_control_flow = false; break;
duke@435 1620 case Bytecodes::_checkcast :
duke@435 1621 {
jrose@1920 1622 index = bcs.get_index_u2();
kamg@3992 1623 verify_cp_class_type(bci, index, cp, CHECK_VERIFY(this));
kamg@2297 1624 current_frame.pop_stack(object_type(), CHECK_VERIFY(this));
duke@435 1625 VerificationType klass_type = cp_index_to_type(
duke@435 1626 index, cp, CHECK_VERIFY(this));
duke@435 1627 current_frame.push_stack(klass_type, CHECK_VERIFY(this));
duke@435 1628 no_control_flow = false; break;
duke@435 1629 }
duke@435 1630 case Bytecodes::_instanceof : {
jrose@1920 1631 index = bcs.get_index_u2();
kamg@3992 1632 verify_cp_class_type(bci, index, cp, CHECK_VERIFY(this));
kamg@2297 1633 current_frame.pop_stack(object_type(), CHECK_VERIFY(this));
duke@435 1634 current_frame.push_stack(
duke@435 1635 VerificationType::integer_type(), CHECK_VERIFY(this));
duke@435 1636 no_control_flow = false; break;
duke@435 1637 }
duke@435 1638 case Bytecodes::_monitorenter :
duke@435 1639 case Bytecodes::_monitorexit :
duke@435 1640 current_frame.pop_stack(
duke@435 1641 VerificationType::reference_check(), CHECK_VERIFY(this));
duke@435 1642 no_control_flow = false; break;
duke@435 1643 case Bytecodes::_multianewarray :
duke@435 1644 {
jrose@1920 1645 index = bcs.get_index_u2();
duke@435 1646 u2 dim = *(bcs.bcp()+3);
kamg@3992 1647 verify_cp_class_type(bci, index, cp, CHECK_VERIFY(this));
duke@435 1648 VerificationType new_array_type =
duke@435 1649 cp_index_to_type(index, cp, CHECK_VERIFY(this));
duke@435 1650 if (!new_array_type.is_array()) {
kamg@3992 1651 verify_error(ErrorContext::bad_type(bci,
kamg@3992 1652 TypeOrigin::cp(index, new_array_type)),
kamg@3992 1653 "Illegal constant pool index in multianewarray instruction");
duke@435 1654 return;
duke@435 1655 }
duke@435 1656 if (dim < 1 || new_array_type.dimensions() < dim) {
kamg@3992 1657 verify_error(ErrorContext::bad_code(bci),
kamg@3992 1658 "Illegal dimension in multianewarray instruction: %d", dim);
duke@435 1659 return;
duke@435 1660 }
duke@435 1661 for (int i = 0; i < dim; i++) {
duke@435 1662 current_frame.pop_stack(
duke@435 1663 VerificationType::integer_type(), CHECK_VERIFY(this));
duke@435 1664 }
duke@435 1665 current_frame.push_stack(new_array_type, CHECK_VERIFY(this));
duke@435 1666 no_control_flow = false; break;
duke@435 1667 }
duke@435 1668 case Bytecodes::_athrow :
duke@435 1669 type = VerificationType::reference_type(
duke@435 1670 vmSymbols::java_lang_Throwable());
duke@435 1671 current_frame.pop_stack(type, CHECK_VERIFY(this));
duke@435 1672 no_control_flow = true; break;
duke@435 1673 default:
duke@435 1674 // We only need to check the valid bytecodes in class file.
duke@435 1675 // And jsr and ret are not in the new class file format in JDK1.5.
kamg@3992 1676 verify_error(ErrorContext::bad_code(bci),
kamg@3992 1677 "Bad instruction: %02x", opcode);
duke@435 1678 no_control_flow = false;
duke@435 1679 return;
duke@435 1680 } // end switch
duke@435 1681 } // end Merge with the next instruction
duke@435 1682
hseigel@7666 1683 // Look for possible jump target in exception handlers and see if it matches
hseigel@7666 1684 // current_frame. Don't do this check if it has already been done (for
hseigel@7666 1685 // ([a,d,f,i,l]store* opcodes). This check cannot be done earlier because
hseigel@7666 1686 // opcodes, such as invokespecial, may set the this_uninit flag.
hseigel@7666 1687 assert(!(verified_exc_handlers && this_uninit),
hseigel@7666 1688 "Exception handler targets got verified before this_uninit got set");
hseigel@7666 1689 if (!verified_exc_handlers && bci >= ex_min && bci < ex_max) {
duke@435 1690 verify_exception_handler_targets(
duke@435 1691 bci, this_uninit, &current_frame, &stackmap_table, CHECK_VERIFY(this));
duke@435 1692 }
duke@435 1693 } // end while
duke@435 1694
duke@435 1695 // Make sure that control flow does not fall through end of the method
duke@435 1696 if (!no_control_flow) {
kamg@3992 1697 verify_error(ErrorContext::bad_code(code_length),
kamg@3992 1698 "Control flow falls through code end");
duke@435 1699 return;
duke@435 1700 }
duke@435 1701 }
duke@435 1702
drchase@6680 1703 #undef bad_type_message
drchase@6680 1704
duke@435 1705 char* ClassVerifier::generate_code_data(methodHandle m, u4 code_length, TRAPS) {
duke@435 1706 char* code_data = NEW_RESOURCE_ARRAY(char, code_length);
duke@435 1707 memset(code_data, 0, sizeof(char) * code_length);
duke@435 1708 RawBytecodeStream bcs(m);
duke@435 1709
duke@435 1710 while (!bcs.is_last_bytecode()) {
duke@435 1711 if (bcs.raw_next() != Bytecodes::_illegal) {
duke@435 1712 int bci = bcs.bci();
jrose@1920 1713 if (bcs.raw_code() == Bytecodes::_new) {
duke@435 1714 code_data[bci] = NEW_OFFSET;
duke@435 1715 } else {
duke@435 1716 code_data[bci] = BYTECODE_OFFSET;
duke@435 1717 }
duke@435 1718 } else {
kamg@3992 1719 verify_error(ErrorContext::bad_code(bcs.bci()), "Bad instruction");
duke@435 1720 return NULL;
duke@435 1721 }
duke@435 1722 }
duke@435 1723
duke@435 1724 return code_data;
duke@435 1725 }
duke@435 1726
duke@435 1727 void ClassVerifier::verify_exception_handler_table(u4 code_length, char* code_data, int& min, int& max, TRAPS) {
jiangli@3917 1728 ExceptionTable exhandlers(_method());
jiangli@3917 1729 int exlength = exhandlers.length();
duke@435 1730 constantPoolHandle cp (THREAD, _method->constants());
duke@435 1731
jiangli@3917 1732 for(int i = 0; i < exlength; i++) {
jiangli@3917 1733 //reacquire the table in case a GC happened
jiangli@3917 1734 ExceptionTable exhandlers(_method());
jiangli@3917 1735 u2 start_pc = exhandlers.start_pc(i);
jiangli@3917 1736 u2 end_pc = exhandlers.end_pc(i);
jiangli@3917 1737 u2 handler_pc = exhandlers.handler_pc(i);
jiangli@3917 1738 if (start_pc >= code_length || code_data[start_pc] == 0) {
jiangli@3917 1739 class_format_error("Illegal exception table start_pc %d", start_pc);
jiangli@3917 1740 return;
jiangli@3917 1741 }
jiangli@3917 1742 if (end_pc != code_length) { // special case: end_pc == code_length
jiangli@3917 1743 if (end_pc > code_length || code_data[end_pc] == 0) {
jiangli@3917 1744 class_format_error("Illegal exception table end_pc %d", end_pc);
duke@435 1745 return;
duke@435 1746 }
jiangli@3917 1747 }
jiangli@3917 1748 if (handler_pc >= code_length || code_data[handler_pc] == 0) {
jiangli@3917 1749 class_format_error("Illegal exception table handler_pc %d", handler_pc);
jiangli@3917 1750 return;
jiangli@3917 1751 }
jiangli@3917 1752 int catch_type_index = exhandlers.catch_type_index(i);
jiangli@3917 1753 if (catch_type_index != 0) {
jiangli@3917 1754 VerificationType catch_type = cp_index_to_type(
jiangli@3917 1755 catch_type_index, cp, CHECK_VERIFY(this));
jiangli@3917 1756 VerificationType throwable =
jiangli@3917 1757 VerificationType::reference_type(vmSymbols::java_lang_Throwable());
jiangli@3917 1758 bool is_subclass = throwable.is_assignable_from(
hseigel@6824 1759 catch_type, this, false, CHECK_VERIFY(this));
jiangli@3917 1760 if (!is_subclass) {
jiangli@3917 1761 // 4286534: should throw VerifyError according to recent spec change
kamg@3992 1762 verify_error(ErrorContext::bad_type(handler_pc,
kamg@3992 1763 TypeOrigin::cp(catch_type_index, catch_type),
kamg@3992 1764 TypeOrigin::implicit(throwable)),
kamg@3992 1765 "Catch type is not a subclass "
kamg@3992 1766 "of Throwable in exception handler %d", handler_pc);
duke@435 1767 return;
duke@435 1768 }
duke@435 1769 }
jiangli@3917 1770 if (start_pc < min) min = start_pc;
jiangli@3917 1771 if (end_pc > max) max = end_pc;
duke@435 1772 }
duke@435 1773 }
duke@435 1774
duke@435 1775 void ClassVerifier::verify_local_variable_table(u4 code_length, char* code_data, TRAPS) {
duke@435 1776 int localvariable_table_length = _method()->localvariable_table_length();
duke@435 1777 if (localvariable_table_length > 0) {
duke@435 1778 LocalVariableTableElement* table = _method()->localvariable_table_start();
duke@435 1779 for (int i = 0; i < localvariable_table_length; i++) {
duke@435 1780 u2 start_bci = table[i].start_bci;
duke@435 1781 u2 length = table[i].length;
duke@435 1782
duke@435 1783 if (start_bci >= code_length || code_data[start_bci] == 0) {
duke@435 1784 class_format_error(
duke@435 1785 "Illegal local variable table start_pc %d", start_bci);
duke@435 1786 return;
duke@435 1787 }
duke@435 1788 u4 end_bci = (u4)(start_bci + length);
duke@435 1789 if (end_bci != code_length) {
duke@435 1790 if (end_bci >= code_length || code_data[end_bci] == 0) {
duke@435 1791 class_format_error( "Illegal local variable table length %d", length);
duke@435 1792 return;
duke@435 1793 }
duke@435 1794 }
duke@435 1795 }
duke@435 1796 }
duke@435 1797 }
duke@435 1798
duke@435 1799 u2 ClassVerifier::verify_stackmap_table(u2 stackmap_index, u2 bci,
duke@435 1800 StackMapFrame* current_frame,
duke@435 1801 StackMapTable* stackmap_table,
duke@435 1802 bool no_control_flow, TRAPS) {
duke@435 1803 if (stackmap_index < stackmap_table->get_frame_count()) {
duke@435 1804 u2 this_offset = stackmap_table->get_offset(stackmap_index);
duke@435 1805 if (no_control_flow && this_offset > bci) {
kamg@3992 1806 verify_error(ErrorContext::missing_stackmap(bci),
kamg@3992 1807 "Expecting a stack map frame");
duke@435 1808 return 0;
duke@435 1809 }
duke@435 1810 if (this_offset == bci) {
kamg@3992 1811 ErrorContext ctx;
duke@435 1812 // See if current stack map can be assigned to the frame in table.
duke@435 1813 // current_frame is the stackmap frame got from the last instruction.
duke@435 1814 // If matched, current_frame will be updated by this method.
kamg@3992 1815 bool matches = stackmap_table->match_stackmap(
duke@435 1816 current_frame, this_offset, stackmap_index,
kevinw@8703 1817 !no_control_flow, true, &ctx, CHECK_VERIFY_(this, 0));
kamg@3992 1818 if (!matches) {
duke@435 1819 // report type error
kamg@3992 1820 verify_error(ctx, "Instruction type does not match stack map");
duke@435 1821 return 0;
duke@435 1822 }
duke@435 1823 stackmap_index++;
duke@435 1824 } else if (this_offset < bci) {
duke@435 1825 // current_offset should have met this_offset.
duke@435 1826 class_format_error("Bad stack map offset %d", this_offset);
duke@435 1827 return 0;
duke@435 1828 }
duke@435 1829 } else if (no_control_flow) {
kamg@3992 1830 verify_error(ErrorContext::bad_code(bci), "Expecting a stack map frame");
duke@435 1831 return 0;
duke@435 1832 }
duke@435 1833 return stackmap_index;
duke@435 1834 }
duke@435 1835
duke@435 1836 void ClassVerifier::verify_exception_handler_targets(u2 bci, bool this_uninit, StackMapFrame* current_frame,
duke@435 1837 StackMapTable* stackmap_table, TRAPS) {
duke@435 1838 constantPoolHandle cp (THREAD, _method->constants());
jiangli@3917 1839 ExceptionTable exhandlers(_method());
jiangli@3917 1840 int exlength = exhandlers.length();
jiangli@3917 1841 for(int i = 0; i < exlength; i++) {
jiangli@3917 1842 //reacquire the table in case a GC happened
jiangli@3917 1843 ExceptionTable exhandlers(_method());
jiangli@3917 1844 u2 start_pc = exhandlers.start_pc(i);
jiangli@3917 1845 u2 end_pc = exhandlers.end_pc(i);
jiangli@3917 1846 u2 handler_pc = exhandlers.handler_pc(i);
jiangli@3917 1847 int catch_type_index = exhandlers.catch_type_index(i);
jiangli@3917 1848 if(bci >= start_pc && bci < end_pc) {
jiangli@3917 1849 u1 flags = current_frame->flags();
jiangli@3917 1850 if (this_uninit) { flags |= FLAG_THIS_UNINIT; }
jiangli@3917 1851 StackMapFrame* new_frame = current_frame->frame_in_exception_handler(flags);
jiangli@3917 1852 if (catch_type_index != 0) {
jiangli@3917 1853 // We know that this index refers to a subclass of Throwable
jiangli@3917 1854 VerificationType catch_type = cp_index_to_type(
jiangli@3917 1855 catch_type_index, cp, CHECK_VERIFY(this));
jiangli@3917 1856 new_frame->push_stack(catch_type, CHECK_VERIFY(this));
jiangli@3917 1857 } else {
jiangli@3917 1858 VerificationType throwable =
jiangli@3917 1859 VerificationType::reference_type(vmSymbols::java_lang_Throwable());
jiangli@3917 1860 new_frame->push_stack(throwable, CHECK_VERIFY(this));
jiangli@3917 1861 }
kamg@3992 1862 ErrorContext ctx;
kamg@3992 1863 bool matches = stackmap_table->match_stackmap(
kevinw@8703 1864 new_frame, handler_pc, true, false, &ctx, CHECK_VERIFY(this));
kamg@3992 1865 if (!matches) {
kamg@3992 1866 verify_error(ctx, "Stack map does not match the one at "
kamg@3992 1867 "exception handler %d", handler_pc);
jiangli@3917 1868 return;
duke@435 1869 }
duke@435 1870 }
duke@435 1871 }
duke@435 1872 }
duke@435 1873
kamg@3992 1874 void ClassVerifier::verify_cp_index(
kamg@3992 1875 u2 bci, constantPoolHandle cp, int index, TRAPS) {
duke@435 1876 int nconstants = cp->length();
duke@435 1877 if ((index <= 0) || (index >= nconstants)) {
kamg@3992 1878 verify_error(ErrorContext::bad_cp_index(bci, index),
kamg@3992 1879 "Illegal constant pool index %d in class %s",
coleenp@4251 1880 index, cp->pool_holder()->external_name());
duke@435 1881 return;
duke@435 1882 }
duke@435 1883 }
duke@435 1884
duke@435 1885 void ClassVerifier::verify_cp_type(
kamg@3992 1886 u2 bci, int index, constantPoolHandle cp, unsigned int types, TRAPS) {
duke@435 1887
duke@435 1888 // In some situations, bytecode rewriting may occur while we're verifying.
duke@435 1889 // In this case, a constant pool cache exists and some indices refer to that
jrose@1925 1890 // instead. Be sure we don't pick up such indices by accident.
jrose@1925 1891 // We must check was_recursively_verified() before we get here.
jrose@1925 1892 guarantee(cp->cache() == NULL, "not rewritten yet");
duke@435 1893
kamg@3992 1894 verify_cp_index(bci, cp, index, CHECK_VERIFY(this));
duke@435 1895 unsigned int tag = cp->tag_at(index).value();
duke@435 1896 if ((types & (1 << tag)) == 0) {
kamg@3992 1897 verify_error(ErrorContext::bad_cp_index(bci, index),
duke@435 1898 "Illegal type at constant pool entry %d in class %s",
coleenp@4251 1899 index, cp->pool_holder()->external_name());
duke@435 1900 return;
duke@435 1901 }
duke@435 1902 }
duke@435 1903
duke@435 1904 void ClassVerifier::verify_cp_class_type(
kamg@3992 1905 u2 bci, int index, constantPoolHandle cp, TRAPS) {
kamg@3992 1906 verify_cp_index(bci, cp, index, CHECK_VERIFY(this));
duke@435 1907 constantTag tag = cp->tag_at(index);
duke@435 1908 if (!tag.is_klass() && !tag.is_unresolved_klass()) {
kamg@3992 1909 verify_error(ErrorContext::bad_cp_index(bci, index),
kamg@3992 1910 "Illegal type at constant pool entry %d in class %s",
coleenp@4251 1911 index, cp->pool_holder()->external_name());
duke@435 1912 return;
duke@435 1913 }
duke@435 1914 }
duke@435 1915
kamg@3992 1916 void ClassVerifier::verify_error(ErrorContext ctx, const char* msg, ...) {
kamg@3992 1917 stringStream ss;
duke@435 1918
kamg@3992 1919 ctx.reset_frames();
duke@435 1920 _exception_type = vmSymbols::java_lang_VerifyError();
kamg@3992 1921 _error_context = ctx;
duke@435 1922 va_list va;
kamg@3992 1923 va_start(va, msg);
kamg@3992 1924 ss.vprint(msg, va);
duke@435 1925 va_end(va);
kamg@3992 1926 _message = ss.as_string();
kamg@3992 1927 #ifdef ASSERT
kamg@3992 1928 ResourceMark rm;
kamg@3992 1929 const char* exception_name = _exception_type->as_C_string();
kamg@3992 1930 Exceptions::debug_check_abort(exception_name, NULL);
kamg@3992 1931 #endif // ndef ASSERT
duke@435 1932 }
duke@435 1933
duke@435 1934 void ClassVerifier::class_format_error(const char* msg, ...) {
kamg@3992 1935 stringStream ss;
duke@435 1936 _exception_type = vmSymbols::java_lang_ClassFormatError();
duke@435 1937 va_list va;
duke@435 1938 va_start(va, msg);
kamg@3992 1939 ss.vprint(msg, va);
duke@435 1940 va_end(va);
kamg@3992 1941 if (!_method.is_null()) {
kamg@3992 1942 ss.print(" in method %s", _method->name_and_sig_as_C_string());
kamg@3992 1943 }
kamg@3992 1944 _message = ss.as_string();
duke@435 1945 }
duke@435 1946
coleenp@4037 1947 Klass* ClassVerifier::load_class(Symbol* name, TRAPS) {
duke@435 1948 // Get current loader and protection domain first.
duke@435 1949 oop loader = current_class()->class_loader();
duke@435 1950 oop protection_domain = current_class()->protection_domain();
duke@435 1951
coleenp@9530 1952 return SystemDictionary::resolve_or_fail(
duke@435 1953 name, Handle(THREAD, loader), Handle(THREAD, protection_domain),
duke@435 1954 true, CHECK_NULL);
duke@435 1955 }
duke@435 1956
duke@435 1957 bool ClassVerifier::is_protected_access(instanceKlassHandle this_class,
coleenp@4037 1958 Klass* target_class,
coleenp@2497 1959 Symbol* field_name,
coleenp@2497 1960 Symbol* field_sig,
duke@435 1961 bool is_method) {
duke@435 1962 No_Safepoint_Verifier nosafepoint;
duke@435 1963
duke@435 1964 // If target class isn't a super class of this class, we don't worry about this case
duke@435 1965 if (!this_class->is_subclass_of(target_class)) {
duke@435 1966 return false;
duke@435 1967 }
duke@435 1968 // Check if the specified method or field is protected
coleenp@4037 1969 InstanceKlass* target_instance = InstanceKlass::cast(target_class);
duke@435 1970 fieldDescriptor fd;
duke@435 1971 if (is_method) {
dbuck@8716 1972 Method* m = target_instance->uncached_lookup_method(field_name, field_sig, Klass::find_overpass);
duke@435 1973 if (m != NULL && m->is_protected()) {
duke@435 1974 if (!this_class->is_same_class_package(m->method_holder())) {
duke@435 1975 return true;
duke@435 1976 }
duke@435 1977 }
duke@435 1978 } else {
coleenp@4037 1979 Klass* member_klass = target_instance->find_field(field_name, field_sig, &fd);
kamg@3992 1980 if (member_klass != NULL && fd.is_protected()) {
duke@435 1981 if (!this_class->is_same_class_package(member_klass)) {
duke@435 1982 return true;
duke@435 1983 }
duke@435 1984 }
duke@435 1985 }
duke@435 1986 return false;
duke@435 1987 }
duke@435 1988
duke@435 1989 void ClassVerifier::verify_ldc(
kamg@3992 1990 int opcode, u2 index, StackMapFrame* current_frame,
kamg@3992 1991 constantPoolHandle cp, u2 bci, TRAPS) {
kamg@3992 1992 verify_cp_index(bci, cp, index, CHECK_VERIFY(this));
duke@435 1993 constantTag tag = cp->tag_at(index);
duke@435 1994 unsigned int types;
duke@435 1995 if (opcode == Bytecodes::_ldc || opcode == Bytecodes::_ldc_w) {
coleenp@4037 1996 if (!tag.is_unresolved_klass()) {
duke@435 1997 types = (1 << JVM_CONSTANT_Integer) | (1 << JVM_CONSTANT_Float)
jrose@1957 1998 | (1 << JVM_CONSTANT_String) | (1 << JVM_CONSTANT_Class)
jrose@1957 1999 | (1 << JVM_CONSTANT_MethodHandle) | (1 << JVM_CONSTANT_MethodType);
jrose@1957 2000 // Note: The class file parser already verified the legality of
jrose@1957 2001 // MethodHandle and MethodType constants.
kamg@3992 2002 verify_cp_type(bci, index, cp, types, CHECK_VERIFY(this));
duke@435 2003 }
duke@435 2004 } else {
duke@435 2005 assert(opcode == Bytecodes::_ldc2_w, "must be ldc2_w");
duke@435 2006 types = (1 << JVM_CONSTANT_Double) | (1 << JVM_CONSTANT_Long);
kamg@3992 2007 verify_cp_type(bci, index, cp, types, CHECK_VERIFY(this));
duke@435 2008 }
jrose@866 2009 if (tag.is_string() && cp->is_pseudo_string_at(index)) {
kamg@2297 2010 current_frame->push_stack(object_type(), CHECK_VERIFY(this));
coleenp@4037 2011 } else if (tag.is_string()) {
duke@435 2012 current_frame->push_stack(
duke@435 2013 VerificationType::reference_type(
duke@435 2014 vmSymbols::java_lang_String()), CHECK_VERIFY(this));
duke@435 2015 } else if (tag.is_klass() || tag.is_unresolved_klass()) {
duke@435 2016 current_frame->push_stack(
duke@435 2017 VerificationType::reference_type(
duke@435 2018 vmSymbols::java_lang_Class()), CHECK_VERIFY(this));
duke@435 2019 } else if (tag.is_int()) {
duke@435 2020 current_frame->push_stack(
duke@435 2021 VerificationType::integer_type(), CHECK_VERIFY(this));
duke@435 2022 } else if (tag.is_float()) {
duke@435 2023 current_frame->push_stack(
duke@435 2024 VerificationType::float_type(), CHECK_VERIFY(this));
duke@435 2025 } else if (tag.is_double()) {
duke@435 2026 current_frame->push_stack_2(
duke@435 2027 VerificationType::double_type(),
duke@435 2028 VerificationType::double2_type(), CHECK_VERIFY(this));
duke@435 2029 } else if (tag.is_long()) {
duke@435 2030 current_frame->push_stack_2(
duke@435 2031 VerificationType::long_type(),
duke@435 2032 VerificationType::long2_type(), CHECK_VERIFY(this));
jrose@1957 2033 } else if (tag.is_method_handle()) {
jrose@1957 2034 current_frame->push_stack(
jrose@1957 2035 VerificationType::reference_type(
jrose@2742 2036 vmSymbols::java_lang_invoke_MethodHandle()), CHECK_VERIFY(this));
jrose@1957 2037 } else if (tag.is_method_type()) {
jrose@1957 2038 current_frame->push_stack(
jrose@1957 2039 VerificationType::reference_type(
jrose@2742 2040 vmSymbols::java_lang_invoke_MethodType()), CHECK_VERIFY(this));
duke@435 2041 } else {
kamg@3992 2042 /* Unreachable? verify_cp_type has already validated the cp type. */
kamg@3992 2043 verify_error(
kamg@3992 2044 ErrorContext::bad_cp_index(bci, index), "Invalid index in ldc");
duke@435 2045 return;
duke@435 2046 }
duke@435 2047 }
duke@435 2048
duke@435 2049 void ClassVerifier::verify_switch(
duke@435 2050 RawBytecodeStream* bcs, u4 code_length, char* code_data,
duke@435 2051 StackMapFrame* current_frame, StackMapTable* stackmap_table, TRAPS) {
duke@435 2052 int bci = bcs->bci();
duke@435 2053 address bcp = bcs->bcp();
duke@435 2054 address aligned_bcp = (address) round_to((intptr_t)(bcp + 1), jintSize);
duke@435 2055
hseigel@4816 2056 if (_klass->major_version() < NONZERO_PADDING_BYTES_IN_SWITCH_MAJOR_VERSION) {
hseigel@4816 2057 // 4639449 & 4647081: padding bytes must be 0
hseigel@4816 2058 u2 padding_offset = 1;
hseigel@4816 2059 while ((bcp + padding_offset) < aligned_bcp) {
hseigel@4816 2060 if(*(bcp + padding_offset) != 0) {
hseigel@4816 2061 verify_error(ErrorContext::bad_code(bci),
hseigel@4816 2062 "Nonzero padding byte in lookswitch or tableswitch");
hseigel@4816 2063 return;
hseigel@4816 2064 }
hseigel@4816 2065 padding_offset++;
duke@435 2066 }
duke@435 2067 }
hseigel@4816 2068
duke@435 2069 int default_offset = (int) Bytes::get_Java_u4(aligned_bcp);
duke@435 2070 int keys, delta;
duke@435 2071 current_frame->pop_stack(
duke@435 2072 VerificationType::integer_type(), CHECK_VERIFY(this));
jrose@1920 2073 if (bcs->raw_code() == Bytecodes::_tableswitch) {
duke@435 2074 jint low = (jint)Bytes::get_Java_u4(aligned_bcp + jintSize);
duke@435 2075 jint high = (jint)Bytes::get_Java_u4(aligned_bcp + 2*jintSize);
duke@435 2076 if (low > high) {
kamg@3992 2077 verify_error(ErrorContext::bad_code(bci),
kamg@3992 2078 "low must be less than or equal to high in tableswitch");
duke@435 2079 return;
duke@435 2080 }
duke@435 2081 keys = high - low + 1;
duke@435 2082 if (keys < 0) {
kamg@3992 2083 verify_error(ErrorContext::bad_code(bci), "too many keys in tableswitch");
duke@435 2084 return;
duke@435 2085 }
duke@435 2086 delta = 1;
duke@435 2087 } else {
duke@435 2088 keys = (int)Bytes::get_Java_u4(aligned_bcp + jintSize);
duke@435 2089 if (keys < 0) {
kamg@3992 2090 verify_error(ErrorContext::bad_code(bci),
kamg@3992 2091 "number of keys in lookupswitch less than 0");
duke@435 2092 return;
duke@435 2093 }
duke@435 2094 delta = 2;
duke@435 2095 // Make sure that the lookupswitch items are sorted
duke@435 2096 for (int i = 0; i < (keys - 1); i++) {
duke@435 2097 jint this_key = Bytes::get_Java_u4(aligned_bcp + (2+2*i)*jintSize);
duke@435 2098 jint next_key = Bytes::get_Java_u4(aligned_bcp + (2+2*i+2)*jintSize);
duke@435 2099 if (this_key >= next_key) {
kamg@3992 2100 verify_error(ErrorContext::bad_code(bci),
kamg@3992 2101 "Bad lookupswitch instruction");
duke@435 2102 return;
duke@435 2103 }
duke@435 2104 }
duke@435 2105 }
duke@435 2106 int target = bci + default_offset;
duke@435 2107 stackmap_table->check_jump_target(current_frame, target, CHECK_VERIFY(this));
duke@435 2108 for (int i = 0; i < keys; i++) {
kamg@3821 2109 // Because check_jump_target() may safepoint, the bytecode could have
kamg@3821 2110 // moved, which means 'aligned_bcp' is no good and needs to be recalculated.
kamg@3821 2111 aligned_bcp = (address)round_to((intptr_t)(bcs->bcp() + 1), jintSize);
duke@435 2112 target = bci + (jint)Bytes::get_Java_u4(aligned_bcp+(3+i*delta)*jintSize);
duke@435 2113 stackmap_table->check_jump_target(
duke@435 2114 current_frame, target, CHECK_VERIFY(this));
duke@435 2115 }
kamg@3821 2116 NOT_PRODUCT(aligned_bcp = NULL); // no longer valid at this point
duke@435 2117 }
duke@435 2118
duke@435 2119 bool ClassVerifier::name_in_supers(
coleenp@2497 2120 Symbol* ref_name, instanceKlassHandle current) {
coleenp@4037 2121 Klass* super = current->super();
duke@435 2122 while (super != NULL) {
coleenp@4037 2123 if (super->name() == ref_name) {
duke@435 2124 return true;
duke@435 2125 }
coleenp@4037 2126 super = super->super();
duke@435 2127 }
duke@435 2128 return false;
duke@435 2129 }
duke@435 2130
duke@435 2131 void ClassVerifier::verify_field_instructions(RawBytecodeStream* bcs,
duke@435 2132 StackMapFrame* current_frame,
duke@435 2133 constantPoolHandle cp,
duke@435 2134 TRAPS) {
jrose@1920 2135 u2 index = bcs->get_index_u2();
kamg@3992 2136 verify_cp_type(bcs->bci(), index, cp,
kamg@3992 2137 1 << JVM_CONSTANT_Fieldref, CHECK_VERIFY(this));
duke@435 2138
duke@435 2139 // Get field name and signature
coleenp@2497 2140 Symbol* field_name = cp->name_ref_at(index);
coleenp@2497 2141 Symbol* field_sig = cp->signature_ref_at(index);
duke@435 2142
duke@435 2143 if (!SignatureVerifier::is_valid_type_signature(field_sig)) {
duke@435 2144 class_format_error(
duke@435 2145 "Invalid signature for field in class %s referenced "
duke@435 2146 "from constant pool index %d", _klass->external_name(), index);
duke@435 2147 return;
duke@435 2148 }
duke@435 2149
duke@435 2150 // Get referenced class type
duke@435 2151 VerificationType ref_class_type = cp_ref_index_to_type(
duke@435 2152 index, cp, CHECK_VERIFY(this));
duke@435 2153 if (!ref_class_type.is_object()) {
kamg@3992 2154 /* Unreachable? Class file parser verifies Fieldref contents */
kamg@3992 2155 verify_error(ErrorContext::bad_type(bcs->bci(),
kamg@3992 2156 TypeOrigin::cp(index, ref_class_type)),
kamg@3992 2157 "Expecting reference to class in class %s at constant pool index %d",
kamg@3992 2158 _klass->external_name(), index);
duke@435 2159 return;
duke@435 2160 }
duke@435 2161 VerificationType target_class_type = ref_class_type;
duke@435 2162
duke@435 2163 assert(sizeof(VerificationType) == sizeof(uintptr_t),
duke@435 2164 "buffer type must match VerificationType size");
duke@435 2165 uintptr_t field_type_buffer[2];
duke@435 2166 VerificationType* field_type = (VerificationType*)field_type_buffer;
duke@435 2167 // If we make a VerificationType[2] array directly, the compiler calls
duke@435 2168 // to the c-runtime library to do the allocation instead of just
duke@435 2169 // stack allocating it. Plus it would run constructors. This shows up
duke@435 2170 // in performance profiles.
duke@435 2171
duke@435 2172 SignatureStream sig_stream(field_sig, false);
duke@435 2173 VerificationType stack_object_type;
duke@435 2174 int n = change_sig_to_verificationType(
duke@435 2175 &sig_stream, field_type, CHECK_VERIFY(this));
duke@435 2176 u2 bci = bcs->bci();
duke@435 2177 bool is_assignable;
jrose@1920 2178 switch (bcs->raw_code()) {
duke@435 2179 case Bytecodes::_getstatic: {
duke@435 2180 for (int i = 0; i < n; i++) {
duke@435 2181 current_frame->push_stack(field_type[i], CHECK_VERIFY(this));
duke@435 2182 }
duke@435 2183 break;
duke@435 2184 }
duke@435 2185 case Bytecodes::_putstatic: {
duke@435 2186 for (int i = n - 1; i >= 0; i--) {
duke@435 2187 current_frame->pop_stack(field_type[i], CHECK_VERIFY(this));
duke@435 2188 }
duke@435 2189 break;
duke@435 2190 }
duke@435 2191 case Bytecodes::_getfield: {
duke@435 2192 stack_object_type = current_frame->pop_stack(
duke@435 2193 target_class_type, CHECK_VERIFY(this));
duke@435 2194 for (int i = 0; i < n; i++) {
duke@435 2195 current_frame->push_stack(field_type[i], CHECK_VERIFY(this));
duke@435 2196 }
duke@435 2197 goto check_protected;
duke@435 2198 }
duke@435 2199 case Bytecodes::_putfield: {
duke@435 2200 for (int i = n - 1; i >= 0; i--) {
duke@435 2201 current_frame->pop_stack(field_type[i], CHECK_VERIFY(this));
duke@435 2202 }
duke@435 2203 stack_object_type = current_frame->pop_stack(CHECK_VERIFY(this));
duke@435 2204
duke@435 2205 // The JVMS 2nd edition allows field initialization before the superclass
duke@435 2206 // initializer, if the field is defined within the current class.
duke@435 2207 fieldDescriptor fd;
duke@435 2208 if (stack_object_type == VerificationType::uninitialized_this_type() &&
duke@435 2209 target_class_type.equals(current_type()) &&
coleenp@2497 2210 _klass->find_local_field(field_name, field_sig, &fd)) {
duke@435 2211 stack_object_type = current_type();
duke@435 2212 }
duke@435 2213 is_assignable = target_class_type.is_assignable_from(
hseigel@6824 2214 stack_object_type, this, false, CHECK_VERIFY(this));
duke@435 2215 if (!is_assignable) {
kamg@3992 2216 verify_error(ErrorContext::bad_type(bci,
kamg@3992 2217 current_frame->stack_top_ctx(),
kamg@3992 2218 TypeOrigin::cp(index, target_class_type)),
kamg@3992 2219 "Bad type on operand stack in putfield");
duke@435 2220 return;
duke@435 2221 }
duke@435 2222 }
duke@435 2223 check_protected: {
duke@435 2224 if (_this_type == stack_object_type)
duke@435 2225 break; // stack_object_type must be assignable to _current_class_type
coleenp@2497 2226 Symbol* ref_class_name =
coleenp@2497 2227 cp->klass_name_at(cp->klass_ref_index_at(index));
coleenp@2497 2228 if (!name_in_supers(ref_class_name, current_class()))
duke@435 2229 // stack_object_type must be assignable to _current_class_type since:
duke@435 2230 // 1. stack_object_type must be assignable to ref_class.
duke@435 2231 // 2. ref_class must be _current_class or a subclass of it. It can't
duke@435 2232 // be a superclass of it. See revised JVMS 5.4.4.
duke@435 2233 break;
duke@435 2234
coleenp@4037 2235 Klass* ref_class_oop = load_class(ref_class_name, CHECK);
coleenp@2497 2236 if (is_protected_access(current_class(), ref_class_oop, field_name,
coleenp@2497 2237 field_sig, false)) {
duke@435 2238 // It's protected access, check if stack object is assignable to
duke@435 2239 // current class.
duke@435 2240 is_assignable = current_type().is_assignable_from(
hseigel@6824 2241 stack_object_type, this, true, CHECK_VERIFY(this));
duke@435 2242 if (!is_assignable) {
kamg@3992 2243 verify_error(ErrorContext::bad_type(bci,
kamg@3992 2244 current_frame->stack_top_ctx(),
kamg@3992 2245 TypeOrigin::implicit(current_type())),
kamg@3992 2246 "Bad access to protected data in getfield");
duke@435 2247 return;
duke@435 2248 }
duke@435 2249 }
duke@435 2250 break;
duke@435 2251 }
duke@435 2252 default: ShouldNotReachHere();
duke@435 2253 }
duke@435 2254 }
duke@435 2255
hseigel@6871 2256 // Look at the method's handlers. If the bci is in the handler's try block
hseigel@7643 2257 // then check if the handler_pc is already on the stack. If not, push it
hseigel@7643 2258 // unless the handler has already been scanned.
hseigel@6871 2259 void ClassVerifier::push_handlers(ExceptionTable* exhandlers,
hseigel@7643 2260 GrowableArray<u4>* handler_list,
hseigel@6871 2261 GrowableArray<u4>* handler_stack,
hseigel@6871 2262 u4 bci) {
hseigel@6871 2263 int exlength = exhandlers->length();
hseigel@6871 2264 for(int x = 0; x < exlength; x++) {
hseigel@6871 2265 if (bci >= exhandlers->start_pc(x) && bci < exhandlers->end_pc(x)) {
hseigel@7643 2266 u4 exhandler_pc = exhandlers->handler_pc(x);
hseigel@7643 2267 if (!handler_list->contains(exhandler_pc)) {
hseigel@7643 2268 handler_stack->append_if_missing(exhandler_pc);
hseigel@7643 2269 handler_list->append(exhandler_pc);
hseigel@7643 2270 }
hseigel@6871 2271 }
hseigel@6871 2272 }
hseigel@6871 2273 }
hseigel@6871 2274
hseigel@6871 2275 // Return TRUE if all code paths starting with start_bc_offset end in
hseigel@6871 2276 // bytecode athrow or loop.
hseigel@6871 2277 bool ClassVerifier::ends_in_athrow(u4 start_bc_offset) {
hseigel@6871 2278 ResourceMark rm;
hseigel@6871 2279 // Create bytecode stream.
hseigel@6871 2280 RawBytecodeStream bcs(method());
hseigel@6871 2281 u4 code_length = method()->code_size();
hseigel@6871 2282 bcs.set_start(start_bc_offset);
hseigel@6871 2283 u4 target;
hseigel@6871 2284 // Create stack for storing bytecode start offsets for if* and *switch.
hseigel@6871 2285 GrowableArray<u4>* bci_stack = new GrowableArray<u4>(30);
hseigel@6871 2286 // Create stack for handlers for try blocks containing this handler.
hseigel@6871 2287 GrowableArray<u4>* handler_stack = new GrowableArray<u4>(30);
hseigel@7643 2288 // Create list of handlers that have been pushed onto the handler_stack
hseigel@7643 2289 // so that handlers embedded inside of their own TRY blocks only get
hseigel@7643 2290 // scanned once.
hseigel@7643 2291 GrowableArray<u4>* handler_list = new GrowableArray<u4>(30);
hseigel@6871 2292 // Create list of visited branch opcodes (goto* and if*).
hseigel@6871 2293 GrowableArray<u4>* visited_branches = new GrowableArray<u4>(30);
hseigel@6871 2294 ExceptionTable exhandlers(_method());
hseigel@6871 2295
hseigel@6871 2296 while (true) {
hseigel@6871 2297 if (bcs.is_last_bytecode()) {
hseigel@6871 2298 // if no more starting offsets to parse or if at the end of the
hseigel@6871 2299 // method then return false.
hseigel@6871 2300 if ((bci_stack->is_empty()) || ((u4)bcs.end_bci() == code_length))
hseigel@6871 2301 return false;
hseigel@6871 2302 // Pop a bytecode starting offset and scan from there.
hseigel@6871 2303 bcs.set_start(bci_stack->pop());
hseigel@6871 2304 }
hseigel@6871 2305 Bytecodes::Code opcode = bcs.raw_next();
hseigel@6871 2306 u4 bci = bcs.bci();
hseigel@6871 2307
hseigel@6871 2308 // If the bytecode is in a TRY block, push its handlers so they
hseigel@6871 2309 // will get parsed.
hseigel@7643 2310 push_handlers(&exhandlers, handler_list, handler_stack, bci);
hseigel@6871 2311
hseigel@6871 2312 switch (opcode) {
hseigel@6871 2313 case Bytecodes::_if_icmpeq:
hseigel@6871 2314 case Bytecodes::_if_icmpne:
hseigel@6871 2315 case Bytecodes::_if_icmplt:
hseigel@6871 2316 case Bytecodes::_if_icmpge:
hseigel@6871 2317 case Bytecodes::_if_icmpgt:
hseigel@6871 2318 case Bytecodes::_if_icmple:
hseigel@6871 2319 case Bytecodes::_ifeq:
hseigel@6871 2320 case Bytecodes::_ifne:
hseigel@6871 2321 case Bytecodes::_iflt:
hseigel@6871 2322 case Bytecodes::_ifge:
hseigel@6871 2323 case Bytecodes::_ifgt:
hseigel@6871 2324 case Bytecodes::_ifle:
hseigel@6871 2325 case Bytecodes::_if_acmpeq:
hseigel@6871 2326 case Bytecodes::_if_acmpne:
hseigel@6871 2327 case Bytecodes::_ifnull:
hseigel@6871 2328 case Bytecodes::_ifnonnull:
hseigel@6871 2329 target = bcs.dest();
hseigel@6871 2330 if (visited_branches->contains(bci)) {
shshahma@8525 2331 if (bci_stack->is_empty()) {
shshahma@8525 2332 if (handler_stack->is_empty()) {
shshahma@8525 2333 return true;
shshahma@8525 2334 } else {
shshahma@8525 2335 // Parse the catch handlers for try blocks containing athrow.
shshahma@8525 2336 bcs.set_start(handler_stack->pop());
shshahma@8525 2337 }
shshahma@8525 2338 } else {
shshahma@8525 2339 // Pop a bytecode starting offset and scan from there.
shshahma@8525 2340 bcs.set_start(bci_stack->pop());
shshahma@8525 2341 }
hseigel@6871 2342 } else {
hseigel@6871 2343 if (target > bci) { // forward branch
hseigel@6871 2344 if (target >= code_length) return false;
hseigel@6871 2345 // Push the branch target onto the stack.
hseigel@6871 2346 bci_stack->push(target);
hseigel@6871 2347 // then, scan bytecodes starting with next.
hseigel@6871 2348 bcs.set_start(bcs.next_bci());
hseigel@6871 2349 } else { // backward branch
hseigel@6871 2350 // Push bytecode offset following backward branch onto the stack.
hseigel@6871 2351 bci_stack->push(bcs.next_bci());
hseigel@6871 2352 // Check bytecodes starting with branch target.
hseigel@6871 2353 bcs.set_start(target);
hseigel@6871 2354 }
hseigel@6871 2355 // Record target so we don't branch here again.
hseigel@6871 2356 visited_branches->append(bci);
hseigel@6871 2357 }
hseigel@6871 2358 break;
hseigel@6871 2359
hseigel@6871 2360 case Bytecodes::_goto:
hseigel@6871 2361 case Bytecodes::_goto_w:
hseigel@6871 2362 target = (opcode == Bytecodes::_goto ? bcs.dest() : bcs.dest_w());
hseigel@6871 2363 if (visited_branches->contains(bci)) {
shshahma@8525 2364 if (bci_stack->is_empty()) {
shshahma@8525 2365 if (handler_stack->is_empty()) {
shshahma@8525 2366 return true;
shshahma@8525 2367 } else {
shshahma@8525 2368 // Parse the catch handlers for try blocks containing athrow.
shshahma@8525 2369 bcs.set_start(handler_stack->pop());
shshahma@8525 2370 }
shshahma@8525 2371 } else {
shshahma@8525 2372 // Been here before, pop new starting offset from stack.
shshahma@8525 2373 bcs.set_start(bci_stack->pop());
shshahma@8525 2374 }
hseigel@6871 2375 } else {
hseigel@6871 2376 if (target >= code_length) return false;
hseigel@6871 2377 // Continue scanning from the target onward.
hseigel@6871 2378 bcs.set_start(target);
hseigel@6871 2379 // Record target so we don't branch here again.
hseigel@6871 2380 visited_branches->append(bci);
hseigel@6871 2381 }
hseigel@6871 2382 break;
hseigel@6871 2383
hseigel@6871 2384 // Check that all switch alternatives end in 'athrow' bytecodes. Since it
hseigel@6871 2385 // is difficult to determine where each switch alternative ends, parse
hseigel@6871 2386 // each switch alternative until either hit a 'return', 'athrow', or reach
hseigel@6871 2387 // the end of the method's bytecodes. This is gross but should be okay
hseigel@6871 2388 // because:
hseigel@6871 2389 // 1. tableswitch and lookupswitch byte codes in handlers for ctor explicit
hseigel@6871 2390 // constructor invocations should be rare.
hseigel@6871 2391 // 2. if each switch alternative ends in an athrow then the parsing should be
hseigel@6871 2392 // short. If there is no athrow then it is bogus code, anyway.
hseigel@6871 2393 case Bytecodes::_lookupswitch:
hseigel@6871 2394 case Bytecodes::_tableswitch:
hseigel@6871 2395 {
hseigel@6871 2396 address aligned_bcp = (address) round_to((intptr_t)(bcs.bcp() + 1), jintSize);
hseigel@6871 2397 u4 default_offset = Bytes::get_Java_u4(aligned_bcp) + bci;
hseigel@6871 2398 int keys, delta;
hseigel@6871 2399 if (opcode == Bytecodes::_tableswitch) {
hseigel@6871 2400 jint low = (jint)Bytes::get_Java_u4(aligned_bcp + jintSize);
hseigel@6871 2401 jint high = (jint)Bytes::get_Java_u4(aligned_bcp + 2*jintSize);
hseigel@6871 2402 // This is invalid, but let the regular bytecode verifier
hseigel@6871 2403 // report this because the user will get a better error message.
hseigel@6871 2404 if (low > high) return true;
hseigel@6871 2405 keys = high - low + 1;
hseigel@6871 2406 delta = 1;
hseigel@6871 2407 } else {
hseigel@6871 2408 keys = (int)Bytes::get_Java_u4(aligned_bcp + jintSize);
hseigel@6871 2409 delta = 2;
hseigel@6871 2410 }
hseigel@6871 2411 // Invalid, let the regular bytecode verifier deal with it.
hseigel@6871 2412 if (keys < 0) return true;
hseigel@6871 2413
hseigel@6871 2414 // Push the offset of the next bytecode onto the stack.
hseigel@6871 2415 bci_stack->push(bcs.next_bci());
hseigel@6871 2416
hseigel@6871 2417 // Push the switch alternatives onto the stack.
hseigel@6871 2418 for (int i = 0; i < keys; i++) {
hseigel@6871 2419 u4 target = bci + (jint)Bytes::get_Java_u4(aligned_bcp+(3+i*delta)*jintSize);
hseigel@6871 2420 if (target > code_length) return false;
hseigel@6871 2421 bci_stack->push(target);
hseigel@6871 2422 }
hseigel@6871 2423
hseigel@6871 2424 // Start bytecode parsing for the switch at the default alternative.
hseigel@6871 2425 if (default_offset > code_length) return false;
hseigel@6871 2426 bcs.set_start(default_offset);
hseigel@6871 2427 break;
hseigel@6871 2428 }
hseigel@6871 2429
hseigel@6871 2430 case Bytecodes::_return:
hseigel@6871 2431 return false;
hseigel@6871 2432
hseigel@6871 2433 case Bytecodes::_athrow:
hseigel@6871 2434 {
hseigel@6871 2435 if (bci_stack->is_empty()) {
hseigel@6871 2436 if (handler_stack->is_empty()) {
hseigel@6871 2437 return true;
hseigel@6871 2438 } else {
hseigel@6871 2439 // Parse the catch handlers for try blocks containing athrow.
hseigel@6871 2440 bcs.set_start(handler_stack->pop());
hseigel@6871 2441 }
hseigel@6871 2442 } else {
hseigel@6871 2443 // Pop a bytecode offset and starting scanning from there.
hseigel@6871 2444 bcs.set_start(bci_stack->pop());
hseigel@6871 2445 }
hseigel@6871 2446 }
hseigel@6871 2447 break;
hseigel@6871 2448
hseigel@6871 2449 default:
hseigel@6871 2450 ;
hseigel@6871 2451 } // end switch
hseigel@6871 2452 } // end while loop
hseigel@6871 2453
hseigel@6871 2454 return false;
hseigel@6871 2455 }
hseigel@6871 2456
duke@435 2457 void ClassVerifier::verify_invoke_init(
kamg@3992 2458 RawBytecodeStream* bcs, u2 ref_class_index, VerificationType ref_class_type,
hseigel@7473 2459 StackMapFrame* current_frame, u4 code_length, bool in_try_block,
hseigel@7473 2460 bool *this_uninit, constantPoolHandle cp, StackMapTable* stackmap_table,
hseigel@7473 2461 TRAPS) {
duke@435 2462 u2 bci = bcs->bci();
duke@435 2463 VerificationType type = current_frame->pop_stack(
duke@435 2464 VerificationType::reference_check(), CHECK_VERIFY(this));
duke@435 2465 if (type == VerificationType::uninitialized_this_type()) {
kamg@3858 2466 // The method must be an <init> method of this class or its superclass
coleenp@4037 2467 Klass* superk = current_class()->super();
apangin@2032 2468 if (ref_class_type.name() != current_class()->name() &&
coleenp@4037 2469 ref_class_type.name() != superk->name()) {
kamg@3992 2470 verify_error(ErrorContext::bad_type(bci,
kamg@3992 2471 TypeOrigin::implicit(ref_class_type),
kamg@3992 2472 TypeOrigin::implicit(current_type())),
kamg@3992 2473 "Bad <init> method call");
duke@435 2474 return;
duke@435 2475 }
hseigel@6761 2476
hseigel@7473 2477 // If this invokespecial call is done from inside of a TRY block then make
hseigel@7473 2478 // sure that all catch clause paths end in a throw. Otherwise, this can
hseigel@7473 2479 // result in returning an incomplete object.
hseigel@7473 2480 if (in_try_block) {
hseigel@7473 2481 ExceptionTable exhandlers(_method());
hseigel@7473 2482 int exlength = exhandlers.length();
hseigel@7473 2483 for(int i = 0; i < exlength; i++) {
hseigel@7473 2484 u2 start_pc = exhandlers.start_pc(i);
hseigel@7473 2485 u2 end_pc = exhandlers.end_pc(i);
hseigel@6871 2486
hseigel@7473 2487 if (bci >= start_pc && bci < end_pc) {
hseigel@7473 2488 if (!ends_in_athrow(exhandlers.handler_pc(i))) {
hseigel@7473 2489 verify_error(ErrorContext::bad_code(bci),
hseigel@7473 2490 "Bad <init> method call from after the start of a try block");
hseigel@7473 2491 return;
hseigel@7473 2492 } else if (VerboseVerification) {
hseigel@7473 2493 ResourceMark rm;
hseigel@7473 2494 tty->print_cr(
hseigel@7473 2495 "Survived call to ends_in_athrow(): %s",
hseigel@7473 2496 current_class()->name()->as_C_string());
hseigel@7473 2497 }
hseigel@6871 2498 }
hseigel@6761 2499 }
hseigel@7473 2500
hseigel@7473 2501 // Check the exception handler target stackmaps with the locals from the
hseigel@7473 2502 // incoming stackmap (before initialize_object() changes them to outgoing
hseigel@7473 2503 // state).
hseigel@7473 2504 verify_exception_handler_targets(bci, true, current_frame,
hseigel@7473 2505 stackmap_table, CHECK_VERIFY(this));
hseigel@7473 2506 } // in_try_block
hseigel@6761 2507
duke@435 2508 current_frame->initialize_object(type, current_type());
duke@435 2509 *this_uninit = true;
duke@435 2510 } else if (type.is_uninitialized()) {
duke@435 2511 u2 new_offset = type.bci();
duke@435 2512 address new_bcp = bcs->bcp() - bci + new_offset;
duke@435 2513 if (new_offset > (code_length - 3) || (*new_bcp) != Bytecodes::_new) {
kamg@3992 2514 /* Unreachable? Stack map parsing ensures valid type and new
kamg@3992 2515 * instructions have a valid BCI. */
kamg@3992 2516 verify_error(ErrorContext::bad_code(new_offset),
kamg@3992 2517 "Expecting new instruction");
duke@435 2518 return;
duke@435 2519 }
duke@435 2520 u2 new_class_index = Bytes::get_Java_u2(new_bcp + 1);
kamg@3992 2521 verify_cp_class_type(bci, new_class_index, cp, CHECK_VERIFY(this));
duke@435 2522
duke@435 2523 // The method must be an <init> method of the indicated class
duke@435 2524 VerificationType new_class_type = cp_index_to_type(
duke@435 2525 new_class_index, cp, CHECK_VERIFY(this));
duke@435 2526 if (!new_class_type.equals(ref_class_type)) {
kamg@3992 2527 verify_error(ErrorContext::bad_type(bci,
kamg@3992 2528 TypeOrigin::cp(new_class_index, new_class_type),
kamg@3992 2529 TypeOrigin::cp(ref_class_index, ref_class_type)),
kamg@3992 2530 "Call to wrong <init> method");
duke@435 2531 return;
duke@435 2532 }
duke@435 2533 // According to the VM spec, if the referent class is a superclass of the
duke@435 2534 // current class, and is in a different runtime package, and the method is
duke@435 2535 // protected, then the objectref must be the current class or a subclass
duke@435 2536 // of the current class.
duke@435 2537 VerificationType objectref_type = new_class_type;
duke@435 2538 if (name_in_supers(ref_class_type.name(), current_class())) {
hseigel@7594 2539 Klass* ref_klass = load_class(ref_class_type.name(), CHECK);
coleenp@4037 2540 Method* m = InstanceKlass::cast(ref_klass)->uncached_lookup_method(
duke@435 2541 vmSymbols::object_initializer_name(),
dbuck@8716 2542 cp->signature_ref_at(bcs->get_index_u2()), Klass::find_overpass);
hseigel@6784 2543 // Do nothing if method is not found. Let resolution detect the error.
hseigel@6784 2544 if (m != NULL) {
hseigel@6784 2545 instanceKlassHandle mh(THREAD, m->method_holder());
hseigel@6784 2546 if (m->is_protected() && !mh->is_same_class_package(_klass())) {
hseigel@6784 2547 bool assignable = current_type().is_assignable_from(
asaha@6832 2548 objectref_type, this, true, CHECK_VERIFY(this));
hseigel@6784 2549 if (!assignable) {
hseigel@6784 2550 verify_error(ErrorContext::bad_type(bci,
hseigel@6784 2551 TypeOrigin::cp(new_class_index, objectref_type),
hseigel@6784 2552 TypeOrigin::implicit(current_type())),
hseigel@6784 2553 "Bad access to protected <init> method");
hseigel@6784 2554 return;
hseigel@6784 2555 }
duke@435 2556 }
duke@435 2557 }
duke@435 2558 }
hseigel@7473 2559 // Check the exception handler target stackmaps with the locals from the
hseigel@7473 2560 // incoming stackmap (before initialize_object() changes them to outgoing
hseigel@7473 2561 // state).
hseigel@7473 2562 if (in_try_block) {
hseigel@7473 2563 verify_exception_handler_targets(bci, *this_uninit, current_frame,
hseigel@7473 2564 stackmap_table, CHECK_VERIFY(this));
hseigel@7473 2565 }
duke@435 2566 current_frame->initialize_object(type, new_class_type);
duke@435 2567 } else {
kamg@3992 2568 verify_error(ErrorContext::bad_type(bci, current_frame->stack_top_ctx()),
kamg@3992 2569 "Bad operand type when invoking <init>");
duke@435 2570 return;
duke@435 2571 }
duke@435 2572 }
duke@435 2573
hseigel@6132 2574 bool ClassVerifier::is_same_or_direct_interface(
hseigel@6132 2575 instanceKlassHandle klass,
hseigel@6132 2576 VerificationType klass_type,
hseigel@6132 2577 VerificationType ref_class_type) {
hseigel@6132 2578 if (ref_class_type.equals(klass_type)) return true;
hseigel@6132 2579 Array<Klass*>* local_interfaces = klass->local_interfaces();
hseigel@6132 2580 if (local_interfaces != NULL) {
hseigel@6132 2581 for (int x = 0; x < local_interfaces->length(); x++) {
hseigel@6132 2582 Klass* k = local_interfaces->at(x);
hseigel@6132 2583 assert (k != NULL && k->is_interface(), "invalid interface");
hseigel@6132 2584 if (ref_class_type.equals(VerificationType::reference_type(k->name()))) {
hseigel@6132 2585 return true;
hseigel@6132 2586 }
hseigel@6132 2587 }
hseigel@6132 2588 }
hseigel@6132 2589 return false;
hseigel@6132 2590 }
hseigel@6132 2591
duke@435 2592 void ClassVerifier::verify_invoke_instructions(
duke@435 2593 RawBytecodeStream* bcs, u4 code_length, StackMapFrame* current_frame,
hseigel@7473 2594 bool in_try_block, bool *this_uninit, VerificationType return_type,
hseigel@7473 2595 constantPoolHandle cp, StackMapTable* stackmap_table, TRAPS) {
duke@435 2596 // Make sure the constant pool item is the right type
jrose@1920 2597 u2 index = bcs->get_index_u2();
jrose@1920 2598 Bytecodes::Code opcode = bcs->raw_code();
kamg@4245 2599 unsigned int types;
kamg@4245 2600 switch (opcode) {
kamg@4245 2601 case Bytecodes::_invokeinterface:
kamg@4245 2602 types = 1 << JVM_CONSTANT_InterfaceMethodref;
kamg@4245 2603 break;
kamg@4245 2604 case Bytecodes::_invokedynamic:
kamg@4245 2605 types = 1 << JVM_CONSTANT_InvokeDynamic;
kamg@4245 2606 break;
kamg@4245 2607 case Bytecodes::_invokespecial:
bharadwaj@4895 2608 case Bytecodes::_invokestatic:
bharadwaj@4895 2609 types = (_klass->major_version() < STATIC_METHOD_IN_INTERFACE_MAJOR_VERSION) ?
bharadwaj@4895 2610 (1 << JVM_CONSTANT_Methodref) :
bharadwaj@4895 2611 ((1 << JVM_CONSTANT_InterfaceMethodref) | (1 << JVM_CONSTANT_Methodref));
bharadwaj@4895 2612 break;
kamg@4245 2613 default:
kamg@4245 2614 types = 1 << JVM_CONSTANT_Methodref;
kamg@4245 2615 }
kamg@3992 2616 verify_cp_type(bcs->bci(), index, cp, types, CHECK_VERIFY(this));
duke@435 2617
duke@435 2618 // Get method name and signature
coleenp@2497 2619 Symbol* method_name = cp->name_ref_at(index);
coleenp@2497 2620 Symbol* method_sig = cp->signature_ref_at(index);
duke@435 2621
duke@435 2622 if (!SignatureVerifier::is_valid_method_signature(method_sig)) {
duke@435 2623 class_format_error(
duke@435 2624 "Invalid method signature in class %s referenced "
duke@435 2625 "from constant pool index %d", _klass->external_name(), index);
duke@435 2626 return;
duke@435 2627 }
duke@435 2628
duke@435 2629 // Get referenced class type
jrose@1161 2630 VerificationType ref_class_type;
jrose@1161 2631 if (opcode == Bytecodes::_invokedynamic) {
jrose@1957 2632 if (!EnableInvokeDynamic ||
jrose@1957 2633 _klass->major_version() < Verifier::INVOKEDYNAMIC_MAJOR_VERSION) {
drchase@6680 2634 if (!EnableInvokeDynamic) {
drchase@6680 2635 class_format_error("invokedynamic instructions not enabled in this JVM");
drchase@6680 2636 } else {
drchase@6680 2637 class_format_error("invokedynamic instructions not supported by this class file version (%d), class %s",
drchase@6680 2638 _klass->major_version(), _klass->external_name());
drchase@6680 2639 }
jrose@1161 2640 return;
jrose@1161 2641 }
jrose@1161 2642 } else {
jrose@1161 2643 ref_class_type = cp_ref_index_to_type(index, cp, CHECK_VERIFY(this));
jrose@1161 2644 }
duke@435 2645
duke@435 2646 // For a small signature length, we just allocate 128 bytes instead
duke@435 2647 // of parsing the signature once to find its size.
duke@435 2648 // -3 is for '(', ')' and return descriptor; multiply by 2 is for
duke@435 2649 // longs/doubles to be consertive.
duke@435 2650 assert(sizeof(VerificationType) == sizeof(uintptr_t),
duke@435 2651 "buffer type must match VerificationType size");
duke@435 2652 uintptr_t on_stack_sig_types_buffer[128];
duke@435 2653 // If we make a VerificationType[128] array directly, the compiler calls
duke@435 2654 // to the c-runtime library to do the allocation instead of just
duke@435 2655 // stack allocating it. Plus it would run constructors. This shows up
duke@435 2656 // in performance profiles.
duke@435 2657
duke@435 2658 VerificationType* sig_types;
duke@435 2659 int size = (method_sig->utf8_length() - 3) * 2;
duke@435 2660 if (size > 128) {
duke@435 2661 // Long and double occupies two slots here.
duke@435 2662 ArgumentSizeComputer size_it(method_sig);
duke@435 2663 size = size_it.size();
duke@435 2664 sig_types = NEW_RESOURCE_ARRAY_IN_THREAD(THREAD, VerificationType, size);
duke@435 2665 } else{
duke@435 2666 sig_types = (VerificationType*)on_stack_sig_types_buffer;
duke@435 2667 }
duke@435 2668 SignatureStream sig_stream(method_sig);
duke@435 2669 int sig_i = 0;
duke@435 2670 while (!sig_stream.at_return_type()) {
duke@435 2671 sig_i += change_sig_to_verificationType(
duke@435 2672 &sig_stream, &sig_types[sig_i], CHECK_VERIFY(this));
duke@435 2673 sig_stream.next();
duke@435 2674 }
duke@435 2675 int nargs = sig_i;
duke@435 2676
duke@435 2677 #ifdef ASSERT
duke@435 2678 {
duke@435 2679 ArgumentSizeComputer size_it(method_sig);
duke@435 2680 assert(nargs == size_it.size(), "Argument sizes do not match");
duke@435 2681 assert(nargs <= (method_sig->utf8_length() - 3) * 2, "estimate of max size isn't conservative enough");
duke@435 2682 }
duke@435 2683 #endif
duke@435 2684
duke@435 2685 // Check instruction operands
duke@435 2686 u2 bci = bcs->bci();
duke@435 2687 if (opcode == Bytecodes::_invokeinterface) {
duke@435 2688 address bcp = bcs->bcp();
duke@435 2689 // 4905268: count operand in invokeinterface should be nargs+1, not nargs.
duke@435 2690 // JSR202 spec: The count operand of an invokeinterface instruction is valid if it is
duke@435 2691 // the difference between the size of the operand stack before and after the instruction
duke@435 2692 // executes.
duke@435 2693 if (*(bcp+3) != (nargs+1)) {
kamg@3992 2694 verify_error(ErrorContext::bad_code(bci),
kamg@3992 2695 "Inconsistent args count operand in invokeinterface");
duke@435 2696 return;
duke@435 2697 }
duke@435 2698 if (*(bcp+4) != 0) {
kamg@3992 2699 verify_error(ErrorContext::bad_code(bci),
kamg@3992 2700 "Fourth operand byte of invokeinterface must be zero");
duke@435 2701 return;
duke@435 2702 }
duke@435 2703 }
duke@435 2704
jrose@1161 2705 if (opcode == Bytecodes::_invokedynamic) {
jrose@1161 2706 address bcp = bcs->bcp();
jrose@1161 2707 if (*(bcp+3) != 0 || *(bcp+4) != 0) {
kamg@3992 2708 verify_error(ErrorContext::bad_code(bci),
kamg@3992 2709 "Third and fourth operand bytes of invokedynamic must be zero");
jrose@1161 2710 return;
jrose@1161 2711 }
jrose@1161 2712 }
jrose@1161 2713
duke@435 2714 if (method_name->byte_at(0) == '<') {
duke@435 2715 // Make sure <init> can only be invoked by invokespecial
duke@435 2716 if (opcode != Bytecodes::_invokespecial ||
coleenp@2497 2717 method_name != vmSymbols::object_initializer_name()) {
kamg@3992 2718 verify_error(ErrorContext::bad_code(bci),
kamg@3992 2719 "Illegal call to internal method");
duke@435 2720 return;
duke@435 2721 }
duke@435 2722 } else if (opcode == Bytecodes::_invokespecial
hseigel@6132 2723 && !is_same_or_direct_interface(current_class(), current_type(), ref_class_type)
duke@435 2724 && !ref_class_type.equals(VerificationType::reference_type(
coleenp@4037 2725 current_class()->super()->name()))) {
acorn@5930 2726 bool subtype = false;
hseigel@6132 2727 bool have_imr_indirect = cp->tag_at(index).value() == JVM_CONSTANT_InterfaceMethodref;
acorn@5930 2728 if (!current_class()->is_anonymous()) {
acorn@5930 2729 subtype = ref_class_type.is_assignable_from(
hseigel@6824 2730 current_type(), this, false, CHECK_VERIFY(this));
acorn@5930 2731 } else {
hseigel@6132 2732 VerificationType host_klass_type =
hseigel@6132 2733 VerificationType::reference_type(current_class()->host_klass()->name());
hseigel@6824 2734 subtype = ref_class_type.is_assignable_from(host_klass_type, this, false, CHECK_VERIFY(this));
hseigel@6132 2735
hseigel@6132 2736 // If invokespecial of IMR, need to recheck for same or
hseigel@6132 2737 // direct interface relative to the host class
hseigel@6132 2738 have_imr_indirect = (have_imr_indirect &&
hseigel@6132 2739 !is_same_or_direct_interface(
hseigel@6132 2740 InstanceKlass::cast(current_class()->host_klass()),
hseigel@6132 2741 host_klass_type, ref_class_type));
acorn@5930 2742 }
duke@435 2743 if (!subtype) {
acorn@5930 2744 verify_error(ErrorContext::bad_code(bci),
acorn@5930 2745 "Bad invokespecial instruction: "
acorn@5930 2746 "current class isn't assignable to reference class.");
acorn@5930 2747 return;
hseigel@6132 2748 } else if (have_imr_indirect) {
hseigel@6132 2749 verify_error(ErrorContext::bad_code(bci),
hseigel@6132 2750 "Bad invokespecial instruction: "
hseigel@6132 2751 "interface method reference is in an indirect superinterface.");
hseigel@6132 2752 return;
duke@435 2753 }
hseigel@6132 2754
duke@435 2755 }
duke@435 2756 // Match method descriptor with operand stack
duke@435 2757 for (int i = nargs - 1; i >= 0; i--) { // Run backwards
duke@435 2758 current_frame->pop_stack(sig_types[i], CHECK_VERIFY(this));
duke@435 2759 }
duke@435 2760 // Check objectref on operand stack
jrose@1161 2761 if (opcode != Bytecodes::_invokestatic &&
jrose@1161 2762 opcode != Bytecodes::_invokedynamic) {
coleenp@2497 2763 if (method_name == vmSymbols::object_initializer_name()) { // <init> method
kamg@3992 2764 verify_invoke_init(bcs, index, ref_class_type, current_frame,
hseigel@7473 2765 code_length, in_try_block, this_uninit, cp, stackmap_table,
hseigel@7473 2766 CHECK_VERIFY(this));
duke@435 2767 } else { // other methods
duke@435 2768 // Ensures that target class is assignable to method class.
duke@435 2769 if (opcode == Bytecodes::_invokespecial) {
acorn@5852 2770 if (!current_class()->is_anonymous()) {
acorn@5852 2771 current_frame->pop_stack(current_type(), CHECK_VERIFY(this));
acorn@5852 2772 } else {
acorn@5930 2773 // anonymous class invokespecial calls: check if the
acorn@5930 2774 // objectref is a subtype of the host_klass of the current class
acorn@5852 2775 // to allow an anonymous class to reference methods in the host_klass
acorn@5852 2776 VerificationType top = current_frame->pop_stack(CHECK_VERIFY(this));
acorn@5930 2777 VerificationType hosttype =
acorn@5930 2778 VerificationType::reference_type(current_class()->host_klass()->name());
hseigel@6824 2779 bool subtype = hosttype.is_assignable_from(top, this, false, CHECK_VERIFY(this));
acorn@5852 2780 if (!subtype) {
acorn@5852 2781 verify_error( ErrorContext::bad_type(current_frame->offset(),
acorn@5852 2782 current_frame->stack_top_ctx(),
acorn@5852 2783 TypeOrigin::implicit(top)),
acorn@5852 2784 "Bad type on operand stack");
acorn@5852 2785 return;
acorn@5852 2786 }
acorn@5852 2787 }
duke@435 2788 } else if (opcode == Bytecodes::_invokevirtual) {
duke@435 2789 VerificationType stack_object_type =
duke@435 2790 current_frame->pop_stack(ref_class_type, CHECK_VERIFY(this));
duke@435 2791 if (current_type() != stack_object_type) {
duke@435 2792 assert(cp->cache() == NULL, "not rewritten yet");
coleenp@2497 2793 Symbol* ref_class_name =
coleenp@2497 2794 cp->klass_name_at(cp->klass_ref_index_at(index));
duke@435 2795 // See the comments in verify_field_instructions() for
duke@435 2796 // the rationale behind this.
coleenp@2497 2797 if (name_in_supers(ref_class_name, current_class())) {
coleenp@4037 2798 Klass* ref_class = load_class(ref_class_name, CHECK);
duke@435 2799 if (is_protected_access(
coleenp@2497 2800 _klass, ref_class, method_name, method_sig, true)) {
duke@435 2801 // It's protected access, check if stack object is
duke@435 2802 // assignable to current class.
duke@435 2803 bool is_assignable = current_type().is_assignable_from(
hseigel@6824 2804 stack_object_type, this, true, CHECK_VERIFY(this));
duke@435 2805 if (!is_assignable) {
duke@435 2806 if (ref_class_type.name() == vmSymbols::java_lang_Object()
duke@435 2807 && stack_object_type.is_array()
coleenp@2497 2808 && method_name == vmSymbols::clone_name()) {
duke@435 2809 // Special case: arrays pretend to implement public Object
duke@435 2810 // clone().
duke@435 2811 } else {
kamg@3992 2812 verify_error(ErrorContext::bad_type(bci,
kamg@3992 2813 current_frame->stack_top_ctx(),
kamg@3992 2814 TypeOrigin::implicit(current_type())),
kamg@3992 2815 "Bad access to protected data in invokevirtual");
duke@435 2816 return;
duke@435 2817 }
duke@435 2818 }
duke@435 2819 }
duke@435 2820 }
duke@435 2821 }
duke@435 2822 } else {
duke@435 2823 assert(opcode == Bytecodes::_invokeinterface, "Unexpected opcode encountered");
duke@435 2824 current_frame->pop_stack(ref_class_type, CHECK_VERIFY(this));
duke@435 2825 }
duke@435 2826 }
duke@435 2827 }
duke@435 2828 // Push the result type.
duke@435 2829 if (sig_stream.type() != T_VOID) {
coleenp@2497 2830 if (method_name == vmSymbols::object_initializer_name()) {
duke@435 2831 // <init> method must have a void return type
kamg@3992 2832 /* Unreachable? Class file parser verifies that methods with '<' have
kamg@3992 2833 * void return */
kamg@3992 2834 verify_error(ErrorContext::bad_code(bci),
kamg@3992 2835 "Return type must be void in <init> method");
duke@435 2836 return;
duke@435 2837 }
duke@435 2838 VerificationType return_type[2];
duke@435 2839 int n = change_sig_to_verificationType(
duke@435 2840 &sig_stream, return_type, CHECK_VERIFY(this));
duke@435 2841 for (int i = 0; i < n; i++) {
duke@435 2842 current_frame->push_stack(return_type[i], CHECK_VERIFY(this)); // push types backwards
duke@435 2843 }
duke@435 2844 }
duke@435 2845 }
duke@435 2846
duke@435 2847 VerificationType ClassVerifier::get_newarray_type(
duke@435 2848 u2 index, u2 bci, TRAPS) {
duke@435 2849 const char* from_bt[] = {
duke@435 2850 NULL, NULL, NULL, NULL, "[Z", "[C", "[F", "[D", "[B", "[S", "[I", "[J",
duke@435 2851 };
duke@435 2852 if (index < T_BOOLEAN || index > T_LONG) {
kamg@3992 2853 verify_error(ErrorContext::bad_code(bci), "Illegal newarray instruction");
duke@435 2854 return VerificationType::bogus_type();
duke@435 2855 }
duke@435 2856
duke@435 2857 // from_bt[index] contains the array signature which has a length of 2
coleenp@2497 2858 Symbol* sig = create_temporary_symbol(
duke@435 2859 from_bt[index], 2, CHECK_(VerificationType::bogus_type()));
duke@435 2860 return VerificationType::reference_type(sig);
duke@435 2861 }
duke@435 2862
duke@435 2863 void ClassVerifier::verify_anewarray(
kamg@3992 2864 u2 bci, u2 index, constantPoolHandle cp,
kamg@3992 2865 StackMapFrame* current_frame, TRAPS) {
kamg@3992 2866 verify_cp_class_type(bci, index, cp, CHECK_VERIFY(this));
duke@435 2867 current_frame->pop_stack(
duke@435 2868 VerificationType::integer_type(), CHECK_VERIFY(this));
duke@435 2869
duke@435 2870 VerificationType component_type =
duke@435 2871 cp_index_to_type(index, cp, CHECK_VERIFY(this));
duke@435 2872 int length;
duke@435 2873 char* arr_sig_str;
duke@435 2874 if (component_type.is_array()) { // it's an array
duke@435 2875 const char* component_name = component_type.name()->as_utf8();
duke@435 2876 // add one dimension to component
duke@435 2877 length = (int)strlen(component_name) + 1;
duke@435 2878 arr_sig_str = NEW_RESOURCE_ARRAY_IN_THREAD(THREAD, char, length);
duke@435 2879 arr_sig_str[0] = '[';
duke@435 2880 strncpy(&arr_sig_str[1], component_name, length - 1);
duke@435 2881 } else { // it's an object or interface
duke@435 2882 const char* component_name = component_type.name()->as_utf8();
duke@435 2883 // add one dimension to component with 'L' prepended and ';' postpended.
duke@435 2884 length = (int)strlen(component_name) + 3;
duke@435 2885 arr_sig_str = NEW_RESOURCE_ARRAY_IN_THREAD(THREAD, char, length);
duke@435 2886 arr_sig_str[0] = '[';
duke@435 2887 arr_sig_str[1] = 'L';
duke@435 2888 strncpy(&arr_sig_str[2], component_name, length - 2);
duke@435 2889 arr_sig_str[length - 1] = ';';
duke@435 2890 }
coleenp@2497 2891 Symbol* arr_sig = create_temporary_symbol(
duke@435 2892 arr_sig_str, length, CHECK_VERIFY(this));
duke@435 2893 VerificationType new_array_type = VerificationType::reference_type(arr_sig);
duke@435 2894 current_frame->push_stack(new_array_type, CHECK_VERIFY(this));
duke@435 2895 }
duke@435 2896
duke@435 2897 void ClassVerifier::verify_iload(u2 index, StackMapFrame* current_frame, TRAPS) {
duke@435 2898 current_frame->get_local(
duke@435 2899 index, VerificationType::integer_type(), CHECK_VERIFY(this));
duke@435 2900 current_frame->push_stack(
duke@435 2901 VerificationType::integer_type(), CHECK_VERIFY(this));
duke@435 2902 }
duke@435 2903
duke@435 2904 void ClassVerifier::verify_lload(u2 index, StackMapFrame* current_frame, TRAPS) {
duke@435 2905 current_frame->get_local_2(
duke@435 2906 index, VerificationType::long_type(),
duke@435 2907 VerificationType::long2_type(), CHECK_VERIFY(this));
duke@435 2908 current_frame->push_stack_2(
duke@435 2909 VerificationType::long_type(),
duke@435 2910 VerificationType::long2_type(), CHECK_VERIFY(this));
duke@435 2911 }
duke@435 2912
duke@435 2913 void ClassVerifier::verify_fload(u2 index, StackMapFrame* current_frame, TRAPS) {
duke@435 2914 current_frame->get_local(
duke@435 2915 index, VerificationType::float_type(), CHECK_VERIFY(this));
duke@435 2916 current_frame->push_stack(
duke@435 2917 VerificationType::float_type(), CHECK_VERIFY(this));
duke@435 2918 }
duke@435 2919
duke@435 2920 void ClassVerifier::verify_dload(u2 index, StackMapFrame* current_frame, TRAPS) {
duke@435 2921 current_frame->get_local_2(
duke@435 2922 index, VerificationType::double_type(),
duke@435 2923 VerificationType::double2_type(), CHECK_VERIFY(this));
duke@435 2924 current_frame->push_stack_2(
duke@435 2925 VerificationType::double_type(),
duke@435 2926 VerificationType::double2_type(), CHECK_VERIFY(this));
duke@435 2927 }
duke@435 2928
duke@435 2929 void ClassVerifier::verify_aload(u2 index, StackMapFrame* current_frame, TRAPS) {
duke@435 2930 VerificationType type = current_frame->get_local(
duke@435 2931 index, VerificationType::reference_check(), CHECK_VERIFY(this));
duke@435 2932 current_frame->push_stack(type, CHECK_VERIFY(this));
duke@435 2933 }
duke@435 2934
duke@435 2935 void ClassVerifier::verify_istore(u2 index, StackMapFrame* current_frame, TRAPS) {
duke@435 2936 current_frame->pop_stack(
duke@435 2937 VerificationType::integer_type(), CHECK_VERIFY(this));
duke@435 2938 current_frame->set_local(
duke@435 2939 index, VerificationType::integer_type(), CHECK_VERIFY(this));
duke@435 2940 }
duke@435 2941
duke@435 2942 void ClassVerifier::verify_lstore(u2 index, StackMapFrame* current_frame, TRAPS) {
duke@435 2943 current_frame->pop_stack_2(
duke@435 2944 VerificationType::long2_type(),
duke@435 2945 VerificationType::long_type(), CHECK_VERIFY(this));
duke@435 2946 current_frame->set_local_2(
duke@435 2947 index, VerificationType::long_type(),
duke@435 2948 VerificationType::long2_type(), CHECK_VERIFY(this));
duke@435 2949 }
duke@435 2950
duke@435 2951 void ClassVerifier::verify_fstore(u2 index, StackMapFrame* current_frame, TRAPS) {
duke@435 2952 current_frame->pop_stack(VerificationType::float_type(), CHECK_VERIFY(this));
duke@435 2953 current_frame->set_local(
duke@435 2954 index, VerificationType::float_type(), CHECK_VERIFY(this));
duke@435 2955 }
duke@435 2956
duke@435 2957 void ClassVerifier::verify_dstore(u2 index, StackMapFrame* current_frame, TRAPS) {
duke@435 2958 current_frame->pop_stack_2(
duke@435 2959 VerificationType::double2_type(),
duke@435 2960 VerificationType::double_type(), CHECK_VERIFY(this));
duke@435 2961 current_frame->set_local_2(
duke@435 2962 index, VerificationType::double_type(),
duke@435 2963 VerificationType::double2_type(), CHECK_VERIFY(this));
duke@435 2964 }
duke@435 2965
duke@435 2966 void ClassVerifier::verify_astore(u2 index, StackMapFrame* current_frame, TRAPS) {
duke@435 2967 VerificationType type = current_frame->pop_stack(
duke@435 2968 VerificationType::reference_check(), CHECK_VERIFY(this));
duke@435 2969 current_frame->set_local(index, type, CHECK_VERIFY(this));
duke@435 2970 }
duke@435 2971
duke@435 2972 void ClassVerifier::verify_iinc(u2 index, StackMapFrame* current_frame, TRAPS) {
duke@435 2973 VerificationType type = current_frame->get_local(
duke@435 2974 index, VerificationType::integer_type(), CHECK_VERIFY(this));
duke@435 2975 current_frame->set_local(index, type, CHECK_VERIFY(this));
duke@435 2976 }
duke@435 2977
duke@435 2978 void ClassVerifier::verify_return_value(
kamg@3992 2979 VerificationType return_type, VerificationType type, u2 bci,
kamg@3992 2980 StackMapFrame* current_frame, TRAPS) {
duke@435 2981 if (return_type == VerificationType::bogus_type()) {
kamg@3992 2982 verify_error(ErrorContext::bad_type(bci,
kamg@3992 2983 current_frame->stack_top_ctx(), TypeOrigin::signature(return_type)),
kamg@3992 2984 "Method expects a return value");
duke@435 2985 return;
duke@435 2986 }
hseigel@6824 2987 bool match = return_type.is_assignable_from(type, this, false, CHECK_VERIFY(this));
duke@435 2988 if (!match) {
kamg@3992 2989 verify_error(ErrorContext::bad_type(bci,
kamg@3992 2990 current_frame->stack_top_ctx(), TypeOrigin::signature(return_type)),
kamg@3992 2991 "Bad return type");
duke@435 2992 return;
duke@435 2993 }
duke@435 2994 }
coleenp@2497 2995
coleenp@2497 2996 // The verifier creates symbols which are substrings of Symbols.
coleenp@2497 2997 // These are stored in the verifier until the end of verification so that
coleenp@2497 2998 // they can be reference counted.
coleenp@2497 2999 Symbol* ClassVerifier::create_temporary_symbol(const Symbol *s, int begin,
coleenp@2497 3000 int end, TRAPS) {
coleenp@2497 3001 Symbol* sym = SymbolTable::new_symbol(s, begin, end, CHECK_NULL);
coleenp@2497 3002 _symbols->push(sym);
coleenp@2497 3003 return sym;
coleenp@2497 3004 }
coleenp@2497 3005
coleenp@2497 3006 Symbol* ClassVerifier::create_temporary_symbol(const char *s, int length, TRAPS) {
coleenp@2497 3007 Symbol* sym = SymbolTable::new_symbol(s, length, CHECK_NULL);
coleenp@2497 3008 _symbols->push(sym);
coleenp@2497 3009 return sym;
coleenp@2497 3010 }

mercurial