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