src/hotspot/share/classfile/verifier.cpp
author iklam
Sat, 30 Mar 2019 08:26:20 -0700
changeset 54347 235883996bc7
parent 54308 1dcacbe612ae
child 54432 532e88de77eb
permissions -rw-r--r--
8221698: Remove redundant includes from popular header files Summary: Removed histogram.hpp classLoader.hpp utf8.hpp moduleEntry.hpp packageEntry.hpp Reviewed-by: coleenp, stuefe
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
53882
ca682d9d8db5 8214777: Avoid some GCC 8.X strncpy() errors in HotSpot
mikael
parents: 53322
diff changeset
     2
 * Copyright (c) 1998, 2019, 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"
47765
b7c7428eaab9 8189610: Reconcile jvm.h and all jvm_md.h between java.base and hotspot
coleenp
parents: 47634
diff changeset
    26
#include "jvm.h"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7382
diff changeset
    27
#include "classfile/classFileStream.hpp"
54347
235883996bc7 8221698: Remove redundant includes from popular header files
iklam
parents: 54308
diff changeset
    28
#include "classfile/classLoader.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7382
diff changeset
    29
#include "classfile/javaClasses.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7382
diff changeset
    30
#include "classfile/stackMapTable.hpp"
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
    31
#include "classfile/stackMapFrame.hpp"
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
    32
#include "classfile/stackMapTableFormat.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7382
diff changeset
    33
#include "classfile/systemDictionary.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7382
diff changeset
    34
#include "classfile/verifier.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7382
diff changeset
    35
#include "classfile/vmSymbols.hpp"
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
    36
#include "interpreter/bytecodes.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7382
diff changeset
    37
#include "interpreter/bytecodeStream.hpp"
37044
f1965d5d1055 8150083: Convert VerboseVerification to Unified Logging
rprotacio
parents: 35856
diff changeset
    38
#include "logging/log.hpp"
46701
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 46625
diff changeset
    39
#include "logging/logStream.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7382
diff changeset
    40
#include "memory/oopFactory.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7382
diff changeset
    41
#include "memory/resourceArea.hpp"
49340
4e82736053ae 8191102: Incorrect include file use in classLoader.hpp
hseigel
parents: 49192
diff changeset
    42
#include "oops/constantPool.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7382
diff changeset
    43
#include "oops/instanceKlass.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7382
diff changeset
    44
#include "oops/oop.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7382
diff changeset
    45
#include "oops/typeArrayOop.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7382
diff changeset
    46
#include "runtime/fieldDescriptor.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7382
diff changeset
    47
#include "runtime/handles.inline.hpp"
49449
ef5d5d343e2a 8199263: Split interfaceSupport.hpp to not require including .inline.hpp files
coleenp
parents: 49340
diff changeset
    48
#include "runtime/interfaceSupport.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7382
diff changeset
    49
#include "runtime/javaCalls.hpp"
49192
6734eeef4283 8198474: Move JNIHandles::resolve into jniHandles.inline.hpp
kbarrett
parents: 48826
diff changeset
    50
#include "runtime/jniHandles.inline.hpp"
50429
83aec1d357d4 8204301: Make OrderAccess functions available to hpp rather than inline.hpp files
coleenp
parents: 49770
diff changeset
    51
#include "runtime/orderAccess.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7382
diff changeset
    52
#include "runtime/os.hpp"
49594
898ef81cbc0e 8200106: Move NoSafepointVerifier out from gcLocker.hpp
stefank
parents: 49449
diff changeset
    53
#include "runtime/safepointVerifiers.hpp"
31021
1dbe2a0324d6 8076319: jstat verified class fix
hseigel
parents: 30616
diff changeset
    54
#include "runtime/thread.hpp"
1dbe2a0324d6 8076319: jstat verified class fix
hseigel
parents: 30616
diff changeset
    55
#include "services/threadService.hpp"
46625
edefffab74e2 8183552: Move align functions to align.hpp
stefank
parents: 46620
diff changeset
    56
#include "utilities/align.hpp"
25715
d5a8dbdc5150 8049325: Introduce and clean up umbrella headers for the files in the cpu subdirectories.
goetz
parents: 24663
diff changeset
    57
#include "utilities/bytes.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
16442
a929bb40c0e8 8010667: Non-zero padding is not allowed in splitverifier for tableswitch/lookupswitch instructions.
hseigel
parents: 15736
diff changeset
    59
#define NOFAILOVER_MAJOR_VERSION                       51
a929bb40c0e8 8010667: Non-zero padding is not allowed in splitverifier for tableswitch/lookupswitch instructions.
hseigel
parents: 15736
diff changeset
    60
#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
    61
#define STATIC_METHOD_IN_INTERFACE_MAJOR_VERSION       52
46403
f2b91b928476 8178949: The split verifier allows anewarray to create an array of more than 255 dimensions.
hseigel
parents: 46329
diff changeset
    62
