src/share/vm/classfile/verifier.cpp

Mon, 17 Mar 2014 10:17:55 -0400

author
hseigel
date
Mon, 17 Mar 2014 10:17:55 -0400
changeset 6761
aff11567504c
parent 6132
22eaa15b7960
child 6771
b5ae226b7516
permissions
-rw-r--r--

8035119: Fix exceptions to bytecode verification
Summary: Prevent ctor calls to super() and this() from avoidable code (try blocks, if stmts, etc.)
Reviewed-by: coleenp, acorn, mschoene

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

mercurial