annotate src/share/vm/classfile/verifier.cpp @ 23822:626f594dffa6

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