#define MAX_ARRAY_DIMENSIONS 255
5683
116fea597b5d 6911922: JVM must throw VerifyError for jsr or jsr_w opcodes in class file v.51+
kamg
parents: 4571
diff changeset
    63
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
// Access to external entry for VerifyClassCodes - old byte code verifier
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
extern "C" {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  typedef jboolean (*verify_byte_codes_fn_t)(JNIEnv *, jclass, char *, jint);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  typedef jboolean (*verify_byte_codes_fn_new_t)(JNIEnv *, jclass, char *, jint, jint);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
static void* volatile _verify_byte_codes_fn = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
static volatile jint _is_new_verify_byte_codes_fn = (jint) true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
static void* verify_byte_codes_fn() {
47634
6a0c42c40cd1 8188220: Remove Atomic::*_ptr() uses and overloads from hotspot
coleenp
parents: 47216
diff changeset
    76
  if (OrderAccess::load_acquire(&_verify_byte_codes_fn) == NULL) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
    void *lib_handle = os::native_java_library();
7405
e6fc8d3926f8 6348631: remove the use of the HPI library from Hotspot
ikrylov
parents: 7397
diff changeset
    78
    void *func = os::dll_lookup(lib_handle, "VerifyClassCodesForMajorVersion");
47634
6a0c42c40cd1 8188220: Remove Atomic::*_ptr() uses and overloads from hotspot
coleenp
parents: 47216
diff changeset
    79
    OrderAccess::release_store(&_verify_byte_codes_fn, func);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
    if (func == NULL) {
40887
8d35e19f5548 8158854: Ensure release_store is paired with load_acquire in lock-free code
dholmes
parents: 40856
diff changeset
    81
      _is_new_verify_byte_codes_fn = false;
7405
e6fc8d3926f8 6348631: remove the use of the HPI library from Hotspot
ikrylov
parents: 7397
diff changeset
    82
      func = os::dll_lookup(lib_handle, "VerifyClassCodes");
47634
6a0c42c40cd1 8188220: Remove Atomic::*_ptr() uses and overloads from hotspot
coleenp
parents: 47216
diff changeset
    83
      OrderAccess::release_store(&_verify_byte_codes_fn, func);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  return (void*)_verify_byte_codes_fn;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
// Methods in Verifier
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
3820
0a8fbbe180db 6830542: Performance: JVM_DefineClass already verified.
acorn
parents: 3261
diff changeset
    92
bool Verifier::should_verify_for(oop class_loader, bool should_verify_class) {
0a8fbbe180db 6830542: Performance: JVM_DefineClass already verified.
acorn
parents: 3261
diff changeset
    93
  return (class_loader == NULL || !should_verify_class) ?
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
    BytecodeVerificationLocal : BytecodeVerificationRemote;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
40856
3378947a95e6 8148854: Class names "SomeClass" and "LSomeClass;" treated by JVM as an equivalent
rprotacio
parents: 39715
diff changeset
    97
bool Verifier::relax_access_for(oop loader) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  bool trusted = java_lang_ClassLoader::is_trusted_loader(loader);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  bool need_verify =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
    // verifyAll
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
    (BytecodeVerificationLocal && BytecodeVerificationRemote) ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
    // verifyRemote
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
    (!BytecodeVerificationLocal && BytecodeVerificationRemote && !trusted);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  return !need_verify;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
30616
fde3a4fee412 8076318: split verifier needs to add TraceClassResolution
hseigel
parents: 30114
diff changeset
   107
void Verifier::trace_class_resolution(Klass* resolve_class, InstanceKlass* verify_class) {
fde3a4fee412 8076318: split verifier needs to add TraceClassResolution
hseigel
parents: 30114
diff changeset
   108
  assert(verify_class != NULL, "Unexpected null verify_class");
fde3a4fee412 8076318: split verifier needs to add TraceClassResolution
hseigel
parents: 30114
diff changeset
   109
  ResourceMark rm;
fde3a4fee412 8076318: split verifier needs to add TraceClassResolution
hseigel
parents: 30114
diff changeset
   110
  Symbol* s = verify_class->source_file_name();
fde3a4fee412 8076318: split verifier needs to add TraceClassResolution
hseigel
parents: 30114
diff changeset
   111
  const char* source_file = (s != NULL ? s->as_C_string() : NULL);
fde3a4fee412 8076318: split verifier needs to add TraceClassResolution
hseigel
parents: 30114
diff changeset
   112
  const char* verify = verify_class->external_name();
fde3a4fee412 8076318: split verifier needs to add TraceClassResolution
hseigel
parents: 30114
diff changeset
   113
  const char* resolve = resolve_class->external_name();
fde3a4fee412 8076318: split verifier needs to add TraceClassResolution
hseigel
parents: 30114
diff changeset
   114
  // print in a single call to reduce interleaving between threads
fde3a4fee412 8076318: split verifier needs to add TraceClassResolution
hseigel
parents: 30114
diff changeset
   115
  if (source_file != NULL) {
38151
fffedc5e5cf8 8154110: Update class* and safepoint* logging subsystems
mockner
parents: 37301
diff changeset
   116
    log_debug(class, resolve)("%s %s %s (verification)", verify, resolve, source_file);
30616
fde3a4fee412 8076318: split verifier needs to add TraceClassResolution
hseigel
parents: 30114
diff changeset
   117
  } else {
38151
fffedc5e5cf8 8154110: Update class* and safepoint* logging subsystems
mockner
parents: 37301
diff changeset
   118
    log_debug(class, resolve)("%s %s (verification)", verify, resolve);
30616
fde3a4fee412 8076318: split verifier needs to add TraceClassResolution
hseigel
parents: 30114
diff changeset
   119
  }
fde3a4fee412 8076318: split verifier needs to add TraceClassResolution
hseigel
parents: 30114
diff changeset
   120
}
fde3a4fee412 8076318: split verifier needs to add TraceClassResolution
hseigel
parents: 30114
diff changeset
   121
34628
6d08ec72803b 8142976: Reimplement TraceClassInitialization with Unified Logging
mockner
parents: 33799
diff changeset
   122
// Prints the end-verification message to the appropriate output.
6d08ec72803b 8142976: Reimplement TraceClassInitialization with Unified Logging
mockner
parents: 33799
diff changeset
   123
void Verifier::log_end_verification(outputStream* st, const char* klassName, Symbol* exception_name, TRAPS) {
6d08ec72803b 8142976: Reimplement TraceClassInitialization with Unified Logging
mockner
parents: 33799
diff changeset
   124
  if (HAS_PENDING_EXCEPTION) {
6d08ec72803b 8142976: Reimplement TraceClassInitialization with Unified Logging
mockner
parents: 33799
diff changeset
   125
    st->print("Verification for %s has", klassName);
6d08ec72803b 8142976: Reimplement TraceClassInitialization with Unified Logging
mockner
parents: 33799
diff changeset
   126
    st->print_cr(" exception pending %s ",
6d08ec72803b 8142976: Reimplement TraceClassInitialization with Unified Logging
mockner
parents: 33799
diff changeset
   127
                 PENDING_EXCEPTION->klass()->external_name());
6d08ec72803b 8142976: Reimplement TraceClassInitialization with Unified Logging
mockner
parents: 33799
diff changeset
   128
  } else if (exception_name != NULL) {
6d08ec72803b 8142976: Reimplement TraceClassInitialization with Unified Logging
mockner
parents: 33799
diff changeset
   129
    st->print_cr("Verification for %s failed", klassName);
6d08ec72803b 8142976: Reimplement TraceClassInitialization with Unified Logging
mockner
parents: 33799
diff changeset
   130
  }
6d08ec72803b 8142976: Reimplement TraceClassInitialization with Unified Logging
mockner
parents: 33799
diff changeset
   131
  st->print_cr("End class verification for: %s", klassName);
6d08ec72803b 8142976: Reimplement TraceClassInitialization with Unified Logging
mockner
parents: 33799
diff changeset
   132
}
6d08ec72803b 8142976: Reimplement TraceClassInitialization with Unified Logging
mockner
parents: 33799
diff changeset
   133
51697
49e1b21d9878 8210470: Remove unused Verifier::verify() Verifier::Mode argument
hseigel
parents: 51444
diff changeset
   134
bool Verifier::verify(InstanceKlass* klass, bool should_verify_class, TRAPS) {
46271
979ebd346ecf 8169881: Remove implicit Handle conversions oop->Handle
coleenp
parents: 41542
diff changeset
   135
  HandleMark hm(THREAD);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  ResourceMark rm(THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
27159
3d2543e475e4 8059924: com/sun/management/DiagnosticCommandMBean/DcmdMBeanPermissionsTest.java: assert(Universe::verify_in_progress() || !SafepointSynchronize::is_at_safepoint()) failed: invariant
shade
parents: 27003
diff changeset
   138
  // Eagerly allocate the identity hash code for a klass. This is a fallout
3d2543e475e4 8059924: com/sun/management/DiagnosticCommandMBean/DcmdMBeanPermissionsTest.java: assert(Universe::verify_in_progress() || !SafepointSynchronize::is_at_safepoint()) failed: invariant
shade
parents: 27003
diff changeset
   139
  // from 6320749 and 8059924: hash code generator is not supposed to be called
3d2543e475e4 8059924: com/sun/management/DiagnosticCommandMBean/DcmdMBeanPermissionsTest.java: assert(Universe::verify_in_progress() || !SafepointSynchronize::is_at_safepoint()) failed: invariant
shade
parents: 27003
diff changeset
   140
  // during the safepoint, but it allows to sneak the hashcode in during
3d2543e475e4 8059924: com/sun/management/DiagnosticCommandMBean/DcmdMBeanPermissionsTest.java: assert(Universe::verify_in_progress() || !SafepointSynchronize::is_at_safepoint()) failed: invariant
shade
parents: 27003
diff changeset
   141
  // verification. Without this eager hashcode generation, we may end up
3d2543e475e4 8059924: com/sun/management/DiagnosticCommandMBean/DcmdMBeanPermissionsTest.java: assert(Universe::verify_in_progress() || !SafepointSynchronize::is_at_safepoint()) failed: invariant
shade
parents: 27003
diff changeset
   142
  // installing the hashcode during some other operation, which may be at
3d2543e475e4 8059924: com/sun/management/DiagnosticCommandMBean/DcmdMBeanPermissionsTest.java: assert(Universe::verify_in_progress() || !SafepointSynchronize::is_at_safepoint()) failed: invariant
shade
parents: 27003
diff changeset
   143
  // safepoint -- blowing up the checks. It was previously done as the side
3d2543e475e4 8059924: com/sun/management/DiagnosticCommandMBean/DcmdMBeanPermissionsTest.java: assert(Universe::verify_in_progress() || !SafepointSynchronize::is_at_safepoint()) failed: invariant
shade
parents: 27003
diff changeset
   144
  // effect (sic!) for external_name(), but instead of doing that, we opt to
3d2543e475e4 8059924: com/sun/management/DiagnosticCommandMBean/DcmdMBeanPermissionsTest.java: assert(Universe::verify_in_progress() || !SafepointSynchronize::is_at_safepoint()) failed: invariant
shade
parents: 27003
diff changeset
   145
  // explicitly push the hashcode in here. This is signify the following block
3d2543e475e4 8059924: com/sun/management/DiagnosticCommandMBean/DcmdMBeanPermissionsTest.java: assert(Universe::verify_in_progress() || !SafepointSynchronize::is_at_safepoint()) failed: invariant
shade
parents: 27003
diff changeset
   146
  // is IMPORTANT:
3d2543e475e4 8059924: com/sun/management/DiagnosticCommandMBean/DcmdMBeanPermissionsTest.java: assert(Universe::verify_in_progress() || !SafepointSynchronize::is_at_safepoint()) failed: invariant
shade
parents: 27003
diff changeset
   147
  if (klass->java_mirror() != NULL) {
3d2543e475e4 8059924: com/sun/management/DiagnosticCommandMBean/DcmdMBeanPermissionsTest.java: assert(Universe::verify_in_progress() || !SafepointSynchronize::is_at_safepoint()) failed: invariant
shade
parents: 27003
diff changeset
   148
    klass->java_mirror()->identity_hash();
3d2543e475e4 8059924: com/sun/management/DiagnosticCommandMBean/DcmdMBeanPermissionsTest.java: assert(Universe::verify_in_progress() || !SafepointSynchronize::is_at_safepoint()) failed: invariant
shade
parents: 27003
diff changeset
   149
  }
3d2543e475e4 8059924: com/sun/management/DiagnosticCommandMBean/DcmdMBeanPermissionsTest.java: assert(Universe::verify_in_progress() || !SafepointSynchronize::is_at_safepoint()) failed: invariant
shade
parents: 27003
diff changeset
   150
27003
19617f4c9dd0 8059595: Verifier::verify is wasting time before is_eligible_for_verification check
shade
parents: 26814
diff changeset
   151
  if (!is_eligible_for_verification(klass, should_verify_class)) {
19617f4c9dd0 8059595: Verifier::verify is wasting time before is_eligible_for_verification check
shade
parents: 26814
diff changeset
   152
    return true;
19617f4c9dd0 8059595: Verifier::verify is wasting time before is_eligible_for_verification check
shade
parents: 26814
diff changeset
   153
  }
19617f4c9dd0 8059595: Verifier::verify is wasting time before is_eligible_for_verification check
shade
parents: 26814
diff changeset
   154
31021
1dbe2a0324d6 8076319: jstat verified class fix
hseigel
parents: 30616
diff changeset
   155
  // Timer includes any side effects of class verification (resolution,
1dbe2a0324d6 8076319: jstat verified class fix
hseigel
parents: 30616
diff changeset
   156
  // etc), but not recursive calls to Verifier::verify().
1dbe2a0324d6 8076319: jstat verified class fix
hseigel
parents: 30616
diff changeset
   157
  JavaThread* jt = (JavaThread*)THREAD;
1dbe2a0324d6 8076319: jstat verified class fix
hseigel
parents: 30616
diff changeset
   158
  PerfClassTraceTime timer(ClassLoader::perf_class_verify_time(),
1dbe2a0324d6 8076319: jstat verified class fix
hseigel
parents: 30616
diff changeset
   159
                           ClassLoader::perf_class_verify_selftime(),
1dbe2a0324d6 8076319: jstat verified class fix
hseigel
parents: 30616
diff changeset
   160
                           ClassLoader::perf_classes_verified(),
1dbe2a0324d6 8076319: jstat verified class fix
hseigel
parents: 30616
diff changeset
   161
                           jt->get_thread_stat()->perf_recursion_counts_addr(),
1dbe2a0324d6 8076319: jstat verified class fix
hseigel
parents: 30616
diff changeset
   162
                           jt->get_thread_stat()->perf_timers_addr(),
1dbe2a0324d6 8076319: jstat verified class fix
hseigel
parents: 30616
diff changeset
   163
                           PerfClassTraceTime::CLASS_VERIFY);
1dbe2a0324d6 8076319: jstat verified class fix
hseigel
parents: 30616
diff changeset
   164
27003
19617f4c9dd0 8059595: Verifier::verify is wasting time before is_eligible_for_verification check
shade
parents: 26814
diff changeset
   165
  // If the class should be verified, first see if we can use the split
19617f4c9dd0 8059595: Verifier::verify is wasting time before is_eligible_for_verification check
shade
parents: 26814
diff changeset
   166
  // verifier.  If not, or if verification fails and FailOverToOldVerifier
19617f4c9dd0 8059595: Verifier::verify is wasting time before is_eligible_for_verification check
shade
parents: 26814
diff changeset
   167
  // is set, then call the inference verifier.
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7405
diff changeset
   168
  Symbol* exception_name = NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  const size_t message_buffer_len = klass->name()->utf8_length() + 1024;
54133
829bf950287e 8220366: Optimize Symbol handling in ClassVerifier and SignatureStream
redestad
parents: 54124
diff changeset
   170
  char* message_buffer = NULL;
829bf950287e 8220366: Optimize Symbol handling in ClassVerifier and SignatureStream
redestad
parents: 54124
diff changeset
   171
  char* exception_message = NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   173
  bool can_failover = FailOverToOldVerifier &&
27003
19617f4c9dd0 8059595: Verifier::verify is wasting time before is_eligible_for_verification check
shade
parents: 26814
diff changeset
   174
     klass->major_version() < NOFAILOVER_MAJOR_VERSION;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
54133
829bf950287e 8220366: Optimize Symbol handling in ClassVerifier and SignatureStream
redestad
parents: 54124
diff changeset
   176
  log_info(class, init)("Start class verification for: %s", klass->external_name());
27003
19617f4c9dd0 8059595: Verifier::verify is wasting time before is_eligible_for_verification check
shade
parents: 26814
diff changeset
   177
  if (klass->major_version() >= STACKMAP_ATTRIBUTE_MAJOR_VERSION) {
19617f4c9dd0 8059595: Verifier::verify is wasting time before is_eligible_for_verification check
shade
parents: 26814
diff changeset
   178
    ClassVerifier split_verifier(klass, THREAD);
19617f4c9dd0 8059595: Verifier::verify is wasting time before is_eligible_for_verification check
shade
parents: 26814
diff changeset
   179
    split_verifier.verify_class(THREAD);
19617f4c9dd0 8059595: Verifier::verify is wasting time before is_eligible_for_verification check
shade
parents: 26814
diff changeset
   180
    exception_name = split_verifier.result();
19617f4c9dd0 8059595: Verifier::verify is wasting time before is_eligible_for_verification check
shade
parents: 26814
diff changeset
   181
    if (can_failover && !HAS_PENDING_EXCEPTION &&
19617f4c9dd0 8059595: Verifier::verify is wasting time before is_eligible_for_verification check
shade
parents: 26814
diff changeset
   182
        (exception_name == vmSymbols::java_lang_VerifyError() ||
19617f4c9dd0 8059595: Verifier::verify is wasting time before is_eligible_for_verification check
shade
parents: 26814
diff changeset
   183
         exception_name == vmSymbols::java_lang_ClassFormatError())) {
54133
829bf950287e 8220366: Optimize Symbol handling in ClassVerifier and SignatureStream
redestad
parents: 54124
diff changeset
   184
      log_info(verification)("Fail over class verification to old verifier for: %s", klass->external_name());
829bf950287e 8220366: Optimize Symbol handling in ClassVerifier and SignatureStream
redestad
parents: 54124
diff changeset
   185
      log_info(class, init)("Fail over class verification to old verifier for: %s", klass->external_name());
829bf950287e 8220366: Optimize Symbol handling in ClassVerifier and SignatureStream
redestad
parents: 54124
diff changeset
   186
      message_buffer = NEW_RESOURCE_ARRAY(char, message_buffer_len);
829bf950287e 8220366: Optimize Symbol handling in ClassVerifier and SignatureStream
redestad
parents: 54124
diff changeset
   187
      exception_message = message_buffer;
27003
19617f4c9dd0 8059595: Verifier::verify is wasting time before is_eligible_for_verification check
shade
parents: 26814
diff changeset
   188
      exception_name = inference_verify(
19617f4c9dd0 8059595: Verifier::verify is wasting time before is_eligible_for_verification check
shade
parents: 26814
diff changeset
   189
        klass, message_buffer, message_buffer_len, THREAD);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
    }
27003
19617f4c9dd0 8059595: Verifier::verify is wasting time before is_eligible_for_verification check
shade
parents: 26814
diff changeset
   191
    if (exception_name != NULL) {
19617f4c9dd0 8059595: Verifier::verify is wasting time before is_eligible_for_verification check
shade
parents: 26814
diff changeset
   192
      exception_message = split_verifier.exception_message();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
    }
27003
19617f4c9dd0 8059595: Verifier::verify is wasting time before is_eligible_for_verification check
shade
parents: 26814
diff changeset
   194
  } else {
54133
829bf950287e 8220366: Optimize Symbol handling in ClassVerifier and SignatureStream
redestad
parents: 54124
diff changeset
   195
    message_buffer = NEW_RESOURCE_ARRAY(char, message_buffer_len);
829bf950287e 8220366: Optimize Symbol handling in ClassVerifier and SignatureStream
redestad
parents: 54124
diff changeset
   196
    exception_message = message_buffer;
27003
19617f4c9dd0 8059595: Verifier::verify is wasting time before is_eligible_for_verification check
shade
parents: 26814
diff changeset
   197
    exception_name = inference_verify(
19617f4c9dd0 8059595: Verifier::verify is wasting time before is_eligible_for_verification check
shade
parents: 26814
diff changeset
   198
        klass, message_buffer, message_buffer_len, THREAD);
19617f4c9dd0 8059595: Verifier::verify is wasting time before is_eligible_for_verification check
shade
parents: 26814
diff changeset
   199
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
46701
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 46625
diff changeset
   201
  LogTarget(Info, class, init) lt1;
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 46625
diff changeset
   202
  if (lt1.is_enabled()) {
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 46625
diff changeset
   203
    LogStream ls(lt1);
54133
829bf950287e 8220366: Optimize Symbol handling in ClassVerifier and SignatureStream
redestad
parents: 54124
diff changeset
   204
    log_end_verification(&ls, klass->external_name(), exception_name, THREAD);
34628
6d08ec72803b 8142976: Reimplement TraceClassInitialization with Unified Logging
mockner
parents: 33799
diff changeset
   205
  }
46701
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 46625
diff changeset
   206
  LogTarget(Info, verification) lt2;
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 46625
diff changeset
   207
  if (lt2.is_enabled()) {
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 46625
diff changeset
   208
    LogStream ls(lt2);
54133
829bf950287e 8220366: Optimize Symbol handling in ClassVerifier and SignatureStream
redestad
parents: 54124
diff changeset
   209
    log_end_verification(&ls, klass->external_name(), exception_name, THREAD);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  if (HAS_PENDING_EXCEPTION) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
    return false; // use the existing exception
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7405
diff changeset
   214
  } else if (exception_name == NULL) {
54133
829bf950287e 8220366: Optimize Symbol handling in ClassVerifier and SignatureStream
redestad
parents: 54124
diff changeset
   215
    return true; // verification succeeded
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  } else { // VerifyError or ClassFormatError to be created and thrown
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 46289
diff changeset
   217
    Klass* kls =
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
      SystemDictionary::resolve_or_fail(exception_name, true, CHECK_false);
38151
fffedc5e5cf8 8154110: Update class* and safepoint* logging subsystems
mockner
parents: 37301
diff changeset
   219
    if (log_is_enabled(Debug, class, resolve)) {
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 46289
diff changeset
   220
      Verifier::trace_class_resolution(kls, klass);
30616
fde3a4fee412 8076318: split verifier needs to add TraceClassResolution
hseigel
parents: 30114
diff changeset
   221
    }
fde3a4fee412 8076318: split verifier needs to add TraceClassResolution
hseigel
parents: 30114
diff changeset
   222
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 46289
diff changeset
   223
    while (kls != NULL) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
      if (kls == klass) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
        // If the class being verified is the exception we're creating
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
        // or one of it's superclasses, we're in trouble and are going
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
        // to infinitely recurse when we try to initialize the exception.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
        // So bail out here by throwing the preallocated VM error.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
        THROW_OOP_(Universe::virtual_machine_error_instance(), false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
      kls = kls->super();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
    }
54133
829bf950287e 8220366: Optimize Symbol handling in ClassVerifier and SignatureStream
redestad
parents: 54124
diff changeset
   233
    if (message_buffer != NULL) {
829bf950287e 8220366: Optimize Symbol handling in ClassVerifier and SignatureStream
redestad
parents: 54124
diff changeset
   234
      message_buffer[message_buffer_len - 1] = '\0'; // just to be sure
829bf950287e 8220366: Optimize Symbol handling in ClassVerifier and SignatureStream
redestad
parents: 54124
diff changeset
   235
    }
829bf950287e 8220366: Optimize Symbol handling in ClassVerifier and SignatureStream
redestad
parents: 54124
diff changeset
   236
    assert(exception_message != NULL, "");
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   237
    THROW_MSG_(exception_name, exception_message, false);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 46289
diff changeset
   241
bool Verifier::is_eligible_for_verification(InstanceKlass* klass, bool should_verify_class) {
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7405
diff changeset
   242
  Symbol* name = klass->name();
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13479
diff changeset
   243
  Klass* refl_magic_klass = SystemDictionary::reflect_MagicAccessorImpl_klass();
19704
475be20c57de 8023872: Verification error in generated lambda classes
acorn
parents: 19692
diff changeset
   244
475be20c57de 8023872: Verification error in generated lambda classes
acorn
parents: 19692
diff changeset
   245
  bool is_reflect = refl_magic_klass != NULL && klass->is_subtype_of(refl_magic_klass);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
3820
0a8fbbe180db 6830542: Performance: JVM_DefineClass already verified.
acorn
parents: 3261
diff changeset
   247
  return (should_verify_for(klass->class_loader(), should_verify_class) &&
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
    // return if the class is a bootstrapping class
3820
0a8fbbe180db 6830542: Performance: JVM_DefineClass already verified.
acorn
parents: 3261
diff changeset
   249
    // or defineClass specified not to verify by default (flags override passed arg)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
    // We need to skip the following four for bootstraping
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
    name != vmSymbols::java_lang_Object() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
    name != vmSymbols::java_lang_Class() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
    name != vmSymbols::java_lang_String() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
    name != vmSymbols::java_lang_Throwable() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
    // Can not verify the bytecodes for shared classes because they have
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
    // already been rewritten to contain constant pool cache indices,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
    // which the verifier can't understand.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
    // Shared classes shouldn't have stackmaps either.
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 46289
diff changeset
   260
    !klass->is_shared() &&
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
    // As of the fix for 4486457 we disable verification for all of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
    // dynamically-generated bytecodes associated with the 1.4
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
    // reflection implementation, not just those associated with
37301
a936b4e01afb 8137058: Clear out all non-Critical APIs from sun.reflect
chegar
parents: 37261
diff changeset
   265
    // jdk/internal/reflect/SerializationConstructorAccessor.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
    // NOTE: this is called too early in the bootstrapping process to be
24456
8c7933fa5a1f 8025580: Temporary flags: UseNewReflection and ReflectionWrapResolutionErrors
coleenp
parents: 24424
diff changeset
   267
    // guarded by Universe::is_gte_jdk14x_version().
19704
475be20c57de 8023872: Verification error in generated lambda classes
acorn
parents: 19692
diff changeset
   268
    // Also for lambda generated code, gte jdk8
24456
8c7933fa5a1f 8025580: Temporary flags: UseNewReflection and ReflectionWrapResolutionErrors
coleenp
parents: 24424
diff changeset
   269
    (!is_reflect));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7405
diff changeset
   272
Symbol* Verifier::inference_verify(
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 46289
diff changeset
   273
    InstanceKlass* klass, char* message, size_t message_len, TRAPS) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
  JavaThread* thread = (JavaThread*)THREAD;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  JNIEnv *env = thread->jni_environment();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
  void* verify_func = verify_byte_codes_fn();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
  if (verify_func == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
    jio_snprintf(message, message_len, "Could not link verifier");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
    return vmSymbols::java_lang_VerifyError();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
  ResourceMark rm(THREAD);
37261
659ed5b20b48 8153026: Change logging tag 'verboseverification' to 'verification'
rprotacio
parents: 37242
diff changeset
   285
  log_info(verification)("Verifying class %s with old format", klass->external_name());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
  jclass cls = (jclass) JNIHandles::make_local(env, klass->java_mirror());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
  jint result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
    HandleMark hm(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
    ThreadToNativeFromVM ttn(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
    // ThreadToNativeFromVM takes care of changing thread_state, so safepoint
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
    // code knows that we have left the VM
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
    if (_is_new_verify_byte_codes_fn) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
      verify_byte_codes_fn_new_t func =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
        CAST_TO_FN_PTR(verify_byte_codes_fn_new_t, verify_func);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
      result = (*func)(env, cls, message, (int)message_len,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
          klass->major_version());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
      verify_byte_codes_fn_t func =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
        CAST_TO_FN_PTR(verify_byte_codes_fn_t, verify_func);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
      result = (*func)(env, cls, message, (int)message_len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
  JNIHandles::destroy_local(cls);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
  // These numbers are chosen so that VerifyClassCodes interface doesn't need
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
  // to be changed (still return jboolean (unsigned char)), and result is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
  // 1 when verification is passed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
  if (result == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
    return vmSymbols::java_lang_VerifyError();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
  } else if (result == 1) {
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7405
diff changeset
   316
    return NULL; // verified.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
  } else if (result == 2) {
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7405
diff changeset
   318
    THROW_MSG_(vmSymbols::java_lang_OutOfMemoryError(), message, NULL);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
  } else if (result == 3) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
    return vmSymbols::java_lang_ClassFormatError();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
    ShouldNotReachHere();
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7405
diff changeset
   323
    return NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   327
TypeOrigin TypeOrigin::null() {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   328
  return TypeOrigin();
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   329
}
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   330
TypeOrigin TypeOrigin::local(u2 index, StackMapFrame* frame) {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   331
  assert(frame != NULL, "Must have a frame");
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   332
  return TypeOrigin(CF_LOCALS, index, StackMapFrame::copy(frame),
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   333
     frame->local_at(index));
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   334
}
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   335
TypeOrigin TypeOrigin::stack(u2 index, StackMapFrame* frame) {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   336
  assert(frame != NULL, "Must have a frame");
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   337
  return TypeOrigin(CF_STACK, index, StackMapFrame::copy(frame),
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   338
      frame->stack_at(index));
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   339
}
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   340
TypeOrigin TypeOrigin::sm_local(u2 index, StackMapFrame* frame) {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   341
  assert(frame != NULL, "Must have a frame");
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   342
  return TypeOrigin(SM_LOCALS, index, StackMapFrame::copy(frame),
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   343
      frame->local_at(index));
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   344
}
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   345
TypeOrigin TypeOrigin::sm_stack(u2 index, StackMapFrame* frame) {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   346
  assert(frame != NULL, "Must have a frame");
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   347
  return TypeOrigin(SM_STACK, index, StackMapFrame::copy(frame),
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   348
      frame->stack_at(index));
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
TypeOrigin TypeOrigin::bad_index(u2 index) {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   351
  return TypeOrigin(BAD_INDEX, index, NULL, VerificationType::bogus_type());
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   352
}
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   353
TypeOrigin TypeOrigin::cp(u2 index, VerificationType vt) {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   354
  return TypeOrigin(CONST_POOL, index, NULL, vt);
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   355
}
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   356
TypeOrigin TypeOrigin::signature(VerificationType vt) {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   357
  return TypeOrigin(SIG, 0, NULL, vt);
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
TypeOrigin TypeOrigin::implicit(VerificationType t) {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   360
  return TypeOrigin(IMPLICIT, 0, NULL, t);
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   361
}
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   362
TypeOrigin TypeOrigin::frame(StackMapFrame* frame) {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   363
  return TypeOrigin(FRAME_ONLY, 0, StackMapFrame::copy(frame),
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   364
                    VerificationType::bogus_type());
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   365
}
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   366
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   367
void TypeOrigin::reset_frame() {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   368
  if (_frame != NULL) {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   369
    _frame->restore();
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   370
  }
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   371
}
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   372
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   373
void TypeOrigin::details(outputStream* ss) const {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   374
  _type.print_on(ss);
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   375
  switch (_origin) {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   376
    case CF_LOCALS:
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   377
      ss->print(" (current frame, locals[%d])", _index);
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   378
      break;
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   379
    case CF_STACK:
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   380
      ss->print(" (current frame, stack[%d])", _index);
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   381
      break;
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   382
    case SM_LOCALS:
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   383
      ss->print(" (stack map, locals[%d])", _index);
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   384
      break;
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   385
    case SM_STACK:
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   386
      ss->print(" (stack map, stack[%d])", _index);
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   387
      break;
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   388
    case CONST_POOL:
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   389
      ss->print(" (constant pool %d)", _index);
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   390
      break;
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   391
    case SIG:
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   392
      ss->print(" (from method signature)");
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   393
      break;
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   394
    case IMPLICIT:
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   395
    case FRAME_ONLY:
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   396
    case NONE:
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   397
    default:
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   398
      ;
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   399
  }
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   400
}
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   401
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   402
#ifdef ASSERT
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   403
void TypeOrigin::print_on(outputStream* str) const {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   404
  str->print("{%d,%d,%p:", _origin, _index, _frame);
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   405
  if (_frame != NULL) {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   406
    _frame->print_on(str);
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   407
  } else {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   408
    str->print("null");
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   409
  }
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   410
  str->print(",");
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   411
  _type.print_on(str);
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   412
  str->print("}");
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   413
}
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   414
#endif
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   415
17370
59a0620561fa 8003557: NPG: Klass* const k should be const Klass* k.
minqi
parents: 16676
diff changeset
   416
void ErrorContext::details(outputStream* ss, const Method* method) const {
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   417
  if (is_valid()) {
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 24351
diff changeset
   418
    ss->cr();
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   419
    ss->print_cr("Exception Details:");
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   420
    location_details(ss, method);
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   421
    reason_details(ss);
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   422
    frame_details(ss);
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   423
    bytecode_details(ss, method);
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   424
    handler_details(ss, method);
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   425
    stackmap_details(ss, method);
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   426
  }
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   427
}
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   428
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   429
void ErrorContext::reason_details(outputStream* ss) const {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   430
  streamIndentor si(ss);
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   431
  ss->indent().print_cr("Reason:");
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   432
  streamIndentor si2(ss);
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 24351
diff changeset
   433
  ss->indent().print("%s", "");
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   434
  switch (_fault) {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   435
    case INVALID_BYTECODE:
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   436
      ss->print("Error exists in the bytecode");
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   437
      break;
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   438
    case WRONG_TYPE:
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   439
      if (_expected.is_valid()) {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   440
        ss->print("Type ");
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   441
        _type.details(ss);
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   442
        ss->print(" is not assignable to ");
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   443
        _expected.details(ss);
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   444
      } else {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   445
        ss->print("Invalid type: ");
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   446
        _type.details(ss);
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   447
      }
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   448
      break;
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   449
    case FLAGS_MISMATCH:
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   450
      if (_expected.is_valid()) {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   451
        ss->print("Current frame's flags are not assignable "
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   452
                  "to stack map frame's.");
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   453
      } else {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   454
        ss->print("Current frame's flags are invalid in this context.");
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   455
      }
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   456
      break;
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   457
    case BAD_CP_INDEX:
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   458
      ss->print("Constant pool index %d is invalid", _type.index());
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   459
      break;
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   460
    case BAD_LOCAL_INDEX:
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   461
      ss->print("Local index %d is invalid", _type.index());
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   462
      break;
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   463
    case LOCALS_SIZE_MISMATCH:
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   464
      ss->print("Current frame's local size doesn't match stackmap.");
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   465
      break;
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   466
    case STACK_SIZE_MISMATCH:
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   467
      ss->print("Current frame's stack size doesn't match stackmap.");
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   468
      break;
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   469
    case STACK_OVERFLOW:
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   470
      ss->print("Exceeded max stack size.");
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   471
      break;
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   472
    case STACK_UNDERFLOW:
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   473
      ss->print("Attempt to pop empty stack.");
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   474
      break;
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   475
    case MISSING_STACKMAP:
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   476
      ss->print("Expected stackmap frame at this location.");
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   477
      break;
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   478
    case BAD_STACKMAP:
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   479
      ss->print("Invalid stackmap specification.");
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   480
      break;
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   481
    case UNKNOWN:
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   482
    default:
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   483
      ShouldNotReachHere();
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   484
      ss->print_cr("Unknown");
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   485
  }
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 24351
diff changeset
   486
  ss->cr();
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   487
}
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   488
17370
59a0620561fa 8003557: NPG: Klass* const k should be const Klass* k.
minqi
parents: 16676
diff changeset
   489
void ErrorContext::location_details(outputStream* ss, const Method* method) const {
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   490
  if (_bci != -1 && method != NULL) {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   491
    streamIndentor si(ss);
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   492
    const char* bytecode_name = "<invalid>";
25714
87fa6860b5ae 8004128: NPG: remove stackwalking in Threads::gc_prologue and gc_epilogue code
coleenp
parents: 24663
diff changeset
   493
    if (method->validate_bci(_bci) != -1) {
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   494
      Bytecodes::Code code = Bytecodes::code_or_bp_at(method->bcp_from(_bci));
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   495
      if (Bytecodes::is_defined(code)) {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   496
          bytecode_name = Bytecodes::name(code);
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   497
      } else {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   498
          bytecode_name = "<illegal>";
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   499
      }
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   500
    }
14391
df0a1573d5bd 8000725: NPG: method_holder() and pool_holder() and pool_holder field should be InstanceKlass
coleenp
parents: 14385
diff changeset
   501
    InstanceKlass* ik = method->method_holder();
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   502
    ss->indent().print_cr("Location:");
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   503
    streamIndentor si2(ss);
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   504
    ss->indent().print_cr("%s.%s%s @%d: %s",
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   505
        ik->name()->as_C_string(), method->name()->as_C_string(),
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   506
        method->signature()->as_C_string(), _bci, bytecode_name);
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   507
  }
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   508
}
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   509
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   510
void ErrorContext::frame_details(outputStream* ss) const {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   511
  streamIndentor si(ss);
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   512
  if (_type.is_valid() && _type.frame() != NULL) {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   513
    ss->indent().print_cr("Current Frame:");
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   514
    streamIndentor si2(ss);
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   515
    _type.frame()->print_on(ss);
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   516
  }
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   517
  if (_expected.is_valid() && _expected.frame() != NULL) {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   518
    ss->indent().print_cr("Stackmap Frame:");
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   519
    streamIndentor si2(ss);
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   520
    _expected.frame()->print_on(ss);
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   521
  }
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   522
}
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   523
17370
59a0620561fa 8003557: NPG: Klass* const k should be const Klass* k.
minqi
parents: 16676
diff changeset
   524
void ErrorContext::bytecode_details(outputStream* ss, const Method* method) const {
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   525
  if (method != NULL) {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   526
    streamIndentor si(ss);
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   527
    ss->indent().print_cr("Bytecode:");
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   528
    streamIndentor si2(ss);
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   529
    ss->print_data(method->code_base(), method->code_size(), false);
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   530
  }
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   531
}
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   532
17370
59a0620561fa 8003557: NPG: Klass* const k should be const Klass* k.
minqi
parents: 16676
diff changeset
   533
void ErrorContext::handler_details(outputStream* ss, const Method* method) const {
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   534
  if (method != NULL) {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   535
    streamIndentor si(ss);
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   536
    ExceptionTable table(method);
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   537
    if (table.length() > 0) {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   538
      ss->indent().print_cr("Exception Handler Table:");
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   539
      streamIndentor si2(ss);
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   540
      for (int i = 0; i < table.length(); ++i) {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   541
        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
   542
            table.end_pc(i), table.handler_pc(i));
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
    }
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   545
  }
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   546
}
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   547
17370
59a0620561fa 8003557: NPG: Klass* const k should be const Klass* k.
minqi
parents: 16676
diff changeset
   548
void ErrorContext::stackmap_details(outputStream* ss, const Method* method) const {
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   549
  if (method != NULL && method->has_stackmap_table()) {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   550
    streamIndentor si(ss);
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   551
    ss->indent().print_cr("Stackmap Table:");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13479
diff changeset
   552
    Array<u1>* data = method->stackmap_data();
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   553
    stack_map_table* sm_table =
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13479
diff changeset
   554
        stack_map_table::at((address)data->adr_at(0));
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   555
    stack_map_frame* sm_frame = sm_table->entries();
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   556
    streamIndentor si2(ss);
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   557
    int current_offset = -1;
43178
6fb98b21d035 8161218: Better bytecode loading
hseigel
parents: 41542
diff changeset
   558
    address end_of_sm_table = (address)sm_table + method->stackmap_data()->length();
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   559
    for (u2 i = 0; i < sm_table->number_of_entries(); ++i) {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   560
      ss->indent();
43178
6fb98b21d035 8161218: Better bytecode loading
hseigel
parents: 41542
diff changeset
   561
      if (!sm_frame->verify((address)sm_frame, end_of_sm_table)) {
41542
c705c10c4914 8159511: Stack map validation
hseigel
parents: 40923
diff changeset
   562
        sm_frame->print_truncated(ss, current_offset);
c705c10c4914 8159511: Stack map validation
hseigel
parents: 40923
diff changeset
   563
        return;
c705c10c4914 8159511: Stack map validation
hseigel
parents: 40923
diff changeset
   564
      }
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   565
      sm_frame->print_on(ss, current_offset);
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 24351
diff changeset
   566
      ss->cr();
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   567
      current_offset += sm_frame->offset_delta();
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   568
      sm_frame = sm_frame->next();
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   569
    }
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   570
  }
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   571
}
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   572
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
// Methods in ClassVerifier
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
ClassVerifier::ClassVerifier(
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 46289
diff changeset
   576
    InstanceKlass* klass, TRAPS)
54133
829bf950287e 8220366: Optimize Symbol handling in ClassVerifier and SignatureStream
redestad
parents: 54124
diff changeset
   577
    : _thread(THREAD), _previous_symbol(NULL), _symbols(NULL), _exception_type(NULL),
54308
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
   578
      _message(NULL), _method_signatures_table(NULL), _klass(klass) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
  _this_type = VerificationType::reference_type(klass->name());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
ClassVerifier::~ClassVerifier() {
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7405
diff changeset
   583
  // Decrement the reference count for any symbols created.
54133
829bf950287e 8220366: Optimize Symbol handling in ClassVerifier and SignatureStream
redestad
parents: 54124
diff changeset
   584
  if (_symbols != NULL) {
829bf950287e 8220366: Optimize Symbol handling in ClassVerifier and SignatureStream
redestad
parents: 54124
diff changeset
   585
    for (int i = 0; i < _symbols->length(); i++) {
829bf950287e 8220366: Optimize Symbol handling in ClassVerifier and SignatureStream
redestad
parents: 54124
diff changeset
   586
      Symbol* s = _symbols->at(i);
829bf950287e 8220366: Optimize Symbol handling in ClassVerifier and SignatureStream
redestad
parents: 54124
diff changeset
   587
      s->decrement_refcount();
829bf950287e 8220366: Optimize Symbol handling in ClassVerifier and SignatureStream
redestad
parents: 54124
diff changeset
   588
    }
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7405
diff changeset
   589
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
7380
041cf7f1cce6 6865028: Illegal instructions passing verification prior to 'invokespecial Object.<init>'
kamg
parents: 6173
diff changeset
   592
VerificationType ClassVerifier::object_type() const {
041cf7f1cce6 6865028: Illegal instructions passing verification prior to 'invokespecial Object.<init>'
kamg
parents: 6173
diff changeset
   593
  return VerificationType::reference_type(vmSymbols::java_lang_Object());
041cf7f1cce6 6865028: Illegal instructions passing verification prior to 'invokespecial Object.<init>'
kamg
parents: 6173
diff changeset
   594
}
041cf7f1cce6 6865028: Illegal instructions passing verification prior to 'invokespecial Object.<init>'
kamg
parents: 6173
diff changeset
   595
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   596
TypeOrigin ClassVerifier::ref_ctx(const char* sig, TRAPS) {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   597
  VerificationType vt = VerificationType::reference_type(
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   598
      create_temporary_symbol(sig, (int)strlen(sig), THREAD));
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   599
  return TypeOrigin::implicit(vt);
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   600
}
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   601
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
void ClassVerifier::verify_class(TRAPS) {
37261
659ed5b20b48 8153026: Change logging tag 'verboseverification' to 'verification'
rprotacio
parents: 37242
diff changeset
   603
  log_info(verification)("Verifying class %s with new format", _klass->external_name());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
54308
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
   605
  // Either verifying both local and remote classes or just remote classes.
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
   606
  assert(BytecodeVerificationRemote, "Should not be here");
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
   607
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
   608
  // Create hash table containing method signatures.
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
   609
  method_signatures_table_type method_signatures_table;
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
   610
  set_method_signatures_table(&method_signatures_table);
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
   611
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13479
diff changeset
   612
  Array<Method*>* methods = _klass->methods();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
  int num_methods = methods->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
  for (int index = 0; index < num_methods; index++) {
5693
3015c564fcbc 6956164: nightly regressions from 6939207
jrose
parents: 5688
diff changeset
   616
    // Check for recursive re-verification before each method.
3015c564fcbc 6956164: nightly regressions from 6939207
jrose
parents: 5688
diff changeset
   617
    if (was_recursively_verified())  return;
3015c564fcbc 6956164: nightly regressions from 6939207
jrose
parents: 5688
diff changeset
   618
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13479
diff changeset
   619
    Method* m = methods->at(index);
14385
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
   620
    if (m->is_native() || m->is_abstract() || m->is_overpass()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
      // 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
   622
      // parser that methods do not override a final method.  Overpass methods
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
   623
      // are trusted since the VM generates them.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
      continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
    verify_method(methodHandle(THREAD, m), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
  }
5693
3015c564fcbc 6956164: nightly regressions from 6939207
jrose
parents: 5688
diff changeset
   628
34628
6d08ec72803b 8142976: Reimplement TraceClassInitialization with Unified Logging
mockner
parents: 33799
diff changeset
   629
  if (was_recursively_verified()){
37261
659ed5b20b48 8153026: Change logging tag 'verboseverification' to 'verification'
rprotacio
parents: 37242
diff changeset
   630
    log_info(verification)("Recursive verification detected for: %s", _klass->external_name());
38151
fffedc5e5cf8 8154110: Update class* and safepoint* logging subsystems
mockner
parents: 37301
diff changeset
   631
    log_info(class, init)("Recursive verification detected for: %s",
34628
6d08ec72803b 8142976: Reimplement TraceClassInitialization with Unified Logging
mockner
parents: 33799
diff changeset
   632
                        _klass->external_name());
5693
3015c564fcbc 6956164: nightly regressions from 6939207
jrose
parents: 5688
diff changeset
   633
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
54308
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
   636
// Translate the signature entries into verification types and save them in
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
   637
// the growable array.  Also, save the count of arguments.
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
   638
void ClassVerifier::translate_signature(Symbol* const method_sig,
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
   639
                                        sig_as_verification_types* sig_verif_types,
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
   640
                                        TRAPS) {
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
   641
  SignatureStream sig_stream(method_sig);
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
   642
  VerificationType sig_type[2];
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
   643
  int sig_i = 0;
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
   644
  GrowableArray<VerificationType>* verif_types = sig_verif_types->sig_verif_types();
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
   645
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
   646
  // Translate the signature arguments into verification types.
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
   647
  while (!sig_stream.at_return_type()) {
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
   648
    int n = change_sig_to_verificationType(&sig_stream, sig_type, CHECK_VERIFY(this));
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
   649
    assert(n <= 2, "Unexpected signature type");
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
   650
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
   651
    // Store verification type(s).  Longs and Doubles each have two verificationTypes.
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
   652
    for (int x = 0; x < n; x++) {
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
   653
      verif_types->push(sig_type[x]);
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
   654
    }
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
   655
    sig_i += n;
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
   656
    sig_stream.next();
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
   657
  }
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
   658
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
   659
  // Set final arg count, not including the return type.  The final arg count will
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
   660
  // be compared with sig_verify_types' length to see if there is a return type.
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
   661
  sig_verif_types->set_num_args(sig_i);
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
   662
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
   663
  // Store verification type(s) for the return type, if there is one.
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
   664
  if (sig_stream.type() != T_VOID) {
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
   665
    int n = change_sig_to_verificationType(&sig_stream, sig_type, CHECK_VERIFY(this));
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
   666
    assert(n <= 2, "Unexpected signature return type");
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
   667
    for (int y = 0; y < n; y++) {
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
   668
      verif_types->push(sig_type[y]);
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
   669
    }
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
   670
  }
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
   671
}
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
   672
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
   673
void ClassVerifier::create_method_sig_entry(sig_as_verification_types* sig_verif_types,
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
   674
                                            int sig_index, TRAPS) {
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
   675
  // Translate the signature into verification types.
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
   676
  ConstantPool* cp = _klass->constants();
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
   677
  Symbol* const method_sig = cp->symbol_at(sig_index);
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
   678
  translate_signature(method_sig, sig_verif_types, CHECK_VERIFY(this));
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
   679
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
   680
  // Add the list of this signature's verification types to the table.
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
   681
  bool is_unique = method_signatures_table()->put(sig_index, sig_verif_types);
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
   682
  assert(is_unique, "Duplicate entries in method_signature_table");
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
   683
}
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
   684
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33207
diff changeset
   685
void ClassVerifier::verify_method(const methodHandle& m, TRAPS) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13479
diff changeset
   686
  HandleMark hm(THREAD);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
  _method = m;   // initialize _method
37261
659ed5b20b48 8153026: Change logging tag 'verboseverification' to 'verification'
rprotacio
parents: 37242
diff changeset
   688
  log_info(verification)("Verifying method %s", m->name_and_sig_as_C_string());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 24351
diff changeset
   690
// For clang, the only good constant format string is a literal constant format string.
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 24351
diff changeset
   691
#define bad_type_msg "Bad type on operand stack in %s"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
13396
1b2b5f740ee0 7188911: nightly failures after JSR 292 lazy method handle update (round 2)
twisti
parents: 13283
diff changeset
   693
  int32_t max_stack = m->verifier_max_stack();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
  int32_t max_locals = m->max_locals();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
  constantPoolHandle cp(THREAD, m->constants());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
54124
5d48ae032588 8219579: Remove redundant signature parsing from the verifier
hseigel
parents: 53908
diff changeset
   697
  // Method signature was checked in ClassFileParser.
5d48ae032588 8219579: Remove redundant signature parsing from the verifier
hseigel
parents: 53908
diff changeset
   698
  assert(SignatureVerifier::is_valid_method_signature(m->signature()),
5d48ae032588 8219579: Remove redundant signature parsing from the verifier
hseigel
parents: 53908
diff changeset
   699
         "Invalid method signature");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
  // Initial stack map frame: offset is 0, stack is initially empty.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
  StackMapFrame current_frame(max_locals, max_stack, this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
  // Set initial locals
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
  VerificationType return_type = current_frame.set_locals_from_arg(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   705
    m, current_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
489c9b5090e2 Initial load
duke
parents:
diff changeset
   707
  int32_t stackmap_index = 0; // index to the stackmap array
489c9b5090e2 Initial load
duke
parents:
diff changeset
   708
489c9b5090e2 Initial load
duke
parents:
diff changeset
   709
  u4 code_length = m->code_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   710
489c9b5090e2 Initial load
duke
parents:
diff changeset
   711
  // Scan the bytecode and map each instruction's start offset to a number.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
  char* code_data = generate_code_data(m, code_length, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
  int ex_min = code_length;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
  int ex_max = -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
  // Look through each item on the exception table. Each of the fields must refer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
  // to a legal instruction.
35856
9a7e9cdf11bf 8137314: vm crash from test java/security/Policy/SignedJar/SignedJarTest.java
hseigel
parents: 35492
diff changeset
   718
  if (was_recursively_verified()) return;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   719
  verify_exception_handler_table(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   720
    code_length, code_data, ex_min, ex_max, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   721
489c9b5090e2 Initial load
duke
parents:
diff changeset
   722
  // Look through each entry on the local variable table and make sure
489c9b5090e2 Initial load
duke
parents:
diff changeset
   723
  // its range of code array offsets is valid. (4169817)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   724
  if (m->has_localvariable_table()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   725
    verify_local_variable_table(code_length, code_data, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   726
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   727
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13479
diff changeset
   728
  Array<u1>* stackmap_data = m->stackmap_data();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   729
  StackMapStream stream(stackmap_data);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   730
  StackMapReader reader(this, &stream, code_data, code_length, THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   731
  StackMapTable stackmap_table(&reader, &current_frame, max_locals, max_stack,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
                               code_data, code_length, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   733
46701
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 46625
diff changeset
   734
  LogTarget(Info, verification) lt;
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 46625
diff changeset
   735
  if (lt.is_enabled()) {
37044
f1965d5d1055 8150083: Convert VerboseVerification to Unified Logging
rprotacio
parents: 35856
diff changeset
   736
    ResourceMark rm(THREAD);
46701
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 46625
diff changeset
   737
    LogStream ls(lt);
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 46625
diff changeset
   738
    stackmap_table.print_on(&ls);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   739
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   740
489c9b5090e2 Initial load
duke
parents:
diff changeset
   741
  RawBytecodeStream bcs(m);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   742
489c9b5090e2 Initial load
duke
parents:
diff changeset
   743
  // Scan the byte code linearly from the start to the end
489c9b5090e2 Initial load
duke
parents:
diff changeset
   744
  bool no_control_flow = false; // Set to true when there is no direct control
489c9b5090e2 Initial load
duke
parents:
diff changeset
   745
                                // flow from current instruction to the next
489c9b5090e2 Initial load
duke
parents:
diff changeset
   746
                                // instruction in sequence
25505
9bd829aeb960 8035119: Fix exceptions to bytecode verification
hseigel
parents: 24663
diff changeset
   747
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   748
  Bytecodes::Code opcode;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   749
  while (!bcs.is_last_bytecode()) {
5693
3015c564fcbc 6956164: nightly regressions from 6939207
jrose
parents: 5688
diff changeset
   750
    // Check for recursive re-verification before each bytecode.
3015c564fcbc 6956164: nightly regressions from 6939207
jrose
parents: 5688
diff changeset
   751
    if (was_recursively_verified())  return;
3015c564fcbc 6956164: nightly regressions from 6939207
jrose
parents: 5688
diff changeset
   752
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   753
    opcode = bcs.raw_next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   754
    u2 bci = bcs.bci();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   755
489c9b5090e2 Initial load
duke
parents:
diff changeset
   756
    // Set current frame's offset to bci
489c9b5090e2 Initial load
duke
parents:
diff changeset
   757
    current_frame.set_offset(bci);
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   758
    current_frame.set_mark();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   759
489c9b5090e2 Initial load
duke
parents:
diff changeset
   760
    // Make sure every offset in stackmap table point to the beginning to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   761
    // an instruction. Match current_frame to stackmap_table entry with
489c9b5090e2 Initial load
duke
parents:
diff changeset
   762
    // the same offset if exists.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   763
    stackmap_index = verify_stackmap_table(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   764
      stackmap_index, bci, &current_frame, &stackmap_table,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   765
      no_control_flow, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   766
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   767
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   768
    bool this_uninit = false;  // Set to true when invokespecial <init> initialized 'this'
30114
daa394b459e6 7127066: Class verifier accepts an invalid class file
hseigel
parents: 30102
diff changeset
   769
    bool verified_exc_handlers = false;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   770
489c9b5090e2 Initial load
duke
parents:
diff changeset
   771
    // Merge with the next instruction
489c9b5090e2 Initial load
duke
parents:
diff changeset
   772
    {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   773
      u2 index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   774
      int target;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   775
      VerificationType type, type2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   776
      VerificationType atype;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   777
46701
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 46625
diff changeset
   778
      LogTarget(Info, verification) lt;
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 46625
diff changeset
   779
      if (lt.is_enabled()) {
37044
f1965d5d1055 8150083: Convert VerboseVerification to Unified Logging
rprotacio
parents: 35856
diff changeset
   780
        ResourceMark rm(THREAD);
46701
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 46625
diff changeset
   781
        LogStream ls(lt);
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 46625
diff changeset
   782
        current_frame.print_on(&ls);
51070
2f4c3cac8556 8206977: Minor improvements of runtime code.
goetz
parents: 50429
diff changeset
   783
        lt.print("offset = %d,  opcode = %s", bci,
2f4c3cac8556 8206977: Minor improvements of runtime code.
goetz
parents: 50429
diff changeset
   784
                 opcode == Bytecodes::_illegal ? "illegal" : Bytecodes::name(opcode));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   785
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   786
489c9b5090e2 Initial load
duke
parents:
diff changeset
   787
      // Make sure wide instruction is in correct format
489c9b5090e2 Initial load
duke
parents:
diff changeset
   788
      if (bcs.is_wide()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   789
        if (opcode != Bytecodes::_iinc   && opcode != Bytecodes::_iload  &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   790
            opcode != Bytecodes::_aload  && opcode != Bytecodes::_lload  &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   791
            opcode != Bytecodes::_istore && opcode != Bytecodes::_astore &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   792
            opcode != Bytecodes::_lstore && opcode != Bytecodes::_fload  &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   793
            opcode != Bytecodes::_dload  && opcode != Bytecodes::_fstore &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   794
            opcode != Bytecodes::_dstore) {
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   795
          /* Unreachable?  RawBytecodeStream's raw_next() returns 'illegal'
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   796
           * if we encounter a wide instruction that modifies an invalid
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   797
           * opcode (not one of the ones listed above) */
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   798
          verify_error(ErrorContext::bad_code(bci), "Bad wide instruction");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   799
          return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   800
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   801
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   802
30114
daa394b459e6 7127066: Class verifier accepts an invalid class file
hseigel
parents: 30102
diff changeset
   803
      // Look for possible jump target in exception handlers and see if it
daa394b459e6 7127066: Class verifier accepts an invalid class file
hseigel
parents: 30102
diff changeset
   804
      // matches current_frame.  Do this check here for astore*, dstore*,
daa394b459e6 7127066: Class verifier accepts an invalid class file
hseigel
parents: 30102
diff changeset
   805
      // fstore*, istore*, and lstore* opcodes because they can change the type
daa394b459e6 7127066: Class verifier accepts an invalid class file
hseigel
parents: 30102
diff changeset
   806
      // state by adding a local.  JVM Spec says that the incoming type state
daa394b459e6 7127066: Class verifier accepts an invalid class file
hseigel
parents: 30102
diff changeset
   807
      // should be used for this check.  So, do the check here before a possible
daa394b459e6 7127066: Class verifier accepts an invalid class file
hseigel
parents: 30102
diff changeset
   808
      // local is added to the type state.
daa394b459e6 7127066: Class verifier accepts an invalid class file
hseigel
parents: 30102
diff changeset
   809
      if (Bytecodes::is_store_into_local(opcode) && bci >= ex_min && bci < ex_max) {
35856
9a7e9cdf11bf 8137314: vm crash from test java/security/Policy/SignedJar/SignedJarTest.java
hseigel
parents: 35492
diff changeset
   810
        if (was_recursively_verified()) return;
30114
daa394b459e6 7127066: Class verifier accepts an invalid class file
hseigel
parents: 30102
diff changeset
   811
        verify_exception_handler_targets(
daa394b459e6 7127066: Class verifier accepts an invalid class file
hseigel
parents: 30102
diff changeset
   812
          bci, this_uninit, &current_frame, &stackmap_table, CHECK_VERIFY(this));
daa394b459e6 7127066: Class verifier accepts an invalid class file
hseigel
parents: 30102
diff changeset
   813
        verified_exc_handlers = true;
daa394b459e6 7127066: Class verifier accepts an invalid class file
hseigel
parents: 30102
diff changeset
   814
      }
daa394b459e6 7127066: Class verifier accepts an invalid class file
hseigel
parents: 30102
diff changeset
   815
35856
9a7e9cdf11bf 8137314: vm crash from test java/security/Policy/SignedJar/SignedJarTest.java
hseigel
parents: 35492
diff changeset
   816
      if (was_recursively_verified()) return;
9a7e9cdf11bf 8137314: vm crash from test java/security/Policy/SignedJar/SignedJarTest.java
hseigel
parents: 35492
diff changeset
   817
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   818
      switch (opcode) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   819
        case Bytecodes::_nop :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   820
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   821
        case Bytecodes::_aconst_null :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   822
          current_frame.push_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   823
            VerificationType::null_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   824
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   825
        case Bytecodes::_iconst_m1 :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   826
        case Bytecodes::_iconst_0 :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   827
        case Bytecodes::_iconst_1 :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   828
        case Bytecodes::_iconst_2 :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   829
        case Bytecodes::_iconst_3 :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   830
        case Bytecodes::_iconst_4 :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   831
        case Bytecodes::_iconst_5 :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   832
          current_frame.push_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   833
            VerificationType::integer_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   834
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   835
        case Bytecodes::_lconst_0 :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   836
        case Bytecodes::_lconst_1 :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   837
          current_frame.push_stack_2(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   838
            VerificationType::long_type(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   839
            VerificationType::long2_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   840
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   841
        case Bytecodes::_fconst_0 :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   842
        case Bytecodes::_fconst_1 :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   843
        case Bytecodes::_fconst_2 :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   844
          current_frame.push_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   845
            VerificationType::float_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   846
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   847
        case Bytecodes::_dconst_0 :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   848
        case Bytecodes::_dconst_1 :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   849
          current_frame.push_stack_2(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   850
            VerificationType::double_type(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   851
            VerificationType::double2_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   852
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   853
        case Bytecodes::_sipush :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   854
        case Bytecodes::_bipush :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   855
          current_frame.push_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   856
            VerificationType::integer_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   857
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   858
        case Bytecodes::_ldc :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   859
          verify_ldc(
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4571
diff changeset
   860
            opcode, bcs.get_index_u1(), &current_frame,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   861
            cp, bci, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   862
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   863
        case Bytecodes::_ldc_w :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   864
        case Bytecodes::_ldc2_w :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   865
          verify_ldc(
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4571
diff changeset
   866
            opcode, bcs.get_index_u2(), &current_frame,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   867
            cp, bci, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   868
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   869
        case Bytecodes::_iload :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   870
          verify_iload(bcs.get_index(), &current_frame, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   871
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   872
        case Bytecodes::_iload_0 :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   873
        case Bytecodes::_iload_1 :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   874
        case Bytecodes::_iload_2 :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   875
        case Bytecodes::_iload_3 :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   876
          index = opcode - Bytecodes::_iload_0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   877
          verify_iload(index, &current_frame, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   878
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   879
        case Bytecodes::_lload :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   880
          verify_lload(bcs.get_index(), &current_frame, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   881
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   882
        case Bytecodes::_lload_0 :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   883
        case Bytecodes::_lload_1 :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   884
        case Bytecodes::_lload_2 :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   885
        case Bytecodes::_lload_3 :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   886
          index = opcode - Bytecodes::_lload_0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   887
          verify_lload(index, &current_frame, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   888
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   889
        case Bytecodes::_fload :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   890
          verify_fload(bcs.get_index(), &current_frame, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   891
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   892
        case Bytecodes::_fload_0 :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   893
        case Bytecodes::_fload_1 :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   894
        case Bytecodes::_fload_2 :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   895
        case Bytecodes::_fload_3 :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   896
          index = opcode - Bytecodes::_fload_0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   897
          verify_fload(index, &current_frame, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   898
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   899
        case Bytecodes::_dload :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   900
          verify_dload(bcs.get_index(), &current_frame, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   901
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   902
        case Bytecodes::_dload_0 :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   903
        case Bytecodes::_dload_1 :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   904
        case Bytecodes::_dload_2 :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   905
        case Bytecodes::_dload_3 :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   906
          index = opcode - Bytecodes::_dload_0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   907
          verify_dload(index, &current_frame, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   908
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   909
        case Bytecodes::_aload :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   910
          verify_aload(bcs.get_index(), &current_frame, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   911
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   912
        case Bytecodes::_aload_0 :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   913
        case Bytecodes::_aload_1 :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   914
        case Bytecodes::_aload_2 :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   915
        case Bytecodes::_aload_3 :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   916
          index = opcode - Bytecodes::_aload_0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   917
          verify_aload(index, &current_frame, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   918
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   919
        case Bytecodes::_iaload :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   920
          type = current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   921
            VerificationType::integer_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   922
          atype = current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   923
            VerificationType::reference_check(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   924
          if (!atype.is_int_array()) {
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   925
            verify_error(ErrorContext::bad_type(bci,
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   926
                current_frame.stack_top_ctx(), ref_ctx("[I", THREAD)),
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   927
                bad_type_msg, "iaload");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   928
            return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   929
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   930
          current_frame.push_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   931
            VerificationType::integer_type(), 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::_baload :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   934
          type = current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   935
            VerificationType::integer_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   936
          atype = current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   937
            VerificationType::reference_check(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   938
          if (!atype.is_bool_array() && !atype.is_byte_array()) {
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   939
            verify_error(
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   940
                ErrorContext::bad_type(bci, current_frame.stack_top_ctx()),
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   941
                bad_type_msg, "baload");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   942
            return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   943
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   944
          current_frame.push_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   945
            VerificationType::integer_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   946
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   947
        case Bytecodes::_caload :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   948
          type = current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   949
            VerificationType::integer_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   950
          atype = current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   951
            VerificationType::reference_check(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   952
          if (!atype.is_char_array()) {
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   953
            verify_error(ErrorContext::bad_type(bci,
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   954
                current_frame.stack_top_ctx(), ref_ctx("[C", THREAD)),
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   955
                bad_type_msg, "caload");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   956
            return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   957
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   958
          current_frame.push_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   959
            VerificationType::integer_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   960
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   961
        case Bytecodes::_saload :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   962
          type = current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   963
            VerificationType::integer_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   964
          atype = current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   965
            VerificationType::reference_check(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   966
          if (!atype.is_short_array()) {
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   967
            verify_error(ErrorContext::bad_type(bci,
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   968
                current_frame.stack_top_ctx(), ref_ctx("[S", THREAD)),
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   969
                bad_type_msg, "saload");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   970
            return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   971
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   972
          current_frame.push_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   973
            VerificationType::integer_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   974
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   975
        case Bytecodes::_laload :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   976
          type = current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   977
            VerificationType::integer_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   978
          atype = current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   979
            VerificationType::reference_check(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   980
          if (!atype.is_long_array()) {
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   981
            verify_error(ErrorContext::bad_type(bci,
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   982
                current_frame.stack_top_ctx(), ref_ctx("[J", THREAD)),
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   983
                bad_type_msg, "laload");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   984
            return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   985
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   986
          current_frame.push_stack_2(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   987
            VerificationType::long_type(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   988
            VerificationType::long2_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   989
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   990
        case Bytecodes::_faload :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   991
          type = 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_float_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("[F", THREAD)),
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
   998
                bad_type_msg, "faload");
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
          current_frame.push_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1002
            VerificationType::float_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1003
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1004
        case Bytecodes::_daload :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1005
          type = 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_double_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("[D", THREAD)),
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1012
                bad_type_msg, "daload");
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
          current_frame.push_stack_2(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1016
            VerificationType::double_type(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1017
            VerificationType::double2_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1018
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1019
        case Bytecodes::_aaload : {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1020
          type = 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_reference_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(),
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1027
                TypeOrigin::implicit(VerificationType::reference_check())),
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1028
                bad_type_msg, "aaload");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1029
            return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1030
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1031
          if (atype.is_null()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1032
            current_frame.push_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1033
              VerificationType::null_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1034
          } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1035
            VerificationType component =
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7405
diff changeset
  1036
              atype.get_component(this, CHECK_VERIFY(this));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1037
            current_frame.push_stack(component, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1038
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1039
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1040
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1041
        case Bytecodes::_istore :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1042
          verify_istore(bcs.get_index(), &current_frame, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1043
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1044
        case Bytecodes::_istore_0 :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1045
        case Bytecodes::_istore_1 :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1046
        case Bytecodes::_istore_2 :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1047
        case Bytecodes::_istore_3 :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1048
          index = opcode - Bytecodes::_istore_0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1049
          verify_istore(index, &current_frame, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1050
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1051
        case Bytecodes::_lstore :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1052
          verify_lstore(bcs.get_index(), &current_frame, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1053
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1054
        case Bytecodes::_lstore_0 :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1055
        case Bytecodes::_lstore_1 :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1056
        case Bytecodes::_lstore_2 :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1057
        case Bytecodes::_lstore_3 :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1058
          index = opcode - Bytecodes::_lstore_0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1059
          verify_lstore(index, &current_frame, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1060
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1061
        case Bytecodes::_fstore :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1062
          verify_fstore(bcs.get_index(), &current_frame, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1063
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1064
        case Bytecodes::_fstore_0 :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1065
        case Bytecodes::_fstore_1 :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1066
        case Bytecodes::_fstore_2 :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1067
        case Bytecodes::_fstore_3 :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1068
          index = opcode - Bytecodes::_fstore_0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1069
          verify_fstore(index, &current_frame, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1070
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1071
        case Bytecodes::_dstore :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1072
          verify_dstore(bcs.get_index(), &current_frame, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1073
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1074
        case Bytecodes::_dstore_0 :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1075
        case Bytecodes::_dstore_1 :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1076
        case Bytecodes::_dstore_2 :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1077
        case Bytecodes::_dstore_3 :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1078
          index = opcode - Bytecodes::_dstore_0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1079
          verify_dstore(index, &current_frame, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1080
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1081
        case Bytecodes::_astore :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1082
          verify_astore(bcs.get_index(), &current_frame, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1083
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1084
        case Bytecodes::_astore_0 :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1085
        case Bytecodes::_astore_1 :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1086
        case Bytecodes::_astore_2 :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1087
        case Bytecodes::_astore_3 :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1088
          index = opcode - Bytecodes::_astore_0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1089
          verify_astore(index, &current_frame, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1090
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1091
        case Bytecodes::_iastore :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1092
          type = current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1093
            VerificationType::integer_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1094
          type2 = current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1095
            VerificationType::integer_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1096
          atype = current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1097
            VerificationType::reference_check(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1098
          if (!atype.is_int_array()) {
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1099
            verify_error(ErrorContext::bad_type(bci,
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1100
                current_frame.stack_top_ctx(), ref_ctx("[I", THREAD)),
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1101
                bad_type_msg, "iastore");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1102
            return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1103
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1104
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1105
        case Bytecodes::_bastore :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1106
          type = current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1107
            VerificationType::integer_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1108
          type2 = current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1109
            VerificationType::integer_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1110
          atype = current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1111
            VerificationType::reference_check(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1112
          if (!atype.is_bool_array() && !atype.is_byte_array()) {
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1113
            verify_error(
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1114
                ErrorContext::bad_type(bci, current_frame.stack_top_ctx()),
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1115
                bad_type_msg, "bastore");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1116
            return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1117
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1118
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1119
        case Bytecodes::_castore :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1120
          current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1121
            VerificationType::integer_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1122
          current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1123
            VerificationType::integer_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1124
          atype = current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1125
            VerificationType::reference_check(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1126
          if (!atype.is_char_array()) {
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1127
            verify_error(ErrorContext::bad_type(bci,
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1128
                current_frame.stack_top_ctx(), ref_ctx("[C", THREAD)),
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1129
                bad_type_msg, "castore");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1130
            return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1131
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1132
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1133
        case Bytecodes::_sastore :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1134
          current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1135
            VerificationType::integer_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1136
          current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1137
            VerificationType::integer_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1138
          atype = current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1139
            VerificationType::reference_check(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1140
          if (!atype.is_short_array()) {
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1141
            verify_error(ErrorContext::bad_type(bci,
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1142
                current_frame.stack_top_ctx(), ref_ctx("[S", THREAD)),
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1143
                bad_type_msg, "sastore");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1144
            return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1145
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1146
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1147
        case Bytecodes::_lastore :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1148
          current_frame.pop_stack_2(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1149
            VerificationType::long2_type(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1150
            VerificationType::long_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1151
          current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1152
            VerificationType::integer_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1153
          atype = current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1154
            VerificationType::reference_check(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1155
          if (!atype.is_long_array()) {
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1156
            verify_error(ErrorContext::bad_type(bci,
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1157
                current_frame.stack_top_ctx(), ref_ctx("[J", THREAD)),
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1158
                bad_type_msg, "lastore");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1159
            return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1160
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1161
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1162
        case Bytecodes::_fastore :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1163
          current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1164
            VerificationType::float_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1165
          current_frame.pop_stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1166
            (VerificationType::integer_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1167
          atype = current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1168
            VerificationType::reference_check(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1169
          if (!atype.is_float_array()) {
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1170
            verify_error(ErrorContext::bad_type(bci,
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1171
                current_frame.stack_top_ctx(), ref_ctx("[F", THREAD)),
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1172
                bad_type_msg, "fastore");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1173
            return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1174
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1175
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1176
        case Bytecodes::_dastore :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1177
          current_frame.pop_stack_2(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1178
            VerificationType::double2_type(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1179
            VerificationType::double_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1180
          current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1181
            VerificationType::integer_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1182
          atype = current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1183
            VerificationType::reference_check(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1184
          if (!atype.is_double_array()) {
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1185
            verify_error(ErrorContext::bad_type(bci,
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1186
                current_frame.stack_top_ctx(), ref_ctx("[D", THREAD)),
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1187
                bad_type_msg, "dastore");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1188
            return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1189
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1190
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1191
        case Bytecodes::_aastore :
7380
041cf7f1cce6 6865028: Illegal instructions passing verification prior to 'invokespecial Object.<init>'
kamg
parents: 6173
diff changeset
  1192
          type = current_frame.pop_stack(object_type(), CHECK_VERIFY(this));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1193
          type2 = current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1194
            VerificationType::integer_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1195
          atype = current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1196
            VerificationType::reference_check(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1197
          // more type-checking is done at runtime
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1198
          if (!atype.is_reference_array()) {
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1199
            verify_error(ErrorContext::bad_type(bci,
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1200
                current_frame.stack_top_ctx(),
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1201
                TypeOrigin::implicit(VerificationType::reference_check())),
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1202
                bad_type_msg, "aastore");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1203
            return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1204
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1205
          // 4938384: relaxed constraint in JVMS 3nd edition.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1206
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1207
        case Bytecodes::_pop :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1208
          current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1209
            VerificationType::category1_check(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1210
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1211
        case Bytecodes::_pop2 :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1212
          type = current_frame.pop_stack(CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1213
          if (type.is_category1()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1214
            current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1215
              VerificationType::category1_check(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1216
          } else if (type.is_category2_2nd()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1217
            current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1218
              VerificationType::category2_check(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1219
          } else {
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1220
            /* Unreachable? Would need a category2_1st on TOS
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1221
             * which does not appear possible. */
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1222
            verify_error(
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1223
                ErrorContext::bad_type(bci, current_frame.stack_top_ctx()),
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1224
                bad_type_msg, "pop2");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1225
            return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1226
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1227
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1228
        case Bytecodes::_dup :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1229
          type = current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1230
            VerificationType::category1_check(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1231
          current_frame.push_stack(type, 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
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1234
        case Bytecodes::_dup_x1 :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1235
          type = current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1236
            VerificationType::category1_check(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1237
          type2 = current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1238
            VerificationType::category1_check(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1239
          current_frame.push_stack(type, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1240
          current_frame.push_stack(type2, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1241
          current_frame.push_stack(type, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1242
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1243
        case Bytecodes::_dup_x2 :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1244
        {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1245
          VerificationType type3;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1246
          type = current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1247
            VerificationType::category1_check(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1248
          type2 = current_frame.pop_stack(CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1249
          if (type2.is_category1()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1250
            type3 = current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1251
              VerificationType::category1_check(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1252
          } else if (type2.is_category2_2nd()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1253
            type3 = current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1254
              VerificationType::category2_check(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1255
          } else {
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1256
            /* Unreachable? Would need a category2_1st at stack depth 2 with
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1257
             * a category1 on TOS which does not appear possible. */
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1258
            verify_error(ErrorContext::bad_type(
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1259
                bci, current_frame.stack_top_ctx()), bad_type_msg, "dup_x2");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1260
            return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1261
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1262
          current_frame.push_stack(type, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1263
          current_frame.push_stack(type3, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1264
          current_frame.push_stack(type2, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1265
          current_frame.push_stack(type, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1266
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1267
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1268
        case Bytecodes::_dup2 :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1269
          type = current_frame.pop_stack(CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1270
          if (type.is_category1()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1271
            type2 = current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1272
              VerificationType::category1_check(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1273
          } else if (type.is_category2_2nd()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1274
            type2 = current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1275
              VerificationType::category2_check(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1276
          } else {
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1277
            /* Unreachable?  Would need a category2_1st on TOS which does not
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1278
             * appear possible. */
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1279
            verify_error(
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1280
                ErrorContext::bad_type(bci, current_frame.stack_top_ctx()),
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1281
                bad_type_msg, "dup2");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1282
            return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1283
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1284
          current_frame.push_stack(type2, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1285
          current_frame.push_stack(type, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1286
          current_frame.push_stack(type2, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1287
          current_frame.push_stack(type, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1288
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1289
        case Bytecodes::_dup2_x1 :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1290
        {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1291
          VerificationType type3;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1292
          type = current_frame.pop_stack(CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1293
          if (type.is_category1()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1294
            type2 = current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1295
              VerificationType::category1_check(), CHECK_VERIFY(this));
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1296
          } else if (type.is_category2_2nd()) {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1297
            type2 = current_frame.pop_stack(
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1298
              VerificationType::category2_check(), CHECK_VERIFY(this));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1299
          } else {
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1300
            /* Unreachable?  Would need a category2_1st on TOS which does
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1301
             * not appear possible. */
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1302
            verify_error(
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1303
                ErrorContext::bad_type(bci, current_frame.stack_top_ctx()),
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1304
                bad_type_msg, "dup2_x1");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1305
            return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1306
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1307
          type3 = current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1308
            VerificationType::category1_check(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1309
          current_frame.push_stack(type2, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1310
          current_frame.push_stack(type, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1311
          current_frame.push_stack(type3, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1312
          current_frame.push_stack(type2, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1313
          current_frame.push_stack(type, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1314
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1315
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1316
        case Bytecodes::_dup2_x2 :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1317
        {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1318
          VerificationType type3, type4;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1319
          type = current_frame.pop_stack(CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1320
          if (type.is_category1()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1321
            type2 = current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1322
              VerificationType::category1_check(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1323
          } else if (type.is_category2_2nd()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1324
            type2 = current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1325
              VerificationType::category2_check(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1326
          } else {
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1327
            /* Unreachable?  Would need a category2_1st on TOS which does
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1328
             * not appear possible. */
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1329
            verify_error(
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1330
                ErrorContext::bad_type(bci, current_frame.stack_top_ctx()),
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1331
                bad_type_msg, "dup2_x2");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1332
            return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1333
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1334
          type3 = current_frame.pop_stack(CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1335
          if (type3.is_category1()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1336
            type4 = current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1337
              VerificationType::category1_check(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1338
          } else if (type3.is_category2_2nd()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1339
            type4 = current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1340
              VerificationType::category2_check(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1341
          } else {
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1342
            /* Unreachable?  Would need a category2_1st on TOS after popping
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1343
             * a long/double or two category 1's, which does not
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1344
             * appear possible. */
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1345
            verify_error(
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1346
                ErrorContext::bad_type(bci, current_frame.stack_top_ctx()),
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1347
                bad_type_msg, "dup2_x2");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1348
            return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1349
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1350
          current_frame.push_stack(type2, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1351
          current_frame.push_stack(type, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1352
          current_frame.push_stack(type4, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1353
          current_frame.push_stack(type3, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1354
          current_frame.push_stack(type2, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1355
          current_frame.push_stack(type, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1356
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1357
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1358
        case Bytecodes::_swap :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1359
          type = current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1360
            VerificationType::category1_check(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1361
          type2 = current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1362
            VerificationType::category1_check(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1363
          current_frame.push_stack(type, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1364
          current_frame.push_stack(type2, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1365
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1366
        case Bytecodes::_iadd :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1367
        case Bytecodes::_isub :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1368
        case Bytecodes::_imul :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1369
        case Bytecodes::_idiv :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1370
        case Bytecodes::_irem :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1371
        case Bytecodes::_ishl :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1372
        case Bytecodes::_ishr :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1373
        case Bytecodes::_iushr :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1374
        case Bytecodes::_ior :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1375
        case Bytecodes::_ixor :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1376
        case Bytecodes::_iand :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1377
          current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1378
            VerificationType::integer_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1379
          // fall through
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1380
        case Bytecodes::_ineg :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1381
          current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1382
            VerificationType::integer_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1383
          current_frame.push_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1384
            VerificationType::integer_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1385
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1386
        case Bytecodes::_ladd :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1387
        case Bytecodes::_lsub :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1388
        case Bytecodes::_lmul :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1389
        case Bytecodes::_ldiv :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1390
        case Bytecodes::_lrem :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1391
        case Bytecodes::_land :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1392
        case Bytecodes::_lor :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1393
        case Bytecodes::_lxor :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1394
          current_frame.pop_stack_2(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1395
            VerificationType::long2_type(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1396
            VerificationType::long_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1397
          // fall through
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1398
        case Bytecodes::_lneg :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1399
          current_frame.pop_stack_2(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1400
            VerificationType::long2_type(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1401
            VerificationType::long_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1402
          current_frame.push_stack_2(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1403
            VerificationType::long_type(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1404
            VerificationType::long2_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1405
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1406
        case Bytecodes::_lshl :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1407
        case Bytecodes::_lshr :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1408
        case Bytecodes::_lushr :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1409
          current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1410
            VerificationType::integer_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1411
          current_frame.pop_stack_2(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1412
            VerificationType::long2_type(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1413
            VerificationType::long_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1414
          current_frame.push_stack_2(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1415
            VerificationType::long_type(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1416
            VerificationType::long2_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1417
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1418
        case Bytecodes::_fadd :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1419
        case Bytecodes::_fsub :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1420
        case Bytecodes::_fmul :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1421
        case Bytecodes::_fdiv :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1422
        case Bytecodes::_frem :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1423
          current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1424
            VerificationType::float_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1425
          // fall through
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1426
        case Bytecodes::_fneg :
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::float_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::_dadd :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1433
        case Bytecodes::_dsub :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1434
        case Bytecodes::_dmul :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1435
        case Bytecodes::_ddiv :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1436
        case Bytecodes::_drem :
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
          // fall through
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1441
        case Bytecodes::_dneg :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1442
          current_frame.pop_stack_2(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1443
            VerificationType::double2_type(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1444
            VerificationType::double_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1445
          current_frame.push_stack_2(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1446
            VerificationType::double_type(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1447
            VerificationType::double2_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1448
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1449
        case Bytecodes::_iinc :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1450
          verify_iinc(bcs.get_index(), &current_frame, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1451
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1452
        case Bytecodes::_i2l :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1453
          type = current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1454
            VerificationType::integer_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1455
          current_frame.push_stack_2(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1456
            VerificationType::long_type(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1457
            VerificationType::long2_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1458
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1459
       case Bytecodes::_l2i :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1460
          current_frame.pop_stack_2(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1461
            VerificationType::long2_type(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1462
            VerificationType::long_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1463
          current_frame.push_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1464
            VerificationType::integer_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1465
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1466
        case Bytecodes::_i2f :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1467
          current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1468
            VerificationType::integer_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1469
          current_frame.push_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1470
            VerificationType::float_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1471
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1472
        case Bytecodes::_i2d :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1473
          current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1474
            VerificationType::integer_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1475
          current_frame.push_stack_2(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1476
            VerificationType::double_type(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1477
            VerificationType::double2_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1478
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1479
        case Bytecodes::_l2f :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1480
          current_frame.pop_stack_2(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1481
            VerificationType::long2_type(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1482
            VerificationType::long_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1483
          current_frame.push_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1484
            VerificationType::float_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1485
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1486
        case Bytecodes::_l2d :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1487
          current_frame.pop_stack_2(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1488
            VerificationType::long2_type(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1489
            VerificationType::long_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1490
          current_frame.push_stack_2(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1491
            VerificationType::double_type(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1492
            VerificationType::double2_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1493
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1494
        case Bytecodes::_f2i :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1495
          current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1496
            VerificationType::float_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1497
          current_frame.push_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1498
            VerificationType::integer_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1499
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1500
        case Bytecodes::_f2l :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1501
          current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1502
            VerificationType::float_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1503
          current_frame.push_stack_2(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1504
            VerificationType::long_type(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1505
            VerificationType::long2_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1506
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1507
        case Bytecodes::_f2d :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1508
          current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1509
            VerificationType::float_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1510
          current_frame.push_stack_2(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1511
            VerificationType::double_type(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1512
            VerificationType::double2_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1513
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1514
        case Bytecodes::_d2i :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1515
          current_frame.pop_stack_2(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1516
            VerificationType::double2_type(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1517
            VerificationType::double_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1518
          current_frame.push_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1519
            VerificationType::integer_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1520
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1521
        case Bytecodes::_d2l :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1522
          current_frame.pop_stack_2(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1523
            VerificationType::double2_type(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1524
            VerificationType::double_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1525
          current_frame.push_stack_2(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1526
            VerificationType::long_type(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1527
            VerificationType::long2_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1528
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1529
        case Bytecodes::_d2f :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1530
          current_frame.pop_stack_2(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1531
            VerificationType::double2_type(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1532
            VerificationType::double_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1533
          current_frame.push_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1534
            VerificationType::float_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1535
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1536
        case Bytecodes::_i2b :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1537
        case Bytecodes::_i2c :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1538
        case Bytecodes::_i2s :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1539
          current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1540
            VerificationType::integer_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1541
          current_frame.push_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1542
            VerificationType::integer_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1543
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1544
        case Bytecodes::_lcmp :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1545
          current_frame.pop_stack_2(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1546
            VerificationType::long2_type(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1547
            VerificationType::long_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1548
          current_frame.pop_stack_2(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1549
            VerificationType::long2_type(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1550
            VerificationType::long_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1551
          current_frame.push_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1552
            VerificationType::integer_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1553
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1554
        case Bytecodes::_fcmpl :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1555
        case Bytecodes::_fcmpg :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1556
          current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1557
            VerificationType::float_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1558
          current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1559
            VerificationType::float_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1560
          current_frame.push_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1561
            VerificationType::integer_type(), 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::_dcmpl :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1564
        case Bytecodes::_dcmpg :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1565
          current_frame.pop_stack_2(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1566
            VerificationType::double2_type(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1567
            VerificationType::double_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1568
          current_frame.pop_stack_2(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1569
            VerificationType::double2_type(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1570
            VerificationType::double_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1571
          current_frame.push_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1572
            VerificationType::integer_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1573
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1574
        case Bytecodes::_if_icmpeq:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1575
        case Bytecodes::_if_icmpne:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1576
        case Bytecodes::_if_icmplt:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1577
        case Bytecodes::_if_icmpge:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1578
        case Bytecodes::_if_icmpgt:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1579
        case Bytecodes::_if_icmple:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1580
          current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1581
            VerificationType::integer_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1582
          // fall through
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1583
        case Bytecodes::_ifeq:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1584
        case Bytecodes::_ifne:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1585
        case Bytecodes::_iflt:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1586
        case Bytecodes::_ifge:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1587
        case Bytecodes::_ifgt:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1588
        case Bytecodes::_ifle:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1589
          current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1590
            VerificationType::integer_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1591
          target = bcs.dest();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1592
          stackmap_table.check_jump_target(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1593
            &current_frame, target, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1594
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1595
        case Bytecodes::_if_acmpeq :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1596
        case Bytecodes::_if_acmpne :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1597
          current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1598
            VerificationType::reference_check(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1599
          // fall through
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1600
        case Bytecodes::_ifnull :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1601
        case Bytecodes::_ifnonnull :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1602
          current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1603
            VerificationType::reference_check(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1604
          target = bcs.dest();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1605
          stackmap_table.check_jump_target
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1606
            (&current_frame, target, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1607
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1608
        case Bytecodes::_goto :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1609
          target = bcs.dest();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1610
          stackmap_table.check_jump_target(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1611
            &current_frame, target, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1612
          no_control_flow = true; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1613
        case Bytecodes::_goto_w :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1614
          target = bcs.dest_w();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1615
          stackmap_table.check_jump_target(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1616
            &current_frame, target, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1617
          no_control_flow = true; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1618
        case Bytecodes::_tableswitch :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1619
        case Bytecodes::_lookupswitch :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1620
          verify_switch(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1621
            &bcs, code_length, code_data, &current_frame,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1622
            &stackmap_table, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1623
          no_control_flow = true; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1624
        case Bytecodes::_ireturn :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1625
          type = current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1626
            VerificationType::integer_type(), CHECK_VERIFY(this));
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1627
          verify_return_value(return_type, type, bci,
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1628
                              &current_frame, CHECK_VERIFY(this));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1629
          no_control_flow = true; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1630
        case Bytecodes::_lreturn :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1631
          type2 = current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1632
            VerificationType::long2_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1633
          type = current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1634
            VerificationType::long_type(), CHECK_VERIFY(this));
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1635
          verify_return_value(return_type, type, bci,
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1636
                              &current_frame, CHECK_VERIFY(this));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1637
          no_control_flow = true; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1638
        case Bytecodes::_freturn :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1639
          type = current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1640
            VerificationType::float_type(), CHECK_VERIFY(this));
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1641
          verify_return_value(return_type, type, bci,
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1642
                              &current_frame, CHECK_VERIFY(this));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1643
          no_control_flow = true; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1644
        case Bytecodes::_dreturn :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1645
          type2 = current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1646
            VerificationType::double2_type(),  CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1647
          type = current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1648
            VerificationType::double_type(), CHECK_VERIFY(this));
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1649
          verify_return_value(return_type, type, bci,
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1650
                              &current_frame, CHECK_VERIFY(this));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1651
          no_control_flow = true; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1652
        case Bytecodes::_areturn :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1653
          type = current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1654
            VerificationType::reference_check(), CHECK_VERIFY(this));
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1655
          verify_return_value(return_type, type, bci,
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1656
                              &current_frame, CHECK_VERIFY(this));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1657
          no_control_flow = true; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1658
        case Bytecodes::_return :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1659
          if (return_type != VerificationType::bogus_type()) {
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1660
            verify_error(ErrorContext::bad_code(bci),
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1661
                         "Method expects a return value");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1662
            return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1663
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1664
          // Make sure "this" has been initialized if current method is an
33207
edc4431940b2 8139069: JVM should throw ClassFormatError for <init> methods in interfaces
hseigel
parents: 32825
diff changeset
  1665
          // <init>.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1666
          if (_method->name() == vmSymbols::object_initializer_name() &&
33207
edc4431940b2 8139069: JVM should throw ClassFormatError for <init> methods in interfaces
hseigel
parents: 32825
diff changeset
  1667
              current_frame.flag_this_uninit()) {
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1668
            verify_error(ErrorContext::bad_code(bci),
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1669
                         "Constructor must call super() or this() "
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1670
                         "before return");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1671
            return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1672
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1673
          no_control_flow = true; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1674
        case Bytecodes::_getstatic :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1675
        case Bytecodes::_putstatic :
28612
164db20ecb94 8055146: Split Verifier incorrectly throws VerifyError for getstatic of an array field
hseigel
parents: 28371
diff changeset
  1676
          // pass TRUE, operand can be an array type for getstatic/putstatic.
164db20ecb94 8055146: Split Verifier incorrectly throws VerifyError for getstatic of an array field
hseigel
parents: 28371
diff changeset
  1677
          verify_field_instructions(
164db20ecb94 8055146: Split Verifier incorrectly throws VerifyError for getstatic of an array field
hseigel
parents: 28371
diff changeset
  1678
            &bcs, &current_frame, cp, true, CHECK_VERIFY(this));
164db20ecb94 8055146: Split Verifier incorrectly throws VerifyError for getstatic of an array field
hseigel
parents: 28371
diff changeset
  1679
          no_control_flow = false; break;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1680
        case Bytecodes::_getfield :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1681
        case Bytecodes::_putfield :
28612
164db20ecb94 8055146: Split Verifier incorrectly throws VerifyError for getstatic of an array field
hseigel
parents: 28371
diff changeset
  1682
          // pass FALSE, operand can't be an array type for getfield/putfield.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1683
          verify_field_instructions(
28612
164db20ecb94 8055146: Split Verifier incorrectly throws VerifyError for getstatic of an array field
hseigel
parents: 28371
diff changeset
  1684
            &bcs, &current_frame, cp, false, CHECK_VERIFY(this));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1685
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1686
        case Bytecodes::_invokevirtual :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1687
        case Bytecodes::_invokespecial :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1688
        case Bytecodes::_invokestatic :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1689
          verify_invoke_instructions(
28512
968fe01e1f82 8058982: Better verification of an exceptional invokespecial
hseigel
parents: 28371
diff changeset
  1690
            &bcs, code_length, &current_frame, (bci >= ex_min && bci < ex_max),
968fe01e1f82 8058982: Better verification of an exceptional invokespecial
hseigel
parents: 28371
diff changeset
  1691
            &this_uninit, return_type, cp, &stackmap_table, CHECK_VERIFY(this));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1692
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1693
        case Bytecodes::_invokeinterface :
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1550
diff changeset
  1694
        case Bytecodes::_invokedynamic :
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1695
          verify_invoke_instructions(
28512
968fe01e1f82 8058982: Better verification of an exceptional invokespecial
hseigel
parents: 28371
diff changeset
  1696
            &bcs, code_length, &current_frame, (bci >= ex_min && bci < ex_max),
968fe01e1f82 8058982: Better verification of an exceptional invokespecial
hseigel
parents: 28371
diff changeset
  1697
            &this_uninit, return_type, cp, &stackmap_table, CHECK_VERIFY(this));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1698
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1699
        case Bytecodes::_new :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1700
        {
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4571
diff changeset
  1701
          index = bcs.get_index_u2();
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1702
          verify_cp_class_type(bci, index, cp, CHECK_VERIFY(this));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1703
          VerificationType new_class_type =
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1704
            cp_index_to_type(index, cp, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1705
          if (!new_class_type.is_object()) {
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1706
            verify_error(ErrorContext::bad_type(bci,
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1707
                TypeOrigin::cp(index, new_class_type)),
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1708
                "Illegal new instruction");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1709
            return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1710
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1711
          type = VerificationType::uninitialized_type(bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1712
          current_frame.push_stack(type, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1713
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1714
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1715
        case Bytecodes::_newarray :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1716
          type = get_newarray_type(bcs.get_index(), bci, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1717
          current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1718
            VerificationType::integer_type(),  CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1719
          current_frame.push_stack(type, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1720
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1721
        case Bytecodes::_anewarray :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1722
          verify_anewarray(
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1723
            bci, bcs.get_index_u2(), cp, &current_frame, CHECK_VERIFY(this));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1724
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1725
        case Bytecodes::_arraylength :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1726
          type = current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1727
            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
  1728
          if (!(type.is_null() || type.is_array())) {
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1729
            verify_error(ErrorContext::bad_type(
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1730
                bci, current_frame.stack_top_ctx()),
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1731
                bad_type_msg, "arraylength");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1732
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1733
          current_frame.push_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1734
            VerificationType::integer_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1735
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1736
        case Bytecodes::_checkcast :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1737
        {
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4571
diff changeset
  1738
          index = bcs.get_index_u2();
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1739
          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
  1740
          current_frame.pop_stack(object_type(), CHECK_VERIFY(this));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1741
          VerificationType klass_type = cp_index_to_type(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1742
            index, cp, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1743
          current_frame.push_stack(klass_type, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1744
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1745
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1746
        case Bytecodes::_instanceof : {
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4571
diff changeset
  1747
          index = bcs.get_index_u2();
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1748
          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
  1749
          current_frame.pop_stack(object_type(), CHECK_VERIFY(this));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1750
          current_frame.push_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1751
            VerificationType::integer_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1752
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1753
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1754
        case Bytecodes::_monitorenter :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1755
        case Bytecodes::_monitorexit :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1756
          current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1757
            VerificationType::reference_check(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1758
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1759
        case Bytecodes::_multianewarray :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1760
        {
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4571
diff changeset
  1761
          index = bcs.get_index_u2();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1762
          u2 dim = *(bcs.bcp()+3);
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1763
          verify_cp_class_type(bci, index, cp, CHECK_VERIFY(this));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1764
          VerificationType new_array_type =
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1765
            cp_index_to_type(index, cp, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1766
          if (!new_array_type.is_array()) {
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1767
            verify_error(ErrorContext::bad_type(bci,
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1768
                TypeOrigin::cp(index, new_array_type)),
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1769
                "Illegal constant pool index in multianewarray instruction");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1770
            return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1771
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1772
          if (dim < 1 || new_array_type.dimensions() < dim) {
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1773
            verify_error(ErrorContext::bad_code(bci),
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1774
                "Illegal dimension in multianewarray instruction: %d", dim);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1775
            return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1776
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1777
          for (int i = 0; i < dim; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1778
            current_frame.pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1779
              VerificationType::integer_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1780
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1781
          current_frame.push_stack(new_array_type, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1782
          no_control_flow = false; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1783
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1784
        case Bytecodes::_athrow :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1785
          type = VerificationType::reference_type(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1786
            vmSymbols::java_lang_Throwable());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1787
          current_frame.pop_stack(type, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1788
          no_control_flow = true; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1789
        default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1790
          // We only need to check the valid bytecodes in class file.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1791
          // 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
  1792
          verify_error(ErrorContext::bad_code(bci),
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1793
              "Bad instruction: %02x", opcode);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1794
          no_control_flow = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1795
          return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1796
      }  // end switch
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1797
    }  // end Merge with the next instruction
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1798
30114
daa394b459e6 7127066: Class verifier accepts an invalid class file
hseigel
parents: 30102
diff changeset
  1799
    // Look for possible jump target in exception handlers and see if it matches
daa394b459e6 7127066: Class verifier accepts an invalid class file
hseigel
parents: 30102
diff changeset
  1800
    // current_frame.  Don't do this check if it has already been done (for
daa394b459e6 7127066: Class verifier accepts an invalid class file
hseigel
parents: 30102
diff changeset
  1801
    // ([a,d,f,i,l]store* opcodes).  This check cannot be done earlier because
daa394b459e6 7127066: Class verifier accepts an invalid class file
hseigel
parents: 30102
diff changeset
  1802
    // opcodes, such as invokespecial, may set the this_uninit flag.
daa394b459e6 7127066: Class verifier accepts an invalid class file
hseigel
parents: 30102
diff changeset
  1803
    assert(!(verified_exc_handlers && this_uninit),
daa394b459e6 7127066: Class verifier accepts an invalid class file
hseigel
parents: 30102
diff changeset
  1804
      "Exception handler targets got verified before this_uninit got set");
daa394b459e6 7127066: Class verifier accepts an invalid class file
hseigel
parents: 30102
diff changeset
  1805
    if (!verified_exc_handlers && bci >= ex_min && bci < ex_max) {
35856
9a7e9cdf11bf 8137314: vm crash from test java/security/Policy/SignedJar/SignedJarTest.java
hseigel
parents: 35492
diff changeset
  1806
      if (was_recursively_verified()) return;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1807
      verify_exception_handler_targets(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1808
        bci, this_uninit, &current_frame, &stackmap_table, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1809
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1810
  } // end while
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1811
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1812
  // Make sure that control flow does not fall through end of the method
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1813
  if (!no_control_flow) {
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1814
    verify_error(ErrorContext::bad_code(code_length),
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1815
        "Control flow falls through code end");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1816
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1817
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1818
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1819
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 24351
diff changeset
  1820
#undef bad_type_message
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 24351
diff changeset
  1821
35194
7151995ee79e 8144256: compiler/uncommontrap/TestStackBangRbp.java crashes VM on Solaris
coleenp
parents: 34628
diff changeset
  1822
char* ClassVerifier::generate_code_data(const methodHandle& m, u4 code_length, TRAPS) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1823
  char* code_data = NEW_RESOURCE_ARRAY(char, code_length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1824
  memset(code_data, 0, sizeof(char) * code_length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1825
  RawBytecodeStream bcs(m);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1826
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1827
  while (!bcs.is_last_bytecode()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1828
    if (bcs.raw_next() != Bytecodes::_illegal) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1829
      int bci = bcs.bci();
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4571
diff changeset
  1830
      if (bcs.raw_code() == Bytecodes::_new) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1831
        code_data[bci] = NEW_OFFSET;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1832
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1833
        code_data[bci] = BYTECODE_OFFSET;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1834
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1835
    } else {
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1836
      verify_error(ErrorContext::bad_code(bcs.bci()), "Bad instruction");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1837
      return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1838
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1839
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1840
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1841
  return code_data;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1842
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1843
35856
9a7e9cdf11bf 8137314: vm crash from test java/security/Policy/SignedJar/SignedJarTest.java
hseigel
parents: 35492
diff changeset
  1844
// Since this method references the constant pool, call was_recursively_verified()
9a7e9cdf11bf 8137314: vm crash from test java/security/Policy/SignedJar/SignedJarTest.java
hseigel
parents: 35492
diff changeset
  1845
// before calling this method to make sure a prior class load did not cause the
9a7e9cdf11bf 8137314: vm crash from test java/security/Policy/SignedJar/SignedJarTest.java
hseigel
parents: 35492
diff changeset
  1846
// current class to get verified.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1847
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
  1848
  ExceptionTable exhandlers(_method());
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12932
diff changeset
  1849
  int exlength = exhandlers.length();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1850
  constantPoolHandle cp (THREAD, _method->constants());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1851
13282
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12932
diff changeset
  1852
  for(int i = 0; i < exlength; i++) {
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12932
diff changeset
  1853
    u2 start_pc = exhandlers.start_pc(i);
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12932
diff changeset
  1854
    u2 end_pc = exhandlers.end_pc(i);
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12932
diff changeset
  1855
    u2 handler_pc = exhandlers.handler_pc(i);
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12932
diff changeset
  1856
    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
  1857
      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
  1858
      return;
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12932
diff changeset
  1859
    }
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12932
diff changeset
  1860
    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
  1861
      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
  1862
        class_format_error("Illegal exception table end_pc %d", end_pc);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1863
        return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1864
      }
13282
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12932
diff changeset
  1865
    }
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12932
diff changeset
  1866
    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
  1867
      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
  1868
      return;
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12932
diff changeset
  1869
    }
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12932
diff changeset
  1870
    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
  1871
    if (catch_type_index != 0) {
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12932
diff changeset
  1872
      VerificationType catch_type = cp_index_to_type(
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12932
diff changeset
  1873
        catch_type_index, cp, CHECK_VERIFY(this));
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12932
diff changeset
  1874
      VerificationType throwable =
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12932
diff changeset
  1875
        VerificationType::reference_type(vmSymbols::java_lang_Throwable());
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12932
diff changeset
  1876
      bool is_subclass = throwable.is_assignable_from(
27022
2db6fe33afc2 8036533: Method for correct defaults
hseigel
parents: 27003
diff changeset
  1877
        catch_type, this, false, CHECK_VERIFY(this));
13282
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12932
diff changeset
  1878
      if (!is_subclass) {
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12932
diff changeset
  1879
        // 4286534: should throw VerifyError according to recent spec change
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1880
        verify_error(ErrorContext::bad_type(handler_pc,
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1881
            TypeOrigin::cp(catch_type_index, catch_type),
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1882
            TypeOrigin::implicit(throwable)),
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1883
            "Catch type is not a subclass "
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1884
            "of Throwable in exception handler %d", handler_pc);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1885
        return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1886
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1887
    }
13282
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12932
diff changeset
  1888
    if (start_pc < min) min = start_pc;
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12932
diff changeset
  1889
    if (end_pc > max) max = end_pc;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1890
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1891
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1892
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1893
void ClassVerifier::verify_local_variable_table(u4 code_length, char* code_data, TRAPS) {
35194
7151995ee79e 8144256: compiler/uncommontrap/TestStackBangRbp.java crashes VM on Solaris
coleenp
parents: 34628
diff changeset
  1894
  int localvariable_table_length = _method->localvariable_table_length();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1895
  if (localvariable_table_length > 0) {
35194
7151995ee79e 8144256: compiler/uncommontrap/TestStackBangRbp.java crashes VM on Solaris
coleenp
parents: 34628
diff changeset
  1896
    LocalVariableTableElement* table = _method->localvariable_table_start();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1897
    for (int i = 0; i < localvariable_table_length; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1898
      u2 start_bci = table[i].start_bci;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1899
      u2 length = table[i].length;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1900
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1901
      if (start_bci >= code_length || code_data[start_bci] == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1902
        class_format_error(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1903
          "Illegal local variable table start_pc %d", start_bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1904
        return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1905
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1906
      u4 end_bci = (u4)(start_bci + length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1907
      if (end_bci != code_length) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1908
        if (end_bci >= code_length || code_data[end_bci] == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1909
          class_format_error( "Illegal local variable table length %d", length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1910
          return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1911
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1912
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1913
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1914
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1915
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1916
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1917
u2 ClassVerifier::verify_stackmap_table(u2 stackmap_index, u2 bci,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1918
                                        StackMapFrame* current_frame,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1919
                                        StackMapTable* stackmap_table,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1920
                                        bool no_control_flow, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1921
  if (stackmap_index < stackmap_table->get_frame_count()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1922
    u2 this_offset = stackmap_table->get_offset(stackmap_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1923
    if (no_control_flow && this_offset > bci) {
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1924
      verify_error(ErrorContext::missing_stackmap(bci),
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1925
                   "Expecting a stack map frame");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1926
      return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1927
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1928
    if (this_offset == bci) {
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1929
      ErrorContext ctx;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1930
      // See if current stack map can be assigned to the frame in table.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1931
      // current_frame is the stackmap frame got from the last instruction.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1932
      // If matched, current_frame will be updated by this method.
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1933
      bool matches = stackmap_table->match_stackmap(
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1934
        current_frame, this_offset, stackmap_index,
43179
06ccf3bfd0a3 8167104: Additional class construction refinements
hseigel
parents: 43178
diff changeset
  1935
        !no_control_flow, true, &ctx, CHECK_VERIFY_(this, 0));
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1936
      if (!matches) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1937
        // report type error
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1938
        verify_error(ctx, "Instruction type does not match stack map");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1939
        return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1940
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1941
      stackmap_index++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1942
    } else if (this_offset < bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1943
      // current_offset should have met this_offset.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1944
      class_format_error("Bad stack map offset %d", this_offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1945
      return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1946
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1947
  } else if (no_control_flow) {
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1948
    verify_error(ErrorContext::bad_code(bci), "Expecting a stack map frame");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1949
    return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1950
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1951
  return stackmap_index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1952
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1953
35856
9a7e9cdf11bf 8137314: vm crash from test java/security/Policy/SignedJar/SignedJarTest.java
hseigel
parents: 35492
diff changeset
  1954
// Since this method references the constant pool, call was_recursively_verified()
9a7e9cdf11bf 8137314: vm crash from test java/security/Policy/SignedJar/SignedJarTest.java
hseigel
parents: 35492
diff changeset
  1955
// before calling this method to make sure a prior class load did not cause the
9a7e9cdf11bf 8137314: vm crash from test java/security/Policy/SignedJar/SignedJarTest.java
hseigel
parents: 35492
diff changeset
  1956
// current class to get verified.
9a7e9cdf11bf 8137314: vm crash from test java/security/Policy/SignedJar/SignedJarTest.java
hseigel
parents: 35492
diff changeset
  1957
void ClassVerifier::verify_exception_handler_targets(u2 bci, bool this_uninit,
9a7e9cdf11bf 8137314: vm crash from test java/security/Policy/SignedJar/SignedJarTest.java
hseigel
parents: 35492
diff changeset
  1958
                                                     StackMapFrame* current_frame,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1959
                                                     StackMapTable* stackmap_table, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1960
  constantPoolHandle cp (THREAD, _method->constants());
13282
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12932
diff changeset
  1961
  ExceptionTable exhandlers(_method());
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12932
diff changeset
  1962
  int exlength = exhandlers.length();
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12932
diff changeset
  1963
  for(int i = 0; i < exlength; i++) {
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12932
diff changeset
  1964
    u2 start_pc = exhandlers.start_pc(i);
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12932
diff changeset
  1965
    u2 end_pc = exhandlers.end_pc(i);
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12932
diff changeset
  1966
    u2 handler_pc = exhandlers.handler_pc(i);
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12932
diff changeset
  1967
    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
  1968
    if(bci >= start_pc && bci < end_pc) {
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12932
diff changeset
  1969
      u1 flags = current_frame->flags();
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12932
diff changeset
  1970
      if (this_uninit) {  flags |= FLAG_THIS_UNINIT; }
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12932
diff changeset
  1971
      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
  1972
      if (catch_type_index != 0) {
35856
9a7e9cdf11bf 8137314: vm crash from test java/security/Policy/SignedJar/SignedJarTest.java
hseigel
parents: 35492
diff changeset
  1973
        if (was_recursively_verified()) return;
13282
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12932
diff changeset
  1974
        // 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
  1975
        VerificationType catch_type = cp_index_to_type(
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12932
diff changeset
  1976
          catch_type_index, cp, CHECK_VERIFY(this));
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12932
diff changeset
  1977
        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
  1978
      } else {
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12932
diff changeset
  1979
        VerificationType throwable =
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12932
diff changeset
  1980
          VerificationType::reference_type(vmSymbols::java_lang_Throwable());
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12932
diff changeset
  1981
        new_frame->push_stack(throwable, CHECK_VERIFY(this));
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12932
diff changeset
  1982
      }
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1983
      ErrorContext ctx;
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1984
      bool matches = stackmap_table->match_stackmap(
43179
06ccf3bfd0a3 8167104: Additional class construction refinements
hseigel
parents: 43178
diff changeset
  1985
        new_frame, handler_pc, true, false, &ctx, CHECK_VERIFY(this));
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1986
      if (!matches) {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1987
        verify_error(ctx, "Stack map does not match the one at "
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1988
            "exception handler %d", handler_pc);
13282
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12932
diff changeset
  1989
        return;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1990
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1991
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1992
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1993
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1994
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1995
void ClassVerifier::verify_cp_index(
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33207
diff changeset
  1996
    u2 bci, const constantPoolHandle& cp, int index, TRAPS) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1997
  int nconstants = cp->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1998
  if ((index <= 0) || (index >= nconstants)) {
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  1999
    verify_error(ErrorContext::bad_cp_index(bci, index),
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2000
        "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
  2001
        index, cp->pool_holder()->external_name());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2002
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2003
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2004
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2005
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2006
void ClassVerifier::verify_cp_type(
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33207
diff changeset
  2007
    u2 bci, int index, const constantPoolHandle& cp, unsigned int types, TRAPS) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2008
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2009
  // In some situations, bytecode rewriting may occur while we're verifying.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2010
  // 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
  2011
  // instead.  Be sure we don't pick up such indices by accident.
3015c564fcbc 6956164: nightly regressions from 6939207
jrose
parents: 5688
diff changeset
  2012
  // We must check was_recursively_verified() before we get here.
3015c564fcbc 6956164: nightly regressions from 6939207
jrose
parents: 5688
diff changeset
  2013
  guarantee(cp->cache() == NULL, "not rewritten yet");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2014
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2015
  verify_cp_index(bci, cp, index, CHECK_VERIFY(this));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2016
  unsigned int tag = cp->tag_at(index).value();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2017
  if ((types & (1 << tag)) == 0) {
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2018
    verify_error(ErrorContext::bad_cp_index(bci, index),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2019
      "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
  2020
      index, cp->pool_holder()->external_name());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2021
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2022
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2023
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2024
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2025
void ClassVerifier::verify_cp_class_type(
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33207
diff changeset
  2026
    u2 bci, int index, const constantPoolHandle& cp, TRAPS) {
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2027
  verify_cp_index(bci, cp, index, CHECK_VERIFY(this));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2028
  constantTag tag = cp->tag_at(index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2029
  if (!tag.is_klass() && !tag.is_unresolved_klass()) {
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2030
    verify_error(ErrorContext::bad_cp_index(bci, index),
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2031
        "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
  2032
        index, cp->pool_holder()->external_name());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2033
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2034
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2035
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2036
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2037
void ClassVerifier::verify_error(ErrorContext ctx, const char* msg, ...) {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2038
  stringStream ss;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2039
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2040
  ctx.reset_frames();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2041
  _exception_type = vmSymbols::java_lang_VerifyError();
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2042
  _error_context = ctx;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2043
  va_list va;
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2044
  va_start(va, msg);
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2045
  ss.vprint(msg, va);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2046
  va_end(va);
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2047
  _message = ss.as_string();
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2048
#ifdef ASSERT
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2049
  ResourceMark rm;
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2050
  const char* exception_name = _exception_type->as_C_string();
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2051
  Exceptions::debug_check_abort(exception_name, NULL);
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2052
#endif // ndef ASSERT
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2053
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2054
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2055
void ClassVerifier::class_format_error(const char* msg, ...) {
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2056
  stringStream ss;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2057
  _exception_type = vmSymbols::java_lang_ClassFormatError();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2058
  va_list va;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2059
  va_start(va, msg);
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2060
  ss.vprint(msg, va);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2061
  va_end(va);
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2062
  if (!_method.is_null()) {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2063
    ss.print(" in method %s", _method->name_and_sig_as_C_string());
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2064
  }
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2065
  _message = ss.as_string();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2066
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2067
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13479
diff changeset
  2068
Klass* ClassVerifier::load_class(Symbol* name, TRAPS) {
46271
979ebd346ecf 8169881: Remove implicit Handle conversions oop->Handle
coleenp
parents: 41542
diff changeset
  2069
  HandleMark hm(THREAD);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2070
  // Get current loader and protection domain first.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2071
  oop loader = current_class()->class_loader();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2072
  oop protection_domain = current_class()->protection_domain();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2073
30616
fde3a4fee412 8076318: split verifier needs to add TraceClassResolution
hseigel
parents: 30114
diff changeset
  2074
  Klass* kls = SystemDictionary::resolve_or_fail(
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2075
    name, Handle(THREAD, loader), Handle(THREAD, protection_domain),
27680
8ecc0871c18e 8064811: Use THREAD instead of CHECK_NULL in return statements
stefank
parents: 27171
diff changeset
  2076
    true, THREAD);
30616
fde3a4fee412 8076318: split verifier needs to add TraceClassResolution
hseigel
parents: 30114
diff changeset
  2077
49770
0a8a11767c3d 8189123: More consistent classloading
hseigel
parents: 49594
diff changeset
  2078
  if (kls != NULL) {
0a8a11767c3d 8189123: More consistent classloading
hseigel
parents: 49594
diff changeset
  2079
    if (log_is_enabled(Debug, class, resolve)) {
52823
f5d0926026ec 8214728: Unnecessary InstanceKlass::cast at few places
ccheung
parents: 51997
diff changeset
  2080
      Verifier::trace_class_resolution(kls, current_class());
49770
0a8a11767c3d 8189123: More consistent classloading
hseigel
parents: 49594
diff changeset
  2081
    }
30616
fde3a4fee412 8076318: split verifier needs to add TraceClassResolution
hseigel
parents: 30114
diff changeset
  2082
  }
fde3a4fee412 8076318: split verifier needs to add TraceClassResolution
hseigel
parents: 30114
diff changeset
  2083
  return kls;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2084
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2085
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 46289
diff changeset
  2086
bool ClassVerifier::is_protected_access(InstanceKlass* this_class,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13479
diff changeset
  2087
                                        Klass* target_class,
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7405
diff changeset
  2088
                                        Symbol* field_name,
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7405
diff changeset
  2089
                                        Symbol* field_sig,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2090
                                        bool is_method) {
35492
c8c0273e6b91 8146690: Make all classes in GC follow the naming convention.
david
parents: 35219
diff changeset
  2091
  NoSafepointVerifier nosafepoint;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2092
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2093
  // 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
  2094
  if (!this_class->is_subclass_of(target_class)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2095
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2096
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2097
  // 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
  2098
  InstanceKlass* target_instance = InstanceKlass::cast(target_class);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2099
  fieldDescriptor fd;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2100
  if (is_method) {
28731
f7339cba0a6a 8067480: Crash in klassItable::initialize_itable_for_interface when running vm.runtime.defmeth.StaticMethodsTest.
lfoltan
parents: 28612
diff changeset
  2101
    Method* m = target_instance->uncached_lookup_method(field_name, field_sig, Klass::find_overpass);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2102
    if (m != NULL && m->is_protected()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2103
      if (!this_class->is_same_class_package(m->method_holder())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2104
        return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2105
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2106
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2107
  } else {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13479
diff changeset
  2108
    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
  2109
    if (member_klass != NULL && fd.is_protected()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2110
      if (!this_class->is_same_class_package(member_klass)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2111
        return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2112
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2113
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2114
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2115
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2116
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2117
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2118
void ClassVerifier::verify_ldc(
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2119
    int opcode, u2 index, StackMapFrame* current_frame,
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33207
diff changeset
  2120
    const constantPoolHandle& cp, u2 bci, TRAPS) {
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2121
  verify_cp_index(bci, cp, index, CHECK_VERIFY(this));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2122
  constantTag tag = cp->tag_at(index);
48826
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 47765
diff changeset
  2123
  unsigned int types = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2124
  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
  2125
    if (!tag.is_unresolved_klass()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2126
      types = (1 << JVM_CONSTANT_Integer) | (1 << JVM_CONSTANT_Float)
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  2127
            | (1 << JVM_CONSTANT_String)  | (1 << JVM_CONSTANT_Class)
48826
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 47765
diff changeset
  2128
            | (1 << JVM_CONSTANT_MethodHandle) | (1 << JVM_CONSTANT_MethodType)
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 47765
diff changeset
  2129
            | (1 << JVM_CONSTANT_Dynamic);
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  2130
      // Note:  The class file parser already verified the legality of
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  2131
      // MethodHandle and MethodType constants.
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2132
      verify_cp_type(bci, index, cp, types, CHECK_VERIFY(this));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2133
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2134
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2135
    assert(opcode == Bytecodes::_ldc2_w, "must be ldc2_w");
48826
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 47765
diff changeset
  2136
    types = (1 << JVM_CONSTANT_Double) | (1 << JVM_CONSTANT_Long)
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 47765
diff changeset
  2137
          | (1 << JVM_CONSTANT_Dynamic);
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2138
    verify_cp_type(bci, index, cp, types, CHECK_VERIFY(this));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2139
  }
1550
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 670
diff changeset
  2140
  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
  2141
    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
  2142
  } else if (tag.is_string()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2143
    current_frame->push_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2144
      VerificationType::reference_type(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2145
        vmSymbols::java_lang_String()), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2146
  } else if (tag.is_klass() || tag.is_unresolved_klass()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2147
    current_frame->push_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2148
      VerificationType::reference_type(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2149
        vmSymbols::java_lang_Class()), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2150
  } else if (tag.is_int()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2151
    current_frame->push_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2152
      VerificationType::integer_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2153
  } else if (tag.is_float()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2154
    current_frame->push_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2155
      VerificationType::float_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2156
  } else if (tag.is_double()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2157
    current_frame->push_stack_2(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2158
      VerificationType::double_type(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2159
      VerificationType::double2_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2160
  } else if (tag.is_long()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2161
    current_frame->push_stack_2(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2162
      VerificationType::long_type(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2163
      VerificationType::long2_type(), CHECK_VERIFY(this));
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  2164
  } else if (tag.is_method_handle()) {
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  2165
    current_frame->push_stack(
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  2166
      VerificationType::reference_type(
9116
9bc44be338d6 6981791: remove experimental code for JSR 292
jrose
parents: 8676
diff changeset
  2167
        vmSymbols::java_lang_invoke_MethodHandle()), CHECK_VERIFY(this));
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  2168
  } else if (tag.is_method_type()) {
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  2169
    current_frame->push_stack(
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  2170
      VerificationType::reference_type(
9116
9bc44be338d6 6981791: remove experimental code for JSR 292
jrose
parents: 8676
diff changeset
  2171
        vmSymbols::java_lang_invoke_MethodType()), CHECK_VERIFY(this));
48826
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 47765
diff changeset
  2172
  } else if (tag.is_dynamic_constant()) {
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 47765
diff changeset
  2173
    Symbol* constant_type = cp->uncached_signature_ref_at(index);
54124
5d48ae032588 8219579: Remove redundant signature parsing from the verifier
hseigel
parents: 53908
diff changeset
  2174
    // Field signature was checked in ClassFileParser.
5d48ae032588 8219579: Remove redundant signature parsing from the verifier
hseigel
parents: 53908
diff changeset
  2175
    assert(SignatureVerifier::is_valid_type_signature(constant_type),
5d48ae032588 8219579: Remove redundant signature parsing from the verifier
hseigel
parents: 53908
diff changeset
  2176
           "Invalid type for dynamic constant");
48826
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 47765
diff changeset
  2177
    assert(sizeof(VerificationType) == sizeof(uintptr_t),
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 47765
diff changeset
  2178
          "buffer type must match VerificationType size");
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 47765
diff changeset
  2179
    uintptr_t constant_type_buffer[2];
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 47765
diff changeset
  2180
    VerificationType* v_constant_type = (VerificationType*)constant_type_buffer;
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 47765
diff changeset
  2181
    SignatureStream sig_stream(constant_type, false);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 47765
diff changeset
  2182
    int n = change_sig_to_verificationType(
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 47765
diff changeset
  2183
      &sig_stream, v_constant_type, CHECK_VERIFY(this));
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 47765
diff changeset
  2184
    int opcode_n = (opcode == Bytecodes::_ldc2_w ? 2 : 1);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 47765
diff changeset
  2185
    if (n != opcode_n) {
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 47765
diff changeset
  2186
      // wrong kind of ldc; reverify against updated type mask
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 47765
diff changeset
  2187
      types &= ~(1 << JVM_CONSTANT_Dynamic);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 47765
diff changeset
  2188
      verify_cp_type(bci, index, cp, types, CHECK_VERIFY(this));
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 47765
diff changeset
  2189
    }
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 47765
diff changeset
  2190
    for (int i = 0; i < n; i++) {
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 47765
diff changeset
  2191
      current_frame->push_stack(v_constant_type[i], CHECK_VERIFY(this));
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 47765
diff changeset
  2192
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2193
  } else {
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2194
    /* Unreachable? verify_cp_type has already validated the cp type. */
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2195
    verify_error(
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2196
        ErrorContext::bad_cp_index(bci, index), "Invalid index in ldc");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2197
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2198
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2199
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2200
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2201
void ClassVerifier::verify_switch(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2202
    RawBytecodeStream* bcs, u4 code_length, char* code_data,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2203
    StackMapFrame* current_frame, StackMapTable* stackmap_table, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2204
  int bci = bcs->bci();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2205
  address bcp = bcs->bcp();
46620
750c6edff33b 8178500: Replace usages of round_to and round_down with align_up and align_down
stefank
parents: 46403
diff changeset
  2206
  address aligned_bcp = align_up(bcp + 1, jintSize);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2207
16442
a929bb40c0e8 8010667: Non-zero padding is not allowed in splitverifier for tableswitch/lookupswitch instructions.
hseigel
parents: 15736
diff changeset
  2208
  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
  2209
    // 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
  2210
    u2 padding_offset = 1;
a929bb40c0e8 8010667: Non-zero padding is not allowed in splitverifier for tableswitch/lookupswitch instructions.
hseigel
parents: 15736
diff changeset
  2211
    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
  2212
      if(*(bcp + padding_offset) != 0) {
a929bb40c0e8 8010667: Non-zero padding is not allowed in splitverifier for tableswitch/lookupswitch instructions.
hseigel
parents: 15736
diff changeset
  2213
        verify_error(ErrorContext::bad_code(bci),
24663
48203b12ee8e 8043925: Fix typo in verifier.cpp
coleenp
parents: 24456
diff changeset
  2214
                     "Nonzero padding byte in lookupswitch or tableswitch");
16442
a929bb40c0e8 8010667: Non-zero padding is not allowed in splitverifier for tableswitch/lookupswitch instructions.
hseigel
parents: 15736
diff changeset
  2215
        return;
a929bb40c0e8 8010667: Non-zero padding is not allowed in splitverifier for tableswitch/lookupswitch instructions.
hseigel
parents: 15736
diff changeset
  2216
      }
a929bb40c0e8 8010667: Non-zero padding is not allowed in splitverifier for tableswitch/lookupswitch instructions.
hseigel
parents: 15736
diff changeset
  2217
      padding_offset++;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2218
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2219
  }
16442
a929bb40c0e8 8010667: Non-zero padding is not allowed in splitverifier for tableswitch/lookupswitch instructions.
hseigel
parents: 15736
diff changeset
  2220
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2221
  int default_offset = (int) Bytes::get_Java_u4(aligned_bcp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2222
  int keys, delta;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2223
  current_frame->pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2224
    VerificationType::integer_type(), CHECK_VERIFY(this));
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4571
diff changeset
  2225
  if (bcs->raw_code() == Bytecodes::_tableswitch) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2226
    jint low = (jint)Bytes::get_Java_u4(aligned_bcp + jintSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2227
    jint high = (jint)Bytes::get_Java_u4(aligned_bcp + 2*jintSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2228
    if (low > high) {
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2229
      verify_error(ErrorContext::bad_code(bci),
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2230
          "low must be less than or equal to high in tableswitch");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2231
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2232
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2233
    keys = high - low + 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2234
    if (keys < 0) {
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2235
      verify_error(ErrorContext::bad_code(bci), "too many keys in tableswitch");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2236
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2237
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2238
    delta = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2239
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2240
    keys = (int)Bytes::get_Java_u4(aligned_bcp + jintSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2241
    if (keys < 0) {
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2242
      verify_error(ErrorContext::bad_code(bci),
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2243
                   "number of keys in lookupswitch less than 0");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2244
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2245
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2246
    delta = 2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2247
    // Make sure that the lookupswitch items are sorted
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2248
    for (int i = 0; i < (keys - 1); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2249
      jint this_key = Bytes::get_Java_u4(aligned_bcp + (2+2*i)*jintSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2250
      jint next_key = Bytes::get_Java_u4(aligned_bcp + (2+2*i+2)*jintSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2251
      if (this_key >= next_key) {
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2252
        verify_error(ErrorContext::bad_code(bci),
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2253
                     "Bad lookupswitch instruction");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2254
        return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2255
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2256
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2257
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2258
  int target = bci + default_offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2259
  stackmap_table->check_jump_target(current_frame, target, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2260
  for (int i = 0; i < keys; i++) {
12932
16599c579430 7166498: JVM crash in ClassVerifier
kamg
parents: 9116
diff changeset
  2261
    // Because check_jump_target() may safepoint, the bytecode could have
16599c579430 7166498: JVM crash in ClassVerifier
kamg
parents: 9116
diff changeset
  2262
    // moved, which means 'aligned_bcp' is no good and needs to be recalculated.
46620
750c6edff33b 8178500: Replace usages of round_to and round_down with align_up and align_down
stefank
parents: 46403
diff changeset
  2263
    aligned_bcp = align_up(bcs->bcp() + 1, jintSize);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2264
    target = bci + (jint)Bytes::get_Java_u4(aligned_bcp+(3+i*delta)*jintSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2265
    stackmap_table->check_jump_target(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2266
      current_frame, target, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2267
  }
12932
16599c579430 7166498: JVM crash in ClassVerifier
kamg
parents: 9116
diff changeset
  2268
  NOT_PRODUCT(aligned_bcp = NULL);  // no longer valid at this point
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2269
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2270
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2271
bool ClassVerifier::name_in_supers(
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 46289
diff changeset
  2272
    Symbol* ref_name, InstanceKlass* current) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13479
diff changeset
  2273
  Klass* super = current->super();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2274
  while (super != NULL) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13479
diff changeset
  2275
    if (super->name() == ref_name) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2276
      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2277
    }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13479
diff changeset
  2278
    super = super->super();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2279
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2280
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2281
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2282
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2283
void ClassVerifier::verify_field_instructions(RawBytecodeStream* bcs,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2284
                                              StackMapFrame* current_frame,
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33207
diff changeset
  2285
                                              const constantPoolHandle& cp,
28612
164db20ecb94 8055146: Split Verifier incorrectly throws VerifyError for getstatic of an array field
hseigel
parents: 28371
diff changeset
  2286
                                              bool allow_arrays,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2287
                                              TRAPS) {
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4571
diff changeset
  2288
  u2 index = bcs->get_index_u2();
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2289
  verify_cp_type(bcs->bci(), index, cp,
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2290
      1 << JVM_CONSTANT_Fieldref, CHECK_VERIFY(this));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2291
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2292
  // Get field name and signature
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7405
diff changeset
  2293
  Symbol* field_name = cp->name_ref_at(index);
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7405
diff changeset
  2294
  Symbol* field_sig = cp->signature_ref_at(index);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2295
54124
5d48ae032588 8219579: Remove redundant signature parsing from the verifier
hseigel
parents: 53908
diff changeset
  2296
  // Field signature was checked in ClassFileParser.
5d48ae032588 8219579: Remove redundant signature parsing from the verifier
hseigel
parents: 53908
diff changeset
  2297
  assert(SignatureVerifier::is_valid_type_signature(field_sig),
5d48ae032588 8219579: Remove redundant signature parsing from the verifier
hseigel
parents: 53908
diff changeset
  2298
         "Invalid field signature");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2299
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2300
  // Get referenced class type
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2301
  VerificationType ref_class_type = cp_ref_index_to_type(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2302
    index, cp, CHECK_VERIFY(this));
28612
164db20ecb94 8055146: Split Verifier incorrectly throws VerifyError for getstatic of an array field
hseigel
parents: 28371
diff changeset
  2303
  if (!ref_class_type.is_object() &&
164db20ecb94 8055146: Split Verifier incorrectly throws VerifyError for getstatic of an array field
hseigel
parents: 28371
diff changeset
  2304
    (!allow_arrays || !ref_class_type.is_array())) {
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2305
    verify_error(ErrorContext::bad_type(bcs->bci(),
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2306
        TypeOrigin::cp(index, ref_class_type)),
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2307
        "Expecting reference to class in class %s at constant pool index %d",
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2308
        _klass->external_name(), index);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2309
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2310
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2311
  VerificationType target_class_type = ref_class_type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2312
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2313
  assert(sizeof(VerificationType) == sizeof(uintptr_t),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2314
        "buffer type must match VerificationType size");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2315
  uintptr_t field_type_buffer[2];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2316
  VerificationType* field_type = (VerificationType*)field_type_buffer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2317
  // If we make a VerificationType[2] array directly, the compiler calls
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2318
  // to the c-runtime library to do the allocation instead of just
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2319
  // stack allocating it.  Plus it would run constructors.  This shows up
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2320
  // in performance profiles.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2321
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2322
  SignatureStream sig_stream(field_sig, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2323
  VerificationType stack_object_type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2324
  int n = change_sig_to_verificationType(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2325
    &sig_stream, field_type, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2326
  u2 bci = bcs->bci();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2327
  bool is_assignable;
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4571
diff changeset
  2328
  switch (bcs->raw_code()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2329
    case Bytecodes::_getstatic: {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2330
      for (int i = 0; i < n; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2331
        current_frame->push_stack(field_type[i], CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2332
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2333
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2334
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2335
    case Bytecodes::_putstatic: {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2336
      for (int i = n - 1; i >= 0; i--) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2337
        current_frame->pop_stack(field_type[i], CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2338
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2339
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2340
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2341
    case Bytecodes::_getfield: {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2342
      stack_object_type = current_frame->pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2343
        target_class_type, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2344
      for (int i = 0; i < n; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2345
        current_frame->push_stack(field_type[i], CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2346
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2347
      goto check_protected;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2348
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2349
    case Bytecodes::_putfield: {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2350
      for (int i = n - 1; i >= 0; i--) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2351
        current_frame->pop_stack(field_type[i], CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2352
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2353
      stack_object_type = current_frame->pop_stack(CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2354
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2355
      // The JVMS 2nd edition allows field initialization before the superclass
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2356
      // initializer, if the field is defined within the current class.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2357
      fieldDescriptor fd;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2358
      if (stack_object_type == VerificationType::uninitialized_this_type() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2359
          target_class_type.equals(current_type()) &&
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7405
diff changeset
  2360
          _klass->find_local_field(field_name, field_sig, &fd)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2361
        stack_object_type = current_type();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2362
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2363
      is_assignable = target_class_type.is_assignable_from(
27022
2db6fe33afc2 8036533: Method for correct defaults
hseigel
parents: 27003
diff changeset
  2364
        stack_object_type, this, false, CHECK_VERIFY(this));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2365
      if (!is_assignable) {
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2366
        verify_error(ErrorContext::bad_type(bci,
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2367
            current_frame->stack_top_ctx(),
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2368
            TypeOrigin::cp(index, target_class_type)),
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2369
            "Bad type on operand stack in putfield");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2370
        return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2371
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2372
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2373
    check_protected: {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2374
      if (_this_type == stack_object_type)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2375
        break; // stack_object_type must be assignable to _current_class_type
35856
9a7e9cdf11bf 8137314: vm crash from test java/security/Policy/SignedJar/SignedJarTest.java
hseigel
parents: 35492
diff changeset
  2376
      if (was_recursively_verified()) return;
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7405
diff changeset
  2377
      Symbol* ref_class_name =
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7405
diff changeset
  2378
        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
  2379
      if (!name_in_supers(ref_class_name, current_class()))
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2380
        // stack_object_type must be assignable to _current_class_type since:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2381
        // 1. stack_object_type must be assignable to ref_class.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2382
        // 2. ref_class must be _current_class or a subclass of it. It can't
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2383
        //    be a superclass of it. See revised JVMS 5.4.4.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2384
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2385
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13479
diff changeset
  2386
      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
  2387
      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
  2388
                              field_sig, false)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2389
        // It's protected access, check if stack object is assignable to
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2390
        // current class.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2391
        is_assignable = current_type().is_assignable_from(
27022
2db6fe33afc2 8036533: Method for correct defaults
hseigel
parents: 27003
diff changeset
  2392
          stack_object_type, this, true, CHECK_VERIFY(this));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2393
        if (!is_assignable) {
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2394
          verify_error(ErrorContext::bad_type(bci,
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2395
              current_frame->stack_top_ctx(),
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2396
              TypeOrigin::implicit(current_type())),
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2397
              "Bad access to protected data in getfield");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2398
          return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2399
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2400
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2401
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2402
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2403
    default: ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2404
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2405
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2406
25955
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2407
// Look at the method's handlers.  If the bci is in the handler's try block
30102
d932845db0fe 8075118: JVM stuck in infinite loop during verification
hseigel
parents: 28738
diff changeset
  2408
// then check if the handler_pc is already on the stack.  If not, push it
d932845db0fe 8075118: JVM stuck in infinite loop during verification
hseigel
parents: 28738
diff changeset
  2409
// unless the handler has already been scanned.
25955
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2410
void ClassVerifier::push_handlers(ExceptionTable* exhandlers,
30102
d932845db0fe 8075118: JVM stuck in infinite loop during verification
hseigel
parents: 28738
diff changeset
  2411
                                  GrowableArray<u4>* handler_list,
25955
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2412
                                  GrowableArray<u4>* handler_stack,
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2413
                                  u4 bci) {
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2414
  int exlength = exhandlers->length();
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2415
  for(int x = 0; x < exlength; x++) {
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2416
    if (bci >= exhandlers->start_pc(x) && bci < exhandlers->end_pc(x)) {
30102
d932845db0fe 8075118: JVM stuck in infinite loop during verification
hseigel
parents: 28738
diff changeset
  2417
      u4 exhandler_pc = exhandlers->handler_pc(x);
d932845db0fe 8075118: JVM stuck in infinite loop during verification
hseigel
parents: 28738
diff changeset
  2418
      if (!handler_list->contains(exhandler_pc)) {
d932845db0fe 8075118: JVM stuck in infinite loop during verification
hseigel
parents: 28738
diff changeset
  2419
        handler_stack->append_if_missing(exhandler_pc);
d932845db0fe 8075118: JVM stuck in infinite loop during verification
hseigel
parents: 28738
diff changeset
  2420
        handler_list->append(exhandler_pc);
d932845db0fe 8075118: JVM stuck in infinite loop during verification
hseigel
parents: 28738
diff changeset
  2421
      }
25955
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2422
    }
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2423
  }
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2424
}
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2425
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2426
// Return TRUE if all code paths starting with start_bc_offset end in
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2427
// bytecode athrow or loop.
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2428
bool ClassVerifier::ends_in_athrow(u4 start_bc_offset) {
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2429
  ResourceMark rm;
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2430
  // Create bytecode stream.
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2431
  RawBytecodeStream bcs(method());
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2432
  u4 code_length = method()->code_size();
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2433
  bcs.set_start(start_bc_offset);
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2434
  u4 target;
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2435
  // Create stack for storing bytecode start offsets for if* and *switch.
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2436
  GrowableArray<u4>* bci_stack = new GrowableArray<u4>(30);
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2437
  // Create stack for handlers for try blocks containing this handler.
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2438
  GrowableArray<u4>* handler_stack = new GrowableArray<u4>(30);
30102
d932845db0fe 8075118: JVM stuck in infinite loop during verification
hseigel
parents: 28738
diff changeset
  2439
  // Create list of handlers that have been pushed onto the handler_stack
d932845db0fe 8075118: JVM stuck in infinite loop during verification
hseigel
parents: 28738
diff changeset
  2440
  // so that handlers embedded inside of their own TRY blocks only get
d932845db0fe 8075118: JVM stuck in infinite loop during verification
hseigel
parents: 28738
diff changeset
  2441
  // scanned once.
d932845db0fe 8075118: JVM stuck in infinite loop during verification
hseigel
parents: 28738
diff changeset
  2442
  GrowableArray<u4>* handler_list = new GrowableArray<u4>(30);
25955
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2443
  // Create list of visited branch opcodes (goto* and if*).
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2444
  GrowableArray<u4>* visited_branches = new GrowableArray<u4>(30);
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2445
  ExceptionTable exhandlers(_method());
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2446
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2447
  while (true) {
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2448
    if (bcs.is_last_bytecode()) {
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2449
      // if no more starting offsets to parse or if at the end of the
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2450
      // method then return false.
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2451
      if ((bci_stack->is_empty()) || ((u4)bcs.end_bci() == code_length))
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2452
        return false;
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2453
      // Pop a bytecode starting offset and scan from there.
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2454
      bcs.set_start(bci_stack->pop());
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2455
    }
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2456
    Bytecodes::Code opcode = bcs.raw_next();
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2457
    u4 bci = bcs.bci();
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2458
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2459
    // If the bytecode is in a TRY block, push its handlers so they
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2460
    // will get parsed.
30102
d932845db0fe 8075118: JVM stuck in infinite loop during verification
hseigel
parents: 28738
diff changeset
  2461
    push_handlers(&exhandlers, handler_list, handler_stack, bci);
25955
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2462
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2463
    switch (opcode) {
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2464
      case Bytecodes::_if_icmpeq:
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2465
      case Bytecodes::_if_icmpne:
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2466
      case Bytecodes::_if_icmplt:
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2467
      case Bytecodes::_if_icmpge:
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2468
      case Bytecodes::_if_icmpgt:
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2469
      case Bytecodes::_if_icmple:
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2470
      case Bytecodes::_ifeq:
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2471
      case Bytecodes::_ifne:
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2472
      case Bytecodes::_iflt:
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2473
      case Bytecodes::_ifge:
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2474
      case Bytecodes::_ifgt:
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2475
      case Bytecodes::_ifle:
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2476
      case Bytecodes::_if_acmpeq:
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2477
      case Bytecodes::_if_acmpne:
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2478
      case Bytecodes::_ifnull:
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2479
      case Bytecodes::_ifnonnull:
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2480
        target = bcs.dest();
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2481
        if (visited_branches->contains(bci)) {
39715
1cbba6073b15 8155981: Bolster bytecode verification
hseigel
parents: 38151
diff changeset
  2482
          if (bci_stack->is_empty()) {
1cbba6073b15 8155981: Bolster bytecode verification
hseigel
parents: 38151
diff changeset
  2483
            if (handler_stack->is_empty()) {
1cbba6073b15 8155981: Bolster bytecode verification
hseigel
parents: 38151
diff changeset
  2484
              return true;
1cbba6073b15 8155981: Bolster bytecode verification
hseigel
parents: 38151
diff changeset
  2485
            } else {
1cbba6073b15 8155981: Bolster bytecode verification
hseigel
parents: 38151
diff changeset
  2486
              // Parse the catch handlers for try blocks containing athrow.
1cbba6073b15 8155981: Bolster bytecode verification
hseigel
parents: 38151
diff changeset
  2487
              bcs.set_start(handler_stack->pop());
1cbba6073b15 8155981: Bolster bytecode verification
hseigel
parents: 38151
diff changeset
  2488
            }
1cbba6073b15 8155981: Bolster bytecode verification
hseigel
parents: 38151
diff changeset
  2489
          } else {
1cbba6073b15 8155981: Bolster bytecode verification
hseigel
parents: 38151
diff changeset
  2490
            // Pop a bytecode starting offset and scan from there.
1cbba6073b15 8155981: Bolster bytecode verification
hseigel
parents: 38151
diff changeset
  2491
            bcs.set_start(bci_stack->pop());
1cbba6073b15 8155981: Bolster bytecode verification
hseigel
parents: 38151
diff changeset
  2492
          }
25955
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2493
        } else {
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2494
          if (target > bci) { // forward branch
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2495
            if (target >= code_length) return false;
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2496
            // Push the branch target onto the stack.
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2497
            bci_stack->push(target);
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2498
            // then, scan bytecodes starting with next.
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2499
            bcs.set_start(bcs.next_bci());
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2500
          } else { // backward branch
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2501
            // Push bytecode offset following backward branch onto the stack.
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2502
            bci_stack->push(bcs.next_bci());
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2503
            // Check bytecodes starting with branch target.
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2504
            bcs.set_start(target);
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2505
          }
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2506
          // Record target so we don't branch here again.
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2507
          visited_branches->append(bci);
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2508
        }
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2509
        break;
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2510
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2511
      case Bytecodes::_goto:
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2512
      case Bytecodes::_goto_w:
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2513
        target = (opcode == Bytecodes::_goto ? bcs.dest() : bcs.dest_w());
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2514
        if (visited_branches->contains(bci)) {
39715
1cbba6073b15 8155981: Bolster bytecode verification
hseigel
parents: 38151
diff changeset
  2515
          if (bci_stack->is_empty()) {
1cbba6073b15 8155981: Bolster bytecode verification
hseigel
parents: 38151
diff changeset
  2516
            if (handler_stack->is_empty()) {
1cbba6073b15 8155981: Bolster bytecode verification
hseigel
parents: 38151
diff changeset
  2517
              return true;
1cbba6073b15 8155981: Bolster bytecode verification
hseigel
parents: 38151
diff changeset
  2518
            } else {
1cbba6073b15 8155981: Bolster bytecode verification
hseigel
parents: 38151
diff changeset
  2519
              // Parse the catch handlers for try blocks containing athrow.
1cbba6073b15 8155981: Bolster bytecode verification
hseigel
parents: 38151
diff changeset
  2520
              bcs.set_start(handler_stack->pop());
1cbba6073b15 8155981: Bolster bytecode verification
hseigel
parents: 38151
diff changeset
  2521
            }
1cbba6073b15 8155981: Bolster bytecode verification
hseigel
parents: 38151
diff changeset
  2522
          } else {
1cbba6073b15 8155981: Bolster bytecode verification
hseigel
parents: 38151
diff changeset
  2523
            // Been here before, pop new starting offset from stack.
1cbba6073b15 8155981: Bolster bytecode verification
hseigel
parents: 38151
diff changeset
  2524
            bcs.set_start(bci_stack->pop());
1cbba6073b15 8155981: Bolster bytecode verification
hseigel
parents: 38151
diff changeset
  2525
          }
25955
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2526
        } else {
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2527
          if (target >= code_length) return false;
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2528
          // Continue scanning from the target onward.
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2529
          bcs.set_start(target);
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2530
          // Record target so we don't branch here again.
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2531
          visited_branches->append(bci);
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2532
        }
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2533
        break;
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2534
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2535
      // Check that all switch alternatives end in 'athrow' bytecodes. Since it
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2536
      // is  difficult to determine where each switch alternative ends, parse
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2537
      // each switch alternative until either hit a 'return', 'athrow', or reach
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2538
      // the end of the method's bytecodes.  This is gross but should be okay
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2539
      // because:
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2540
      // 1. tableswitch and lookupswitch byte codes in handlers for ctor explicit
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2541
      //    constructor invocations should be rare.
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2542
      // 2. if each switch alternative ends in an athrow then the parsing should be
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2543
      //    short.  If there is no athrow then it is bogus code, anyway.
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2544
      case Bytecodes::_lookupswitch:
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2545
      case Bytecodes::_tableswitch:
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2546
        {
46620
750c6edff33b 8178500: Replace usages of round_to and round_down with align_up and align_down
stefank
parents: 46403
diff changeset
  2547
          address aligned_bcp = align_up(bcs.bcp() + 1, jintSize);
25955
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2548
          u4 default_offset = Bytes::get_Java_u4(aligned_bcp) + bci;
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2549
          int keys, delta;
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2550
          if (opcode == Bytecodes::_tableswitch) {
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2551
            jint low = (jint)Bytes::get_Java_u4(aligned_bcp + jintSize);
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2552
            jint high = (jint)Bytes::get_Java_u4(aligned_bcp + 2*jintSize);
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2553
            // This is invalid, but let the regular bytecode verifier
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2554
            // report this because the user will get a better error message.
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2555
            if (low > high) return true;
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2556
            keys = high - low + 1;
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2557
            delta = 1;
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2558
          } else {
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2559
            keys = (int)Bytes::get_Java_u4(aligned_bcp + jintSize);
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2560
            delta = 2;
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2561
          }
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2562
          // Invalid, let the regular bytecode verifier deal with it.
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2563
          if (keys < 0) return true;
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2564
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2565
          // Push the offset of the next bytecode onto the stack.
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2566
          bci_stack->push(bcs.next_bci());
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2567
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2568
          // Push the switch alternatives onto the stack.
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2569
          for (int i = 0; i < keys; i++) {
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2570
            u4 target = bci + (jint)Bytes::get_Java_u4(aligned_bcp+(3+i*delta)*jintSize);
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2571
            if (target > code_length) return false;
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2572
            bci_stack->push(target);
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2573
          }
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2574
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2575
          // Start bytecode parsing for the switch at the default alternative.
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2576
          if (default_offset > code_length) return false;
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2577
          bcs.set_start(default_offset);
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2578
          break;
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2579
        }
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2580
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2581
      case Bytecodes::_return:
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2582
        return false;
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2583
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2584
      case Bytecodes::_athrow:
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2585
        {
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2586
          if (bci_stack->is_empty()) {
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2587
            if (handler_stack->is_empty()) {
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2588
              return true;
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2589
            } else {
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2590
              // Parse the catch handlers for try blocks containing athrow.
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2591
              bcs.set_start(handler_stack->pop());
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2592
            }
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2593
          } else {
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2594
            // Pop a bytecode offset and starting scanning from there.
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2595
            bcs.set_start(bci_stack->pop());
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2596
          }
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2597
        }
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2598
        break;
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2599
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2600
      default:
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2601
        ;
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2602
    } // end switch
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2603
  } // end while loop
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2604
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2605
  return false;
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2606
}
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2607
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2608
void ClassVerifier::verify_invoke_init(
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2609
    RawBytecodeStream* bcs, u2 ref_class_index, VerificationType ref_class_type,
28512
968fe01e1f82 8058982: Better verification of an exceptional invokespecial
hseigel
parents: 28371
diff changeset
  2610
    StackMapFrame* current_frame, u4 code_length, bool in_try_block,
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33207
diff changeset
  2611
    bool *this_uninit, const constantPoolHandle& cp, StackMapTable* stackmap_table,
28512
968fe01e1f82 8058982: Better verification of an exceptional invokespecial
hseigel
parents: 28371
diff changeset
  2612
    TRAPS) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2613
  u2 bci = bcs->bci();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2614
  VerificationType type = current_frame->pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2615
    VerificationType::reference_check(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2616
  if (type == VerificationType::uninitialized_this_type()) {
12986
14b117407405 7160757: Problem with hotspot/runtime_classfile
kamg
parents: 9116
diff changeset
  2617
    // 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
  2618
    Klass* superk = current_class()->super();
6172
e1d9c632fa3c 6964170: Verifier crashes
apangin
parents: 5882
diff changeset
  2619
    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
  2620
        ref_class_type.name() != superk->name()) {
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2621
      verify_error(ErrorContext::bad_type(bci,
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2622
          TypeOrigin::implicit(ref_class_type),
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2623
          TypeOrigin::implicit(current_type())),
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2624
          "Bad <init> method call");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2625
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2626
    }
25505
9bd829aeb960 8035119: Fix exceptions to bytecode verification
hseigel
parents: 24663
diff changeset
  2627
28512
968fe01e1f82 8058982: Better verification of an exceptional invokespecial
hseigel
parents: 28371
diff changeset
  2628
    // If this invokespecial call is done from inside of a TRY block then make
968fe01e1f82 8058982: Better verification of an exceptional invokespecial
hseigel
parents: 28371
diff changeset
  2629
    // sure that all catch clause paths end in a throw.  Otherwise, this can
968fe01e1f82 8058982: Better verification of an exceptional invokespecial
hseigel
parents: 28371
diff changeset
  2630
    // result in returning an incomplete object.
968fe01e1f82 8058982: Better verification of an exceptional invokespecial
hseigel
parents: 28371
diff changeset
  2631
    if (in_try_block) {
968fe01e1f82 8058982: Better verification of an exceptional invokespecial
hseigel
parents: 28371
diff changeset
  2632
      ExceptionTable exhandlers(_method());
968fe01e1f82 8058982: Better verification of an exceptional invokespecial
hseigel
parents: 28371
diff changeset
  2633
      int exlength = exhandlers.length();
968fe01e1f82 8058982: Better verification of an exceptional invokespecial
hseigel
parents: 28371
diff changeset
  2634
      for(int i = 0; i < exlength; i++) {
968fe01e1f82 8058982: Better verification of an exceptional invokespecial
hseigel
parents: 28371
diff changeset
  2635
        u2 start_pc = exhandlers.start_pc(i);
968fe01e1f82 8058982: Better verification of an exceptional invokespecial
hseigel
parents: 28371
diff changeset
  2636
        u2 end_pc = exhandlers.end_pc(i);
25955
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2637
28512
968fe01e1f82 8058982: Better verification of an exceptional invokespecial
hseigel
parents: 28371
diff changeset
  2638
        if (bci >= start_pc && bci < end_pc) {
968fe01e1f82 8058982: Better verification of an exceptional invokespecial
hseigel
parents: 28371
diff changeset
  2639
          if (!ends_in_athrow(exhandlers.handler_pc(i))) {
968fe01e1f82 8058982: Better verification of an exceptional invokespecial
hseigel
parents: 28371
diff changeset
  2640
            verify_error(ErrorContext::bad_code(bci),
968fe01e1f82 8058982: Better verification of an exceptional invokespecial
hseigel
parents: 28371
diff changeset
  2641
              "Bad <init> method call from after the start of a try block");
968fe01e1f82 8058982: Better verification of an exceptional invokespecial
hseigel
parents: 28371
diff changeset
  2642
            return;
37261
659ed5b20b48 8153026: Change logging tag 'verboseverification' to 'verification'
rprotacio
parents: 37242
diff changeset
  2643
          } else if (log_is_enabled(Info, verification)) {
37044
f1965d5d1055 8150083: Convert VerboseVerification to Unified Logging
rprotacio
parents: 35856
diff changeset
  2644
            ResourceMark rm(THREAD);
37261
659ed5b20b48 8153026: Change logging tag 'verboseverification' to 'verification'
rprotacio
parents: 37242
diff changeset
  2645
            log_info(verification)("Survived call to ends_in_athrow(): %s",
37044
f1965d5d1055 8150083: Convert VerboseVerification to Unified Logging
rprotacio
parents: 35856
diff changeset
  2646
                                          current_class()->name()->as_C_string());
28512
968fe01e1f82 8058982: Better verification of an exceptional invokespecial
hseigel
parents: 28371
diff changeset
  2647
          }
25955
8ccc2eddcf22 8050485: super() in a try block in a ctor causes VerifyError
hseigel
parents: 25899
diff changeset
  2648
        }
25505
9bd829aeb960 8035119: Fix exceptions to bytecode verification
hseigel
parents: 24663
diff changeset
  2649
      }
28512
968fe01e1f82 8058982: Better verification of an exceptional invokespecial
hseigel
parents: 28371
diff changeset
  2650
968fe01e1f82 8058982: Better verification of an exceptional invokespecial
hseigel
parents: 28371
diff changeset
  2651
      // Check the exception handler target stackmaps with the locals from the
968fe01e1f82 8058982: Better verification of an exceptional invokespecial
hseigel
parents: 28371
diff changeset
  2652
      // incoming stackmap (before initialize_object() changes them to outgoing
968fe01e1f82 8058982: Better verification of an exceptional invokespecial
hseigel
parents: 28371
diff changeset
  2653
      // state).
35856
9a7e9cdf11bf 8137314: vm crash from test java/security/Policy/SignedJar/SignedJarTest.java
hseigel
parents: 35492
diff changeset
  2654
      if (was_recursively_verified()) return;
28512
968fe01e1f82 8058982: Better verification of an exceptional invokespecial
hseigel
parents: 28371
diff changeset
  2655
      verify_exception_handler_targets(bci, true, current_frame,
968fe01e1f82 8058982: Better verification of an exceptional invokespecial
hseigel
parents: 28371
diff changeset
  2656
                                       stackmap_table, CHECK_VERIFY(this));
968fe01e1f82 8058982: Better verification of an exceptional invokespecial
hseigel
parents: 28371
diff changeset
  2657
    } // in_try_block
25505
9bd829aeb960 8035119: Fix exceptions to bytecode verification
hseigel
parents: 24663
diff changeset
  2658
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2659
    current_frame->initialize_object(type, current_type());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2660
    *this_uninit = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2661
  } else if (type.is_uninitialized()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2662
    u2 new_offset = type.bci();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2663
    address new_bcp = bcs->bcp() - bci + new_offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2664
    if (new_offset > (code_length - 3) || (*new_bcp) != Bytecodes::_new) {
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2665
      /* Unreachable?  Stack map parsing ensures valid type and new
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2666
       * instructions have a valid BCI. */
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2667
      verify_error(ErrorContext::bad_code(new_offset),
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2668
                   "Expecting new instruction");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2669
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2670
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2671
    u2 new_class_index = Bytes::get_Java_u2(new_bcp + 1);
35856
9a7e9cdf11bf 8137314: vm crash from test java/security/Policy/SignedJar/SignedJarTest.java
hseigel
parents: 35492
diff changeset
  2672
    if (was_recursively_verified()) return;
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2673
    verify_cp_class_type(bci, new_class_index, cp, CHECK_VERIFY(this));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2674
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2675
    // The method must be an <init> method of the indicated class
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2676
    VerificationType new_class_type = cp_index_to_type(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2677
      new_class_index, cp, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2678
    if (!new_class_type.equals(ref_class_type)) {
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2679
      verify_error(ErrorContext::bad_type(bci,
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2680
          TypeOrigin::cp(new_class_index, new_class_type),
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2681
          TypeOrigin::cp(ref_class_index, ref_class_type)),
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2682
          "Call to wrong <init> method");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2683
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2684
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2685
    // According to the VM spec, if the referent class is a superclass of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2686
    // current class, and is in a different runtime package, and the method is
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2687
    // protected, then the objectref must be the current class or a subclass
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2688
    // of the current class.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2689
    VerificationType objectref_type = new_class_type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2690
    if (name_in_supers(ref_class_type.name(), current_class())) {
28371
92e60e58ba8b 8064335: Null pointer dereference in hotspot/src/share/vm/classfile/verifier.cpp
hseigel
parents: 27680
diff changeset
  2691
      Klass* ref_klass = load_class(ref_class_type.name(), CHECK);
35856
9a7e9cdf11bf 8137314: vm crash from test java/security/Policy/SignedJar/SignedJarTest.java
hseigel
parents: 35492
diff changeset
  2692
      if (was_recursively_verified()) return;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13479
diff changeset
  2693
      Method* m = InstanceKlass::cast(ref_klass)->uncached_lookup_method(
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2694
        vmSymbols::object_initializer_name(),
23999
22eb7be3d99d 8033150: invokestatic: IncompatibleClassChangeError trying to invoke static method from a parent in presence of conflicting defaults.
lfoltan
parents: 21768
diff changeset
  2695
        cp->signature_ref_at(bcs->get_index_u2()),
28731
f7339cba0a6a 8067480: Crash in klassItable::initialize_itable_for_interface when running vm.runtime.defmeth.StaticMethodsTest.
lfoltan
parents: 28612
diff changeset
  2696
        Klass::find_overpass);
25509
2677915ac7ef 8043454: Test case for 8037157 should not throw a VerifyError
hseigel
parents: 25508
diff changeset
  2697
      // Do nothing if method is not found.  Let resolution detect the error.
2677915ac7ef 8043454: Test case for 8037157 should not throw a VerifyError
hseigel
parents: 25508
diff changeset
  2698
      if (m != NULL) {
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 46289
diff changeset
  2699
        InstanceKlass* mh = m->method_holder();
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 46289
diff changeset
  2700
        if (m->is_protected() && !mh->is_same_class_package(_klass)) {
25509
2677915ac7ef 8043454: Test case for 8037157 should not throw a VerifyError
hseigel
parents: 25508
diff changeset
  2701
          bool assignable = current_type().is_assignable_from(
27022
2db6fe33afc2 8036533: Method for correct defaults
hseigel
parents: 27003
diff changeset
  2702
            objectref_type, this, true, CHECK_VERIFY(this));
25509
2677915ac7ef 8043454: Test case for 8037157 should not throw a VerifyError
hseigel
parents: 25508
diff changeset
  2703
          if (!assignable) {
2677915ac7ef 8043454: Test case for 8037157 should not throw a VerifyError
hseigel
parents: 25508
diff changeset
  2704
            verify_error(ErrorContext::bad_type(bci,
2677915ac7ef 8043454: Test case for 8037157 should not throw a VerifyError
hseigel
parents: 25508
diff changeset
  2705
                TypeOrigin::cp(new_class_index, objectref_type),
2677915ac7ef 8043454: Test case for 8037157 should not throw a VerifyError
hseigel
parents: 25508
diff changeset
  2706
                TypeOrigin::implicit(current_type())),
2677915ac7ef 8043454: Test case for 8037157 should not throw a VerifyError
hseigel
parents: 25508
diff changeset
  2707
                "Bad access to protected <init> method");
2677915ac7ef 8043454: Test case for 8037157 should not throw a VerifyError
hseigel
parents: 25508
diff changeset
  2708
            return;
2677915ac7ef 8043454: Test case for 8037157 should not throw a VerifyError
hseigel
parents: 25508
diff changeset
  2709
          }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2710
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2711
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2712
    }
28512
968fe01e1f82 8058982: Better verification of an exceptional invokespecial
hseigel
parents: 28371
diff changeset
  2713
    // Check the exception handler target stackmaps with the locals from the
968fe01e1f82 8058982: Better verification of an exceptional invokespecial
hseigel
parents: 28371
diff changeset
  2714
    // incoming stackmap (before initialize_object() changes them to outgoing
968fe01e1f82 8058982: Better verification of an exceptional invokespecial
hseigel
parents: 28371
diff changeset
  2715
    // state).
968fe01e1f82 8058982: Better verification of an exceptional invokespecial
hseigel
parents: 28371
diff changeset
  2716
    if (in_try_block) {
35856
9a7e9cdf11bf 8137314: vm crash from test java/security/Policy/SignedJar/SignedJarTest.java
hseigel
parents: 35492
diff changeset
  2717
      if (was_recursively_verified()) return;
28512
968fe01e1f82 8058982: Better verification of an exceptional invokespecial
hseigel
parents: 28371
diff changeset
  2718
      verify_exception_handler_targets(bci, *this_uninit, current_frame,
968fe01e1f82 8058982: Better verification of an exceptional invokespecial
hseigel
parents: 28371
diff changeset
  2719
                                       stackmap_table, CHECK_VERIFY(this));
968fe01e1f82 8058982: Better verification of an exceptional invokespecial
hseigel
parents: 28371
diff changeset
  2720
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2721
    current_frame->initialize_object(type, new_class_type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2722
  } else {
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2723
    verify_error(ErrorContext::bad_type(bci, current_frame->stack_top_ctx()),
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2724
        "Bad operand type when invoking <init>");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2725
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2726
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2727
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2728
21768
b7dba4cde1c6 8026065: InterfaceMethodref for invokespecial must name a direct superinterface
hseigel
parents: 21729
diff changeset
  2729
bool ClassVerifier::is_same_or_direct_interface(
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 46289
diff changeset
  2730
    InstanceKlass* klass,
21768
b7dba4cde1c6 8026065: InterfaceMethodref for invokespecial must name a direct superinterface
hseigel
parents: 21729
diff changeset
  2731
    VerificationType klass_type,
b7dba4cde1c6 8026065: InterfaceMethodref for invokespecial must name a direct superinterface
hseigel
parents: 21729
diff changeset
  2732
    VerificationType ref_class_type) {
b7dba4cde1c6 8026065: InterfaceMethodref for invokespecial must name a direct superinterface
hseigel
parents: 21729
diff changeset
  2733
  if (ref_class_type.equals(klass_type)) return true;
51329
9c68699bebe5 8208999: Some use of Klass* should be replaced by InstanceKlass*
iklam
parents: 51070
diff changeset
  2734
  Array<InstanceKlass*>* local_interfaces = klass->local_interfaces();
21768
b7dba4cde1c6 8026065: InterfaceMethodref for invokespecial must name a direct superinterface
hseigel
parents: 21729
diff changeset
  2735
  if (local_interfaces != NULL) {
b7dba4cde1c6 8026065: InterfaceMethodref for invokespecial must name a direct superinterface
hseigel
parents: 21729
diff changeset
  2736
    for (int x = 0; x < local_interfaces->length(); x++) {
51329
9c68699bebe5 8208999: Some use of Klass* should be replaced by InstanceKlass*
iklam
parents: 51070
diff changeset
  2737
      InstanceKlass* k = local_interfaces->at(x);
21768
b7dba4cde1c6 8026065: InterfaceMethodref for invokespecial must name a direct superinterface
hseigel
parents: 21729
diff changeset
  2738
      assert (k != NULL && k->is_interface(), "invalid interface");
b7dba4cde1c6 8026065: InterfaceMethodref for invokespecial must name a direct superinterface
hseigel
parents: 21729
diff changeset
  2739
      if (ref_class_type.equals(VerificationType::reference_type(k->name()))) {
b7dba4cde1c6 8026065: InterfaceMethodref for invokespecial must name a direct superinterface
hseigel
parents: 21729
diff changeset
  2740
        return true;
b7dba4cde1c6 8026065: InterfaceMethodref for invokespecial must name a direct superinterface
hseigel
parents: 21729
diff changeset
  2741
      }
b7dba4cde1c6 8026065: InterfaceMethodref for invokespecial must name a direct superinterface
hseigel
parents: 21729
diff changeset
  2742
    }
b7dba4cde1c6 8026065: InterfaceMethodref for invokespecial must name a direct superinterface
hseigel
parents: 21729
diff changeset
  2743
  }
b7dba4cde1c6 8026065: InterfaceMethodref for invokespecial must name a direct superinterface
hseigel
parents: 21729
diff changeset
  2744
  return false;
b7dba4cde1c6 8026065: InterfaceMethodref for invokespecial must name a direct superinterface
hseigel
parents: 21729
diff changeset
  2745
}
b7dba4cde1c6 8026065: InterfaceMethodref for invokespecial must name a direct superinterface
hseigel
parents: 21729
diff changeset
  2746
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2747
void ClassVerifier::verify_invoke_instructions(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2748
    RawBytecodeStream* bcs, u4 code_length, StackMapFrame* current_frame,
28512
968fe01e1f82 8058982: Better verification of an exceptional invokespecial
hseigel
parents: 28371
diff changeset
  2749
    bool in_try_block, bool *this_uninit, VerificationType return_type,
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33207
diff changeset
  2750
    const constantPoolHandle& cp, StackMapTable* stackmap_table, TRAPS) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2751
  // Make sure the constant pool item is the right type
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4571
diff changeset
  2752
  u2 index = bcs->get_index_u2();
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4571
diff changeset
  2753
  Bytecodes::Code opcode = bcs->raw_code();
48826
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 47765
diff changeset
  2754
  unsigned int types = 0;
14385
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
  2755
  switch (opcode) {
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
  2756
    case Bytecodes::_invokeinterface:
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
  2757
      types = 1 << JVM_CONSTANT_InterfaceMethodref;
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
  2758
      break;
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
  2759
    case Bytecodes::_invokedynamic:
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
  2760
      types = 1 << JVM_CONSTANT_InvokeDynamic;
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
  2761
      break;
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
  2762
    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
  2763
    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
  2764
      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
  2765
        (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
  2766
        ((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
  2767
      break;
14385
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
  2768
    default:
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
  2769
      types = 1 << JVM_CONSTANT_Methodref;
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
  2770
  }
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2771
  verify_cp_type(bcs->bci(), index, cp, types, CHECK_VERIFY(this));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2772
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2773
  // Get method name and signature
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7405
diff changeset
  2774
  Symbol* method_name = cp->name_ref_at(index);
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7405
diff changeset
  2775
  Symbol* method_sig = cp->signature_ref_at(index);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2776
54124
5d48ae032588 8219579: Remove redundant signature parsing from the verifier
hseigel
parents: 53908
diff changeset
  2777
  // Method signature was checked in ClassFileParser.
5d48ae032588 8219579: Remove redundant signature parsing from the verifier
hseigel
parents: 53908
diff changeset
  2778
  assert(SignatureVerifier::is_valid_method_signature(method_sig),
5d48ae032588 8219579: Remove redundant signature parsing from the verifier
hseigel
parents: 53908
diff changeset
  2779
         "Invalid method signature");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2780
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2781
  // Get referenced class type
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1550
diff changeset
  2782
  VerificationType ref_class_type;
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1550
diff changeset
  2783
  if (opcode == Bytecodes::_invokedynamic) {
24322
c2978d1578e3 8036956: remove EnableInvokeDynamic flag
anoll
parents: 23999
diff changeset
  2784
    if (_klass->major_version() < Verifier::INVOKEDYNAMIC_MAJOR_VERSION) {
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1550
diff changeset
  2785
      class_format_error(
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 24351
diff changeset
  2786
        "invokedynamic instructions not supported by this class file version (%d), class %s",
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 24351
diff changeset
  2787
        _klass->major_version(), _klass->external_name());
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1550
diff changeset
  2788
      return;
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1550
diff changeset
  2789
    }
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1550
diff changeset
  2790
  } else {
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1550
diff changeset
  2791
    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
  2792
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2793
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2794
  assert(sizeof(VerificationType) == sizeof(uintptr_t),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2795
        "buffer type must match VerificationType size");
54308
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
  2796
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
  2797
  // Get the UTF8 index for this signature.
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
  2798
  int sig_index = cp->signature_ref_index_at(cp->name_and_type_ref_index_at(index));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2799
54308
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
  2800
  // Get the signature's verification types.
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
  2801
  sig_as_verification_types* mth_sig_verif_types;
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
  2802
  sig_as_verification_types** mth_sig_verif_types_ptr = method_signatures_table()->get(sig_index);
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
  2803
  if (mth_sig_verif_types_ptr != NULL) {
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
  2804
    // Found the entry for the signature's verification types in the hash table.
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
  2805
    mth_sig_verif_types = *mth_sig_verif_types_ptr;
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
  2806
    assert(mth_sig_verif_types != NULL, "Unexpected NULL sig_as_verification_types value");
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
  2807
  } else {
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
  2808
    // Not found, add the entry to the table.
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
  2809
    GrowableArray<VerificationType>* verif_types = new GrowableArray<VerificationType>(10);
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
  2810
    mth_sig_verif_types = new sig_as_verification_types(verif_types);
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
  2811
    create_method_sig_entry(mth_sig_verif_types, sig_index, CHECK_VERIFY(this));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2812
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2813
54308
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
  2814
  // Get the number of arguments for this signature.
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
  2815
  int nargs = mth_sig_verif_types->num_args();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2816
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2817
  // Check instruction operands
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2818
  u2 bci = bcs->bci();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2819
  if (opcode == Bytecodes::_invokeinterface) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2820
    address bcp = bcs->bcp();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2821
    // 4905268: count operand in invokeinterface should be nargs+1, not nargs.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2822
    // JSR202 spec: The count operand of an invokeinterface instruction is valid if it is
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2823
    // the difference between the size of the operand stack before and after the instruction
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2824
    // executes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2825
    if (*(bcp+3) != (nargs+1)) {
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2826
      verify_error(ErrorContext::bad_code(bci),
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2827
          "Inconsistent args count operand in invokeinterface");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2828
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2829
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2830
    if (*(bcp+4) != 0) {
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2831
      verify_error(ErrorContext::bad_code(bci),
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2832
          "Fourth operand byte of invokeinterface must be zero");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2833
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2834
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2835
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2836
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1550
diff changeset
  2837
  if (opcode == Bytecodes::_invokedynamic) {
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1550
diff changeset
  2838
    address bcp = bcs->bcp();
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1550
diff changeset
  2839
    if (*(bcp+3) != 0 || *(bcp+4) != 0) {
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2840
      verify_error(ErrorContext::bad_code(bci),
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2841
          "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
  2842
      return;
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1550
diff changeset
  2843
    }
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1550
diff changeset
  2844
  }
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1550
diff changeset
  2845
51997
9ce37fa2e179 8209138: Symbol constructor uses u1 as the element type of its name argument
hseigel
parents: 51697
diff changeset
  2846
  if (method_name->char_at(0) == '<') {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2847
    // Make sure <init> can only be invoked by invokespecial
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2848
    if (opcode != Bytecodes::_invokespecial ||
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7405
diff changeset
  2849
        method_name != vmSymbols::object_initializer_name()) {
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2850
      verify_error(ErrorContext::bad_code(bci),
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2851
          "Illegal call to internal method");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2852
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2853
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2854
  } else if (opcode == Bytecodes::_invokespecial
21768
b7dba4cde1c6 8026065: InterfaceMethodref for invokespecial must name a direct superinterface
hseigel
parents: 21729
diff changeset
  2855
             && !is_same_or_direct_interface(current_class(), current_type(), ref_class_type)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2856
             && !ref_class_type.equals(VerificationType::reference_type(
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13479
diff changeset
  2857
                  current_class()->super()->name()))) {
20718
c4a5c7c1f6c9 8026365: NoClassDefinitionFound for anonymous class invokespecial.
acorn
parents: 20395
diff changeset
  2858
    bool subtype = false;
21768
b7dba4cde1c6 8026065: InterfaceMethodref for invokespecial must name a direct superinterface
hseigel
parents: 21729
diff changeset
  2859
    bool have_imr_indirect = cp->tag_at(index).value() == JVM_CONSTANT_InterfaceMethodref;
51444
3e5d28e6de32 8209301: JVM rename is_anonymous, host_klass to unsafe specific terminology ahead of Unsafe.defineAnonymousClass deprecation
lfoltan
parents: 51329
diff changeset
  2860
    if (!current_class()->is_unsafe_anonymous()) {
20718
c4a5c7c1f6c9 8026365: NoClassDefinitionFound for anonymous class invokespecial.
acorn
parents: 20395
diff changeset
  2861
      subtype = ref_class_type.is_assignable_from(
27022
2db6fe33afc2 8036533: Method for correct defaults
hseigel
parents: 27003
diff changeset
  2862
                 current_type(), this, false, CHECK_VERIFY(this));
20718
c4a5c7c1f6c9 8026365: NoClassDefinitionFound for anonymous class invokespecial.
acorn
parents: 20395
diff changeset
  2863
    } else {
51444
3e5d28e6de32 8209301: JVM rename is_anonymous, host_klass to unsafe specific terminology ahead of Unsafe.defineAnonymousClass deprecation
lfoltan
parents: 51329
diff changeset
  2864
      VerificationType unsafe_anonymous_host_type =
3e5d28e6de32 8209301: JVM rename is_anonymous, host_klass to unsafe specific terminology ahead of Unsafe.defineAnonymousClass deprecation
lfoltan
parents: 51329
diff changeset
  2865
                        VerificationType::reference_type(current_class()->unsafe_anonymous_host()->name());
3e5d28e6de32 8209301: JVM rename is_anonymous, host_klass to unsafe specific terminology ahead of Unsafe.defineAnonymousClass deprecation
lfoltan
parents: 51329
diff changeset
  2866
      subtype = ref_class_type.is_assignable_from(unsafe_anonymous_host_type, this, false, CHECK_VERIFY(this));
21768
b7dba4cde1c6 8026065: InterfaceMethodref for invokespecial must name a direct superinterface
hseigel
parents: 21729
diff changeset
  2867
b7dba4cde1c6 8026065: InterfaceMethodref for invokespecial must name a direct superinterface
hseigel
parents: 21729
diff changeset
  2868
      // If invokespecial of IMR, need to recheck for same or
b7dba4cde1c6 8026065: InterfaceMethodref for invokespecial must name a direct superinterface
hseigel
parents: 21729
diff changeset
  2869
      // direct interface relative to the host class
b7dba4cde1c6 8026065: InterfaceMethodref for invokespecial must name a direct superinterface
hseigel
parents: 21729
diff changeset
  2870
      have_imr_indirect = (have_imr_indirect &&
b7dba4cde1c6 8026065: InterfaceMethodref for invokespecial must name a direct superinterface
hseigel
parents: 21729
diff changeset
  2871
                           !is_same_or_direct_interface(
51444
3e5d28e6de32 8209301: JVM rename is_anonymous, host_klass to unsafe specific terminology ahead of Unsafe.defineAnonymousClass deprecation
lfoltan
parents: 51329
diff changeset
  2872
                             current_class()->unsafe_anonymous_host(),
3e5d28e6de32 8209301: JVM rename is_anonymous, host_klass to unsafe specific terminology ahead of Unsafe.defineAnonymousClass deprecation
lfoltan
parents: 51329
diff changeset
  2873
                             unsafe_anonymous_host_type, ref_class_type));
20718
c4a5c7c1f6c9 8026365: NoClassDefinitionFound for anonymous class invokespecial.
acorn
parents: 20395
diff changeset
  2874
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2875
    if (!subtype) {
20718
c4a5c7c1f6c9 8026365: NoClassDefinitionFound for anonymous class invokespecial.
acorn
parents: 20395
diff changeset
  2876
      verify_error(ErrorContext::bad_code(bci),
c4a5c7c1f6c9 8026365: NoClassDefinitionFound for anonymous class invokespecial.
acorn
parents: 20395
diff changeset
  2877
          "Bad invokespecial instruction: "
c4a5c7c1f6c9 8026365: NoClassDefinitionFound for anonymous class invokespecial.
acorn
parents: 20395
diff changeset
  2878
          "current class isn't assignable to reference class.");
c4a5c7c1f6c9 8026365: NoClassDefinitionFound for anonymous class invokespecial.
acorn
parents: 20395
diff changeset
  2879
       return;
21768
b7dba4cde1c6 8026065: InterfaceMethodref for invokespecial must name a direct superinterface
hseigel
parents: 21729
diff changeset
  2880
    } else if (have_imr_indirect) {
b7dba4cde1c6 8026065: InterfaceMethodref for invokespecial must name a direct superinterface
hseigel
parents: 21729
diff changeset
  2881
      verify_error(ErrorContext::bad_code(bci),
b7dba4cde1c6 8026065: InterfaceMethodref for invokespecial must name a direct superinterface
hseigel
parents: 21729
diff changeset
  2882
          "Bad invokespecial instruction: "
b7dba4cde1c6 8026065: InterfaceMethodref for invokespecial must name a direct superinterface
hseigel
parents: 21729
diff changeset
  2883
          "interface method reference is in an indirect superinterface.");
b7dba4cde1c6 8026065: InterfaceMethodref for invokespecial must name a direct superinterface
hseigel
parents: 21729
diff changeset
  2884
      return;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2885
    }
21768
b7dba4cde1c6 8026065: InterfaceMethodref for invokespecial must name a direct superinterface
hseigel
parents: 21729
diff changeset
  2886
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2887
  }
54308
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
  2888
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
  2889
  // Get the verification types for the method's arguments.
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
  2890
  GrowableArray<VerificationType>* sig_verif_types = mth_sig_verif_types->sig_verif_types();
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
  2891
  assert(sig_verif_types != NULL, "Missing signature's array of verification types");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2892
  // Match method descriptor with operand stack
54308
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
  2893
  // The arguments are on the stack in descending order.
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
  2894
  for (int i = nargs - 1; i >= 0; i--) { // Run backwards
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
  2895
    current_frame->pop_stack(sig_verif_types->at(i), CHECK_VERIFY(this));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2896
  }
54308
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
  2897
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2898
  // Check objectref on operand stack
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1550
diff changeset
  2899
  if (opcode != Bytecodes::_invokestatic &&
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1550
diff changeset
  2900
      opcode != Bytecodes::_invokedynamic) {
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7405
diff changeset
  2901
    if (method_name == vmSymbols::object_initializer_name()) {  // <init> method
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2902
      verify_invoke_init(bcs, index, ref_class_type, current_frame,
28512
968fe01e1f82 8058982: Better verification of an exceptional invokespecial
hseigel
parents: 28371
diff changeset
  2903
        code_length, in_try_block, this_uninit, cp, stackmap_table,
968fe01e1f82 8058982: Better verification of an exceptional invokespecial
hseigel
parents: 28371
diff changeset
  2904
        CHECK_VERIFY(this));
35856
9a7e9cdf11bf 8137314: vm crash from test java/security/Policy/SignedJar/SignedJarTest.java
hseigel
parents: 35492
diff changeset
  2905
      if (was_recursively_verified()) return;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2906
    } else {   // other methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2907
      // Ensures that target class is assignable to method class.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2908
      if (opcode == Bytecodes::_invokespecial) {
51444
3e5d28e6de32 8209301: JVM rename is_anonymous, host_klass to unsafe specific terminology ahead of Unsafe.defineAnonymousClass deprecation
lfoltan
parents: 51329
diff changeset
  2909
        if (!current_class()->is_unsafe_anonymous()) {
20395
55915f609319 8026022: Verifier: allow anon classes to invokespecial host class/intf methods.
acorn
parents: 19704
diff changeset
  2910
          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
  2911
        } else {
20718
c4a5c7c1f6c9 8026365: NoClassDefinitionFound for anonymous class invokespecial.
acorn
parents: 20395
diff changeset
  2912
          // anonymous class invokespecial calls: check if the
51444
3e5d28e6de32 8209301: JVM rename is_anonymous, host_klass to unsafe specific terminology ahead of Unsafe.defineAnonymousClass deprecation
lfoltan
parents: 51329
diff changeset
  2913
          // objectref is a subtype of the unsafe_anonymous_host of the current class
3e5d28e6de32 8209301: JVM rename is_anonymous, host_klass to unsafe specific terminology ahead of Unsafe.defineAnonymousClass deprecation
lfoltan
parents: 51329
diff changeset
  2914
          // to allow an anonymous class to reference methods in the unsafe_anonymous_host
20395
55915f609319 8026022: Verifier: allow anon classes to invokespecial host class/intf methods.
acorn
parents: 19704
diff changeset
  2915
          VerificationType top = current_frame->pop_stack(CHECK_VERIFY(this));
20718
c4a5c7c1f6c9 8026365: NoClassDefinitionFound for anonymous class invokespecial.
acorn
parents: 20395
diff changeset
  2916
          VerificationType hosttype =
51444
3e5d28e6de32 8209301: JVM rename is_anonymous, host_klass to unsafe specific terminology ahead of Unsafe.defineAnonymousClass deprecation
lfoltan
parents: 51329
diff changeset
  2917
            VerificationType::reference_type(current_class()->unsafe_anonymous_host()->name());
27022
2db6fe33afc2 8036533: Method for correct defaults
hseigel
parents: 27003
diff changeset
  2918
          bool subtype = hosttype.is_assignable_from(top, this, false, CHECK_VERIFY(this));
20395
55915f609319 8026022: Verifier: allow anon classes to invokespecial host class/intf methods.
acorn
parents: 19704
diff changeset
  2919
          if (!subtype) {
55915f609319 8026022: Verifier: allow anon classes to invokespecial host class/intf methods.
acorn
parents: 19704
diff changeset
  2920
            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
  2921
              current_frame->stack_top_ctx(),
55915f609319 8026022: Verifier: allow anon classes to invokespecial host class/intf methods.
acorn
parents: 19704
diff changeset
  2922
              TypeOrigin::implicit(top)),
55915f609319 8026022: Verifier: allow anon classes to invokespecial host class/intf methods.
acorn
parents: 19704
diff changeset
  2923
              "Bad type on operand stack");
55915f609319 8026022: Verifier: allow anon classes to invokespecial host class/intf methods.
acorn
parents: 19704
diff changeset
  2924
            return;
55915f609319 8026022: Verifier: allow anon classes to invokespecial host class/intf methods.
acorn
parents: 19704
diff changeset
  2925
          }
55915f609319 8026022: Verifier: allow anon classes to invokespecial host class/intf methods.
acorn
parents: 19704
diff changeset
  2926
        }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2927
      } else if (opcode == Bytecodes::_invokevirtual) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2928
        VerificationType stack_object_type =
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2929
          current_frame->pop_stack(ref_class_type, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2930
        if (current_type() != stack_object_type) {
35856
9a7e9cdf11bf 8137314: vm crash from test java/security/Policy/SignedJar/SignedJarTest.java
hseigel
parents: 35492
diff changeset
  2931
          if (was_recursively_verified()) return;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2932
          assert(cp->cache() == NULL, "not rewritten yet");
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7405
diff changeset
  2933
          Symbol* ref_class_name =
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7405
diff changeset
  2934
            cp->klass_name_at(cp->klass_ref_index_at(index));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2935
          // See the comments in verify_field_instructions() for
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2936
          // the rationale behind this.
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7405
diff changeset
  2937
          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
  2938
            Klass* ref_class = load_class(ref_class_name, CHECK);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2939
            if (is_protected_access(
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7405
diff changeset
  2940
                  _klass, ref_class, method_name, method_sig, true)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2941
              // It's protected access, check if stack object is
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2942
              // assignable to current class.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2943
              bool is_assignable = current_type().is_assignable_from(
27022
2db6fe33afc2 8036533: Method for correct defaults
hseigel
parents: 27003
diff changeset
  2944
                stack_object_type, this, true, CHECK_VERIFY(this));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2945
              if (!is_assignable) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2946
                if (ref_class_type.name() == vmSymbols::java_lang_Object()
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2947
                    && stack_object_type.is_array()
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7405
diff changeset
  2948
                    && method_name == vmSymbols::clone_name()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2949
                  // Special case: arrays pretend to implement public Object
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2950
                  // clone().
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2951
                } else {
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2952
                  verify_error(ErrorContext::bad_type(bci,
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2953
                      current_frame->stack_top_ctx(),
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2954
                      TypeOrigin::implicit(current_type())),
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2955
                      "Bad access to protected data in invokevirtual");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2956
                  return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2957
                }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2958
              }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2959
            }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2960
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2961
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2962
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2963
        assert(opcode == Bytecodes::_invokeinterface, "Unexpected opcode encountered");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2964
        current_frame->pop_stack(ref_class_type, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2965
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2966
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2967
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2968
  // Push the result type.
54308
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
  2969
  int sig_verif_types_len = sig_verif_types->length();
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
  2970
  if (sig_verif_types_len > nargs) {  // There's a return type
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7405
diff changeset
  2971
    if (method_name == vmSymbols::object_initializer_name()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2972
      // <init> method must have a void return type
33799
77ebbd9b0ecc 8139164: JVM should throw ClassFormatError for non-void methods named <clinit>
hseigel
parents: 33602
diff changeset
  2973
      /* Unreachable?  Class file parser verifies that methods with '<' have
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2974
       * void return */
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2975
      verify_error(ErrorContext::bad_code(bci),
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2976
          "Return type must be void in <init> method");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2977
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2978
    }
54308
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
  2979
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
  2980
    assert(sig_verif_types_len <= nargs + 2,
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
  2981
           "Signature verification types array return type is bogus");
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
  2982
    for (int i = nargs; i < sig_verif_types_len; i++) {
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
  2983
      assert(i == nargs || sig_verif_types->at(i).is_long2() ||
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
  2984
             sig_verif_types->at(i).is_double2(), "Unexpected return verificationType");
1dcacbe612ae 8059357: ClassVerifier redundantly checks constant pool entries multiple times
hseigel
parents: 54133
diff changeset
  2985
      current_frame->push_stack(sig_verif_types->at(i), CHECK_VERIFY(this));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2986
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2987
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2988
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2989
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2990
VerificationType ClassVerifier::get_newarray_type(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2991
    u2 index, u2 bci, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2992
  const char* from_bt[] = {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2993
    NULL, NULL, NULL, NULL, "[Z", "[C", "[F", "[D", "[B", "[S", "[I", "[J",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2994
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2995
  if (index < T_BOOLEAN || index > T_LONG) {
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  2996
    verify_error(ErrorContext::bad_code(bci), "Illegal newarray instruction");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2997
    return VerificationType::bogus_type();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2998
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2999
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3000
  // 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
  3001
  Symbol* sig = create_temporary_symbol(
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3002
    from_bt[index], 2, CHECK_(VerificationType::bogus_type()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3003
  return VerificationType::reference_type(sig);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3004
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3005
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3006
void ClassVerifier::verify_anewarray(
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33207
diff changeset
  3007
    u2 bci, u2 index, const constantPoolHandle& cp,
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  3008
    StackMapFrame* current_frame, TRAPS) {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  3009
  verify_cp_class_type(bci, index, cp, CHECK_VERIFY(this));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3010
  current_frame->pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3011
    VerificationType::integer_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3012
35856
9a7e9cdf11bf 8137314: vm crash from test java/security/Policy/SignedJar/SignedJarTest.java
hseigel
parents: 35492
diff changeset
  3013
  if (was_recursively_verified()) return;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3014
  VerificationType component_type =
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3015
    cp_index_to_type(index, cp, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3016
  int length;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3017
  char* arr_sig_str;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3018
  if (component_type.is_array()) {     // it's an array
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3019
    const char* component_name = component_type.name()->as_utf8();
46403
f2b91b928476 8178949: The split verifier allows anewarray to create an array of more than 255 dimensions.
hseigel
parents: 46329
diff changeset
  3020
    // Check for more than MAX_ARRAY_DIMENSIONS
f2b91b928476 8178949: The split verifier allows anewarray to create an array of more than 255 dimensions.
hseigel
parents: 46329
diff changeset
  3021
    length = (int)strlen(component_name);
f2b91b928476 8178949: The split verifier allows anewarray to create an array of more than 255 dimensions.
hseigel
parents: 46329
diff changeset
  3022
    if (length > MAX_ARRAY_DIMENSIONS &&
f2b91b928476 8178949: The split verifier allows anewarray to create an array of more than 255 dimensions.
hseigel
parents: 46329
diff changeset
  3023
        component_name[MAX_ARRAY_DIMENSIONS - 1] == '[') {
f2b91b928476 8178949: The split verifier allows anewarray to create an array of more than 255 dimensions.
hseigel
parents: 46329
diff changeset
  3024
      verify_error(ErrorContext::bad_code(bci),
f2b91b928476 8178949: The split verifier allows anewarray to create an array of more than 255 dimensions.
hseigel
parents: 46329
diff changeset
  3025
        "Illegal anewarray instruction, array has more than 255 dimensions");
f2b91b928476 8178949: The split verifier allows anewarray to create an array of more than 255 dimensions.
hseigel
parents: 46329
diff changeset
  3026
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3027
    // add one dimension to component
46403
f2b91b928476 8178949: The split verifier allows anewarray to create an array of more than 255 dimensions.
hseigel
parents: 46329
diff changeset
  3028
    length++;
53882
ca682d9d8db5 8214777: Avoid some GCC 8.X strncpy() errors in HotSpot
mikael
parents: 53322
diff changeset
  3029
    arr_sig_str = NEW_RESOURCE_ARRAY_IN_THREAD(THREAD, char, length + 1);
53908
45a23c64d0f6 8219583: Windows build failure after JDK-8214777 (Avoid some GCC 8.X strncpy() errors in HotSpot)
shade
parents: 53882
diff changeset
  3030
    int n = os::snprintf(arr_sig_str, length + 1, "[%s", component_name);
53882
ca682d9d8db5 8214777: Avoid some GCC 8.X strncpy() errors in HotSpot
mikael
parents: 53322
diff changeset
  3031
    assert(n == length, "Unexpected number of characters in string");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3032
  } else {         // it's an object or interface
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3033
    const char* component_name = component_type.name()->as_utf8();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3034
    // add one dimension to component with 'L' prepended and ';' postpended.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3035
    length = (int)strlen(component_name) + 3;
53882
ca682d9d8db5 8214777: Avoid some GCC 8.X strncpy() errors in HotSpot
mikael
parents: 53322
diff changeset
  3036
    arr_sig_str = NEW_RESOURCE_ARRAY_IN_THREAD(THREAD, char, length + 1);
53908
45a23c64d0f6 8219583: Windows build failure after JDK-8214777 (Avoid some GCC 8.X strncpy() errors in HotSpot)
shade
parents: 53882
diff changeset
  3037
    int n = os::snprintf(arr_sig_str, length + 1, "[L%s;", component_name);
53882
ca682d9d8db5 8214777: Avoid some GCC 8.X strncpy() errors in HotSpot
mikael
parents: 53322
diff changeset
  3038
    assert(n == length, "Unexpected number of characters in string");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3039
  }
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7405
diff changeset
  3040
  Symbol* arr_sig = create_temporary_symbol(
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3041
    arr_sig_str, length, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3042
  VerificationType new_array_type = VerificationType::reference_type(arr_sig);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3043
  current_frame->push_stack(new_array_type, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3044
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3045
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3046
void ClassVerifier::verify_iload(u2 index, StackMapFrame* current_frame, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3047
  current_frame->get_local(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3048
    index, VerificationType::integer_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3049
  current_frame->push_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3050
    VerificationType::integer_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3051
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3052
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3053
void ClassVerifier::verify_lload(u2 index, StackMapFrame* current_frame, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3054
  current_frame->get_local_2(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3055
    index, VerificationType::long_type(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3056
    VerificationType::long2_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3057
  current_frame->push_stack_2(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3058
    VerificationType::long_type(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3059
    VerificationType::long2_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3060
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3061
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3062
void ClassVerifier::verify_fload(u2 index, StackMapFrame* current_frame, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3063
  current_frame->get_local(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3064
    index, VerificationType::float_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3065
  current_frame->push_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3066
    VerificationType::float_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3067
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3068
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3069
void ClassVerifier::verify_dload(u2 index, StackMapFrame* current_frame, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3070
  current_frame->get_local_2(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3071
    index, VerificationType::double_type(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3072
    VerificationType::double2_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3073
  current_frame->push_stack_2(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3074
    VerificationType::double_type(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3075
    VerificationType::double2_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3076
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3077
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3078
void ClassVerifier::verify_aload(u2 index, StackMapFrame* current_frame, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3079
  VerificationType type = current_frame->get_local(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3080
    index, VerificationType::reference_check(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3081
  current_frame->push_stack(type, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3082
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3083
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3084
void ClassVerifier::verify_istore(u2 index, StackMapFrame* current_frame, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3085
  current_frame->pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3086
    VerificationType::integer_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3087
  current_frame->set_local(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3088
    index, VerificationType::integer_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3089
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3090
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3091
void ClassVerifier::verify_lstore(u2 index, StackMapFrame* current_frame, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3092
  current_frame->pop_stack_2(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3093
    VerificationType::long2_type(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3094
    VerificationType::long_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3095
  current_frame->set_local_2(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3096
    index, VerificationType::long_type(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3097
    VerificationType::long2_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3098
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3099
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3100
void ClassVerifier::verify_fstore(u2 index, StackMapFrame* current_frame, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3101
  current_frame->pop_stack(VerificationType::float_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3102
  current_frame->set_local(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3103
    index, VerificationType::float_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3104
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3105
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3106
void ClassVerifier::verify_dstore(u2 index, StackMapFrame* current_frame, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3107
  current_frame->pop_stack_2(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3108
    VerificationType::double2_type(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3109
    VerificationType::double_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3110
  current_frame->set_local_2(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3111
    index, VerificationType::double_type(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3112
    VerificationType::double2_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3113
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3114
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3115
void ClassVerifier::verify_astore(u2 index, StackMapFrame* current_frame, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3116
  VerificationType type = current_frame->pop_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3117
    VerificationType::reference_check(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3118
  current_frame->set_local(index, type, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3119
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3120
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3121
void ClassVerifier::verify_iinc(u2 index, StackMapFrame* current_frame, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3122
  VerificationType type = current_frame->get_local(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3123
    index, VerificationType::integer_type(), CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3124
  current_frame->set_local(index, type, CHECK_VERIFY(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3125
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3126
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3127
void ClassVerifier::verify_return_value(
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  3128
    VerificationType return_type, VerificationType type, u2 bci,
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  3129
    StackMapFrame* current_frame, TRAPS) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3130
  if (return_type == VerificationType::bogus_type()) {
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  3131
    verify_error(ErrorContext::bad_type(bci,
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  3132
        current_frame->stack_top_ctx(), TypeOrigin::signature(return_type)),
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  3133
        "Method expects a return value");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3134
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3135
  }
27022
2db6fe33afc2 8036533: Method for correct defaults
hseigel
parents: 27003
diff changeset
  3136
  bool match = return_type.is_assignable_from(type, this, false, CHECK_VERIFY(this));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3137
  if (!match) {
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  3138
    verify_error(ErrorContext::bad_type(bci,
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  3139
        current_frame->stack_top_ctx(), TypeOrigin::signature(return_type)),
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13283
diff changeset
  3140
        "Bad return type");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3141
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3142
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3143
}
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7405
diff changeset
  3144
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7405
diff changeset
  3145
// 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
  3146
// 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
  3147
// they can be reference counted.
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7405
diff changeset
  3148
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
  3149
                                               int end, TRAPS) {
54133
829bf950287e 8220366: Optimize Symbol handling in ClassVerifier and SignatureStream
redestad
parents: 54124
diff changeset
  3150
  const char* name = (const char*)s->base() + begin;
829bf950287e 8220366: Optimize Symbol handling in ClassVerifier and SignatureStream
redestad
parents: 54124
diff changeset
  3151
  int length = end - begin;
829bf950287e 8220366: Optimize Symbol handling in ClassVerifier and SignatureStream
redestad
parents: 54124
diff changeset
  3152
  return create_temporary_symbol(name, length, CHECK_NULL);
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7405
diff changeset
  3153
}
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7405
diff changeset
  3154
54133
829bf950287e 8220366: Optimize Symbol handling in ClassVerifier and SignatureStream
redestad
parents: 54124
diff changeset
  3155
Symbol* ClassVerifier::create_temporary_symbol(const char *name, int length, TRAPS) {
829bf950287e 8220366: Optimize Symbol handling in ClassVerifier and SignatureStream
redestad
parents: 54124
diff changeset
  3156
  // Quick deduplication check
829bf950287e 8220366: Optimize Symbol handling in ClassVerifier and SignatureStream
redestad
parents: 54124
diff changeset
  3157
  if (_previous_symbol != NULL && _previous_symbol->equals(name, length)) {
829bf950287e 8220366: Optimize Symbol handling in ClassVerifier and SignatureStream
redestad
parents: 54124
diff changeset
  3158
    return _previous_symbol;
829bf950287e 8220366: Optimize Symbol handling in ClassVerifier and SignatureStream
redestad
parents: 54124
diff changeset
  3159
  }
829bf950287e 8220366: Optimize Symbol handling in ClassVerifier and SignatureStream
redestad
parents: 54124
diff changeset
  3160
  Symbol* sym = SymbolTable::new_symbol(name, length, CHECK_NULL);
829bf950287e 8220366: Optimize Symbol handling in ClassVerifier and SignatureStream
redestad
parents: 54124
diff changeset
  3161
  if (!sym->is_permanent()) {
829bf950287e 8220366: Optimize Symbol handling in ClassVerifier and SignatureStream
redestad
parents: 54124
diff changeset
  3162
    if (_symbols == NULL) {
829bf950287e 8220366: Optimize Symbol handling in ClassVerifier and SignatureStream
redestad
parents: 54124
diff changeset
  3163
      _symbols = new GrowableArray<Symbol*>(50, 0, NULL);
829bf950287e 8220366: Optimize Symbol handling in ClassVerifier and SignatureStream
redestad
parents: 54124
diff changeset
  3164
    }
829bf950287e 8220366: Optimize Symbol handling in ClassVerifier and SignatureStream
redestad
parents: 54124
diff changeset
  3165
    _symbols->push(sym);
829bf950287e 8220366: Optimize Symbol handling in ClassVerifier and SignatureStream
redestad
parents: 54124
diff changeset
  3166
  }
829bf950287e 8220366: Optimize Symbol handling in ClassVerifier and SignatureStream
redestad
parents: 54124
diff changeset
  3167
  _previous_symbol = sym;
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7405
diff changeset
  3168
  return sym;
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7405
diff changeset
  3169
}