annotate src/share/vm/classfile/verifier.cpp @ 1957:9752a6549f2e

Merge
author zgu
date Fri, 12 Nov 2010 09:37:13 -0500
parents 1070423b51f3 3b2dea75431e
children f95d63e2154a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
1579
jrose
parents: 1562 1570
diff changeset
2 * Copyright (c) 1998, 2010, 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
a61af66fc99e Initial load
duke
parents:
diff changeset
25 # include "incls/_precompiled.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
26 # include "incls/_verifier.cpp.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
27
1560
e40a3601bc1f 6911922: JVM must throw VerifyError for jsr or jsr_w opcodes in class file v.51+
kamg
parents: 1142
diff changeset
28 #define NOFAILOVER_MAJOR_VERSION 51
e40a3601bc1f 6911922: JVM must throw VerifyError for jsr or jsr_w opcodes in class file v.51+
kamg
parents: 1142
diff changeset
29
0
a61af66fc99e Initial load
duke
parents:
diff changeset
30 // Access to external entry for VerifyClassCodes - old byte code verifier
a61af66fc99e Initial load
duke
parents:
diff changeset
31
a61af66fc99e Initial load
duke
parents:
diff changeset
32 extern "C" {
a61af66fc99e Initial load
duke
parents:
diff changeset
33 typedef jboolean (*verify_byte_codes_fn_t)(JNIEnv *, jclass, char *, jint);
a61af66fc99e Initial load
duke
parents:
diff changeset
34 typedef jboolean (*verify_byte_codes_fn_new_t)(JNIEnv *, jclass, char *, jint, jint);
a61af66fc99e Initial load
duke
parents:
diff changeset
35 }
a61af66fc99e Initial load
duke
parents:
diff changeset
36
a61af66fc99e Initial load
duke
parents:
diff changeset
37 static void* volatile _verify_byte_codes_fn = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
38
a61af66fc99e Initial load
duke
parents:
diff changeset
39 static volatile jint _is_new_verify_byte_codes_fn = (jint) true;
a61af66fc99e Initial load
duke
parents:
diff changeset
40
a61af66fc99e Initial load
duke
parents:
diff changeset
41 static void* verify_byte_codes_fn() {
a61af66fc99e Initial load
duke
parents:
diff changeset
42 if (_verify_byte_codes_fn == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
43 void *lib_handle = os::native_java_library();
a61af66fc99e Initial load
duke
parents:
diff changeset
44 void *func = hpi::dll_lookup(lib_handle, "VerifyClassCodesForMajorVersion");
a61af66fc99e Initial load
duke
parents:
diff changeset
45 OrderAccess::release_store_ptr(&_verify_byte_codes_fn, func);
a61af66fc99e Initial load
duke
parents:
diff changeset
46 if (func == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
47 OrderAccess::release_store(&_is_new_verify_byte_codes_fn, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
48 func = hpi::dll_lookup(lib_handle, "VerifyClassCodes");
a61af66fc99e Initial load
duke
parents:
diff changeset
49 OrderAccess::release_store_ptr(&_verify_byte_codes_fn, func);
a61af66fc99e Initial load
duke
parents:
diff changeset
50 }
a61af66fc99e Initial load
duke
parents:
diff changeset
51 }
a61af66fc99e Initial load
duke
parents:
diff changeset
52 return (void*)_verify_byte_codes_fn;
a61af66fc99e Initial load
duke
parents:
diff changeset
53 }
a61af66fc99e Initial load
duke
parents:
diff changeset
54
a61af66fc99e Initial load
duke
parents:
diff changeset
55
a61af66fc99e Initial load
duke
parents:
diff changeset
56 // Methods in Verifier
a61af66fc99e Initial load
duke
parents:
diff changeset
57
973
ad6585fd4087 6830542: Performance: JVM_DefineClass already verified.
acorn
parents: 844
diff changeset
58 bool Verifier::should_verify_for(oop class_loader, bool should_verify_class) {
ad6585fd4087 6830542: Performance: JVM_DefineClass already verified.
acorn
parents: 844
diff changeset
59 return (class_loader == NULL || !should_verify_class) ?
0
a61af66fc99e Initial load
duke
parents:
diff changeset
60 BytecodeVerificationLocal : BytecodeVerificationRemote;
a61af66fc99e Initial load
duke
parents:
diff changeset
61 }
a61af66fc99e Initial load
duke
parents:
diff changeset
62
a61af66fc99e Initial load
duke
parents:
diff changeset
63 bool Verifier::relax_verify_for(oop loader) {
a61af66fc99e Initial load
duke
parents:
diff changeset
64 bool trusted = java_lang_ClassLoader::is_trusted_loader(loader);
a61af66fc99e Initial load
duke
parents:
diff changeset
65 bool need_verify =
a61af66fc99e Initial load
duke
parents:
diff changeset
66 // verifyAll
a61af66fc99e Initial load
duke
parents:
diff changeset
67 (BytecodeVerificationLocal && BytecodeVerificationRemote) ||
a61af66fc99e Initial load
duke
parents:
diff changeset
68 // verifyRemote
a61af66fc99e Initial load
duke
parents:
diff changeset
69 (!BytecodeVerificationLocal && BytecodeVerificationRemote && !trusted);
a61af66fc99e Initial load
duke
parents:
diff changeset
70 return !need_verify;
a61af66fc99e Initial load
duke
parents:
diff changeset
71 }
a61af66fc99e Initial load
duke
parents:
diff changeset
72
973
ad6585fd4087 6830542: Performance: JVM_DefineClass already verified.
acorn
parents: 844
diff changeset
73 bool Verifier::verify(instanceKlassHandle klass, Verifier::Mode mode, bool should_verify_class, TRAPS) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
74 ResourceMark rm(THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
75 HandleMark hm;
a61af66fc99e Initial load
duke
parents:
diff changeset
76
a61af66fc99e Initial load
duke
parents:
diff changeset
77 symbolHandle exception_name;
a61af66fc99e Initial load
duke
parents:
diff changeset
78 const size_t message_buffer_len = klass->name()->utf8_length() + 1024;
a61af66fc99e Initial load
duke
parents:
diff changeset
79 char* message_buffer = NEW_RESOURCE_ARRAY(char, message_buffer_len);
a61af66fc99e Initial load
duke
parents:
diff changeset
80
a61af66fc99e Initial load
duke
parents:
diff changeset
81 const char* klassName = klass->external_name();
a61af66fc99e Initial load
duke
parents:
diff changeset
82
a61af66fc99e Initial load
duke
parents:
diff changeset
83 // If the class should be verified, first see if we can use the split
a61af66fc99e Initial load
duke
parents:
diff changeset
84 // verifier. If not, or if verification fails and FailOverToOldVerifier
a61af66fc99e Initial load
duke
parents:
diff changeset
85 // is set, then call the inference verifier.
973
ad6585fd4087 6830542: Performance: JVM_DefineClass already verified.
acorn
parents: 844
diff changeset
86 if (is_eligible_for_verification(klass, should_verify_class)) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
87 if (TraceClassInitialization) {
a61af66fc99e Initial load
duke
parents:
diff changeset
88 tty->print_cr("Start class verification for: %s", klassName);
a61af66fc99e Initial load
duke
parents:
diff changeset
89 }
a61af66fc99e Initial load
duke
parents:
diff changeset
90 if (UseSplitVerifier &&
a61af66fc99e Initial load
duke
parents:
diff changeset
91 klass->major_version() >= STACKMAP_ATTRIBUTE_MAJOR_VERSION) {
a61af66fc99e Initial load
duke
parents:
diff changeset
92 ClassVerifier split_verifier(
a61af66fc99e Initial load
duke
parents:
diff changeset
93 klass, message_buffer, message_buffer_len, THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
94 split_verifier.verify_class(THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
95 exception_name = split_verifier.result();
1560
e40a3601bc1f 6911922: JVM must throw VerifyError for jsr or jsr_w opcodes in class file v.51+
kamg
parents: 1142
diff changeset
96 if (klass->major_version() < NOFAILOVER_MAJOR_VERSION &&
e40a3601bc1f 6911922: JVM must throw VerifyError for jsr or jsr_w opcodes in class file v.51+
kamg
parents: 1142
diff changeset
97 FailOverToOldVerifier && !HAS_PENDING_EXCEPTION &&
0
a61af66fc99e Initial load
duke
parents:
diff changeset
98 (exception_name == vmSymbols::java_lang_VerifyError() ||
a61af66fc99e Initial load
duke
parents:
diff changeset
99 exception_name == vmSymbols::java_lang_ClassFormatError())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
100 if (TraceClassInitialization) {
a61af66fc99e Initial load
duke
parents:
diff changeset
101 tty->print_cr(
a61af66fc99e Initial load
duke
parents:
diff changeset
102 "Fail over class verification to old verifier for: %s", klassName);
a61af66fc99e Initial load
duke
parents:
diff changeset
103 }
a61af66fc99e Initial load
duke
parents:
diff changeset
104 exception_name = inference_verify(
a61af66fc99e Initial load
duke
parents:
diff changeset
105 klass, message_buffer, message_buffer_len, THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
106 }
a61af66fc99e Initial load
duke
parents:
diff changeset
107 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
108 exception_name = inference_verify(
a61af66fc99e Initial load
duke
parents:
diff changeset
109 klass, message_buffer, message_buffer_len, THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
110 }
a61af66fc99e Initial load
duke
parents:
diff changeset
111
a61af66fc99e Initial load
duke
parents:
diff changeset
112 if (TraceClassInitialization) {
a61af66fc99e Initial load
duke
parents:
diff changeset
113 if (HAS_PENDING_EXCEPTION) {
a61af66fc99e Initial load
duke
parents:
diff changeset
114 tty->print("Verification for %s has", klassName);
a61af66fc99e Initial load
duke
parents:
diff changeset
115 tty->print_cr(" exception pending %s ",
a61af66fc99e Initial load
duke
parents:
diff changeset
116 instanceKlass::cast(PENDING_EXCEPTION->klass())->external_name());
a61af66fc99e Initial load
duke
parents:
diff changeset
117 } else if (!exception_name.is_null()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
118 tty->print_cr("Verification for %s failed", klassName);
a61af66fc99e Initial load
duke
parents:
diff changeset
119 }
a61af66fc99e Initial load
duke
parents:
diff changeset
120 tty->print_cr("End class verification for: %s", klassName);
a61af66fc99e Initial load
duke
parents:
diff changeset
121 }
a61af66fc99e Initial load
duke
parents:
diff changeset
122 }
a61af66fc99e Initial load
duke
parents:
diff changeset
123
a61af66fc99e Initial load
duke
parents:
diff changeset
124 if (HAS_PENDING_EXCEPTION) {
a61af66fc99e Initial load
duke
parents:
diff changeset
125 return false; // use the existing exception
a61af66fc99e Initial load
duke
parents:
diff changeset
126 } else if (exception_name.is_null()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
127 return true; // verifcation succeeded
a61af66fc99e Initial load
duke
parents:
diff changeset
128 } else { // VerifyError or ClassFormatError to be created and thrown
a61af66fc99e Initial load
duke
parents:
diff changeset
129 ResourceMark rm(THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
130 instanceKlassHandle kls =
a61af66fc99e Initial load
duke
parents:
diff changeset
131 SystemDictionary::resolve_or_fail(exception_name, true, CHECK_false);
a61af66fc99e Initial load
duke
parents:
diff changeset
132 while (!kls.is_null()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
133 if (kls == klass) {
a61af66fc99e Initial load
duke
parents:
diff changeset
134 // If the class being verified is the exception we're creating
a61af66fc99e Initial load
duke
parents:
diff changeset
135 // or one of it's superclasses, we're in trouble and are going
a61af66fc99e Initial load
duke
parents:
diff changeset
136 // to infinitely recurse when we try to initialize the exception.
a61af66fc99e Initial load
duke
parents:
diff changeset
137 // So bail out here by throwing the preallocated VM error.
a61af66fc99e Initial load
duke
parents:
diff changeset
138 THROW_OOP_(Universe::virtual_machine_error_instance(), false);
a61af66fc99e Initial load
duke
parents:
diff changeset
139 }
a61af66fc99e Initial load
duke
parents:
diff changeset
140 kls = kls->super();
a61af66fc99e Initial load
duke
parents:
diff changeset
141 }
a61af66fc99e Initial load
duke
parents:
diff changeset
142 message_buffer[message_buffer_len - 1] = '\0'; // just to be sure
a61af66fc99e Initial load
duke
parents:
diff changeset
143 THROW_MSG_(exception_name, message_buffer, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
144 }
a61af66fc99e Initial load
duke
parents:
diff changeset
145 }
a61af66fc99e Initial load
duke
parents:
diff changeset
146
973
ad6585fd4087 6830542: Performance: JVM_DefineClass already verified.
acorn
parents: 844
diff changeset
147 bool Verifier::is_eligible_for_verification(instanceKlassHandle klass, bool should_verify_class) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
148 symbolOop name = klass->name();
1142
4ce7240d622c 6914300: ciEnv should export all well known classes
never
parents: 1059
diff changeset
149 klassOop refl_magic_klass = SystemDictionary::reflect_MagicAccessorImpl_klass();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
150
973
ad6585fd4087 6830542: Performance: JVM_DefineClass already verified.
acorn
parents: 844
diff changeset
151 return (should_verify_for(klass->class_loader(), should_verify_class) &&
0
a61af66fc99e Initial load
duke
parents:
diff changeset
152 // return if the class is a bootstrapping class
973
ad6585fd4087 6830542: Performance: JVM_DefineClass already verified.
acorn
parents: 844
diff changeset
153 // or defineClass specified not to verify by default (flags override passed arg)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
154 // We need to skip the following four for bootstraping
a61af66fc99e Initial load
duke
parents:
diff changeset
155 name != vmSymbols::java_lang_Object() &&
a61af66fc99e Initial load
duke
parents:
diff changeset
156 name != vmSymbols::java_lang_Class() &&
a61af66fc99e Initial load
duke
parents:
diff changeset
157 name != vmSymbols::java_lang_String() &&
a61af66fc99e Initial load
duke
parents:
diff changeset
158 name != vmSymbols::java_lang_Throwable() &&
a61af66fc99e Initial load
duke
parents:
diff changeset
159
a61af66fc99e Initial load
duke
parents:
diff changeset
160 // Can not verify the bytecodes for shared classes because they have
a61af66fc99e Initial load
duke
parents:
diff changeset
161 // already been rewritten to contain constant pool cache indices,
a61af66fc99e Initial load
duke
parents:
diff changeset
162 // which the verifier can't understand.
a61af66fc99e Initial load
duke
parents:
diff changeset
163 // Shared classes shouldn't have stackmaps either.
a61af66fc99e Initial load
duke
parents:
diff changeset
164 !klass()->is_shared() &&
a61af66fc99e Initial load
duke
parents:
diff changeset
165
a61af66fc99e Initial load
duke
parents:
diff changeset
166 // As of the fix for 4486457 we disable verification for all of the
a61af66fc99e Initial load
duke
parents:
diff changeset
167 // dynamically-generated bytecodes associated with the 1.4
a61af66fc99e Initial load
duke
parents:
diff changeset
168 // reflection implementation, not just those associated with
a61af66fc99e Initial load
duke
parents:
diff changeset
169 // sun/reflect/SerializationConstructorAccessor.
a61af66fc99e Initial load
duke
parents:
diff changeset
170 // NOTE: this is called too early in the bootstrapping process to be
a61af66fc99e Initial load
duke
parents:
diff changeset
171 // guarded by Universe::is_gte_jdk14x_version()/UseNewReflection.
a61af66fc99e Initial load
duke
parents:
diff changeset
172 (refl_magic_klass == NULL ||
a61af66fc99e Initial load
duke
parents:
diff changeset
173 !klass->is_subtype_of(refl_magic_klass) ||
a61af66fc99e Initial load
duke
parents:
diff changeset
174 VerifyReflectionBytecodes)
a61af66fc99e Initial load
duke
parents:
diff changeset
175 );
a61af66fc99e Initial load
duke
parents:
diff changeset
176 }
a61af66fc99e Initial load
duke
parents:
diff changeset
177
a61af66fc99e Initial load
duke
parents:
diff changeset
178 symbolHandle Verifier::inference_verify(
a61af66fc99e Initial load
duke
parents:
diff changeset
179 instanceKlassHandle klass, char* message, size_t message_len, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
180 JavaThread* thread = (JavaThread*)THREAD;
a61af66fc99e Initial load
duke
parents:
diff changeset
181 JNIEnv *env = thread->jni_environment();
a61af66fc99e Initial load
duke
parents:
diff changeset
182
a61af66fc99e Initial load
duke
parents:
diff changeset
183 void* verify_func = verify_byte_codes_fn();
a61af66fc99e Initial load
duke
parents:
diff changeset
184
a61af66fc99e Initial load
duke
parents:
diff changeset
185 if (verify_func == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
186 jio_snprintf(message, message_len, "Could not link verifier");
a61af66fc99e Initial load
duke
parents:
diff changeset
187 return vmSymbols::java_lang_VerifyError();
a61af66fc99e Initial load
duke
parents:
diff changeset
188 }
a61af66fc99e Initial load
duke
parents:
diff changeset
189
a61af66fc99e Initial load
duke
parents:
diff changeset
190 ResourceMark rm(THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
191 if (ClassVerifier::_verify_verbose) {
a61af66fc99e Initial load
duke
parents:
diff changeset
192 tty->print_cr("Verifying class %s with old format", klass->external_name());
a61af66fc99e Initial load
duke
parents:
diff changeset
193 }
a61af66fc99e Initial load
duke
parents:
diff changeset
194
a61af66fc99e Initial load
duke
parents:
diff changeset
195 jclass cls = (jclass) JNIHandles::make_local(env, klass->java_mirror());
a61af66fc99e Initial load
duke
parents:
diff changeset
196 jint result;
a61af66fc99e Initial load
duke
parents:
diff changeset
197
a61af66fc99e Initial load
duke
parents:
diff changeset
198 {
a61af66fc99e Initial load
duke
parents:
diff changeset
199 HandleMark hm(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
200 ThreadToNativeFromVM ttn(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
201 // ThreadToNativeFromVM takes care of changing thread_state, so safepoint
a61af66fc99e Initial load
duke
parents:
diff changeset
202 // code knows that we have left the VM
a61af66fc99e Initial load
duke
parents:
diff changeset
203
a61af66fc99e Initial load
duke
parents:
diff changeset
204 if (_is_new_verify_byte_codes_fn) {
a61af66fc99e Initial load
duke
parents:
diff changeset
205 verify_byte_codes_fn_new_t func =
a61af66fc99e Initial load
duke
parents:
diff changeset
206 CAST_TO_FN_PTR(verify_byte_codes_fn_new_t, verify_func);
a61af66fc99e Initial load
duke
parents:
diff changeset
207 result = (*func)(env, cls, message, (int)message_len,
a61af66fc99e Initial load
duke
parents:
diff changeset
208 klass->major_version());
a61af66fc99e Initial load
duke
parents:
diff changeset
209 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
210 verify_byte_codes_fn_t func =
a61af66fc99e Initial load
duke
parents:
diff changeset
211 CAST_TO_FN_PTR(verify_byte_codes_fn_t, verify_func);
a61af66fc99e Initial load
duke
parents:
diff changeset
212 result = (*func)(env, cls, message, (int)message_len);
a61af66fc99e Initial load
duke
parents:
diff changeset
213 }
a61af66fc99e Initial load
duke
parents:
diff changeset
214 }
a61af66fc99e Initial load
duke
parents:
diff changeset
215
a61af66fc99e Initial load
duke
parents:
diff changeset
216 JNIHandles::destroy_local(cls);
a61af66fc99e Initial load
duke
parents:
diff changeset
217
a61af66fc99e Initial load
duke
parents:
diff changeset
218 // These numbers are chosen so that VerifyClassCodes interface doesn't need
a61af66fc99e Initial load
duke
parents:
diff changeset
219 // to be changed (still return jboolean (unsigned char)), and result is
a61af66fc99e Initial load
duke
parents:
diff changeset
220 // 1 when verification is passed.
a61af66fc99e Initial load
duke
parents:
diff changeset
221 symbolHandle nh(NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
222 if (result == 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
223 return vmSymbols::java_lang_VerifyError();
a61af66fc99e Initial load
duke
parents:
diff changeset
224 } else if (result == 1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
225 return nh; // verified.
a61af66fc99e Initial load
duke
parents:
diff changeset
226 } else if (result == 2) {
a61af66fc99e Initial load
duke
parents:
diff changeset
227 THROW_MSG_(vmSymbols::java_lang_OutOfMemoryError(), message, nh);
a61af66fc99e Initial load
duke
parents:
diff changeset
228 } else if (result == 3) {
a61af66fc99e Initial load
duke
parents:
diff changeset
229 return vmSymbols::java_lang_ClassFormatError();
a61af66fc99e Initial load
duke
parents:
diff changeset
230 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
231 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
232 return nh;
a61af66fc99e Initial load
duke
parents:
diff changeset
233 }
a61af66fc99e Initial load
duke
parents:
diff changeset
234 }
a61af66fc99e Initial load
duke
parents:
diff changeset
235
a61af66fc99e Initial load
duke
parents:
diff changeset
236 // Methods in ClassVerifier
a61af66fc99e Initial load
duke
parents:
diff changeset
237
a61af66fc99e Initial load
duke
parents:
diff changeset
238 bool ClassVerifier::_verify_verbose = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
239
a61af66fc99e Initial load
duke
parents:
diff changeset
240 ClassVerifier::ClassVerifier(
a61af66fc99e Initial load
duke
parents:
diff changeset
241 instanceKlassHandle klass, char* msg, size_t msg_len, TRAPS)
a61af66fc99e Initial load
duke
parents:
diff changeset
242 : _thread(THREAD), _exception_type(symbolHandle()), _message(msg),
a61af66fc99e Initial load
duke
parents:
diff changeset
243 _message_buffer_len(msg_len), _klass(klass) {
a61af66fc99e Initial load
duke
parents:
diff changeset
244 _this_type = VerificationType::reference_type(klass->name());
a61af66fc99e Initial load
duke
parents:
diff changeset
245 }
a61af66fc99e Initial load
duke
parents:
diff changeset
246
a61af66fc99e Initial load
duke
parents:
diff changeset
247 ClassVerifier::~ClassVerifier() {
a61af66fc99e Initial load
duke
parents:
diff changeset
248 }
a61af66fc99e Initial load
duke
parents:
diff changeset
249
1955
1070423b51f3 6865028: Illegal instructions passing verification prior to 'invokespecial Object.<init>'
kamg
parents: 1678
diff changeset
250 VerificationType ClassVerifier::object_type() const {
1070423b51f3 6865028: Illegal instructions passing verification prior to 'invokespecial Object.<init>'
kamg
parents: 1678
diff changeset
251 return VerificationType::reference_type(vmSymbols::java_lang_Object());
1070423b51f3 6865028: Illegal instructions passing verification prior to 'invokespecial Object.<init>'
kamg
parents: 1678
diff changeset
252 }
1070423b51f3 6865028: Illegal instructions passing verification prior to 'invokespecial Object.<init>'
kamg
parents: 1678
diff changeset
253
0
a61af66fc99e Initial load
duke
parents:
diff changeset
254 void ClassVerifier::verify_class(TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
255 if (_verify_verbose) {
a61af66fc99e Initial load
duke
parents:
diff changeset
256 tty->print_cr("Verifying class %s with new format",
a61af66fc99e Initial load
duke
parents:
diff changeset
257 _klass->external_name());
a61af66fc99e Initial load
duke
parents:
diff changeset
258 }
a61af66fc99e Initial load
duke
parents:
diff changeset
259
a61af66fc99e Initial load
duke
parents:
diff changeset
260 objArrayHandle methods(THREAD, _klass->methods());
a61af66fc99e Initial load
duke
parents:
diff changeset
261 int num_methods = methods->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
262
a61af66fc99e Initial load
duke
parents:
diff changeset
263 for (int index = 0; index < num_methods; index++) {
1570
de91a2f25c7e 6956164: nightly regressions from 6939207
jrose
parents: 1565
diff changeset
264 // Check for recursive re-verification before each method.
de91a2f25c7e 6956164: nightly regressions from 6939207
jrose
parents: 1565
diff changeset
265 if (was_recursively_verified()) return;
de91a2f25c7e 6956164: nightly regressions from 6939207
jrose
parents: 1565
diff changeset
266
0
a61af66fc99e Initial load
duke
parents:
diff changeset
267 methodOop m = (methodOop)methods->obj_at(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
268 if (m->is_native() || m->is_abstract()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
269 // If m is native or abstract, skip it. It is checked in class file
a61af66fc99e Initial load
duke
parents:
diff changeset
270 // parser that methods do not override a final method.
a61af66fc99e Initial load
duke
parents:
diff changeset
271 continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
272 }
a61af66fc99e Initial load
duke
parents:
diff changeset
273 verify_method(methodHandle(THREAD, m), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
274 }
1570
de91a2f25c7e 6956164: nightly regressions from 6939207
jrose
parents: 1565
diff changeset
275
de91a2f25c7e 6956164: nightly regressions from 6939207
jrose
parents: 1565
diff changeset
276 if (_verify_verbose || TraceClassInitialization) {
de91a2f25c7e 6956164: nightly regressions from 6939207
jrose
parents: 1565
diff changeset
277 if (was_recursively_verified())
de91a2f25c7e 6956164: nightly regressions from 6939207
jrose
parents: 1565
diff changeset
278 tty->print_cr("Recursive verification detected for: %s",
de91a2f25c7e 6956164: nightly regressions from 6939207
jrose
parents: 1565
diff changeset
279 _klass->external_name());
de91a2f25c7e 6956164: nightly regressions from 6939207
jrose
parents: 1565
diff changeset
280 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
281 }
a61af66fc99e Initial load
duke
parents:
diff changeset
282
a61af66fc99e Initial load
duke
parents:
diff changeset
283 void ClassVerifier::verify_method(methodHandle m, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
284 ResourceMark rm(THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
285 _method = m; // initialize _method
a61af66fc99e Initial load
duke
parents:
diff changeset
286 if (_verify_verbose) {
a61af66fc99e Initial load
duke
parents:
diff changeset
287 tty->print_cr("Verifying method %s", m->name_and_sig_as_C_string());
a61af66fc99e Initial load
duke
parents:
diff changeset
288 }
a61af66fc99e Initial load
duke
parents:
diff changeset
289
a61af66fc99e Initial load
duke
parents:
diff changeset
290 const char* bad_type_msg = "Bad type on operand stack in %s";
a61af66fc99e Initial load
duke
parents:
diff changeset
291
a61af66fc99e Initial load
duke
parents:
diff changeset
292 int32_t max_stack = m->max_stack();
a61af66fc99e Initial load
duke
parents:
diff changeset
293 int32_t max_locals = m->max_locals();
a61af66fc99e Initial load
duke
parents:
diff changeset
294 constantPoolHandle cp(THREAD, m->constants());
a61af66fc99e Initial load
duke
parents:
diff changeset
295
a61af66fc99e Initial load
duke
parents:
diff changeset
296 if (!SignatureVerifier::is_valid_method_signature(m->signature())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
297 class_format_error("Invalid method signature");
a61af66fc99e Initial load
duke
parents:
diff changeset
298 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
299 }
a61af66fc99e Initial load
duke
parents:
diff changeset
300
a61af66fc99e Initial load
duke
parents:
diff changeset
301 // Initial stack map frame: offset is 0, stack is initially empty.
a61af66fc99e Initial load
duke
parents:
diff changeset
302 StackMapFrame current_frame(max_locals, max_stack, this);
a61af66fc99e Initial load
duke
parents:
diff changeset
303 // Set initial locals
a61af66fc99e Initial load
duke
parents:
diff changeset
304 VerificationType return_type = current_frame.set_locals_from_arg(
a61af66fc99e Initial load
duke
parents:
diff changeset
305 m, current_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
306
a61af66fc99e Initial load
duke
parents:
diff changeset
307 int32_t stackmap_index = 0; // index to the stackmap array
a61af66fc99e Initial load
duke
parents:
diff changeset
308
a61af66fc99e Initial load
duke
parents:
diff changeset
309 u4 code_length = m->code_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
310
a61af66fc99e Initial load
duke
parents:
diff changeset
311 // Scan the bytecode and map each instruction's start offset to a number.
a61af66fc99e Initial load
duke
parents:
diff changeset
312 char* code_data = generate_code_data(m, code_length, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
313
a61af66fc99e Initial load
duke
parents:
diff changeset
314 int ex_min = code_length;
a61af66fc99e Initial load
duke
parents:
diff changeset
315 int ex_max = -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
316 // Look through each item on the exception table. Each of the fields must refer
a61af66fc99e Initial load
duke
parents:
diff changeset
317 // to a legal instruction.
a61af66fc99e Initial load
duke
parents:
diff changeset
318 verify_exception_handler_table(
a61af66fc99e Initial load
duke
parents:
diff changeset
319 code_length, code_data, ex_min, ex_max, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
320
a61af66fc99e Initial load
duke
parents:
diff changeset
321 // Look through each entry on the local variable table and make sure
a61af66fc99e Initial load
duke
parents:
diff changeset
322 // its range of code array offsets is valid. (4169817)
a61af66fc99e Initial load
duke
parents:
diff changeset
323 if (m->has_localvariable_table()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
324 verify_local_variable_table(code_length, code_data, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
325 }
a61af66fc99e Initial load
duke
parents:
diff changeset
326
a61af66fc99e Initial load
duke
parents:
diff changeset
327 typeArrayHandle stackmap_data(THREAD, m->stackmap_data());
a61af66fc99e Initial load
duke
parents:
diff changeset
328 StackMapStream stream(stackmap_data);
a61af66fc99e Initial load
duke
parents:
diff changeset
329 StackMapReader reader(this, &stream, code_data, code_length, THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
330 StackMapTable stackmap_table(&reader, &current_frame, max_locals, max_stack,
a61af66fc99e Initial load
duke
parents:
diff changeset
331 code_data, code_length, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
332
a61af66fc99e Initial load
duke
parents:
diff changeset
333 if (_verify_verbose) {
a61af66fc99e Initial load
duke
parents:
diff changeset
334 stackmap_table.print();
a61af66fc99e Initial load
duke
parents:
diff changeset
335 }
a61af66fc99e Initial load
duke
parents:
diff changeset
336
a61af66fc99e Initial load
duke
parents:
diff changeset
337 RawBytecodeStream bcs(m);
a61af66fc99e Initial load
duke
parents:
diff changeset
338
a61af66fc99e Initial load
duke
parents:
diff changeset
339 // Scan the byte code linearly from the start to the end
a61af66fc99e Initial load
duke
parents:
diff changeset
340 bool no_control_flow = false; // Set to true when there is no direct control
a61af66fc99e Initial load
duke
parents:
diff changeset
341 // flow from current instruction to the next
a61af66fc99e Initial load
duke
parents:
diff changeset
342 // instruction in sequence
a61af66fc99e Initial load
duke
parents:
diff changeset
343 Bytecodes::Code opcode;
a61af66fc99e Initial load
duke
parents:
diff changeset
344 while (!bcs.is_last_bytecode()) {
1570
de91a2f25c7e 6956164: nightly regressions from 6939207
jrose
parents: 1565
diff changeset
345 // Check for recursive re-verification before each bytecode.
de91a2f25c7e 6956164: nightly regressions from 6939207
jrose
parents: 1565
diff changeset
346 if (was_recursively_verified()) return;
de91a2f25c7e 6956164: nightly regressions from 6939207
jrose
parents: 1565
diff changeset
347
0
a61af66fc99e Initial load
duke
parents:
diff changeset
348 opcode = bcs.raw_next();
a61af66fc99e Initial load
duke
parents:
diff changeset
349 u2 bci = bcs.bci();
a61af66fc99e Initial load
duke
parents:
diff changeset
350
a61af66fc99e Initial load
duke
parents:
diff changeset
351 // Set current frame's offset to bci
a61af66fc99e Initial load
duke
parents:
diff changeset
352 current_frame.set_offset(bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
353
a61af66fc99e Initial load
duke
parents:
diff changeset
354 // Make sure every offset in stackmap table point to the beginning to
a61af66fc99e Initial load
duke
parents:
diff changeset
355 // an instruction. Match current_frame to stackmap_table entry with
a61af66fc99e Initial load
duke
parents:
diff changeset
356 // the same offset if exists.
a61af66fc99e Initial load
duke
parents:
diff changeset
357 stackmap_index = verify_stackmap_table(
a61af66fc99e Initial load
duke
parents:
diff changeset
358 stackmap_index, bci, &current_frame, &stackmap_table,
a61af66fc99e Initial load
duke
parents:
diff changeset
359 no_control_flow, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
360
a61af66fc99e Initial load
duke
parents:
diff changeset
361 bool this_uninit = false; // Set to true when invokespecial <init> initialized 'this'
a61af66fc99e Initial load
duke
parents:
diff changeset
362
a61af66fc99e Initial load
duke
parents:
diff changeset
363 // Merge with the next instruction
a61af66fc99e Initial load
duke
parents:
diff changeset
364 {
a61af66fc99e Initial load
duke
parents:
diff changeset
365 u2 index;
a61af66fc99e Initial load
duke
parents:
diff changeset
366 int target;
a61af66fc99e Initial load
duke
parents:
diff changeset
367 VerificationType type, type2;
a61af66fc99e Initial load
duke
parents:
diff changeset
368 VerificationType atype;
a61af66fc99e Initial load
duke
parents:
diff changeset
369
a61af66fc99e Initial load
duke
parents:
diff changeset
370 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
371 if (_verify_verbose) {
a61af66fc99e Initial load
duke
parents:
diff changeset
372 current_frame.print();
a61af66fc99e Initial load
duke
parents:
diff changeset
373 tty->print_cr("offset = %d, opcode = %s", bci, Bytecodes::name(opcode));
a61af66fc99e Initial load
duke
parents:
diff changeset
374 }
a61af66fc99e Initial load
duke
parents:
diff changeset
375 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
376
a61af66fc99e Initial load
duke
parents:
diff changeset
377 // Make sure wide instruction is in correct format
a61af66fc99e Initial load
duke
parents:
diff changeset
378 if (bcs.is_wide()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
379 if (opcode != Bytecodes::_iinc && opcode != Bytecodes::_iload &&
a61af66fc99e Initial load
duke
parents:
diff changeset
380 opcode != Bytecodes::_aload && opcode != Bytecodes::_lload &&
a61af66fc99e Initial load
duke
parents:
diff changeset
381 opcode != Bytecodes::_istore && opcode != Bytecodes::_astore &&
a61af66fc99e Initial load
duke
parents:
diff changeset
382 opcode != Bytecodes::_lstore && opcode != Bytecodes::_fload &&
a61af66fc99e Initial load
duke
parents:
diff changeset
383 opcode != Bytecodes::_dload && opcode != Bytecodes::_fstore &&
a61af66fc99e Initial load
duke
parents:
diff changeset
384 opcode != Bytecodes::_dstore) {
a61af66fc99e Initial load
duke
parents:
diff changeset
385 verify_error(bci, "Bad wide instruction");
a61af66fc99e Initial load
duke
parents:
diff changeset
386 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
387 }
a61af66fc99e Initial load
duke
parents:
diff changeset
388 }
a61af66fc99e Initial load
duke
parents:
diff changeset
389
a61af66fc99e Initial load
duke
parents:
diff changeset
390 switch (opcode) {
a61af66fc99e Initial load
duke
parents:
diff changeset
391 case Bytecodes::_nop :
a61af66fc99e Initial load
duke
parents:
diff changeset
392 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
393 case Bytecodes::_aconst_null :
a61af66fc99e Initial load
duke
parents:
diff changeset
394 current_frame.push_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
395 VerificationType::null_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
396 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
397 case Bytecodes::_iconst_m1 :
a61af66fc99e Initial load
duke
parents:
diff changeset
398 case Bytecodes::_iconst_0 :
a61af66fc99e Initial load
duke
parents:
diff changeset
399 case Bytecodes::_iconst_1 :
a61af66fc99e Initial load
duke
parents:
diff changeset
400 case Bytecodes::_iconst_2 :
a61af66fc99e Initial load
duke
parents:
diff changeset
401 case Bytecodes::_iconst_3 :
a61af66fc99e Initial load
duke
parents:
diff changeset
402 case Bytecodes::_iconst_4 :
a61af66fc99e Initial load
duke
parents:
diff changeset
403 case Bytecodes::_iconst_5 :
a61af66fc99e Initial load
duke
parents:
diff changeset
404 current_frame.push_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
405 VerificationType::integer_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
406 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
407 case Bytecodes::_lconst_0 :
a61af66fc99e Initial load
duke
parents:
diff changeset
408 case Bytecodes::_lconst_1 :
a61af66fc99e Initial load
duke
parents:
diff changeset
409 current_frame.push_stack_2(
a61af66fc99e Initial load
duke
parents:
diff changeset
410 VerificationType::long_type(),
a61af66fc99e Initial load
duke
parents:
diff changeset
411 VerificationType::long2_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
412 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
413 case Bytecodes::_fconst_0 :
a61af66fc99e Initial load
duke
parents:
diff changeset
414 case Bytecodes::_fconst_1 :
a61af66fc99e Initial load
duke
parents:
diff changeset
415 case Bytecodes::_fconst_2 :
a61af66fc99e Initial load
duke
parents:
diff changeset
416 current_frame.push_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
417 VerificationType::float_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
418 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
419 case Bytecodes::_dconst_0 :
a61af66fc99e Initial load
duke
parents:
diff changeset
420 case Bytecodes::_dconst_1 :
a61af66fc99e Initial load
duke
parents:
diff changeset
421 current_frame.push_stack_2(
a61af66fc99e Initial load
duke
parents:
diff changeset
422 VerificationType::double_type(),
a61af66fc99e Initial load
duke
parents:
diff changeset
423 VerificationType::double2_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
424 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
425 case Bytecodes::_sipush :
a61af66fc99e Initial load
duke
parents:
diff changeset
426 case Bytecodes::_bipush :
a61af66fc99e Initial load
duke
parents:
diff changeset
427 current_frame.push_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
428 VerificationType::integer_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
429 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
430 case Bytecodes::_ldc :
a61af66fc99e Initial load
duke
parents:
diff changeset
431 verify_ldc(
1565
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1142
diff changeset
432 opcode, bcs.get_index_u1(), &current_frame,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
433 cp, bci, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
434 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
435 case Bytecodes::_ldc_w :
a61af66fc99e Initial load
duke
parents:
diff changeset
436 case Bytecodes::_ldc2_w :
a61af66fc99e Initial load
duke
parents:
diff changeset
437 verify_ldc(
1565
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1142
diff changeset
438 opcode, bcs.get_index_u2(), &current_frame,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
439 cp, bci, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
440 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
441 case Bytecodes::_iload :
a61af66fc99e Initial load
duke
parents:
diff changeset
442 verify_iload(bcs.get_index(), &current_frame, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
443 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
444 case Bytecodes::_iload_0 :
a61af66fc99e Initial load
duke
parents:
diff changeset
445 case Bytecodes::_iload_1 :
a61af66fc99e Initial load
duke
parents:
diff changeset
446 case Bytecodes::_iload_2 :
a61af66fc99e Initial load
duke
parents:
diff changeset
447 case Bytecodes::_iload_3 :
a61af66fc99e Initial load
duke
parents:
diff changeset
448 index = opcode - Bytecodes::_iload_0;
a61af66fc99e Initial load
duke
parents:
diff changeset
449 verify_iload(index, &current_frame, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
450 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
451 case Bytecodes::_lload :
a61af66fc99e Initial load
duke
parents:
diff changeset
452 verify_lload(bcs.get_index(), &current_frame, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
453 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
454 case Bytecodes::_lload_0 :
a61af66fc99e Initial load
duke
parents:
diff changeset
455 case Bytecodes::_lload_1 :
a61af66fc99e Initial load
duke
parents:
diff changeset
456 case Bytecodes::_lload_2 :
a61af66fc99e Initial load
duke
parents:
diff changeset
457 case Bytecodes::_lload_3 :
a61af66fc99e Initial load
duke
parents:
diff changeset
458 index = opcode - Bytecodes::_lload_0;
a61af66fc99e Initial load
duke
parents:
diff changeset
459 verify_lload(index, &current_frame, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
460 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
461 case Bytecodes::_fload :
a61af66fc99e Initial load
duke
parents:
diff changeset
462 verify_fload(bcs.get_index(), &current_frame, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
463 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
464 case Bytecodes::_fload_0 :
a61af66fc99e Initial load
duke
parents:
diff changeset
465 case Bytecodes::_fload_1 :
a61af66fc99e Initial load
duke
parents:
diff changeset
466 case Bytecodes::_fload_2 :
a61af66fc99e Initial load
duke
parents:
diff changeset
467 case Bytecodes::_fload_3 :
a61af66fc99e Initial load
duke
parents:
diff changeset
468 index = opcode - Bytecodes::_fload_0;
a61af66fc99e Initial load
duke
parents:
diff changeset
469 verify_fload(index, &current_frame, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
470 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
471 case Bytecodes::_dload :
a61af66fc99e Initial load
duke
parents:
diff changeset
472 verify_dload(bcs.get_index(), &current_frame, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
473 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
474 case Bytecodes::_dload_0 :
a61af66fc99e Initial load
duke
parents:
diff changeset
475 case Bytecodes::_dload_1 :
a61af66fc99e Initial load
duke
parents:
diff changeset
476 case Bytecodes::_dload_2 :
a61af66fc99e Initial load
duke
parents:
diff changeset
477 case Bytecodes::_dload_3 :
a61af66fc99e Initial load
duke
parents:
diff changeset
478 index = opcode - Bytecodes::_dload_0;
a61af66fc99e Initial load
duke
parents:
diff changeset
479 verify_dload(index, &current_frame, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
480 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
481 case Bytecodes::_aload :
a61af66fc99e Initial load
duke
parents:
diff changeset
482 verify_aload(bcs.get_index(), &current_frame, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
483 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
484 case Bytecodes::_aload_0 :
a61af66fc99e Initial load
duke
parents:
diff changeset
485 case Bytecodes::_aload_1 :
a61af66fc99e Initial load
duke
parents:
diff changeset
486 case Bytecodes::_aload_2 :
a61af66fc99e Initial load
duke
parents:
diff changeset
487 case Bytecodes::_aload_3 :
a61af66fc99e Initial load
duke
parents:
diff changeset
488 index = opcode - Bytecodes::_aload_0;
a61af66fc99e Initial load
duke
parents:
diff changeset
489 verify_aload(index, &current_frame, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
490 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
491 case Bytecodes::_iaload :
a61af66fc99e Initial load
duke
parents:
diff changeset
492 type = current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
493 VerificationType::integer_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
494 atype = current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
495 VerificationType::reference_check(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
496 if (!atype.is_int_array()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
497 verify_error(bci, bad_type_msg, "iaload");
a61af66fc99e Initial load
duke
parents:
diff changeset
498 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
499 }
a61af66fc99e Initial load
duke
parents:
diff changeset
500 current_frame.push_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
501 VerificationType::integer_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
502 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
503 case Bytecodes::_baload :
a61af66fc99e Initial load
duke
parents:
diff changeset
504 type = current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
505 VerificationType::integer_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
506 atype = current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
507 VerificationType::reference_check(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
508 if (!atype.is_bool_array() && !atype.is_byte_array()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
509 verify_error(bci, bad_type_msg, "baload");
a61af66fc99e Initial load
duke
parents:
diff changeset
510 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
511 }
a61af66fc99e Initial load
duke
parents:
diff changeset
512 current_frame.push_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
513 VerificationType::integer_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
514 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
515 case Bytecodes::_caload :
a61af66fc99e Initial load
duke
parents:
diff changeset
516 type = current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
517 VerificationType::integer_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
518 atype = current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
519 VerificationType::reference_check(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
520 if (!atype.is_char_array()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
521 verify_error(bci, bad_type_msg, "caload");
a61af66fc99e Initial load
duke
parents:
diff changeset
522 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
523 }
a61af66fc99e Initial load
duke
parents:
diff changeset
524 current_frame.push_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
525 VerificationType::integer_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
526 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
527 case Bytecodes::_saload :
a61af66fc99e Initial load
duke
parents:
diff changeset
528 type = current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
529 VerificationType::integer_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
530 atype = current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
531 VerificationType::reference_check(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
532 if (!atype.is_short_array()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
533 verify_error(bci, bad_type_msg, "saload");
a61af66fc99e Initial load
duke
parents:
diff changeset
534 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
535 }
a61af66fc99e Initial load
duke
parents:
diff changeset
536 current_frame.push_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
537 VerificationType::integer_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
538 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
539 case Bytecodes::_laload :
a61af66fc99e Initial load
duke
parents:
diff changeset
540 type = current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
541 VerificationType::integer_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
542 atype = current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
543 VerificationType::reference_check(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
544 if (!atype.is_long_array()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
545 verify_error(bci, bad_type_msg, "laload");
a61af66fc99e Initial load
duke
parents:
diff changeset
546 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
547 }
a61af66fc99e Initial load
duke
parents:
diff changeset
548 current_frame.push_stack_2(
a61af66fc99e Initial load
duke
parents:
diff changeset
549 VerificationType::long_type(),
a61af66fc99e Initial load
duke
parents:
diff changeset
550 VerificationType::long2_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
551 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
552 case Bytecodes::_faload :
a61af66fc99e Initial load
duke
parents:
diff changeset
553 type = current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
554 VerificationType::integer_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
555 atype = current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
556 VerificationType::reference_check(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
557 if (!atype.is_float_array()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
558 verify_error(bci, bad_type_msg, "faload");
a61af66fc99e Initial load
duke
parents:
diff changeset
559 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
560 }
a61af66fc99e Initial load
duke
parents:
diff changeset
561 current_frame.push_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
562 VerificationType::float_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
563 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
564 case Bytecodes::_daload :
a61af66fc99e Initial load
duke
parents:
diff changeset
565 type = current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
566 VerificationType::integer_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
567 atype = current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
568 VerificationType::reference_check(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
569 if (!atype.is_double_array()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
570 verify_error(bci, bad_type_msg, "daload");
a61af66fc99e Initial load
duke
parents:
diff changeset
571 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
572 }
a61af66fc99e Initial load
duke
parents:
diff changeset
573 current_frame.push_stack_2(
a61af66fc99e Initial load
duke
parents:
diff changeset
574 VerificationType::double_type(),
a61af66fc99e Initial load
duke
parents:
diff changeset
575 VerificationType::double2_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
576 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
577 case Bytecodes::_aaload : {
a61af66fc99e Initial load
duke
parents:
diff changeset
578 type = current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
579 VerificationType::integer_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
580 atype = current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
581 VerificationType::reference_check(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
582 if (!atype.is_reference_array()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
583 verify_error(bci, bad_type_msg, "aaload");
a61af66fc99e Initial load
duke
parents:
diff changeset
584 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
585 }
a61af66fc99e Initial load
duke
parents:
diff changeset
586 if (atype.is_null()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
587 current_frame.push_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
588 VerificationType::null_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
589 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
590 VerificationType component =
a61af66fc99e Initial load
duke
parents:
diff changeset
591 atype.get_component(CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
592 current_frame.push_stack(component, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
593 }
a61af66fc99e Initial load
duke
parents:
diff changeset
594 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
595 }
a61af66fc99e Initial load
duke
parents:
diff changeset
596 case Bytecodes::_istore :
a61af66fc99e Initial load
duke
parents:
diff changeset
597 verify_istore(bcs.get_index(), &current_frame, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
598 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
599 case Bytecodes::_istore_0 :
a61af66fc99e Initial load
duke
parents:
diff changeset
600 case Bytecodes::_istore_1 :
a61af66fc99e Initial load
duke
parents:
diff changeset
601 case Bytecodes::_istore_2 :
a61af66fc99e Initial load
duke
parents:
diff changeset
602 case Bytecodes::_istore_3 :
a61af66fc99e Initial load
duke
parents:
diff changeset
603 index = opcode - Bytecodes::_istore_0;
a61af66fc99e Initial load
duke
parents:
diff changeset
604 verify_istore(index, &current_frame, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
605 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
606 case Bytecodes::_lstore :
a61af66fc99e Initial load
duke
parents:
diff changeset
607 verify_lstore(bcs.get_index(), &current_frame, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
608 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
609 case Bytecodes::_lstore_0 :
a61af66fc99e Initial load
duke
parents:
diff changeset
610 case Bytecodes::_lstore_1 :
a61af66fc99e Initial load
duke
parents:
diff changeset
611 case Bytecodes::_lstore_2 :
a61af66fc99e Initial load
duke
parents:
diff changeset
612 case Bytecodes::_lstore_3 :
a61af66fc99e Initial load
duke
parents:
diff changeset
613 index = opcode - Bytecodes::_lstore_0;
a61af66fc99e Initial load
duke
parents:
diff changeset
614 verify_lstore(index, &current_frame, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
615 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
616 case Bytecodes::_fstore :
a61af66fc99e Initial load
duke
parents:
diff changeset
617 verify_fstore(bcs.get_index(), &current_frame, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
618 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
619 case Bytecodes::_fstore_0 :
a61af66fc99e Initial load
duke
parents:
diff changeset
620 case Bytecodes::_fstore_1 :
a61af66fc99e Initial load
duke
parents:
diff changeset
621 case Bytecodes::_fstore_2 :
a61af66fc99e Initial load
duke
parents:
diff changeset
622 case Bytecodes::_fstore_3 :
a61af66fc99e Initial load
duke
parents:
diff changeset
623 index = opcode - Bytecodes::_fstore_0;
a61af66fc99e Initial load
duke
parents:
diff changeset
624 verify_fstore(index, &current_frame, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
625 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
626 case Bytecodes::_dstore :
a61af66fc99e Initial load
duke
parents:
diff changeset
627 verify_dstore(bcs.get_index(), &current_frame, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
628 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
629 case Bytecodes::_dstore_0 :
a61af66fc99e Initial load
duke
parents:
diff changeset
630 case Bytecodes::_dstore_1 :
a61af66fc99e Initial load
duke
parents:
diff changeset
631 case Bytecodes::_dstore_2 :
a61af66fc99e Initial load
duke
parents:
diff changeset
632 case Bytecodes::_dstore_3 :
a61af66fc99e Initial load
duke
parents:
diff changeset
633 index = opcode - Bytecodes::_dstore_0;
a61af66fc99e Initial load
duke
parents:
diff changeset
634 verify_dstore(index, &current_frame, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
635 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
636 case Bytecodes::_astore :
a61af66fc99e Initial load
duke
parents:
diff changeset
637 verify_astore(bcs.get_index(), &current_frame, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
638 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
639 case Bytecodes::_astore_0 :
a61af66fc99e Initial load
duke
parents:
diff changeset
640 case Bytecodes::_astore_1 :
a61af66fc99e Initial load
duke
parents:
diff changeset
641 case Bytecodes::_astore_2 :
a61af66fc99e Initial load
duke
parents:
diff changeset
642 case Bytecodes::_astore_3 :
a61af66fc99e Initial load
duke
parents:
diff changeset
643 index = opcode - Bytecodes::_astore_0;
a61af66fc99e Initial load
duke
parents:
diff changeset
644 verify_astore(index, &current_frame, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
645 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
646 case Bytecodes::_iastore :
a61af66fc99e Initial load
duke
parents:
diff changeset
647 type = current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
648 VerificationType::integer_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
649 type2 = current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
650 VerificationType::integer_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
651 atype = current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
652 VerificationType::reference_check(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
653 if (!atype.is_int_array()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
654 verify_error(bci, bad_type_msg, "iastore");
a61af66fc99e Initial load
duke
parents:
diff changeset
655 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
656 }
a61af66fc99e Initial load
duke
parents:
diff changeset
657 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
658 case Bytecodes::_bastore :
a61af66fc99e Initial load
duke
parents:
diff changeset
659 type = current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
660 VerificationType::integer_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
661 type2 = current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
662 VerificationType::integer_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
663 atype = current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
664 VerificationType::reference_check(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
665 if (!atype.is_bool_array() && !atype.is_byte_array()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
666 verify_error(bci, bad_type_msg, "bastore");
a61af66fc99e Initial load
duke
parents:
diff changeset
667 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
668 }
a61af66fc99e Initial load
duke
parents:
diff changeset
669 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
670 case Bytecodes::_castore :
a61af66fc99e Initial load
duke
parents:
diff changeset
671 current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
672 VerificationType::integer_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
673 current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
674 VerificationType::integer_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
675 atype = current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
676 VerificationType::reference_check(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
677 if (!atype.is_char_array()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
678 verify_error(bci, bad_type_msg, "castore");
a61af66fc99e Initial load
duke
parents:
diff changeset
679 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
680 }
a61af66fc99e Initial load
duke
parents:
diff changeset
681 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
682 case Bytecodes::_sastore :
a61af66fc99e Initial load
duke
parents:
diff changeset
683 current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
684 VerificationType::integer_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
685 current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
686 VerificationType::integer_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
687 atype = current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
688 VerificationType::reference_check(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
689 if (!atype.is_short_array()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
690 verify_error(bci, bad_type_msg, "sastore");
a61af66fc99e Initial load
duke
parents:
diff changeset
691 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
692 }
a61af66fc99e Initial load
duke
parents:
diff changeset
693 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
694 case Bytecodes::_lastore :
a61af66fc99e Initial load
duke
parents:
diff changeset
695 current_frame.pop_stack_2(
a61af66fc99e Initial load
duke
parents:
diff changeset
696 VerificationType::long2_type(),
a61af66fc99e Initial load
duke
parents:
diff changeset
697 VerificationType::long_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
698 current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
699 VerificationType::integer_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
700 atype = current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
701 VerificationType::reference_check(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
702 if (!atype.is_long_array()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
703 verify_error(bci, bad_type_msg, "lastore");
a61af66fc99e Initial load
duke
parents:
diff changeset
704 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
705 }
a61af66fc99e Initial load
duke
parents:
diff changeset
706 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
707 case Bytecodes::_fastore :
a61af66fc99e Initial load
duke
parents:
diff changeset
708 current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
709 VerificationType::float_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
710 current_frame.pop_stack
a61af66fc99e Initial load
duke
parents:
diff changeset
711 (VerificationType::integer_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
712 atype = current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
713 VerificationType::reference_check(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
714 if (!atype.is_float_array()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
715 verify_error(bci, bad_type_msg, "fastore");
a61af66fc99e Initial load
duke
parents:
diff changeset
716 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
717 }
a61af66fc99e Initial load
duke
parents:
diff changeset
718 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
719 case Bytecodes::_dastore :
a61af66fc99e Initial load
duke
parents:
diff changeset
720 current_frame.pop_stack_2(
a61af66fc99e Initial load
duke
parents:
diff changeset
721 VerificationType::double2_type(),
a61af66fc99e Initial load
duke
parents:
diff changeset
722 VerificationType::double_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
723 current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
724 VerificationType::integer_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
725 atype = current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
726 VerificationType::reference_check(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
727 if (!atype.is_double_array()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
728 verify_error(bci, bad_type_msg, "dastore");
a61af66fc99e Initial load
duke
parents:
diff changeset
729 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
730 }
a61af66fc99e Initial load
duke
parents:
diff changeset
731 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
732 case Bytecodes::_aastore :
1955
1070423b51f3 6865028: Illegal instructions passing verification prior to 'invokespecial Object.<init>'
kamg
parents: 1678
diff changeset
733 type = current_frame.pop_stack(object_type(), CHECK_VERIFY(this));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
734 type2 = current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
735 VerificationType::integer_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
736 atype = current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
737 VerificationType::reference_check(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
738 // more type-checking is done at runtime
a61af66fc99e Initial load
duke
parents:
diff changeset
739 if (!atype.is_reference_array()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
740 verify_error(bci, bad_type_msg, "aastore");
a61af66fc99e Initial load
duke
parents:
diff changeset
741 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
742 }
a61af66fc99e Initial load
duke
parents:
diff changeset
743 // 4938384: relaxed constraint in JVMS 3nd edition.
a61af66fc99e Initial load
duke
parents:
diff changeset
744 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
745 case Bytecodes::_pop :
a61af66fc99e Initial load
duke
parents:
diff changeset
746 current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
747 VerificationType::category1_check(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
748 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
749 case Bytecodes::_pop2 :
a61af66fc99e Initial load
duke
parents:
diff changeset
750 type = current_frame.pop_stack(CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
751 if (type.is_category1()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
752 current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
753 VerificationType::category1_check(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
754 } else if (type.is_category2_2nd()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
755 current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
756 VerificationType::category2_check(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
757 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
758 verify_error(bci, bad_type_msg, "pop2");
a61af66fc99e Initial load
duke
parents:
diff changeset
759 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
760 }
a61af66fc99e Initial load
duke
parents:
diff changeset
761 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
762 case Bytecodes::_dup :
a61af66fc99e Initial load
duke
parents:
diff changeset
763 type = current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
764 VerificationType::category1_check(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
765 current_frame.push_stack(type, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
766 current_frame.push_stack(type, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
767 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
768 case Bytecodes::_dup_x1 :
a61af66fc99e Initial load
duke
parents:
diff changeset
769 type = current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
770 VerificationType::category1_check(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
771 type2 = current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
772 VerificationType::category1_check(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
773 current_frame.push_stack(type, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
774 current_frame.push_stack(type2, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
775 current_frame.push_stack(type, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
776 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
777 case Bytecodes::_dup_x2 :
a61af66fc99e Initial load
duke
parents:
diff changeset
778 {
a61af66fc99e Initial load
duke
parents:
diff changeset
779 VerificationType type3;
a61af66fc99e Initial load
duke
parents:
diff changeset
780 type = current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
781 VerificationType::category1_check(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
782 type2 = current_frame.pop_stack(CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
783 if (type2.is_category1()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
784 type3 = current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
785 VerificationType::category1_check(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
786 } else if (type2.is_category2_2nd()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
787 type3 = current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
788 VerificationType::category2_check(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
789 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
790 verify_error(bci, bad_type_msg, "dup_x2");
a61af66fc99e Initial load
duke
parents:
diff changeset
791 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
792 }
a61af66fc99e Initial load
duke
parents:
diff changeset
793 current_frame.push_stack(type, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
794 current_frame.push_stack(type3, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
795 current_frame.push_stack(type2, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
796 current_frame.push_stack(type, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
797 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
798 }
a61af66fc99e Initial load
duke
parents:
diff changeset
799 case Bytecodes::_dup2 :
a61af66fc99e Initial load
duke
parents:
diff changeset
800 type = current_frame.pop_stack(CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
801 if (type.is_category1()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
802 type2 = current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
803 VerificationType::category1_check(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
804 } else if (type.is_category2_2nd()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
805 type2 = current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
806 VerificationType::category2_check(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
807 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
808 verify_error(bci, bad_type_msg, "dup2");
a61af66fc99e Initial load
duke
parents:
diff changeset
809 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
810 }
a61af66fc99e Initial load
duke
parents:
diff changeset
811 current_frame.push_stack(type2, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
812 current_frame.push_stack(type, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
813 current_frame.push_stack(type2, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
814 current_frame.push_stack(type, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
815 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
816 case Bytecodes::_dup2_x1 :
a61af66fc99e Initial load
duke
parents:
diff changeset
817 {
a61af66fc99e Initial load
duke
parents:
diff changeset
818 VerificationType type3;
a61af66fc99e Initial load
duke
parents:
diff changeset
819 type = current_frame.pop_stack(CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
820 if (type.is_category1()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
821 type2 = current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
822 VerificationType::category1_check(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
823 } else if(type.is_category2_2nd()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
824 type2 = current_frame.pop_stack
a61af66fc99e Initial load
duke
parents:
diff changeset
825 (VerificationType::category2_check(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
826 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
827 verify_error(bci, bad_type_msg, "dup2_x1");
a61af66fc99e Initial load
duke
parents:
diff changeset
828 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
829 }
a61af66fc99e Initial load
duke
parents:
diff changeset
830 type3 = current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
831 VerificationType::category1_check(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
832 current_frame.push_stack(type2, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
833 current_frame.push_stack(type, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
834 current_frame.push_stack(type3, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
835 current_frame.push_stack(type2, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
836 current_frame.push_stack(type, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
837 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
838 }
a61af66fc99e Initial load
duke
parents:
diff changeset
839 case Bytecodes::_dup2_x2 :
a61af66fc99e Initial load
duke
parents:
diff changeset
840 {
a61af66fc99e Initial load
duke
parents:
diff changeset
841 VerificationType type3, type4;
a61af66fc99e Initial load
duke
parents:
diff changeset
842 type = current_frame.pop_stack(CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
843 if (type.is_category1()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
844 type2 = current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
845 VerificationType::category1_check(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
846 } else if (type.is_category2_2nd()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
847 type2 = current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
848 VerificationType::category2_check(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
849 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
850 verify_error(bci, bad_type_msg, "dup2_x2");
a61af66fc99e Initial load
duke
parents:
diff changeset
851 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
852 }
a61af66fc99e Initial load
duke
parents:
diff changeset
853 type3 = current_frame.pop_stack(CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
854 if (type3.is_category1()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
855 type4 = current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
856 VerificationType::category1_check(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
857 } else if (type3.is_category2_2nd()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
858 type4 = current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
859 VerificationType::category2_check(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
860 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
861 verify_error(bci, bad_type_msg, "dup2_x2");
a61af66fc99e Initial load
duke
parents:
diff changeset
862 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
863 }
a61af66fc99e Initial load
duke
parents:
diff changeset
864 current_frame.push_stack(type2, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
865 current_frame.push_stack(type, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
866 current_frame.push_stack(type4, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
867 current_frame.push_stack(type3, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
868 current_frame.push_stack(type2, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
869 current_frame.push_stack(type, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
870 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
871 }
a61af66fc99e Initial load
duke
parents:
diff changeset
872 case Bytecodes::_swap :
a61af66fc99e Initial load
duke
parents:
diff changeset
873 type = current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
874 VerificationType::category1_check(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
875 type2 = current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
876 VerificationType::category1_check(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
877 current_frame.push_stack(type, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
878 current_frame.push_stack(type2, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
879 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
880 case Bytecodes::_iadd :
a61af66fc99e Initial load
duke
parents:
diff changeset
881 case Bytecodes::_isub :
a61af66fc99e Initial load
duke
parents:
diff changeset
882 case Bytecodes::_imul :
a61af66fc99e Initial load
duke
parents:
diff changeset
883 case Bytecodes::_idiv :
a61af66fc99e Initial load
duke
parents:
diff changeset
884 case Bytecodes::_irem :
a61af66fc99e Initial load
duke
parents:
diff changeset
885 case Bytecodes::_ishl :
a61af66fc99e Initial load
duke
parents:
diff changeset
886 case Bytecodes::_ishr :
a61af66fc99e Initial load
duke
parents:
diff changeset
887 case Bytecodes::_iushr :
a61af66fc99e Initial load
duke
parents:
diff changeset
888 case Bytecodes::_ior :
a61af66fc99e Initial load
duke
parents:
diff changeset
889 case Bytecodes::_ixor :
a61af66fc99e Initial load
duke
parents:
diff changeset
890 case Bytecodes::_iand :
a61af66fc99e Initial load
duke
parents:
diff changeset
891 current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
892 VerificationType::integer_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
893 // fall through
a61af66fc99e Initial load
duke
parents:
diff changeset
894 case Bytecodes::_ineg :
a61af66fc99e Initial load
duke
parents:
diff changeset
895 current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
896 VerificationType::integer_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
897 current_frame.push_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
898 VerificationType::integer_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
899 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
900 case Bytecodes::_ladd :
a61af66fc99e Initial load
duke
parents:
diff changeset
901 case Bytecodes::_lsub :
a61af66fc99e Initial load
duke
parents:
diff changeset
902 case Bytecodes::_lmul :
a61af66fc99e Initial load
duke
parents:
diff changeset
903 case Bytecodes::_ldiv :
a61af66fc99e Initial load
duke
parents:
diff changeset
904 case Bytecodes::_lrem :
a61af66fc99e Initial load
duke
parents:
diff changeset
905 case Bytecodes::_land :
a61af66fc99e Initial load
duke
parents:
diff changeset
906 case Bytecodes::_lor :
a61af66fc99e Initial load
duke
parents:
diff changeset
907 case Bytecodes::_lxor :
a61af66fc99e Initial load
duke
parents:
diff changeset
908 current_frame.pop_stack_2(
a61af66fc99e Initial load
duke
parents:
diff changeset
909 VerificationType::long2_type(),
a61af66fc99e Initial load
duke
parents:
diff changeset
910 VerificationType::long_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
911 // fall through
a61af66fc99e Initial load
duke
parents:
diff changeset
912 case Bytecodes::_lneg :
a61af66fc99e Initial load
duke
parents:
diff changeset
913 current_frame.pop_stack_2(
a61af66fc99e Initial load
duke
parents:
diff changeset
914 VerificationType::long2_type(),
a61af66fc99e Initial load
duke
parents:
diff changeset
915 VerificationType::long_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
916 current_frame.push_stack_2(
a61af66fc99e Initial load
duke
parents:
diff changeset
917 VerificationType::long_type(),
a61af66fc99e Initial load
duke
parents:
diff changeset
918 VerificationType::long2_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
919 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
920 case Bytecodes::_lshl :
a61af66fc99e Initial load
duke
parents:
diff changeset
921 case Bytecodes::_lshr :
a61af66fc99e Initial load
duke
parents:
diff changeset
922 case Bytecodes::_lushr :
a61af66fc99e Initial load
duke
parents:
diff changeset
923 current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
924 VerificationType::integer_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
925 current_frame.pop_stack_2(
a61af66fc99e Initial load
duke
parents:
diff changeset
926 VerificationType::long2_type(),
a61af66fc99e Initial load
duke
parents:
diff changeset
927 VerificationType::long_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
928 current_frame.push_stack_2(
a61af66fc99e Initial load
duke
parents:
diff changeset
929 VerificationType::long_type(),
a61af66fc99e Initial load
duke
parents:
diff changeset
930 VerificationType::long2_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
931 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
932 case Bytecodes::_fadd :
a61af66fc99e Initial load
duke
parents:
diff changeset
933 case Bytecodes::_fsub :
a61af66fc99e Initial load
duke
parents:
diff changeset
934 case Bytecodes::_fmul :
a61af66fc99e Initial load
duke
parents:
diff changeset
935 case Bytecodes::_fdiv :
a61af66fc99e Initial load
duke
parents:
diff changeset
936 case Bytecodes::_frem :
a61af66fc99e Initial load
duke
parents:
diff changeset
937 current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
938 VerificationType::float_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
939 // fall through
a61af66fc99e Initial load
duke
parents:
diff changeset
940 case Bytecodes::_fneg :
a61af66fc99e Initial load
duke
parents:
diff changeset
941 current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
942 VerificationType::float_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
943 current_frame.push_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
944 VerificationType::float_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
945 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
946 case Bytecodes::_dadd :
a61af66fc99e Initial load
duke
parents:
diff changeset
947 case Bytecodes::_dsub :
a61af66fc99e Initial load
duke
parents:
diff changeset
948 case Bytecodes::_dmul :
a61af66fc99e Initial load
duke
parents:
diff changeset
949 case Bytecodes::_ddiv :
a61af66fc99e Initial load
duke
parents:
diff changeset
950 case Bytecodes::_drem :
a61af66fc99e Initial load
duke
parents:
diff changeset
951 current_frame.pop_stack_2(
a61af66fc99e Initial load
duke
parents:
diff changeset
952 VerificationType::double2_type(),
a61af66fc99e Initial load
duke
parents:
diff changeset
953 VerificationType::double_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
954 // fall through
a61af66fc99e Initial load
duke
parents:
diff changeset
955 case Bytecodes::_dneg :
a61af66fc99e Initial load
duke
parents:
diff changeset
956 current_frame.pop_stack_2(
a61af66fc99e Initial load
duke
parents:
diff changeset
957 VerificationType::double2_type(),
a61af66fc99e Initial load
duke
parents:
diff changeset
958 VerificationType::double_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
959 current_frame.push_stack_2(
a61af66fc99e Initial load
duke
parents:
diff changeset
960 VerificationType::double_type(),
a61af66fc99e Initial load
duke
parents:
diff changeset
961 VerificationType::double2_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
962 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
963 case Bytecodes::_iinc :
a61af66fc99e Initial load
duke
parents:
diff changeset
964 verify_iinc(bcs.get_index(), &current_frame, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
965 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
966 case Bytecodes::_i2l :
a61af66fc99e Initial load
duke
parents:
diff changeset
967 type = current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
968 VerificationType::integer_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
969 current_frame.push_stack_2(
a61af66fc99e Initial load
duke
parents:
diff changeset
970 VerificationType::long_type(),
a61af66fc99e Initial load
duke
parents:
diff changeset
971 VerificationType::long2_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
972 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
973 case Bytecodes::_l2i :
a61af66fc99e Initial load
duke
parents:
diff changeset
974 current_frame.pop_stack_2(
a61af66fc99e Initial load
duke
parents:
diff changeset
975 VerificationType::long2_type(),
a61af66fc99e Initial load
duke
parents:
diff changeset
976 VerificationType::long_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
977 current_frame.push_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
978 VerificationType::integer_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
979 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
980 case Bytecodes::_i2f :
a61af66fc99e Initial load
duke
parents:
diff changeset
981 current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
982 VerificationType::integer_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
983 current_frame.push_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
984 VerificationType::float_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
985 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
986 case Bytecodes::_i2d :
a61af66fc99e Initial load
duke
parents:
diff changeset
987 current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
988 VerificationType::integer_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
989 current_frame.push_stack_2(
a61af66fc99e Initial load
duke
parents:
diff changeset
990 VerificationType::double_type(),
a61af66fc99e Initial load
duke
parents:
diff changeset
991 VerificationType::double2_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
992 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
993 case Bytecodes::_l2f :
a61af66fc99e Initial load
duke
parents:
diff changeset
994 current_frame.pop_stack_2(
a61af66fc99e Initial load
duke
parents:
diff changeset
995 VerificationType::long2_type(),
a61af66fc99e Initial load
duke
parents:
diff changeset
996 VerificationType::long_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
997 current_frame.push_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
998 VerificationType::float_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
999 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1000 case Bytecodes::_l2d :
a61af66fc99e Initial load
duke
parents:
diff changeset
1001 current_frame.pop_stack_2(
a61af66fc99e Initial load
duke
parents:
diff changeset
1002 VerificationType::long2_type(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1003 VerificationType::long_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1004 current_frame.push_stack_2(
a61af66fc99e Initial load
duke
parents:
diff changeset
1005 VerificationType::double_type(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1006 VerificationType::double2_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1007 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1008 case Bytecodes::_f2i :
a61af66fc99e Initial load
duke
parents:
diff changeset
1009 current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
1010 VerificationType::float_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1011 current_frame.push_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
1012 VerificationType::integer_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1013 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1014 case Bytecodes::_f2l :
a61af66fc99e Initial load
duke
parents:
diff changeset
1015 current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
1016 VerificationType::float_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1017 current_frame.push_stack_2(
a61af66fc99e Initial load
duke
parents:
diff changeset
1018 VerificationType::long_type(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1019 VerificationType::long2_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1020 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1021 case Bytecodes::_f2d :
a61af66fc99e Initial load
duke
parents:
diff changeset
1022 current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
1023 VerificationType::float_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1024 current_frame.push_stack_2(
a61af66fc99e Initial load
duke
parents:
diff changeset
1025 VerificationType::double_type(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1026 VerificationType::double2_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1027 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1028 case Bytecodes::_d2i :
a61af66fc99e Initial load
duke
parents:
diff changeset
1029 current_frame.pop_stack_2(
a61af66fc99e Initial load
duke
parents:
diff changeset
1030 VerificationType::double2_type(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1031 VerificationType::double_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1032 current_frame.push_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
1033 VerificationType::integer_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1034 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1035 case Bytecodes::_d2l :
a61af66fc99e Initial load
duke
parents:
diff changeset
1036 current_frame.pop_stack_2(
a61af66fc99e Initial load
duke
parents:
diff changeset
1037 VerificationType::double2_type(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1038 VerificationType::double_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1039 current_frame.push_stack_2(
a61af66fc99e Initial load
duke
parents:
diff changeset
1040 VerificationType::long_type(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1041 VerificationType::long2_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1042 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1043 case Bytecodes::_d2f :
a61af66fc99e Initial load
duke
parents:
diff changeset
1044 current_frame.pop_stack_2(
a61af66fc99e Initial load
duke
parents:
diff changeset
1045 VerificationType::double2_type(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1046 VerificationType::double_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1047 current_frame.push_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
1048 VerificationType::float_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1049 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1050 case Bytecodes::_i2b :
a61af66fc99e Initial load
duke
parents:
diff changeset
1051 case Bytecodes::_i2c :
a61af66fc99e Initial load
duke
parents:
diff changeset
1052 case Bytecodes::_i2s :
a61af66fc99e Initial load
duke
parents:
diff changeset
1053 current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
1054 VerificationType::integer_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1055 current_frame.push_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
1056 VerificationType::integer_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1057 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1058 case Bytecodes::_lcmp :
a61af66fc99e Initial load
duke
parents:
diff changeset
1059 current_frame.pop_stack_2(
a61af66fc99e Initial load
duke
parents:
diff changeset
1060 VerificationType::long2_type(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1061 VerificationType::long_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1062 current_frame.pop_stack_2(
a61af66fc99e Initial load
duke
parents:
diff changeset
1063 VerificationType::long2_type(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1064 VerificationType::long_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1065 current_frame.push_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
1066 VerificationType::integer_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1067 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1068 case Bytecodes::_fcmpl :
a61af66fc99e Initial load
duke
parents:
diff changeset
1069 case Bytecodes::_fcmpg :
a61af66fc99e Initial load
duke
parents:
diff changeset
1070 current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
1071 VerificationType::float_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1072 current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
1073 VerificationType::float_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1074 current_frame.push_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
1075 VerificationType::integer_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1076 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1077 case Bytecodes::_dcmpl :
a61af66fc99e Initial load
duke
parents:
diff changeset
1078 case Bytecodes::_dcmpg :
a61af66fc99e Initial load
duke
parents:
diff changeset
1079 current_frame.pop_stack_2(
a61af66fc99e Initial load
duke
parents:
diff changeset
1080 VerificationType::double2_type(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1081 VerificationType::double_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1082 current_frame.pop_stack_2(
a61af66fc99e Initial load
duke
parents:
diff changeset
1083 VerificationType::double2_type(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1084 VerificationType::double_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1085 current_frame.push_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
1086 VerificationType::integer_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1087 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1088 case Bytecodes::_if_icmpeq:
a61af66fc99e Initial load
duke
parents:
diff changeset
1089 case Bytecodes::_if_icmpne:
a61af66fc99e Initial load
duke
parents:
diff changeset
1090 case Bytecodes::_if_icmplt:
a61af66fc99e Initial load
duke
parents:
diff changeset
1091 case Bytecodes::_if_icmpge:
a61af66fc99e Initial load
duke
parents:
diff changeset
1092 case Bytecodes::_if_icmpgt:
a61af66fc99e Initial load
duke
parents:
diff changeset
1093 case Bytecodes::_if_icmple:
a61af66fc99e Initial load
duke
parents:
diff changeset
1094 current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
1095 VerificationType::integer_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1096 // fall through
a61af66fc99e Initial load
duke
parents:
diff changeset
1097 case Bytecodes::_ifeq:
a61af66fc99e Initial load
duke
parents:
diff changeset
1098 case Bytecodes::_ifne:
a61af66fc99e Initial load
duke
parents:
diff changeset
1099 case Bytecodes::_iflt:
a61af66fc99e Initial load
duke
parents:
diff changeset
1100 case Bytecodes::_ifge:
a61af66fc99e Initial load
duke
parents:
diff changeset
1101 case Bytecodes::_ifgt:
a61af66fc99e Initial load
duke
parents:
diff changeset
1102 case Bytecodes::_ifle:
a61af66fc99e Initial load
duke
parents:
diff changeset
1103 current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
1104 VerificationType::integer_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1105 target = bcs.dest();
a61af66fc99e Initial load
duke
parents:
diff changeset
1106 stackmap_table.check_jump_target(
a61af66fc99e Initial load
duke
parents:
diff changeset
1107 &current_frame, target, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1108 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1109 case Bytecodes::_if_acmpeq :
a61af66fc99e Initial load
duke
parents:
diff changeset
1110 case Bytecodes::_if_acmpne :
a61af66fc99e Initial load
duke
parents:
diff changeset
1111 current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
1112 VerificationType::reference_check(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1113 // fall through
a61af66fc99e Initial load
duke
parents:
diff changeset
1114 case Bytecodes::_ifnull :
a61af66fc99e Initial load
duke
parents:
diff changeset
1115 case Bytecodes::_ifnonnull :
a61af66fc99e Initial load
duke
parents:
diff changeset
1116 current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
1117 VerificationType::reference_check(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1118 target = bcs.dest();
a61af66fc99e Initial load
duke
parents:
diff changeset
1119 stackmap_table.check_jump_target
a61af66fc99e Initial load
duke
parents:
diff changeset
1120 (&current_frame, target, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1121 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1122 case Bytecodes::_goto :
a61af66fc99e Initial load
duke
parents:
diff changeset
1123 target = bcs.dest();
a61af66fc99e Initial load
duke
parents:
diff changeset
1124 stackmap_table.check_jump_target(
a61af66fc99e Initial load
duke
parents:
diff changeset
1125 &current_frame, target, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1126 no_control_flow = true; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1127 case Bytecodes::_goto_w :
a61af66fc99e Initial load
duke
parents:
diff changeset
1128 target = bcs.dest_w();
a61af66fc99e Initial load
duke
parents:
diff changeset
1129 stackmap_table.check_jump_target(
a61af66fc99e Initial load
duke
parents:
diff changeset
1130 &current_frame, target, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1131 no_control_flow = true; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1132 case Bytecodes::_tableswitch :
a61af66fc99e Initial load
duke
parents:
diff changeset
1133 case Bytecodes::_lookupswitch :
a61af66fc99e Initial load
duke
parents:
diff changeset
1134 verify_switch(
a61af66fc99e Initial load
duke
parents:
diff changeset
1135 &bcs, code_length, code_data, &current_frame,
a61af66fc99e Initial load
duke
parents:
diff changeset
1136 &stackmap_table, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1137 no_control_flow = true; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1138 case Bytecodes::_ireturn :
a61af66fc99e Initial load
duke
parents:
diff changeset
1139 type = current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
1140 VerificationType::integer_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1141 verify_return_value(return_type, type, bci, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1142 no_control_flow = true; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1143 case Bytecodes::_lreturn :
a61af66fc99e Initial load
duke
parents:
diff changeset
1144 type2 = current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
1145 VerificationType::long2_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1146 type = current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
1147 VerificationType::long_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1148 verify_return_value(return_type, type, bci, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1149 no_control_flow = true; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1150 case Bytecodes::_freturn :
a61af66fc99e Initial load
duke
parents:
diff changeset
1151 type = current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
1152 VerificationType::float_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1153 verify_return_value(return_type, type, bci, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1154 no_control_flow = true; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1155 case Bytecodes::_dreturn :
a61af66fc99e Initial load
duke
parents:
diff changeset
1156 type2 = current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
1157 VerificationType::double2_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1158 type = current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
1159 VerificationType::double_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1160 verify_return_value(return_type, type, bci, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1161 no_control_flow = true; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1162 case Bytecodes::_areturn :
a61af66fc99e Initial load
duke
parents:
diff changeset
1163 type = current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
1164 VerificationType::reference_check(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1165 verify_return_value(return_type, type, bci, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1166 no_control_flow = true; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1167 case Bytecodes::_return :
a61af66fc99e Initial load
duke
parents:
diff changeset
1168 if (return_type != VerificationType::bogus_type()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1169 verify_error(bci, "Method expects no return value");
a61af66fc99e Initial load
duke
parents:
diff changeset
1170 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1171 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1172 // Make sure "this" has been initialized if current method is an
a61af66fc99e Initial load
duke
parents:
diff changeset
1173 // <init>
a61af66fc99e Initial load
duke
parents:
diff changeset
1174 if (_method->name() == vmSymbols::object_initializer_name() &&
a61af66fc99e Initial load
duke
parents:
diff changeset
1175 current_frame.flag_this_uninit()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1176 verify_error(bci,
a61af66fc99e Initial load
duke
parents:
diff changeset
1177 "Constructor must call super() or this() before return");
a61af66fc99e Initial load
duke
parents:
diff changeset
1178 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1179 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1180 no_control_flow = true; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1181 case Bytecodes::_getstatic :
a61af66fc99e Initial load
duke
parents:
diff changeset
1182 case Bytecodes::_putstatic :
a61af66fc99e Initial load
duke
parents:
diff changeset
1183 case Bytecodes::_getfield :
a61af66fc99e Initial load
duke
parents:
diff changeset
1184 case Bytecodes::_putfield :
a61af66fc99e Initial load
duke
parents:
diff changeset
1185 verify_field_instructions(
a61af66fc99e Initial load
duke
parents:
diff changeset
1186 &bcs, &current_frame, cp, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1187 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1188 case Bytecodes::_invokevirtual :
a61af66fc99e Initial load
duke
parents:
diff changeset
1189 case Bytecodes::_invokespecial :
a61af66fc99e Initial load
duke
parents:
diff changeset
1190 case Bytecodes::_invokestatic :
a61af66fc99e Initial load
duke
parents:
diff changeset
1191 verify_invoke_instructions(
a61af66fc99e Initial load
duke
parents:
diff changeset
1192 &bcs, code_length, &current_frame,
a61af66fc99e Initial load
duke
parents:
diff changeset
1193 &this_uninit, return_type, cp, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1194 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1195 case Bytecodes::_invokeinterface :
726
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 431
diff changeset
1196 case Bytecodes::_invokedynamic :
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1197 verify_invoke_instructions(
a61af66fc99e Initial load
duke
parents:
diff changeset
1198 &bcs, code_length, &current_frame,
a61af66fc99e Initial load
duke
parents:
diff changeset
1199 &this_uninit, return_type, cp, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1200 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1201 case Bytecodes::_new :
a61af66fc99e Initial load
duke
parents:
diff changeset
1202 {
1565
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1142
diff changeset
1203 index = bcs.get_index_u2();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1204 verify_cp_class_type(index, cp, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1205 VerificationType new_class_type =
a61af66fc99e Initial load
duke
parents:
diff changeset
1206 cp_index_to_type(index, cp, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1207 if (!new_class_type.is_object()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1208 verify_error(bci, "Illegal new instruction");
a61af66fc99e Initial load
duke
parents:
diff changeset
1209 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1210 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1211 type = VerificationType::uninitialized_type(bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
1212 current_frame.push_stack(type, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1213 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1214 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1215 case Bytecodes::_newarray :
a61af66fc99e Initial load
duke
parents:
diff changeset
1216 type = get_newarray_type(bcs.get_index(), bci, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1217 current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
1218 VerificationType::integer_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1219 current_frame.push_stack(type, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1220 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1221 case Bytecodes::_anewarray :
a61af66fc99e Initial load
duke
parents:
diff changeset
1222 verify_anewarray(
1565
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1142
diff changeset
1223 bcs.get_index_u2(), cp, &current_frame, CHECK_VERIFY(this));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1224 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1225 case Bytecodes::_arraylength :
a61af66fc99e Initial load
duke
parents:
diff changeset
1226 type = current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
1227 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
1228 if (!(type.is_null() || type.is_array())) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1229 verify_error(bci, bad_type_msg, "arraylength");
a61af66fc99e Initial load
duke
parents:
diff changeset
1230 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1231 current_frame.push_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
1232 VerificationType::integer_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1233 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1234 case Bytecodes::_checkcast :
a61af66fc99e Initial load
duke
parents:
diff changeset
1235 {
1565
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1142
diff changeset
1236 index = bcs.get_index_u2();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1237 verify_cp_class_type(index, cp, CHECK_VERIFY(this));
1955
1070423b51f3 6865028: Illegal instructions passing verification prior to 'invokespecial Object.<init>'
kamg
parents: 1678
diff changeset
1238 current_frame.pop_stack(object_type(), CHECK_VERIFY(this));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1239 VerificationType klass_type = cp_index_to_type(
a61af66fc99e Initial load
duke
parents:
diff changeset
1240 index, cp, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1241 current_frame.push_stack(klass_type, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1242 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1243 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1244 case Bytecodes::_instanceof : {
1565
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1142
diff changeset
1245 index = bcs.get_index_u2();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1246 verify_cp_class_type(index, cp, CHECK_VERIFY(this));
1955
1070423b51f3 6865028: Illegal instructions passing verification prior to 'invokespecial Object.<init>'
kamg
parents: 1678
diff changeset
1247 current_frame.pop_stack(object_type(), CHECK_VERIFY(this));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1248 current_frame.push_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
1249 VerificationType::integer_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1250 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1251 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1252 case Bytecodes::_monitorenter :
a61af66fc99e Initial load
duke
parents:
diff changeset
1253 case Bytecodes::_monitorexit :
a61af66fc99e Initial load
duke
parents:
diff changeset
1254 current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
1255 VerificationType::reference_check(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1256 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1257 case Bytecodes::_multianewarray :
a61af66fc99e Initial load
duke
parents:
diff changeset
1258 {
1565
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1142
diff changeset
1259 index = bcs.get_index_u2();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1260 u2 dim = *(bcs.bcp()+3);
a61af66fc99e Initial load
duke
parents:
diff changeset
1261 verify_cp_class_type(index, cp, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1262 VerificationType new_array_type =
a61af66fc99e Initial load
duke
parents:
diff changeset
1263 cp_index_to_type(index, cp, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1264 if (!new_array_type.is_array()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1265 verify_error(bci,
a61af66fc99e Initial load
duke
parents:
diff changeset
1266 "Illegal constant pool index in multianewarray instruction");
a61af66fc99e Initial load
duke
parents:
diff changeset
1267 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1268 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1269 if (dim < 1 || new_array_type.dimensions() < dim) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1270 verify_error(bci,
a61af66fc99e Initial load
duke
parents:
diff changeset
1271 "Illegal dimension in multianewarray instruction");
a61af66fc99e Initial load
duke
parents:
diff changeset
1272 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1273 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1274 for (int i = 0; i < dim; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1275 current_frame.pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
1276 VerificationType::integer_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1277 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1278 current_frame.push_stack(new_array_type, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1279 no_control_flow = false; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1280 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1281 case Bytecodes::_athrow :
a61af66fc99e Initial load
duke
parents:
diff changeset
1282 type = VerificationType::reference_type(
a61af66fc99e Initial load
duke
parents:
diff changeset
1283 vmSymbols::java_lang_Throwable());
a61af66fc99e Initial load
duke
parents:
diff changeset
1284 current_frame.pop_stack(type, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1285 no_control_flow = true; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1286 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
1287 // We only need to check the valid bytecodes in class file.
a61af66fc99e Initial load
duke
parents:
diff changeset
1288 // And jsr and ret are not in the new class file format in JDK1.5.
a61af66fc99e Initial load
duke
parents:
diff changeset
1289 verify_error(bci, "Bad instruction");
a61af66fc99e Initial load
duke
parents:
diff changeset
1290 no_control_flow = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
1291 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1292 } // end switch
a61af66fc99e Initial load
duke
parents:
diff changeset
1293 } // end Merge with the next instruction
a61af66fc99e Initial load
duke
parents:
diff changeset
1294
a61af66fc99e Initial load
duke
parents:
diff changeset
1295 // Look for possible jump target in exception handlers and see if it
a61af66fc99e Initial load
duke
parents:
diff changeset
1296 // matches current_frame
a61af66fc99e Initial load
duke
parents:
diff changeset
1297 if (bci >= ex_min && bci < ex_max) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1298 verify_exception_handler_targets(
a61af66fc99e Initial load
duke
parents:
diff changeset
1299 bci, this_uninit, &current_frame, &stackmap_table, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1300 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1301 } // end while
a61af66fc99e Initial load
duke
parents:
diff changeset
1302
a61af66fc99e Initial load
duke
parents:
diff changeset
1303 // Make sure that control flow does not fall through end of the method
a61af66fc99e Initial load
duke
parents:
diff changeset
1304 if (!no_control_flow) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1305 verify_error(code_length, "Control flow falls through code end");
a61af66fc99e Initial load
duke
parents:
diff changeset
1306 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1307 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1308 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1309
a61af66fc99e Initial load
duke
parents:
diff changeset
1310 char* ClassVerifier::generate_code_data(methodHandle m, u4 code_length, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1311 char* code_data = NEW_RESOURCE_ARRAY(char, code_length);
a61af66fc99e Initial load
duke
parents:
diff changeset
1312 memset(code_data, 0, sizeof(char) * code_length);
a61af66fc99e Initial load
duke
parents:
diff changeset
1313 RawBytecodeStream bcs(m);
a61af66fc99e Initial load
duke
parents:
diff changeset
1314
a61af66fc99e Initial load
duke
parents:
diff changeset
1315 while (!bcs.is_last_bytecode()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1316 if (bcs.raw_next() != Bytecodes::_illegal) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1317 int bci = bcs.bci();
1565
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1142
diff changeset
1318 if (bcs.raw_code() == Bytecodes::_new) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1319 code_data[bci] = NEW_OFFSET;
a61af66fc99e Initial load
duke
parents:
diff changeset
1320 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1321 code_data[bci] = BYTECODE_OFFSET;
a61af66fc99e Initial load
duke
parents:
diff changeset
1322 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1323 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1324 verify_error(bcs.bci(), "Bad instruction");
a61af66fc99e Initial load
duke
parents:
diff changeset
1325 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1326 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1327 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1328
a61af66fc99e Initial load
duke
parents:
diff changeset
1329 return code_data;
a61af66fc99e Initial load
duke
parents:
diff changeset
1330 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1331
a61af66fc99e Initial load
duke
parents:
diff changeset
1332 void ClassVerifier::verify_exception_handler_table(u4 code_length, char* code_data, int& min, int& max, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1333 typeArrayHandle exhandlers (THREAD, _method->exception_table());
a61af66fc99e Initial load
duke
parents:
diff changeset
1334 constantPoolHandle cp (THREAD, _method->constants());
a61af66fc99e Initial load
duke
parents:
diff changeset
1335
a61af66fc99e Initial load
duke
parents:
diff changeset
1336 if (exhandlers() != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1337 for(int i = 0; i < exhandlers->length();) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1338 u2 start_pc = exhandlers->int_at(i++);
a61af66fc99e Initial load
duke
parents:
diff changeset
1339 u2 end_pc = exhandlers->int_at(i++);
a61af66fc99e Initial load
duke
parents:
diff changeset
1340 u2 handler_pc = exhandlers->int_at(i++);
a61af66fc99e Initial load
duke
parents:
diff changeset
1341 if (start_pc >= code_length || code_data[start_pc] == 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1342 class_format_error("Illegal exception table start_pc %d", start_pc);
a61af66fc99e Initial load
duke
parents:
diff changeset
1343 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1344 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1345 if (end_pc != code_length) { // special case: end_pc == code_length
a61af66fc99e Initial load
duke
parents:
diff changeset
1346 if (end_pc > code_length || code_data[end_pc] == 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1347 class_format_error("Illegal exception table end_pc %d", end_pc);
a61af66fc99e Initial load
duke
parents:
diff changeset
1348 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1349 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1350 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1351 if (handler_pc >= code_length || code_data[handler_pc] == 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1352 class_format_error("Illegal exception table handler_pc %d", handler_pc);
a61af66fc99e Initial load
duke
parents:
diff changeset
1353 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1354 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1355 int catch_type_index = exhandlers->int_at(i++);
a61af66fc99e Initial load
duke
parents:
diff changeset
1356 if (catch_type_index != 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1357 VerificationType catch_type = cp_index_to_type(
a61af66fc99e Initial load
duke
parents:
diff changeset
1358 catch_type_index, cp, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1359 VerificationType throwable =
a61af66fc99e Initial load
duke
parents:
diff changeset
1360 VerificationType::reference_type(vmSymbols::java_lang_Throwable());
a61af66fc99e Initial load
duke
parents:
diff changeset
1361 bool is_subclass = throwable.is_assignable_from(
a61af66fc99e Initial load
duke
parents:
diff changeset
1362 catch_type, current_class(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1363 if (!is_subclass) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1364 // 4286534: should throw VerifyError according to recent spec change
a61af66fc99e Initial load
duke
parents:
diff changeset
1365 verify_error(
a61af66fc99e Initial load
duke
parents:
diff changeset
1366 "Catch type is not a subclass of Throwable in handler %d",
a61af66fc99e Initial load
duke
parents:
diff changeset
1367 handler_pc);
a61af66fc99e Initial load
duke
parents:
diff changeset
1368 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1369 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1370 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1371 if (start_pc < min) min = start_pc;
a61af66fc99e Initial load
duke
parents:
diff changeset
1372 if (end_pc > max) max = end_pc;
a61af66fc99e Initial load
duke
parents:
diff changeset
1373 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1374 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1375 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1376
a61af66fc99e Initial load
duke
parents:
diff changeset
1377 void ClassVerifier::verify_local_variable_table(u4 code_length, char* code_data, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1378 int localvariable_table_length = _method()->localvariable_table_length();
a61af66fc99e Initial load
duke
parents:
diff changeset
1379 if (localvariable_table_length > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1380 LocalVariableTableElement* table = _method()->localvariable_table_start();
a61af66fc99e Initial load
duke
parents:
diff changeset
1381 for (int i = 0; i < localvariable_table_length; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1382 u2 start_bci = table[i].start_bci;
a61af66fc99e Initial load
duke
parents:
diff changeset
1383 u2 length = table[i].length;
a61af66fc99e Initial load
duke
parents:
diff changeset
1384
a61af66fc99e Initial load
duke
parents:
diff changeset
1385 if (start_bci >= code_length || code_data[start_bci] == 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1386 class_format_error(
a61af66fc99e Initial load
duke
parents:
diff changeset
1387 "Illegal local variable table start_pc %d", start_bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
1388 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1389 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1390 u4 end_bci = (u4)(start_bci + length);
a61af66fc99e Initial load
duke
parents:
diff changeset
1391 if (end_bci != code_length) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1392 if (end_bci >= code_length || code_data[end_bci] == 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1393 class_format_error( "Illegal local variable table length %d", length);
a61af66fc99e Initial load
duke
parents:
diff changeset
1394 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1395 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1396 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1397 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1398 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1399 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1400
a61af66fc99e Initial load
duke
parents:
diff changeset
1401 u2 ClassVerifier::verify_stackmap_table(u2 stackmap_index, u2 bci,
a61af66fc99e Initial load
duke
parents:
diff changeset
1402 StackMapFrame* current_frame,
a61af66fc99e Initial load
duke
parents:
diff changeset
1403 StackMapTable* stackmap_table,
a61af66fc99e Initial load
duke
parents:
diff changeset
1404 bool no_control_flow, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1405 if (stackmap_index < stackmap_table->get_frame_count()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1406 u2 this_offset = stackmap_table->get_offset(stackmap_index);
a61af66fc99e Initial load
duke
parents:
diff changeset
1407 if (no_control_flow && this_offset > bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1408 verify_error(bci, "Expecting a stack map frame");
a61af66fc99e Initial load
duke
parents:
diff changeset
1409 return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1410 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1411 if (this_offset == bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1412 // See if current stack map can be assigned to the frame in table.
a61af66fc99e Initial load
duke
parents:
diff changeset
1413 // current_frame is the stackmap frame got from the last instruction.
a61af66fc99e Initial load
duke
parents:
diff changeset
1414 // If matched, current_frame will be updated by this method.
a61af66fc99e Initial load
duke
parents:
diff changeset
1415 bool match = stackmap_table->match_stackmap(
a61af66fc99e Initial load
duke
parents:
diff changeset
1416 current_frame, this_offset, stackmap_index,
a61af66fc99e Initial load
duke
parents:
diff changeset
1417 !no_control_flow, true, CHECK_VERIFY_(this, 0));
a61af66fc99e Initial load
duke
parents:
diff changeset
1418 if (!match) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1419 // report type error
a61af66fc99e Initial load
duke
parents:
diff changeset
1420 verify_error(bci, "Instruction type does not match stack map");
a61af66fc99e Initial load
duke
parents:
diff changeset
1421 return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1422 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1423 stackmap_index++;
a61af66fc99e Initial load
duke
parents:
diff changeset
1424 } else if (this_offset < bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1425 // current_offset should have met this_offset.
a61af66fc99e Initial load
duke
parents:
diff changeset
1426 class_format_error("Bad stack map offset %d", this_offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
1427 return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1428 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1429 } else if (no_control_flow) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1430 verify_error(bci, "Expecting a stack map frame");
a61af66fc99e Initial load
duke
parents:
diff changeset
1431 return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1432 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1433 return stackmap_index;
a61af66fc99e Initial load
duke
parents:
diff changeset
1434 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1435
a61af66fc99e Initial load
duke
parents:
diff changeset
1436 void ClassVerifier::verify_exception_handler_targets(u2 bci, bool this_uninit, StackMapFrame* current_frame,
a61af66fc99e Initial load
duke
parents:
diff changeset
1437 StackMapTable* stackmap_table, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1438 constantPoolHandle cp (THREAD, _method->constants());
a61af66fc99e Initial load
duke
parents:
diff changeset
1439 typeArrayHandle exhandlers (THREAD, _method->exception_table());
a61af66fc99e Initial load
duke
parents:
diff changeset
1440 if (exhandlers() != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1441 for(int i = 0; i < exhandlers->length();) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1442 u2 start_pc = exhandlers->int_at(i++);
a61af66fc99e Initial load
duke
parents:
diff changeset
1443 u2 end_pc = exhandlers->int_at(i++);
a61af66fc99e Initial load
duke
parents:
diff changeset
1444 u2 handler_pc = exhandlers->int_at(i++);
a61af66fc99e Initial load
duke
parents:
diff changeset
1445 int catch_type_index = exhandlers->int_at(i++);
a61af66fc99e Initial load
duke
parents:
diff changeset
1446 if(bci >= start_pc && bci < end_pc) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1447 u1 flags = current_frame->flags();
a61af66fc99e Initial load
duke
parents:
diff changeset
1448 if (this_uninit) { flags |= FLAG_THIS_UNINIT; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1449
a61af66fc99e Initial load
duke
parents:
diff changeset
1450 ResourceMark rm(THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
1451 StackMapFrame* new_frame = current_frame->frame_in_exception_handler(flags);
a61af66fc99e Initial load
duke
parents:
diff changeset
1452 if (catch_type_index != 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1453 // We know that this index refers to a subclass of Throwable
a61af66fc99e Initial load
duke
parents:
diff changeset
1454 VerificationType catch_type = cp_index_to_type(
a61af66fc99e Initial load
duke
parents:
diff changeset
1455 catch_type_index, cp, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1456 new_frame->push_stack(catch_type, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1457 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1458 VerificationType throwable =
a61af66fc99e Initial load
duke
parents:
diff changeset
1459 VerificationType::reference_type(vmSymbols::java_lang_Throwable());
a61af66fc99e Initial load
duke
parents:
diff changeset
1460 new_frame->push_stack(throwable, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1461 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1462 bool match = stackmap_table->match_stackmap(
a61af66fc99e Initial load
duke
parents:
diff changeset
1463 new_frame, handler_pc, true, false, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1464 if (!match) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1465 verify_error(bci,
a61af66fc99e Initial load
duke
parents:
diff changeset
1466 "Stack map does not match the one at exception handler %d",
a61af66fc99e Initial load
duke
parents:
diff changeset
1467 handler_pc);
a61af66fc99e Initial load
duke
parents:
diff changeset
1468 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1469 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1470 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1471 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1472 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1473 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1474
a61af66fc99e Initial load
duke
parents:
diff changeset
1475 void ClassVerifier::verify_cp_index(constantPoolHandle cp, int index, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1476 int nconstants = cp->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
1477 if ((index <= 0) || (index >= nconstants)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1478 verify_error("Illegal constant pool index %d in class %s",
a61af66fc99e Initial load
duke
parents:
diff changeset
1479 index, instanceKlass::cast(cp->pool_holder())->external_name());
a61af66fc99e Initial load
duke
parents:
diff changeset
1480 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1481 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1482 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1483
a61af66fc99e Initial load
duke
parents:
diff changeset
1484 void ClassVerifier::verify_cp_type(
a61af66fc99e Initial load
duke
parents:
diff changeset
1485 int index, constantPoolHandle cp, unsigned int types, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1486
a61af66fc99e Initial load
duke
parents:
diff changeset
1487 // In some situations, bytecode rewriting may occur while we're verifying.
a61af66fc99e Initial load
duke
parents:
diff changeset
1488 // 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
1489 // instead. Be sure we don't pick up such indices by accident.
de91a2f25c7e 6956164: nightly regressions from 6939207
jrose
parents: 1565
diff changeset
1490 // We must check was_recursively_verified() before we get here.
de91a2f25c7e 6956164: nightly regressions from 6939207
jrose
parents: 1565
diff changeset
1491 guarantee(cp->cache() == NULL, "not rewritten yet");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1492
a61af66fc99e Initial load
duke
parents:
diff changeset
1493 verify_cp_index(cp, index, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1494 unsigned int tag = cp->tag_at(index).value();
a61af66fc99e Initial load
duke
parents:
diff changeset
1495 if ((types & (1 << tag)) == 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1496 verify_error(
a61af66fc99e Initial load
duke
parents:
diff changeset
1497 "Illegal type at constant pool entry %d in class %s",
a61af66fc99e Initial load
duke
parents:
diff changeset
1498 index, instanceKlass::cast(cp->pool_holder())->external_name());
a61af66fc99e Initial load
duke
parents:
diff changeset
1499 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1500 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1501 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1502
a61af66fc99e Initial load
duke
parents:
diff changeset
1503 void ClassVerifier::verify_cp_class_type(
a61af66fc99e Initial load
duke
parents:
diff changeset
1504 int index, constantPoolHandle cp, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1505 verify_cp_index(cp, index, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1506 constantTag tag = cp->tag_at(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
1507 if (!tag.is_klass() && !tag.is_unresolved_klass()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1508 verify_error("Illegal type at constant pool entry %d in class %s",
a61af66fc99e Initial load
duke
parents:
diff changeset
1509 index, instanceKlass::cast(cp->pool_holder())->external_name());
a61af66fc99e Initial load
duke
parents:
diff changeset
1510 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1511 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1512 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1513
a61af66fc99e Initial load
duke
parents:
diff changeset
1514 void ClassVerifier::format_error_message(
a61af66fc99e Initial load
duke
parents:
diff changeset
1515 const char* fmt, int offset, va_list va) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1516 ResourceMark rm(_thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
1517 stringStream message(_message, _message_buffer_len);
a61af66fc99e Initial load
duke
parents:
diff changeset
1518 message.vprint(fmt, va);
a61af66fc99e Initial load
duke
parents:
diff changeset
1519 if (!_method.is_null()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1520 message.print(" in method %s", _method->name_and_sig_as_C_string());
a61af66fc99e Initial load
duke
parents:
diff changeset
1521 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1522 if (offset != -1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1523 message.print(" at offset %d", offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
1524 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1525 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1526
a61af66fc99e Initial load
duke
parents:
diff changeset
1527 void ClassVerifier::verify_error(u2 offset, const char* fmt, ...) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1528 _exception_type = vmSymbols::java_lang_VerifyError();
a61af66fc99e Initial load
duke
parents:
diff changeset
1529 va_list va;
a61af66fc99e Initial load
duke
parents:
diff changeset
1530 va_start(va, fmt);
a61af66fc99e Initial load
duke
parents:
diff changeset
1531 format_error_message(fmt, offset, va);
a61af66fc99e Initial load
duke
parents:
diff changeset
1532 va_end(va);
a61af66fc99e Initial load
duke
parents:
diff changeset
1533 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1534
a61af66fc99e Initial load
duke
parents:
diff changeset
1535 void ClassVerifier::verify_error(const char* fmt, ...) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1536 _exception_type = vmSymbols::java_lang_VerifyError();
a61af66fc99e Initial load
duke
parents:
diff changeset
1537 va_list va;
a61af66fc99e Initial load
duke
parents:
diff changeset
1538 va_start(va, fmt);
a61af66fc99e Initial load
duke
parents:
diff changeset
1539 format_error_message(fmt, -1, va);
a61af66fc99e Initial load
duke
parents:
diff changeset
1540 va_end(va);
a61af66fc99e Initial load
duke
parents:
diff changeset
1541 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1542
a61af66fc99e Initial load
duke
parents:
diff changeset
1543 void ClassVerifier::class_format_error(const char* msg, ...) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1544 _exception_type = vmSymbols::java_lang_ClassFormatError();
a61af66fc99e Initial load
duke
parents:
diff changeset
1545 va_list va;
a61af66fc99e Initial load
duke
parents:
diff changeset
1546 va_start(va, msg);
a61af66fc99e Initial load
duke
parents:
diff changeset
1547 format_error_message(msg, -1, va);
a61af66fc99e Initial load
duke
parents:
diff changeset
1548 va_end(va);
a61af66fc99e Initial load
duke
parents:
diff changeset
1549 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1550
a61af66fc99e Initial load
duke
parents:
diff changeset
1551 klassOop ClassVerifier::load_class(symbolHandle name, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1552 // Get current loader and protection domain first.
a61af66fc99e Initial load
duke
parents:
diff changeset
1553 oop loader = current_class()->class_loader();
a61af66fc99e Initial load
duke
parents:
diff changeset
1554 oop protection_domain = current_class()->protection_domain();
a61af66fc99e Initial load
duke
parents:
diff changeset
1555
a61af66fc99e Initial load
duke
parents:
diff changeset
1556 return SystemDictionary::resolve_or_fail(
a61af66fc99e Initial load
duke
parents:
diff changeset
1557 name, Handle(THREAD, loader), Handle(THREAD, protection_domain),
a61af66fc99e Initial load
duke
parents:
diff changeset
1558 true, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1559 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1560
a61af66fc99e Initial load
duke
parents:
diff changeset
1561 bool ClassVerifier::is_protected_access(instanceKlassHandle this_class,
a61af66fc99e Initial load
duke
parents:
diff changeset
1562 klassOop target_class,
a61af66fc99e Initial load
duke
parents:
diff changeset
1563 symbolOop field_name,
a61af66fc99e Initial load
duke
parents:
diff changeset
1564 symbolOop field_sig,
a61af66fc99e Initial load
duke
parents:
diff changeset
1565 bool is_method) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1566 No_Safepoint_Verifier nosafepoint;
a61af66fc99e Initial load
duke
parents:
diff changeset
1567
a61af66fc99e Initial load
duke
parents:
diff changeset
1568 // 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
1569 if (!this_class->is_subclass_of(target_class)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1570 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
1571 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1572 // Check if the specified method or field is protected
a61af66fc99e Initial load
duke
parents:
diff changeset
1573 instanceKlass* target_instance = instanceKlass::cast(target_class);
a61af66fc99e Initial load
duke
parents:
diff changeset
1574 fieldDescriptor fd;
a61af66fc99e Initial load
duke
parents:
diff changeset
1575 if (is_method) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1576 methodOop m = target_instance->uncached_lookup_method(field_name, field_sig);
a61af66fc99e Initial load
duke
parents:
diff changeset
1577 if (m != NULL && m->is_protected()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1578 if (!this_class->is_same_class_package(m->method_holder())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1579 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1580 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1581 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1582 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1583 klassOop member_klass = target_instance->find_field(field_name, field_sig, &fd);
a61af66fc99e Initial load
duke
parents:
diff changeset
1584 if(member_klass != NULL && fd.is_protected()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1585 if (!this_class->is_same_class_package(member_klass)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1586 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1587 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1588 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1589 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1590 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
1591 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1592
a61af66fc99e Initial load
duke
parents:
diff changeset
1593 void ClassVerifier::verify_ldc(
a61af66fc99e Initial load
duke
parents:
diff changeset
1594 int opcode, u2 index, StackMapFrame *current_frame,
a61af66fc99e Initial load
duke
parents:
diff changeset
1595 constantPoolHandle cp, u2 bci, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1596 verify_cp_index(cp, index, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1597 constantTag tag = cp->tag_at(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
1598 unsigned int types;
a61af66fc99e Initial load
duke
parents:
diff changeset
1599 if (opcode == Bytecodes::_ldc || opcode == Bytecodes::_ldc_w) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1600 if (!tag.is_unresolved_string() && !tag.is_unresolved_klass()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1601 types = (1 << JVM_CONSTANT_Integer) | (1 << JVM_CONSTANT_Float)
1602
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
1602 | (1 << JVM_CONSTANT_String) | (1 << JVM_CONSTANT_Class)
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
1603 | (1 << JVM_CONSTANT_MethodHandle) | (1 << JVM_CONSTANT_MethodType);
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
1604 // Note: The class file parser already verified the legality of
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
1605 // MethodHandle and MethodType constants.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1606 verify_cp_type(index, cp, types, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1607 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1608 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1609 assert(opcode == Bytecodes::_ldc2_w, "must be ldc2_w");
a61af66fc99e Initial load
duke
parents:
diff changeset
1610 types = (1 << JVM_CONSTANT_Double) | (1 << JVM_CONSTANT_Long);
a61af66fc99e Initial load
duke
parents:
diff changeset
1611 verify_cp_type(index, cp, types, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1612 }
431
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 196
diff changeset
1613 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
1614 current_frame->push_stack(object_type(), CHECK_VERIFY(this));
431
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 196
diff changeset
1615 } else if (tag.is_string() || tag.is_unresolved_string()) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1616 current_frame->push_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
1617 VerificationType::reference_type(
a61af66fc99e Initial load
duke
parents:
diff changeset
1618 vmSymbols::java_lang_String()), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1619 } else if (tag.is_klass() || tag.is_unresolved_klass()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1620 current_frame->push_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
1621 VerificationType::reference_type(
a61af66fc99e Initial load
duke
parents:
diff changeset
1622 vmSymbols::java_lang_Class()), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1623 } else if (tag.is_int()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1624 current_frame->push_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
1625 VerificationType::integer_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1626 } else if (tag.is_float()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1627 current_frame->push_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
1628 VerificationType::float_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1629 } else if (tag.is_double()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1630 current_frame->push_stack_2(
a61af66fc99e Initial load
duke
parents:
diff changeset
1631 VerificationType::double_type(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1632 VerificationType::double2_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1633 } else if (tag.is_long()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1634 current_frame->push_stack_2(
a61af66fc99e Initial load
duke
parents:
diff changeset
1635 VerificationType::long_type(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1636 VerificationType::long2_type(), CHECK_VERIFY(this));
1602
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
1637 } else if (tag.is_method_handle()) {
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
1638 current_frame->push_stack(
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
1639 VerificationType::reference_type(
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
1640 vmSymbols::java_dyn_MethodHandle()), CHECK_VERIFY(this));
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
1641 } else if (tag.is_method_type()) {
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
1642 current_frame->push_stack(
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
1643 VerificationType::reference_type(
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
1644 vmSymbols::java_dyn_MethodType()), CHECK_VERIFY(this));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1645 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1646 verify_error(bci, "Invalid index in ldc");
a61af66fc99e Initial load
duke
parents:
diff changeset
1647 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1648 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1649 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1650
a61af66fc99e Initial load
duke
parents:
diff changeset
1651 void ClassVerifier::verify_switch(
a61af66fc99e Initial load
duke
parents:
diff changeset
1652 RawBytecodeStream* bcs, u4 code_length, char* code_data,
a61af66fc99e Initial load
duke
parents:
diff changeset
1653 StackMapFrame* current_frame, StackMapTable* stackmap_table, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1654 int bci = bcs->bci();
a61af66fc99e Initial load
duke
parents:
diff changeset
1655 address bcp = bcs->bcp();
a61af66fc99e Initial load
duke
parents:
diff changeset
1656 address aligned_bcp = (address) round_to((intptr_t)(bcp + 1), jintSize);
a61af66fc99e Initial load
duke
parents:
diff changeset
1657
a61af66fc99e Initial load
duke
parents:
diff changeset
1658 // 4639449 & 4647081: padding bytes must be 0
a61af66fc99e Initial load
duke
parents:
diff changeset
1659 u2 padding_offset = 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
1660 while ((bcp + padding_offset) < aligned_bcp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1661 if(*(bcp + padding_offset) != 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1662 verify_error(bci, "Nonzero padding byte in lookswitch or tableswitch");
a61af66fc99e Initial load
duke
parents:
diff changeset
1663 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1664 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1665 padding_offset++;
a61af66fc99e Initial load
duke
parents:
diff changeset
1666 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1667 int default_offset = (int) Bytes::get_Java_u4(aligned_bcp);
a61af66fc99e Initial load
duke
parents:
diff changeset
1668 int keys, delta;
a61af66fc99e Initial load
duke
parents:
diff changeset
1669 current_frame->pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
1670 VerificationType::integer_type(), CHECK_VERIFY(this));
1565
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1142
diff changeset
1671 if (bcs->raw_code() == Bytecodes::_tableswitch) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1672 jint low = (jint)Bytes::get_Java_u4(aligned_bcp + jintSize);
a61af66fc99e Initial load
duke
parents:
diff changeset
1673 jint high = (jint)Bytes::get_Java_u4(aligned_bcp + 2*jintSize);
a61af66fc99e Initial load
duke
parents:
diff changeset
1674 if (low > high) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1675 verify_error(bci,
a61af66fc99e Initial load
duke
parents:
diff changeset
1676 "low must be less than or equal to high in tableswitch");
a61af66fc99e Initial load
duke
parents:
diff changeset
1677 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1678 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1679 keys = high - low + 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
1680 if (keys < 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1681 verify_error(bci, "too many keys in tableswitch");
a61af66fc99e Initial load
duke
parents:
diff changeset
1682 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1683 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1684 delta = 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
1685 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1686 keys = (int)Bytes::get_Java_u4(aligned_bcp + jintSize);
a61af66fc99e Initial load
duke
parents:
diff changeset
1687 if (keys < 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1688 verify_error(bci, "number of keys in lookupswitch less than 0");
a61af66fc99e Initial load
duke
parents:
diff changeset
1689 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1690 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1691 delta = 2;
a61af66fc99e Initial load
duke
parents:
diff changeset
1692 // Make sure that the lookupswitch items are sorted
a61af66fc99e Initial load
duke
parents:
diff changeset
1693 for (int i = 0; i < (keys - 1); i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1694 jint this_key = Bytes::get_Java_u4(aligned_bcp + (2+2*i)*jintSize);
a61af66fc99e Initial load
duke
parents:
diff changeset
1695 jint next_key = Bytes::get_Java_u4(aligned_bcp + (2+2*i+2)*jintSize);
a61af66fc99e Initial load
duke
parents:
diff changeset
1696 if (this_key >= next_key) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1697 verify_error(bci, "Bad lookupswitch instruction");
a61af66fc99e Initial load
duke
parents:
diff changeset
1698 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1699 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1700 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1701 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1702 int target = bci + default_offset;
a61af66fc99e Initial load
duke
parents:
diff changeset
1703 stackmap_table->check_jump_target(current_frame, target, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1704 for (int i = 0; i < keys; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1705 target = bci + (jint)Bytes::get_Java_u4(aligned_bcp+(3+i*delta)*jintSize);
a61af66fc99e Initial load
duke
parents:
diff changeset
1706 stackmap_table->check_jump_target(
a61af66fc99e Initial load
duke
parents:
diff changeset
1707 current_frame, target, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1708 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1709 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1710
a61af66fc99e Initial load
duke
parents:
diff changeset
1711 bool ClassVerifier::name_in_supers(
a61af66fc99e Initial load
duke
parents:
diff changeset
1712 symbolOop ref_name, instanceKlassHandle current) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1713 klassOop super = current->super();
a61af66fc99e Initial load
duke
parents:
diff changeset
1714 while (super != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1715 if (super->klass_part()->name() == ref_name) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1716 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1717 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1718 super = super->klass_part()->super();
a61af66fc99e Initial load
duke
parents:
diff changeset
1719 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1720 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
1721 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1722
a61af66fc99e Initial load
duke
parents:
diff changeset
1723 void ClassVerifier::verify_field_instructions(RawBytecodeStream* bcs,
a61af66fc99e Initial load
duke
parents:
diff changeset
1724 StackMapFrame* current_frame,
a61af66fc99e Initial load
duke
parents:
diff changeset
1725 constantPoolHandle cp,
a61af66fc99e Initial load
duke
parents:
diff changeset
1726 TRAPS) {
1565
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1142
diff changeset
1727 u2 index = bcs->get_index_u2();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1728 verify_cp_type(index, cp, 1 << JVM_CONSTANT_Fieldref, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1729
a61af66fc99e Initial load
duke
parents:
diff changeset
1730 // Get field name and signature
a61af66fc99e Initial load
duke
parents:
diff changeset
1731 symbolHandle field_name = symbolHandle(THREAD, cp->name_ref_at(index));
a61af66fc99e Initial load
duke
parents:
diff changeset
1732 symbolHandle field_sig = symbolHandle(THREAD, cp->signature_ref_at(index));
a61af66fc99e Initial load
duke
parents:
diff changeset
1733
a61af66fc99e Initial load
duke
parents:
diff changeset
1734 if (!SignatureVerifier::is_valid_type_signature(field_sig)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1735 class_format_error(
a61af66fc99e Initial load
duke
parents:
diff changeset
1736 "Invalid signature for field in class %s referenced "
a61af66fc99e Initial load
duke
parents:
diff changeset
1737 "from constant pool index %d", _klass->external_name(), index);
a61af66fc99e Initial load
duke
parents:
diff changeset
1738 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1739 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1740
a61af66fc99e Initial load
duke
parents:
diff changeset
1741 // Get referenced class type
a61af66fc99e Initial load
duke
parents:
diff changeset
1742 VerificationType ref_class_type = cp_ref_index_to_type(
a61af66fc99e Initial load
duke
parents:
diff changeset
1743 index, cp, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1744 if (!ref_class_type.is_object()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1745 verify_error(
a61af66fc99e Initial load
duke
parents:
diff changeset
1746 "Expecting reference to class in class %s at constant pool index %d",
a61af66fc99e Initial load
duke
parents:
diff changeset
1747 _klass->external_name(), index);
a61af66fc99e Initial load
duke
parents:
diff changeset
1748 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1749 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1750 VerificationType target_class_type = ref_class_type;
a61af66fc99e Initial load
duke
parents:
diff changeset
1751
a61af66fc99e Initial load
duke
parents:
diff changeset
1752 assert(sizeof(VerificationType) == sizeof(uintptr_t),
a61af66fc99e Initial load
duke
parents:
diff changeset
1753 "buffer type must match VerificationType size");
a61af66fc99e Initial load
duke
parents:
diff changeset
1754 uintptr_t field_type_buffer[2];
a61af66fc99e Initial load
duke
parents:
diff changeset
1755 VerificationType* field_type = (VerificationType*)field_type_buffer;
a61af66fc99e Initial load
duke
parents:
diff changeset
1756 // If we make a VerificationType[2] array directly, the compiler calls
a61af66fc99e Initial load
duke
parents:
diff changeset
1757 // to the c-runtime library to do the allocation instead of just
a61af66fc99e Initial load
duke
parents:
diff changeset
1758 // stack allocating it. Plus it would run constructors. This shows up
a61af66fc99e Initial load
duke
parents:
diff changeset
1759 // in performance profiles.
a61af66fc99e Initial load
duke
parents:
diff changeset
1760
a61af66fc99e Initial load
duke
parents:
diff changeset
1761 SignatureStream sig_stream(field_sig, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
1762 VerificationType stack_object_type;
a61af66fc99e Initial load
duke
parents:
diff changeset
1763 int n = change_sig_to_verificationType(
a61af66fc99e Initial load
duke
parents:
diff changeset
1764 &sig_stream, field_type, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1765 u2 bci = bcs->bci();
a61af66fc99e Initial load
duke
parents:
diff changeset
1766 bool is_assignable;
1565
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1142
diff changeset
1767 switch (bcs->raw_code()) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1768 case Bytecodes::_getstatic: {
a61af66fc99e Initial load
duke
parents:
diff changeset
1769 for (int i = 0; i < n; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1770 current_frame->push_stack(field_type[i], CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1771 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1772 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1773 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1774 case Bytecodes::_putstatic: {
a61af66fc99e Initial load
duke
parents:
diff changeset
1775 for (int i = n - 1; i >= 0; i--) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1776 current_frame->pop_stack(field_type[i], CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1777 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1778 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1779 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1780 case Bytecodes::_getfield: {
a61af66fc99e Initial load
duke
parents:
diff changeset
1781 stack_object_type = current_frame->pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
1782 target_class_type, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1783 for (int i = 0; i < n; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1784 current_frame->push_stack(field_type[i], CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1785 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1786 goto check_protected;
a61af66fc99e Initial load
duke
parents:
diff changeset
1787 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1788 case Bytecodes::_putfield: {
a61af66fc99e Initial load
duke
parents:
diff changeset
1789 for (int i = n - 1; i >= 0; i--) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1790 current_frame->pop_stack(field_type[i], CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1791 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1792 stack_object_type = current_frame->pop_stack(CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1793
a61af66fc99e Initial load
duke
parents:
diff changeset
1794 // The JVMS 2nd edition allows field initialization before the superclass
a61af66fc99e Initial load
duke
parents:
diff changeset
1795 // initializer, if the field is defined within the current class.
a61af66fc99e Initial load
duke
parents:
diff changeset
1796 fieldDescriptor fd;
a61af66fc99e Initial load
duke
parents:
diff changeset
1797 if (stack_object_type == VerificationType::uninitialized_this_type() &&
a61af66fc99e Initial load
duke
parents:
diff changeset
1798 target_class_type.equals(current_type()) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
1799 _klass->find_local_field(field_name(), field_sig(), &fd)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1800 stack_object_type = current_type();
a61af66fc99e Initial load
duke
parents:
diff changeset
1801 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1802 is_assignable = target_class_type.is_assignable_from(
a61af66fc99e Initial load
duke
parents:
diff changeset
1803 stack_object_type, current_class(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1804 if (!is_assignable) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1805 verify_error(bci, "Bad type on operand stack in putfield");
a61af66fc99e Initial load
duke
parents:
diff changeset
1806 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1807 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1808 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1809 check_protected: {
a61af66fc99e Initial load
duke
parents:
diff changeset
1810 if (_this_type == stack_object_type)
a61af66fc99e Initial load
duke
parents:
diff changeset
1811 break; // stack_object_type must be assignable to _current_class_type
a61af66fc99e Initial load
duke
parents:
diff changeset
1812 symbolHandle ref_class_name = symbolHandle(THREAD,
a61af66fc99e Initial load
duke
parents:
diff changeset
1813 cp->klass_name_at(cp->klass_ref_index_at(index)));
a61af66fc99e Initial load
duke
parents:
diff changeset
1814 if (!name_in_supers(ref_class_name(), current_class()))
a61af66fc99e Initial load
duke
parents:
diff changeset
1815 // stack_object_type must be assignable to _current_class_type since:
a61af66fc99e Initial load
duke
parents:
diff changeset
1816 // 1. stack_object_type must be assignable to ref_class.
a61af66fc99e Initial load
duke
parents:
diff changeset
1817 // 2. ref_class must be _current_class or a subclass of it. It can't
a61af66fc99e Initial load
duke
parents:
diff changeset
1818 // be a superclass of it. See revised JVMS 5.4.4.
a61af66fc99e Initial load
duke
parents:
diff changeset
1819 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1820
a61af66fc99e Initial load
duke
parents:
diff changeset
1821 klassOop ref_class_oop = load_class(ref_class_name, CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
1822 if (is_protected_access(current_class(), ref_class_oop, field_name(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1823 field_sig(), false)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1824 // It's protected access, check if stack object is assignable to
a61af66fc99e Initial load
duke
parents:
diff changeset
1825 // current class.
a61af66fc99e Initial load
duke
parents:
diff changeset
1826 is_assignable = current_type().is_assignable_from(
a61af66fc99e Initial load
duke
parents:
diff changeset
1827 stack_object_type, current_class(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1828 if (!is_assignable) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1829 verify_error(bci, "Bad access to protected data in getfield");
a61af66fc99e Initial load
duke
parents:
diff changeset
1830 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1831 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1832 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1833 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1834 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1835 default: ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
1836 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1837 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1838
a61af66fc99e Initial load
duke
parents:
diff changeset
1839 void ClassVerifier::verify_invoke_init(
a61af66fc99e Initial load
duke
parents:
diff changeset
1840 RawBytecodeStream* bcs, VerificationType ref_class_type,
a61af66fc99e Initial load
duke
parents:
diff changeset
1841 StackMapFrame* current_frame, u4 code_length, bool *this_uninit,
a61af66fc99e Initial load
duke
parents:
diff changeset
1842 constantPoolHandle cp, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1843 u2 bci = bcs->bci();
a61af66fc99e Initial load
duke
parents:
diff changeset
1844 VerificationType type = current_frame->pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
1845 VerificationType::reference_check(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1846 if (type == VerificationType::uninitialized_this_type()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1847 // The method must be an <init> method of either this class, or one of its
a61af66fc99e Initial load
duke
parents:
diff changeset
1848 // superclasses
1677
a5c9d63a187d 6964170: Verifier crashes
apangin
parents: 1602
diff changeset
1849 if (ref_class_type.name() != current_class()->name() &&
a5c9d63a187d 6964170: Verifier crashes
apangin
parents: 1602
diff changeset
1850 !name_in_supers(ref_class_type.name(), current_class())) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1851 verify_error(bci, "Bad <init> method call");
a61af66fc99e Initial load
duke
parents:
diff changeset
1852 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1853 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1854 current_frame->initialize_object(type, current_type());
a61af66fc99e Initial load
duke
parents:
diff changeset
1855 *this_uninit = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1856 } else if (type.is_uninitialized()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1857 u2 new_offset = type.bci();
a61af66fc99e Initial load
duke
parents:
diff changeset
1858 address new_bcp = bcs->bcp() - bci + new_offset;
a61af66fc99e Initial load
duke
parents:
diff changeset
1859 if (new_offset > (code_length - 3) || (*new_bcp) != Bytecodes::_new) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1860 verify_error(new_offset, "Expecting new instruction");
a61af66fc99e Initial load
duke
parents:
diff changeset
1861 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1862 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1863 u2 new_class_index = Bytes::get_Java_u2(new_bcp + 1);
a61af66fc99e Initial load
duke
parents:
diff changeset
1864 verify_cp_class_type(new_class_index, cp, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1865
a61af66fc99e Initial load
duke
parents:
diff changeset
1866 // The method must be an <init> method of the indicated class
a61af66fc99e Initial load
duke
parents:
diff changeset
1867 VerificationType new_class_type = cp_index_to_type(
a61af66fc99e Initial load
duke
parents:
diff changeset
1868 new_class_index, cp, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1869 if (!new_class_type.equals(ref_class_type)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1870 verify_error(bci, "Call to wrong <init> method");
a61af66fc99e Initial load
duke
parents:
diff changeset
1871 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1872 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1873 // According to the VM spec, if the referent class is a superclass of the
a61af66fc99e Initial load
duke
parents:
diff changeset
1874 // current class, and is in a different runtime package, and the method is
a61af66fc99e Initial load
duke
parents:
diff changeset
1875 // protected, then the objectref must be the current class or a subclass
a61af66fc99e Initial load
duke
parents:
diff changeset
1876 // of the current class.
a61af66fc99e Initial load
duke
parents:
diff changeset
1877 VerificationType objectref_type = new_class_type;
a61af66fc99e Initial load
duke
parents:
diff changeset
1878 if (name_in_supers(ref_class_type.name(), current_class())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1879 klassOop ref_klass = load_class(
a61af66fc99e Initial load
duke
parents:
diff changeset
1880 ref_class_type.name(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1881 methodOop m = instanceKlass::cast(ref_klass)->uncached_lookup_method(
a61af66fc99e Initial load
duke
parents:
diff changeset
1882 vmSymbols::object_initializer_name(),
1565
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1142
diff changeset
1883 cp->signature_ref_at(bcs->get_index_u2()));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1884 instanceKlassHandle mh(THREAD, m->method_holder());
a61af66fc99e Initial load
duke
parents:
diff changeset
1885 if (m->is_protected() && !mh->is_same_class_package(_klass())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1886 bool assignable = current_type().is_assignable_from(
a61af66fc99e Initial load
duke
parents:
diff changeset
1887 objectref_type, current_class(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1888 if (!assignable) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1889 verify_error(bci, "Bad access to protected <init> method");
a61af66fc99e Initial load
duke
parents:
diff changeset
1890 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1891 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1892 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1893 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1894 current_frame->initialize_object(type, new_class_type);
a61af66fc99e Initial load
duke
parents:
diff changeset
1895 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1896 verify_error(bci, "Bad operand type when invoking <init>");
a61af66fc99e Initial load
duke
parents:
diff changeset
1897 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1898 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1899 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1900
a61af66fc99e Initial load
duke
parents:
diff changeset
1901 void ClassVerifier::verify_invoke_instructions(
a61af66fc99e Initial load
duke
parents:
diff changeset
1902 RawBytecodeStream* bcs, u4 code_length, StackMapFrame* current_frame,
a61af66fc99e Initial load
duke
parents:
diff changeset
1903 bool *this_uninit, VerificationType return_type,
a61af66fc99e Initial load
duke
parents:
diff changeset
1904 constantPoolHandle cp, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1905 // Make sure the constant pool item is the right type
1565
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1142
diff changeset
1906 u2 index = bcs->get_index_u2();
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1142
diff changeset
1907 Bytecodes::Code opcode = bcs->raw_code();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1908 unsigned int types = (opcode == Bytecodes::_invokeinterface
a61af66fc99e Initial load
duke
parents:
diff changeset
1909 ? 1 << JVM_CONSTANT_InterfaceMethodref
726
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 431
diff changeset
1910 : opcode == Bytecodes::_invokedynamic
1913
3b2dea75431e 6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents: 1678
diff changeset
1911 ? ((AllowTransitionalJSR292 ? 1 << JVM_CONSTANT_NameAndType : 0)
1660
083fde3b838e 6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents: 1602
diff changeset
1912 |1 << JVM_CONSTANT_InvokeDynamic)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1913 : 1 << JVM_CONSTANT_Methodref);
a61af66fc99e Initial load
duke
parents:
diff changeset
1914 verify_cp_type(index, cp, types, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1915
a61af66fc99e Initial load
duke
parents:
diff changeset
1916 // Get method name and signature
1059
389049f3f393 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 973
diff changeset
1917 symbolHandle method_name(THREAD, cp->name_ref_at(index));
389049f3f393 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 973
diff changeset
1918 symbolHandle method_sig(THREAD, cp->signature_ref_at(index));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1919
a61af66fc99e Initial load
duke
parents:
diff changeset
1920 if (!SignatureVerifier::is_valid_method_signature(method_sig)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1921 class_format_error(
a61af66fc99e Initial load
duke
parents:
diff changeset
1922 "Invalid method signature in class %s referenced "
a61af66fc99e Initial load
duke
parents:
diff changeset
1923 "from constant pool index %d", _klass->external_name(), index);
a61af66fc99e Initial load
duke
parents:
diff changeset
1924 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1925 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1926
a61af66fc99e Initial load
duke
parents:
diff changeset
1927 // Get referenced class type
726
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 431
diff changeset
1928 VerificationType ref_class_type;
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 431
diff changeset
1929 if (opcode == Bytecodes::_invokedynamic) {
1602
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
1930 if (!EnableInvokeDynamic ||
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
1931 _klass->major_version() < Verifier::INVOKEDYNAMIC_MAJOR_VERSION) {
726
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 431
diff changeset
1932 class_format_error(
1602
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
1933 (!EnableInvokeDynamic ?
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
1934 "invokedynamic instructions not enabled in this JVM" :
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
1935 "invokedynamic instructions not supported by this class file version"),
726
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 431
diff changeset
1936 _klass->external_name());
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 431
diff changeset
1937 return;
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 431
diff changeset
1938 }
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 431
diff changeset
1939 } else {
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 431
diff changeset
1940 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
1941 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1942
a61af66fc99e Initial load
duke
parents:
diff changeset
1943 // For a small signature length, we just allocate 128 bytes instead
a61af66fc99e Initial load
duke
parents:
diff changeset
1944 // of parsing the signature once to find its size.
a61af66fc99e Initial load
duke
parents:
diff changeset
1945 // -3 is for '(', ')' and return descriptor; multiply by 2 is for
a61af66fc99e Initial load
duke
parents:
diff changeset
1946 // longs/doubles to be consertive.
a61af66fc99e Initial load
duke
parents:
diff changeset
1947 assert(sizeof(VerificationType) == sizeof(uintptr_t),
a61af66fc99e Initial load
duke
parents:
diff changeset
1948 "buffer type must match VerificationType size");
a61af66fc99e Initial load
duke
parents:
diff changeset
1949 uintptr_t on_stack_sig_types_buffer[128];
a61af66fc99e Initial load
duke
parents:
diff changeset
1950 // If we make a VerificationType[128] array directly, the compiler calls
a61af66fc99e Initial load
duke
parents:
diff changeset
1951 // to the c-runtime library to do the allocation instead of just
a61af66fc99e Initial load
duke
parents:
diff changeset
1952 // stack allocating it. Plus it would run constructors. This shows up
a61af66fc99e Initial load
duke
parents:
diff changeset
1953 // in performance profiles.
a61af66fc99e Initial load
duke
parents:
diff changeset
1954
a61af66fc99e Initial load
duke
parents:
diff changeset
1955 VerificationType* sig_types;
a61af66fc99e Initial load
duke
parents:
diff changeset
1956 int size = (method_sig->utf8_length() - 3) * 2;
a61af66fc99e Initial load
duke
parents:
diff changeset
1957 if (size > 128) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1958 // Long and double occupies two slots here.
a61af66fc99e Initial load
duke
parents:
diff changeset
1959 ArgumentSizeComputer size_it(method_sig);
a61af66fc99e Initial load
duke
parents:
diff changeset
1960 size = size_it.size();
a61af66fc99e Initial load
duke
parents:
diff changeset
1961 sig_types = NEW_RESOURCE_ARRAY_IN_THREAD(THREAD, VerificationType, size);
a61af66fc99e Initial load
duke
parents:
diff changeset
1962 } else{
a61af66fc99e Initial load
duke
parents:
diff changeset
1963 sig_types = (VerificationType*)on_stack_sig_types_buffer;
a61af66fc99e Initial load
duke
parents:
diff changeset
1964 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1965 SignatureStream sig_stream(method_sig);
a61af66fc99e Initial load
duke
parents:
diff changeset
1966 int sig_i = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1967 while (!sig_stream.at_return_type()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1968 sig_i += change_sig_to_verificationType(
a61af66fc99e Initial load
duke
parents:
diff changeset
1969 &sig_stream, &sig_types[sig_i], CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
1970 sig_stream.next();
a61af66fc99e Initial load
duke
parents:
diff changeset
1971 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1972 int nargs = sig_i;
a61af66fc99e Initial load
duke
parents:
diff changeset
1973
a61af66fc99e Initial load
duke
parents:
diff changeset
1974 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
1975 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1976 ArgumentSizeComputer size_it(method_sig);
a61af66fc99e Initial load
duke
parents:
diff changeset
1977 assert(nargs == size_it.size(), "Argument sizes do not match");
a61af66fc99e Initial load
duke
parents:
diff changeset
1978 assert(nargs <= (method_sig->utf8_length() - 3) * 2, "estimate of max size isn't conservative enough");
a61af66fc99e Initial load
duke
parents:
diff changeset
1979 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1980 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1981
a61af66fc99e Initial load
duke
parents:
diff changeset
1982 // Check instruction operands
a61af66fc99e Initial load
duke
parents:
diff changeset
1983 u2 bci = bcs->bci();
a61af66fc99e Initial load
duke
parents:
diff changeset
1984 if (opcode == Bytecodes::_invokeinterface) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1985 address bcp = bcs->bcp();
a61af66fc99e Initial load
duke
parents:
diff changeset
1986 // 4905268: count operand in invokeinterface should be nargs+1, not nargs.
a61af66fc99e Initial load
duke
parents:
diff changeset
1987 // JSR202 spec: The count operand of an invokeinterface instruction is valid if it is
a61af66fc99e Initial load
duke
parents:
diff changeset
1988 // the difference between the size of the operand stack before and after the instruction
a61af66fc99e Initial load
duke
parents:
diff changeset
1989 // executes.
a61af66fc99e Initial load
duke
parents:
diff changeset
1990 if (*(bcp+3) != (nargs+1)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1991 verify_error(bci, "Inconsistent args count operand in invokeinterface");
a61af66fc99e Initial load
duke
parents:
diff changeset
1992 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1993 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1994 if (*(bcp+4) != 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1995 verify_error(bci, "Fourth operand byte of invokeinterface must be zero");
a61af66fc99e Initial load
duke
parents:
diff changeset
1996 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1997 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1998 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1999
726
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 431
diff changeset
2000 if (opcode == Bytecodes::_invokedynamic) {
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 431
diff changeset
2001 address bcp = bcs->bcp();
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 431
diff changeset
2002 if (*(bcp+3) != 0 || *(bcp+4) != 0) {
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 431
diff changeset
2003 verify_error(bci, "Third and fourth operand bytes of invokedynamic must be zero");
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 431
diff changeset
2004 return;
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 431
diff changeset
2005 }
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 431
diff changeset
2006 }
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 431
diff changeset
2007
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2008 if (method_name->byte_at(0) == '<') {
a61af66fc99e Initial load
duke
parents:
diff changeset
2009 // Make sure <init> can only be invoked by invokespecial
a61af66fc99e Initial load
duke
parents:
diff changeset
2010 if (opcode != Bytecodes::_invokespecial ||
a61af66fc99e Initial load
duke
parents:
diff changeset
2011 method_name() != vmSymbols::object_initializer_name()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2012 verify_error(bci, "Illegal call to internal method");
a61af66fc99e Initial load
duke
parents:
diff changeset
2013 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
2014 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2015 } else if (opcode == Bytecodes::_invokespecial
a61af66fc99e Initial load
duke
parents:
diff changeset
2016 && !ref_class_type.equals(current_type())
a61af66fc99e Initial load
duke
parents:
diff changeset
2017 && !ref_class_type.equals(VerificationType::reference_type(
a61af66fc99e Initial load
duke
parents:
diff changeset
2018 current_class()->super()->klass_part()->name()))) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2019 bool subtype = ref_class_type.is_assignable_from(
a61af66fc99e Initial load
duke
parents:
diff changeset
2020 current_type(), current_class(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
2021 if (!subtype) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2022 verify_error(bci, "Bad invokespecial instruction: "
a61af66fc99e Initial load
duke
parents:
diff changeset
2023 "current class isn't assignable to reference class.");
a61af66fc99e Initial load
duke
parents:
diff changeset
2024 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
2025 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2026 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2027 // Match method descriptor with operand stack
a61af66fc99e Initial load
duke
parents:
diff changeset
2028 for (int i = nargs - 1; i >= 0; i--) { // Run backwards
a61af66fc99e Initial load
duke
parents:
diff changeset
2029 current_frame->pop_stack(sig_types[i], CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
2030 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2031 // Check objectref on operand stack
726
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 431
diff changeset
2032 if (opcode != Bytecodes::_invokestatic &&
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 431
diff changeset
2033 opcode != Bytecodes::_invokedynamic) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2034 if (method_name() == vmSymbols::object_initializer_name()) { // <init> method
a61af66fc99e Initial load
duke
parents:
diff changeset
2035 verify_invoke_init(bcs, ref_class_type, current_frame,
a61af66fc99e Initial load
duke
parents:
diff changeset
2036 code_length, this_uninit, cp, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
2037 } else { // other methods
a61af66fc99e Initial load
duke
parents:
diff changeset
2038 // Ensures that target class is assignable to method class.
a61af66fc99e Initial load
duke
parents:
diff changeset
2039 if (opcode == Bytecodes::_invokespecial) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2040 current_frame->pop_stack(current_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
2041 } else if (opcode == Bytecodes::_invokevirtual) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2042 VerificationType stack_object_type =
a61af66fc99e Initial load
duke
parents:
diff changeset
2043 current_frame->pop_stack(ref_class_type, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
2044 if (current_type() != stack_object_type) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2045 assert(cp->cache() == NULL, "not rewritten yet");
a61af66fc99e Initial load
duke
parents:
diff changeset
2046 symbolHandle ref_class_name = symbolHandle(THREAD,
a61af66fc99e Initial load
duke
parents:
diff changeset
2047 cp->klass_name_at(cp->klass_ref_index_at(index)));
a61af66fc99e Initial load
duke
parents:
diff changeset
2048 // See the comments in verify_field_instructions() for
a61af66fc99e Initial load
duke
parents:
diff changeset
2049 // the rationale behind this.
a61af66fc99e Initial load
duke
parents:
diff changeset
2050 if (name_in_supers(ref_class_name(), current_class())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2051 klassOop ref_class = load_class(ref_class_name, CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
2052 if (is_protected_access(
a61af66fc99e Initial load
duke
parents:
diff changeset
2053 _klass, ref_class, method_name(), method_sig(), true)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2054 // It's protected access, check if stack object is
a61af66fc99e Initial load
duke
parents:
diff changeset
2055 // assignable to current class.
a61af66fc99e Initial load
duke
parents:
diff changeset
2056 bool is_assignable = current_type().is_assignable_from(
a61af66fc99e Initial load
duke
parents:
diff changeset
2057 stack_object_type, current_class(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
2058 if (!is_assignable) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2059 if (ref_class_type.name() == vmSymbols::java_lang_Object()
a61af66fc99e Initial load
duke
parents:
diff changeset
2060 && stack_object_type.is_array()
a61af66fc99e Initial load
duke
parents:
diff changeset
2061 && method_name() == vmSymbols::clone_name()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2062 // Special case: arrays pretend to implement public Object
a61af66fc99e Initial load
duke
parents:
diff changeset
2063 // clone().
a61af66fc99e Initial load
duke
parents:
diff changeset
2064 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2065 verify_error(bci,
a61af66fc99e Initial load
duke
parents:
diff changeset
2066 "Bad access to protected data in invokevirtual");
a61af66fc99e Initial load
duke
parents:
diff changeset
2067 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
2068 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2069 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2070 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2071 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2072 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2073 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2074 assert(opcode == Bytecodes::_invokeinterface, "Unexpected opcode encountered");
a61af66fc99e Initial load
duke
parents:
diff changeset
2075 current_frame->pop_stack(ref_class_type, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
2076 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2077 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2078 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2079 // Push the result type.
a61af66fc99e Initial load
duke
parents:
diff changeset
2080 if (sig_stream.type() != T_VOID) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2081 if (method_name() == vmSymbols::object_initializer_name()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2082 // <init> method must have a void return type
a61af66fc99e Initial load
duke
parents:
diff changeset
2083 verify_error(bci, "Return type must be void in <init> method");
a61af66fc99e Initial load
duke
parents:
diff changeset
2084 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
2085 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2086 VerificationType return_type[2];
a61af66fc99e Initial load
duke
parents:
diff changeset
2087 int n = change_sig_to_verificationType(
a61af66fc99e Initial load
duke
parents:
diff changeset
2088 &sig_stream, return_type, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
2089 for (int i = 0; i < n; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2090 current_frame->push_stack(return_type[i], CHECK_VERIFY(this)); // push types backwards
a61af66fc99e Initial load
duke
parents:
diff changeset
2091 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2092 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2093 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2094
a61af66fc99e Initial load
duke
parents:
diff changeset
2095 VerificationType ClassVerifier::get_newarray_type(
a61af66fc99e Initial load
duke
parents:
diff changeset
2096 u2 index, u2 bci, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2097 const char* from_bt[] = {
a61af66fc99e Initial load
duke
parents:
diff changeset
2098 NULL, NULL, NULL, NULL, "[Z", "[C", "[F", "[D", "[B", "[S", "[I", "[J",
a61af66fc99e Initial load
duke
parents:
diff changeset
2099 };
a61af66fc99e Initial load
duke
parents:
diff changeset
2100 if (index < T_BOOLEAN || index > T_LONG) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2101 verify_error(bci, "Illegal newarray instruction");
a61af66fc99e Initial load
duke
parents:
diff changeset
2102 return VerificationType::bogus_type();
a61af66fc99e Initial load
duke
parents:
diff changeset
2103 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2104
a61af66fc99e Initial load
duke
parents:
diff changeset
2105 // from_bt[index] contains the array signature which has a length of 2
a61af66fc99e Initial load
duke
parents:
diff changeset
2106 symbolHandle sig = oopFactory::new_symbol_handle(
a61af66fc99e Initial load
duke
parents:
diff changeset
2107 from_bt[index], 2, CHECK_(VerificationType::bogus_type()));
a61af66fc99e Initial load
duke
parents:
diff changeset
2108 return VerificationType::reference_type(sig);
a61af66fc99e Initial load
duke
parents:
diff changeset
2109 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2110
a61af66fc99e Initial load
duke
parents:
diff changeset
2111 void ClassVerifier::verify_anewarray(
a61af66fc99e Initial load
duke
parents:
diff changeset
2112 u2 index, constantPoolHandle cp, StackMapFrame* current_frame, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2113 verify_cp_class_type(index, cp, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
2114 current_frame->pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
2115 VerificationType::integer_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
2116
a61af66fc99e Initial load
duke
parents:
diff changeset
2117 VerificationType component_type =
a61af66fc99e Initial load
duke
parents:
diff changeset
2118 cp_index_to_type(index, cp, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
2119 ResourceMark rm(THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
2120 int length;
a61af66fc99e Initial load
duke
parents:
diff changeset
2121 char* arr_sig_str;
a61af66fc99e Initial load
duke
parents:
diff changeset
2122 if (component_type.is_array()) { // it's an array
a61af66fc99e Initial load
duke
parents:
diff changeset
2123 const char* component_name = component_type.name()->as_utf8();
a61af66fc99e Initial load
duke
parents:
diff changeset
2124 // add one dimension to component
a61af66fc99e Initial load
duke
parents:
diff changeset
2125 length = (int)strlen(component_name) + 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
2126 arr_sig_str = NEW_RESOURCE_ARRAY_IN_THREAD(THREAD, char, length);
a61af66fc99e Initial load
duke
parents:
diff changeset
2127 arr_sig_str[0] = '[';
a61af66fc99e Initial load
duke
parents:
diff changeset
2128 strncpy(&arr_sig_str[1], component_name, length - 1);
a61af66fc99e Initial load
duke
parents:
diff changeset
2129 } else { // it's an object or interface
a61af66fc99e Initial load
duke
parents:
diff changeset
2130 const char* component_name = component_type.name()->as_utf8();
a61af66fc99e Initial load
duke
parents:
diff changeset
2131 // add one dimension to component with 'L' prepended and ';' postpended.
a61af66fc99e Initial load
duke
parents:
diff changeset
2132 length = (int)strlen(component_name) + 3;
a61af66fc99e Initial load
duke
parents:
diff changeset
2133 arr_sig_str = NEW_RESOURCE_ARRAY_IN_THREAD(THREAD, char, length);
a61af66fc99e Initial load
duke
parents:
diff changeset
2134 arr_sig_str[0] = '[';
a61af66fc99e Initial load
duke
parents:
diff changeset
2135 arr_sig_str[1] = 'L';
a61af66fc99e Initial load
duke
parents:
diff changeset
2136 strncpy(&arr_sig_str[2], component_name, length - 2);
a61af66fc99e Initial load
duke
parents:
diff changeset
2137 arr_sig_str[length - 1] = ';';
a61af66fc99e Initial load
duke
parents:
diff changeset
2138 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2139 symbolHandle arr_sig = oopFactory::new_symbol_handle(
a61af66fc99e Initial load
duke
parents:
diff changeset
2140 arr_sig_str, length, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
2141 VerificationType new_array_type = VerificationType::reference_type(arr_sig);
a61af66fc99e Initial load
duke
parents:
diff changeset
2142 current_frame->push_stack(new_array_type, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
2143 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2144
a61af66fc99e Initial load
duke
parents:
diff changeset
2145 void ClassVerifier::verify_iload(u2 index, StackMapFrame* current_frame, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2146 current_frame->get_local(
a61af66fc99e Initial load
duke
parents:
diff changeset
2147 index, VerificationType::integer_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
2148 current_frame->push_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
2149 VerificationType::integer_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
2150 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2151
a61af66fc99e Initial load
duke
parents:
diff changeset
2152 void ClassVerifier::verify_lload(u2 index, StackMapFrame* current_frame, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2153 current_frame->get_local_2(
a61af66fc99e Initial load
duke
parents:
diff changeset
2154 index, VerificationType::long_type(),
a61af66fc99e Initial load
duke
parents:
diff changeset
2155 VerificationType::long2_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
2156 current_frame->push_stack_2(
a61af66fc99e Initial load
duke
parents:
diff changeset
2157 VerificationType::long_type(),
a61af66fc99e Initial load
duke
parents:
diff changeset
2158 VerificationType::long2_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
2159 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2160
a61af66fc99e Initial load
duke
parents:
diff changeset
2161 void ClassVerifier::verify_fload(u2 index, StackMapFrame* current_frame, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2162 current_frame->get_local(
a61af66fc99e Initial load
duke
parents:
diff changeset
2163 index, VerificationType::float_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
2164 current_frame->push_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
2165 VerificationType::float_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
2166 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2167
a61af66fc99e Initial load
duke
parents:
diff changeset
2168 void ClassVerifier::verify_dload(u2 index, StackMapFrame* current_frame, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2169 current_frame->get_local_2(
a61af66fc99e Initial load
duke
parents:
diff changeset
2170 index, VerificationType::double_type(),
a61af66fc99e Initial load
duke
parents:
diff changeset
2171 VerificationType::double2_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
2172 current_frame->push_stack_2(
a61af66fc99e Initial load
duke
parents:
diff changeset
2173 VerificationType::double_type(),
a61af66fc99e Initial load
duke
parents:
diff changeset
2174 VerificationType::double2_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
2175 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2176
a61af66fc99e Initial load
duke
parents:
diff changeset
2177 void ClassVerifier::verify_aload(u2 index, StackMapFrame* current_frame, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2178 VerificationType type = current_frame->get_local(
a61af66fc99e Initial load
duke
parents:
diff changeset
2179 index, VerificationType::reference_check(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
2180 current_frame->push_stack(type, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
2181 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2182
a61af66fc99e Initial load
duke
parents:
diff changeset
2183 void ClassVerifier::verify_istore(u2 index, StackMapFrame* current_frame, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2184 current_frame->pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
2185 VerificationType::integer_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
2186 current_frame->set_local(
a61af66fc99e Initial load
duke
parents:
diff changeset
2187 index, VerificationType::integer_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
2188 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2189
a61af66fc99e Initial load
duke
parents:
diff changeset
2190 void ClassVerifier::verify_lstore(u2 index, StackMapFrame* current_frame, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2191 current_frame->pop_stack_2(
a61af66fc99e Initial load
duke
parents:
diff changeset
2192 VerificationType::long2_type(),
a61af66fc99e Initial load
duke
parents:
diff changeset
2193 VerificationType::long_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
2194 current_frame->set_local_2(
a61af66fc99e Initial load
duke
parents:
diff changeset
2195 index, VerificationType::long_type(),
a61af66fc99e Initial load
duke
parents:
diff changeset
2196 VerificationType::long2_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
2197 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2198
a61af66fc99e Initial load
duke
parents:
diff changeset
2199 void ClassVerifier::verify_fstore(u2 index, StackMapFrame* current_frame, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2200 current_frame->pop_stack(VerificationType::float_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
2201 current_frame->set_local(
a61af66fc99e Initial load
duke
parents:
diff changeset
2202 index, VerificationType::float_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
2203 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2204
a61af66fc99e Initial load
duke
parents:
diff changeset
2205 void ClassVerifier::verify_dstore(u2 index, StackMapFrame* current_frame, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2206 current_frame->pop_stack_2(
a61af66fc99e Initial load
duke
parents:
diff changeset
2207 VerificationType::double2_type(),
a61af66fc99e Initial load
duke
parents:
diff changeset
2208 VerificationType::double_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
2209 current_frame->set_local_2(
a61af66fc99e Initial load
duke
parents:
diff changeset
2210 index, VerificationType::double_type(),
a61af66fc99e Initial load
duke
parents:
diff changeset
2211 VerificationType::double2_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
2212 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2213
a61af66fc99e Initial load
duke
parents:
diff changeset
2214 void ClassVerifier::verify_astore(u2 index, StackMapFrame* current_frame, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2215 VerificationType type = current_frame->pop_stack(
a61af66fc99e Initial load
duke
parents:
diff changeset
2216 VerificationType::reference_check(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
2217 current_frame->set_local(index, type, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
2218 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2219
a61af66fc99e Initial load
duke
parents:
diff changeset
2220 void ClassVerifier::verify_iinc(u2 index, StackMapFrame* current_frame, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2221 VerificationType type = current_frame->get_local(
a61af66fc99e Initial load
duke
parents:
diff changeset
2222 index, VerificationType::integer_type(), CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
2223 current_frame->set_local(index, type, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
2224 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2225
a61af66fc99e Initial load
duke
parents:
diff changeset
2226 void ClassVerifier::verify_return_value(
a61af66fc99e Initial load
duke
parents:
diff changeset
2227 VerificationType return_type, VerificationType type, u2 bci, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2228 if (return_type == VerificationType::bogus_type()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2229 verify_error(bci, "Method expects a return value");
a61af66fc99e Initial load
duke
parents:
diff changeset
2230 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
2231 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2232 bool match = return_type.is_assignable_from(type, _klass, CHECK_VERIFY(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
2233 if (!match) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2234 verify_error(bci, "Bad return type");
a61af66fc99e Initial load
duke
parents:
diff changeset
2235 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
2236 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2237 }