annotate src/share/vm/classfile/stackMapFrame.cpp @ 9126:bc26f978b0ce

HotSpotResolvedObjectType: implement hasFinalizeSubclass() correctly don't use the (wrong) cached value, but ask the runtime on each request. Fixes regression on xml.* benchmarks @ specjvm2008. The problem was: After the constructor of Object was deoptimized due to an assumption violation, it was recompiled again after some time. However, on recompilation, the value of hasFinalizeSubclass for the class was not updated and it was compiled again with a, now wrong, assumption, which then triggers deoptimization again. This was repeated until it hit the recompilation limit (defined by PerMethodRecompilationCutoff), and therefore only executed by the interpreter from now on, causing the performance regression.
author Bernhard Urban <bernhard.urban@jku.at>
date Mon, 15 Apr 2013 19:54:58 +0200
parents 4ee06e614636
children 2373a1f4987c b2daaf70fab2
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
6605
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
2 * Copyright (c) 2003, 2012, 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: 0
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
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: 0
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
25 #include "precompiled.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
26 #include "classfile/stackMapFrame.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
27 #include "classfile/verifier.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
28 #include "memory/resourceArea.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
29 #include "oops/oop.inline.hpp"
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
30 #include "oops/symbol.hpp"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
31 #include "runtime/handles.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
32 #include "utilities/globalDefinitions.hpp"
0
a61af66fc99e Initial load
duke
parents:
diff changeset
33
a61af66fc99e Initial load
duke
parents:
diff changeset
34 StackMapFrame::StackMapFrame(u2 max_locals, u2 max_stack, ClassVerifier* v) :
6605
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
35 _offset(0), _locals_size(0), _stack_size(0),
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
36 _stack_mark(0), _flags(0), _max_locals(max_locals),
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
37 _max_stack(max_stack), _verifier(v) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
38 Thread* thr = v->thread();
a61af66fc99e Initial load
duke
parents:
diff changeset
39 _locals = NEW_RESOURCE_ARRAY_IN_THREAD(thr, VerificationType, max_locals);
a61af66fc99e Initial load
duke
parents:
diff changeset
40 _stack = NEW_RESOURCE_ARRAY_IN_THREAD(thr, VerificationType, max_stack);
a61af66fc99e Initial load
duke
parents:
diff changeset
41 int32_t i;
a61af66fc99e Initial load
duke
parents:
diff changeset
42 for(i = 0; i < max_locals; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
43 _locals[i] = VerificationType::bogus_type();
a61af66fc99e Initial load
duke
parents:
diff changeset
44 }
a61af66fc99e Initial load
duke
parents:
diff changeset
45 for(i = 0; i < max_stack; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
46 _stack[i] = VerificationType::bogus_type();
a61af66fc99e Initial load
duke
parents:
diff changeset
47 }
a61af66fc99e Initial load
duke
parents:
diff changeset
48 }
a61af66fc99e Initial load
duke
parents:
diff changeset
49
a61af66fc99e Initial load
duke
parents:
diff changeset
50 StackMapFrame* StackMapFrame::frame_in_exception_handler(u1 flags) {
a61af66fc99e Initial load
duke
parents:
diff changeset
51 Thread* thr = _verifier->thread();
a61af66fc99e Initial load
duke
parents:
diff changeset
52 VerificationType* stack = NEW_RESOURCE_ARRAY_IN_THREAD(thr, VerificationType, 1);
a61af66fc99e Initial load
duke
parents:
diff changeset
53 StackMapFrame* frame = new StackMapFrame(_offset, flags, _locals_size, 0, _max_locals, _max_stack, _locals, stack, _verifier);
a61af66fc99e Initial load
duke
parents:
diff changeset
54 return frame;
a61af66fc99e Initial load
duke
parents:
diff changeset
55 }
a61af66fc99e Initial load
duke
parents:
diff changeset
56
a61af66fc99e Initial load
duke
parents:
diff changeset
57 bool StackMapFrame::has_new_object() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
58 int32_t i;
a61af66fc99e Initial load
duke
parents:
diff changeset
59 for (i = 0; i < _max_locals; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
60 if (_locals[i].is_uninitialized()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
61 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
62 }
a61af66fc99e Initial load
duke
parents:
diff changeset
63 }
a61af66fc99e Initial load
duke
parents:
diff changeset
64 for (i = 0; i < _stack_size; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
65 if (_stack[i].is_uninitialized()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
66 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
67 }
a61af66fc99e Initial load
duke
parents:
diff changeset
68 }
a61af66fc99e Initial load
duke
parents:
diff changeset
69 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
70 }
a61af66fc99e Initial load
duke
parents:
diff changeset
71
a61af66fc99e Initial load
duke
parents:
diff changeset
72 void StackMapFrame::initialize_object(
a61af66fc99e Initial load
duke
parents:
diff changeset
73 VerificationType old_object, VerificationType new_object) {
a61af66fc99e Initial load
duke
parents:
diff changeset
74 int32_t i;
a61af66fc99e Initial load
duke
parents:
diff changeset
75 for (i = 0; i < _max_locals; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
76 if (_locals[i].equals(old_object)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
77 _locals[i] = new_object;
a61af66fc99e Initial load
duke
parents:
diff changeset
78 }
a61af66fc99e Initial load
duke
parents:
diff changeset
79 }
a61af66fc99e Initial load
duke
parents:
diff changeset
80 for (i = 0; i < _stack_size; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
81 if (_stack[i].equals(old_object)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
82 _stack[i] = new_object;
a61af66fc99e Initial load
duke
parents:
diff changeset
83 }
a61af66fc99e Initial load
duke
parents:
diff changeset
84 }
a61af66fc99e Initial load
duke
parents:
diff changeset
85 if (old_object == VerificationType::uninitialized_this_type()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
86 // "this" has been initialized - reset flags
a61af66fc99e Initial load
duke
parents:
diff changeset
87 _flags = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
88 }
a61af66fc99e Initial load
duke
parents:
diff changeset
89 }
a61af66fc99e Initial load
duke
parents:
diff changeset
90
a61af66fc99e Initial load
duke
parents:
diff changeset
91 VerificationType StackMapFrame::set_locals_from_arg(
a61af66fc99e Initial load
duke
parents:
diff changeset
92 const methodHandle m, VerificationType thisKlass, TRAPS) {
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
93 SignatureStream ss(m->signature());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
94 int init_local_num = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
95 if (!m->is_static()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
96 init_local_num++;
a61af66fc99e Initial load
duke
parents:
diff changeset
97 // add one extra argument for instance method
a61af66fc99e Initial load
duke
parents:
diff changeset
98 if (m->name() == vmSymbols::object_initializer_name() &&
a61af66fc99e Initial load
duke
parents:
diff changeset
99 thisKlass.name() != vmSymbols::java_lang_Object()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
100 _locals[0] = VerificationType::uninitialized_this_type();
a61af66fc99e Initial load
duke
parents:
diff changeset
101 _flags |= FLAG_THIS_UNINIT;
a61af66fc99e Initial load
duke
parents:
diff changeset
102 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
103 _locals[0] = thisKlass;
a61af66fc99e Initial load
duke
parents:
diff changeset
104 }
a61af66fc99e Initial load
duke
parents:
diff changeset
105 }
a61af66fc99e Initial load
duke
parents:
diff changeset
106
a61af66fc99e Initial load
duke
parents:
diff changeset
107 // local num may be greater than size of parameters because long/double occupies two slots
a61af66fc99e Initial load
duke
parents:
diff changeset
108 while(!ss.at_return_type()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
109 init_local_num += _verifier->change_sig_to_verificationType(
a61af66fc99e Initial load
duke
parents:
diff changeset
110 &ss, &_locals[init_local_num],
a61af66fc99e Initial load
duke
parents:
diff changeset
111 CHECK_VERIFY_(verifier(), VerificationType::bogus_type()));
a61af66fc99e Initial load
duke
parents:
diff changeset
112 ss.next();
a61af66fc99e Initial load
duke
parents:
diff changeset
113 }
a61af66fc99e Initial load
duke
parents:
diff changeset
114 _locals_size = init_local_num;
a61af66fc99e Initial load
duke
parents:
diff changeset
115
a61af66fc99e Initial load
duke
parents:
diff changeset
116 switch (ss.type()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
117 case T_OBJECT:
a61af66fc99e Initial load
duke
parents:
diff changeset
118 case T_ARRAY:
a61af66fc99e Initial load
duke
parents:
diff changeset
119 {
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
120 Symbol* sig = ss.as_symbol(CHECK_(VerificationType::bogus_type()));
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
121 // Create another symbol to save as signature stream unreferences
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
122 // this symbol.
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
123 Symbol* sig_copy =
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
124 verifier()->create_temporary_symbol(sig, 0, sig->utf8_length(),
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
125 CHECK_(VerificationType::bogus_type()));
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
126 assert(sig_copy == sig, "symbols don't match");
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
127 return VerificationType::reference_type(sig_copy);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
128 }
a61af66fc99e Initial load
duke
parents:
diff changeset
129 case T_INT: return VerificationType::integer_type();
a61af66fc99e Initial load
duke
parents:
diff changeset
130 case T_BYTE: return VerificationType::byte_type();
a61af66fc99e Initial load
duke
parents:
diff changeset
131 case T_CHAR: return VerificationType::char_type();
a61af66fc99e Initial load
duke
parents:
diff changeset
132 case T_SHORT: return VerificationType::short_type();
a61af66fc99e Initial load
duke
parents:
diff changeset
133 case T_BOOLEAN: return VerificationType::boolean_type();
a61af66fc99e Initial load
duke
parents:
diff changeset
134 case T_FLOAT: return VerificationType::float_type();
a61af66fc99e Initial load
duke
parents:
diff changeset
135 case T_DOUBLE: return VerificationType::double_type();
a61af66fc99e Initial load
duke
parents:
diff changeset
136 case T_LONG: return VerificationType::long_type();
a61af66fc99e Initial load
duke
parents:
diff changeset
137 case T_VOID: return VerificationType::bogus_type();
a61af66fc99e Initial load
duke
parents:
diff changeset
138 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
139 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
140 }
a61af66fc99e Initial load
duke
parents:
diff changeset
141 return VerificationType::bogus_type();
a61af66fc99e Initial load
duke
parents:
diff changeset
142 }
a61af66fc99e Initial load
duke
parents:
diff changeset
143
a61af66fc99e Initial load
duke
parents:
diff changeset
144 void StackMapFrame::copy_locals(const StackMapFrame* src) {
a61af66fc99e Initial load
duke
parents:
diff changeset
145 int32_t len = src->locals_size() < _locals_size ?
a61af66fc99e Initial load
duke
parents:
diff changeset
146 src->locals_size() : _locals_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
147 for (int32_t i = 0; i < len; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
148 _locals[i] = src->locals()[i];
a61af66fc99e Initial load
duke
parents:
diff changeset
149 }
a61af66fc99e Initial load
duke
parents:
diff changeset
150 }
a61af66fc99e Initial load
duke
parents:
diff changeset
151
a61af66fc99e Initial load
duke
parents:
diff changeset
152 void StackMapFrame::copy_stack(const StackMapFrame* src) {
a61af66fc99e Initial load
duke
parents:
diff changeset
153 int32_t len = src->stack_size() < _stack_size ?
a61af66fc99e Initial load
duke
parents:
diff changeset
154 src->stack_size() : _stack_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
155 for (int32_t i = 0; i < len; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
156 _stack[i] = src->stack()[i];
a61af66fc99e Initial load
duke
parents:
diff changeset
157 }
a61af66fc99e Initial load
duke
parents:
diff changeset
158 }
a61af66fc99e Initial load
duke
parents:
diff changeset
159
6605
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
160 // Returns the location of the first mismatch, or 'len' if there are no
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
161 // mismatches
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
162 int StackMapFrame::is_assignable_to(
0
a61af66fc99e Initial load
duke
parents:
diff changeset
163 VerificationType* from, VerificationType* to, int32_t len, TRAPS) const {
6605
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
164 int32_t i = 0;
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
165 for (i = 0; i < len; i++) {
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
166 if (!to[i].is_assignable_from(from[i], verifier(), THREAD)) {
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
167 break;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
168 }
a61af66fc99e Initial load
duke
parents:
diff changeset
169 }
6605
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
170 return i;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
171 }
a61af66fc99e Initial load
duke
parents:
diff changeset
172
2303
c1a6154012c8 7020118: Alter frame assignability to allow for exception handler coverage of invokespecial <init>
kamg
parents: 2177
diff changeset
173 bool StackMapFrame::has_flag_match_exception(
c1a6154012c8 7020118: Alter frame assignability to allow for exception handler coverage of invokespecial <init>
kamg
parents: 2177
diff changeset
174 const StackMapFrame* target) const {
c1a6154012c8 7020118: Alter frame assignability to allow for exception handler coverage of invokespecial <init>
kamg
parents: 2177
diff changeset
175 // We allow flags of {UninitThis} to assign to {} if-and-only-if the
c1a6154012c8 7020118: Alter frame assignability to allow for exception handler coverage of invokespecial <init>
kamg
parents: 2177
diff changeset
176 // target frame does not depend upon the current type.
c1a6154012c8 7020118: Alter frame assignability to allow for exception handler coverage of invokespecial <init>
kamg
parents: 2177
diff changeset
177 // This is slightly too strict, as we need only enforce that the
c1a6154012c8 7020118: Alter frame assignability to allow for exception handler coverage of invokespecial <init>
kamg
parents: 2177
diff changeset
178 // slots that were initialized by the <init> (the things that were
c1a6154012c8 7020118: Alter frame assignability to allow for exception handler coverage of invokespecial <init>
kamg
parents: 2177
diff changeset
179 // UninitializedThis before initialize_object() converted them) are unused.
c1a6154012c8 7020118: Alter frame assignability to allow for exception handler coverage of invokespecial <init>
kamg
parents: 2177
diff changeset
180 // However we didn't save that information so we'll enforce this upon
c1a6154012c8 7020118: Alter frame assignability to allow for exception handler coverage of invokespecial <init>
kamg
parents: 2177
diff changeset
181 // anything that might have been initialized. This is a rare situation
c1a6154012c8 7020118: Alter frame assignability to allow for exception handler coverage of invokespecial <init>
kamg
parents: 2177
diff changeset
182 // and javac never generates code that would end up here, but some profilers
c1a6154012c8 7020118: Alter frame assignability to allow for exception handler coverage of invokespecial <init>
kamg
parents: 2177
diff changeset
183 // (such as NetBeans) might, when adding exception handlers in <init>
c1a6154012c8 7020118: Alter frame assignability to allow for exception handler coverage of invokespecial <init>
kamg
parents: 2177
diff changeset
184 // methods to cover the invokespecial instruction. See 7020118.
c1a6154012c8 7020118: Alter frame assignability to allow for exception handler coverage of invokespecial <init>
kamg
parents: 2177
diff changeset
185
c1a6154012c8 7020118: Alter frame assignability to allow for exception handler coverage of invokespecial <init>
kamg
parents: 2177
diff changeset
186 assert(max_locals() == target->max_locals() &&
c1a6154012c8 7020118: Alter frame assignability to allow for exception handler coverage of invokespecial <init>
kamg
parents: 2177
diff changeset
187 stack_size() == target->stack_size(), "StackMap sizes must match");
c1a6154012c8 7020118: Alter frame assignability to allow for exception handler coverage of invokespecial <init>
kamg
parents: 2177
diff changeset
188
c1a6154012c8 7020118: Alter frame assignability to allow for exception handler coverage of invokespecial <init>
kamg
parents: 2177
diff changeset
189 VerificationType top = VerificationType::top_type();
c1a6154012c8 7020118: Alter frame assignability to allow for exception handler coverage of invokespecial <init>
kamg
parents: 2177
diff changeset
190 VerificationType this_type = verifier()->current_type();
c1a6154012c8 7020118: Alter frame assignability to allow for exception handler coverage of invokespecial <init>
kamg
parents: 2177
diff changeset
191
c1a6154012c8 7020118: Alter frame assignability to allow for exception handler coverage of invokespecial <init>
kamg
parents: 2177
diff changeset
192 if (!flag_this_uninit() || target->flags() != 0) {
c1a6154012c8 7020118: Alter frame assignability to allow for exception handler coverage of invokespecial <init>
kamg
parents: 2177
diff changeset
193 return false;
c1a6154012c8 7020118: Alter frame assignability to allow for exception handler coverage of invokespecial <init>
kamg
parents: 2177
diff changeset
194 }
c1a6154012c8 7020118: Alter frame assignability to allow for exception handler coverage of invokespecial <init>
kamg
parents: 2177
diff changeset
195
c1a6154012c8 7020118: Alter frame assignability to allow for exception handler coverage of invokespecial <init>
kamg
parents: 2177
diff changeset
196 for (int i = 0; i < target->locals_size(); ++i) {
c1a6154012c8 7020118: Alter frame assignability to allow for exception handler coverage of invokespecial <init>
kamg
parents: 2177
diff changeset
197 if (locals()[i] == this_type && target->locals()[i] != top) {
c1a6154012c8 7020118: Alter frame assignability to allow for exception handler coverage of invokespecial <init>
kamg
parents: 2177
diff changeset
198 return false;
c1a6154012c8 7020118: Alter frame assignability to allow for exception handler coverage of invokespecial <init>
kamg
parents: 2177
diff changeset
199 }
c1a6154012c8 7020118: Alter frame assignability to allow for exception handler coverage of invokespecial <init>
kamg
parents: 2177
diff changeset
200 }
c1a6154012c8 7020118: Alter frame assignability to allow for exception handler coverage of invokespecial <init>
kamg
parents: 2177
diff changeset
201
c1a6154012c8 7020118: Alter frame assignability to allow for exception handler coverage of invokespecial <init>
kamg
parents: 2177
diff changeset
202 for (int i = 0; i < target->stack_size(); ++i) {
c1a6154012c8 7020118: Alter frame assignability to allow for exception handler coverage of invokespecial <init>
kamg
parents: 2177
diff changeset
203 if (stack()[i] == this_type && target->stack()[i] != top) {
c1a6154012c8 7020118: Alter frame assignability to allow for exception handler coverage of invokespecial <init>
kamg
parents: 2177
diff changeset
204 return false;
c1a6154012c8 7020118: Alter frame assignability to allow for exception handler coverage of invokespecial <init>
kamg
parents: 2177
diff changeset
205 }
c1a6154012c8 7020118: Alter frame assignability to allow for exception handler coverage of invokespecial <init>
kamg
parents: 2177
diff changeset
206 }
c1a6154012c8 7020118: Alter frame assignability to allow for exception handler coverage of invokespecial <init>
kamg
parents: 2177
diff changeset
207
c1a6154012c8 7020118: Alter frame assignability to allow for exception handler coverage of invokespecial <init>
kamg
parents: 2177
diff changeset
208 return true;
c1a6154012c8 7020118: Alter frame assignability to allow for exception handler coverage of invokespecial <init>
kamg
parents: 2177
diff changeset
209 }
c1a6154012c8 7020118: Alter frame assignability to allow for exception handler coverage of invokespecial <init>
kamg
parents: 2177
diff changeset
210
2472
7144a1d6e0a9 7030388: JCK test failed to reject invalid class check01304m10n.
kamg
parents: 2303
diff changeset
211 bool StackMapFrame::is_assignable_to(
6605
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
212 const StackMapFrame* target, bool is_exception_handler,
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
213 ErrorContext* ctx, TRAPS) const {
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
214 if (_max_locals != target->max_locals()) {
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
215 *ctx = ErrorContext::locals_size_mismatch(
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
216 _offset, (StackMapFrame*)this, (StackMapFrame*)target);
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
217 return false;
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
218 }
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
219 if (_stack_size != target->stack_size()) {
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
220 *ctx = ErrorContext::stack_size_mismatch(
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
221 _offset, (StackMapFrame*)this, (StackMapFrame*)target);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
222 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
223 }
a61af66fc99e Initial load
duke
parents:
diff changeset
224 // Only need to compare type elements up to target->locals() or target->stack().
a61af66fc99e Initial load
duke
parents:
diff changeset
225 // The remaining type elements in this state can be ignored because they are
a61af66fc99e Initial load
duke
parents:
diff changeset
226 // assignable to bogus type.
6605
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
227 int mismatch_loc;
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
228 mismatch_loc = is_assignable_to(
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
229 _locals, target->locals(), target->locals_size(), THREAD);
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
230 if (mismatch_loc != target->locals_size()) {
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
231 *ctx = ErrorContext::bad_type(target->offset(),
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
232 TypeOrigin::local(mismatch_loc, (StackMapFrame*)this),
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
233 TypeOrigin::sm_local(mismatch_loc, (StackMapFrame*)target));
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
234 return false;
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
235 }
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
236 mismatch_loc = is_assignable_to(_stack, target->stack(), _stack_size, THREAD);
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
237 if (mismatch_loc != _stack_size) {
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
238 *ctx = ErrorContext::bad_type(target->offset(),
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
239 TypeOrigin::stack(mismatch_loc, (StackMapFrame*)this),
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
240 TypeOrigin::sm_stack(mismatch_loc, (StackMapFrame*)target));
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
241 return false;
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
242 }
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
243
0
a61af66fc99e Initial load
duke
parents:
diff changeset
244 bool match_flags = (_flags | target->flags()) == target->flags();
6605
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
245 if (match_flags || is_exception_handler && has_flag_match_exception(target)) {
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
246 return true;
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
247 } else {
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
248 *ctx = ErrorContext::bad_flags(target->offset(),
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
249 (StackMapFrame*)this, (StackMapFrame*)target);
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
250 return false;
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
251 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
252 }
a61af66fc99e Initial load
duke
parents:
diff changeset
253
a61af66fc99e Initial load
duke
parents:
diff changeset
254 VerificationType StackMapFrame::pop_stack_ex(VerificationType type, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
255 if (_stack_size <= 0) {
6605
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
256 verifier()->verify_error(
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
257 ErrorContext::stack_underflow(_offset, this),
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
258 "Operand stack underflow");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
259 return VerificationType::bogus_type();
a61af66fc99e Initial load
duke
parents:
diff changeset
260 }
a61af66fc99e Initial load
duke
parents:
diff changeset
261 VerificationType top = _stack[--_stack_size];
a61af66fc99e Initial load
duke
parents:
diff changeset
262 bool subtype = type.is_assignable_from(
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
263 top, verifier(), CHECK_(VerificationType::bogus_type()));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
264 if (!subtype) {
6605
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
265 verifier()->verify_error(
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
266 ErrorContext::bad_type(_offset, stack_top_ctx(),
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
267 TypeOrigin::implicit(type)),
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
268 "Bad type on operand stack");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
269 return VerificationType::bogus_type();
a61af66fc99e Initial load
duke
parents:
diff changeset
270 }
a61af66fc99e Initial load
duke
parents:
diff changeset
271 return top;
a61af66fc99e Initial load
duke
parents:
diff changeset
272 }
a61af66fc99e Initial load
duke
parents:
diff changeset
273
a61af66fc99e Initial load
duke
parents:
diff changeset
274 VerificationType StackMapFrame::get_local(
a61af66fc99e Initial load
duke
parents:
diff changeset
275 int32_t index, VerificationType type, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
276 if (index >= _max_locals) {
6605
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
277 verifier()->verify_error(
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
278 ErrorContext::bad_local_index(_offset, index),
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
279 "Local variable table overflow");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
280 return VerificationType::bogus_type();
a61af66fc99e Initial load
duke
parents:
diff changeset
281 }
a61af66fc99e Initial load
duke
parents:
diff changeset
282 bool subtype = type.is_assignable_from(_locals[index],
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
283 verifier(), CHECK_(VerificationType::bogus_type()));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
284 if (!subtype) {
6605
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
285 verifier()->verify_error(
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
286 ErrorContext::bad_type(_offset,
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
287 TypeOrigin::local(index, this),
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
288 TypeOrigin::implicit(type)),
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
289 "Bad local variable type");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
290 return VerificationType::bogus_type();
a61af66fc99e Initial load
duke
parents:
diff changeset
291 }
a61af66fc99e Initial load
duke
parents:
diff changeset
292 if(index >= _locals_size) { _locals_size = index + 1; }
a61af66fc99e Initial load
duke
parents:
diff changeset
293 return _locals[index];
a61af66fc99e Initial load
duke
parents:
diff changeset
294 }
a61af66fc99e Initial load
duke
parents:
diff changeset
295
a61af66fc99e Initial load
duke
parents:
diff changeset
296 void StackMapFrame::get_local_2(
a61af66fc99e Initial load
duke
parents:
diff changeset
297 int32_t index, VerificationType type1, VerificationType type2, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
298 assert(type1.is_long() || type1.is_double(), "must be long/double");
a61af66fc99e Initial load
duke
parents:
diff changeset
299 assert(type2.is_long2() || type2.is_double2(), "must be long/double_2");
a61af66fc99e Initial load
duke
parents:
diff changeset
300 if (index >= _locals_size - 1) {
6605
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
301 verifier()->verify_error(
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
302 ErrorContext::bad_local_index(_offset, index),
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
303 "get long/double overflows locals");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
304 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
305 }
6605
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
306 bool subtype = type1.is_assignable_from(_locals[index], verifier(), CHECK);
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
307 if (!subtype) {
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
308 verifier()->verify_error(
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
309 ErrorContext::bad_type(_offset,
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
310 TypeOrigin::local(index, this), TypeOrigin::implicit(type1)),
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
311 "Bad local variable type");
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
312 } else {
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
313 subtype = type2.is_assignable_from(_locals[index + 1], verifier(), CHECK);
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
314 if (!subtype) {
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
315 /* Unreachable? All local store routines convert a split long or double
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
316 * into a TOP during the store. So we should never end up seeing an
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
317 * orphaned half. */
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
318 verifier()->verify_error(
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
319 ErrorContext::bad_type(_offset,
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
320 TypeOrigin::local(index + 1, this), TypeOrigin::implicit(type2)),
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
321 "Bad local variable type");
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
322 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
323 }
a61af66fc99e Initial load
duke
parents:
diff changeset
324 }
a61af66fc99e Initial load
duke
parents:
diff changeset
325
a61af66fc99e Initial load
duke
parents:
diff changeset
326 void StackMapFrame::set_local(int32_t index, VerificationType type, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
327 assert(!type.is_check(), "Must be a real type");
a61af66fc99e Initial load
duke
parents:
diff changeset
328 if (index >= _max_locals) {
6605
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
329 verifier()->verify_error(
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
330 ErrorContext::bad_local_index(_offset, index),
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
331 "Local variable table overflow");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
332 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
333 }
a61af66fc99e Initial load
duke
parents:
diff changeset
334 // If type at index is double or long, set the next location to be unusable
a61af66fc99e Initial load
duke
parents:
diff changeset
335 if (_locals[index].is_double() || _locals[index].is_long()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
336 assert((index + 1) < _locals_size, "Local variable table overflow");
a61af66fc99e Initial load
duke
parents:
diff changeset
337 _locals[index + 1] = VerificationType::bogus_type();
a61af66fc99e Initial load
duke
parents:
diff changeset
338 }
a61af66fc99e Initial load
duke
parents:
diff changeset
339 // If type at index is double_2 or long_2, set the previous location to be unusable
a61af66fc99e Initial load
duke
parents:
diff changeset
340 if (_locals[index].is_double2() || _locals[index].is_long2()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
341 assert(index >= 1, "Local variable table underflow");
a61af66fc99e Initial load
duke
parents:
diff changeset
342 _locals[index - 1] = VerificationType::bogus_type();
a61af66fc99e Initial load
duke
parents:
diff changeset
343 }
a61af66fc99e Initial load
duke
parents:
diff changeset
344 _locals[index] = type;
a61af66fc99e Initial load
duke
parents:
diff changeset
345 if (index >= _locals_size) {
a61af66fc99e Initial load
duke
parents:
diff changeset
346 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
347 for (int i=_locals_size; i<index; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
348 assert(_locals[i] == VerificationType::bogus_type(),
a61af66fc99e Initial load
duke
parents:
diff changeset
349 "holes must be bogus type");
a61af66fc99e Initial load
duke
parents:
diff changeset
350 }
a61af66fc99e Initial load
duke
parents:
diff changeset
351 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
352 _locals_size = index + 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
353 }
a61af66fc99e Initial load
duke
parents:
diff changeset
354 }
a61af66fc99e Initial load
duke
parents:
diff changeset
355
a61af66fc99e Initial load
duke
parents:
diff changeset
356 void StackMapFrame::set_local_2(
a61af66fc99e Initial load
duke
parents:
diff changeset
357 int32_t index, VerificationType type1, VerificationType type2, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
358 assert(type1.is_long() || type1.is_double(), "must be long/double");
a61af66fc99e Initial load
duke
parents:
diff changeset
359 assert(type2.is_long2() || type2.is_double2(), "must be long/double_2");
a61af66fc99e Initial load
duke
parents:
diff changeset
360 if (index >= _max_locals - 1) {
6605
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
361 verifier()->verify_error(
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
362 ErrorContext::bad_local_index(_offset, index),
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
363 "Local variable table overflow");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
364 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
365 }
a61af66fc99e Initial load
duke
parents:
diff changeset
366 // If type at index+1 is double or long, set the next location to be unusable
a61af66fc99e Initial load
duke
parents:
diff changeset
367 if (_locals[index+1].is_double() || _locals[index+1].is_long()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
368 assert((index + 2) < _locals_size, "Local variable table overflow");
a61af66fc99e Initial load
duke
parents:
diff changeset
369 _locals[index + 2] = VerificationType::bogus_type();
a61af66fc99e Initial load
duke
parents:
diff changeset
370 }
a61af66fc99e Initial load
duke
parents:
diff changeset
371 // If type at index is double_2 or long_2, set the previous location to be unusable
a61af66fc99e Initial load
duke
parents:
diff changeset
372 if (_locals[index].is_double2() || _locals[index].is_long2()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
373 assert(index >= 1, "Local variable table underflow");
a61af66fc99e Initial load
duke
parents:
diff changeset
374 _locals[index - 1] = VerificationType::bogus_type();
a61af66fc99e Initial load
duke
parents:
diff changeset
375 }
a61af66fc99e Initial load
duke
parents:
diff changeset
376 _locals[index] = type1;
a61af66fc99e Initial load
duke
parents:
diff changeset
377 _locals[index+1] = type2;
a61af66fc99e Initial load
duke
parents:
diff changeset
378 if (index >= _locals_size - 1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
379 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
380 for (int i=_locals_size; i<index; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
381 assert(_locals[i] == VerificationType::bogus_type(),
a61af66fc99e Initial load
duke
parents:
diff changeset
382 "holes must be bogus type");
a61af66fc99e Initial load
duke
parents:
diff changeset
383 }
a61af66fc99e Initial load
duke
parents:
diff changeset
384 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
385 _locals_size = index + 2;
a61af66fc99e Initial load
duke
parents:
diff changeset
386 }
a61af66fc99e Initial load
duke
parents:
diff changeset
387 }
a61af66fc99e Initial load
duke
parents:
diff changeset
388
6605
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
389 TypeOrigin StackMapFrame::stack_top_ctx() {
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
390 return TypeOrigin::stack(_stack_size, this);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
391 }
a61af66fc99e Initial load
duke
parents:
diff changeset
392
6605
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
393 void StackMapFrame::print_on(outputStream* str) const {
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
394 str->indent().print_cr("bci: @%d", _offset);
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
395 str->indent().print_cr("flags: {%s }",
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
396 flag_this_uninit() ? " flagThisUninit" : "");
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
397 str->indent().print("locals: {");
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
398 for (int32_t i = 0; i < _locals_size; ++i) {
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
399 str->print(" ");
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
400 _locals[i].print_on(str);
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
401 if (i != _locals_size - 1) {
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
402 str->print(",");
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
403 }
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
404 }
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
405 str->print_cr(" }");
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
406 str->indent().print("stack: {");
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
407 for (int32_t j = 0; j < _stack_size; ++j) {
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
408 str->print(" ");
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
409 _stack[j].print_on(str);
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
410 if (j != _stack_size - 1) {
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
411 str->print(",");
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
412 }
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
413 }
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
414 str->print_cr(" }");
4ee06e614636 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 2477
diff changeset
415 }