annotate src/share/vm/classfile/stackMapFrame.hpp @ 3762:5c0a3c1858b1

7048782: CMS: assert(last_chunk_index_to_check<= last_chunk_index) failed: parCardTableModRefBS.cpp:359 Summary: The LNC array is sized before the start of a scavenge, while the heap may expand during a scavenge. With CMS, the last block of an arbitrary suffice of the LNC array may expand due to coalition with the expansion delta. We now take care not to attempt access past the end of the LNC array. LNC array code will be cleaned up and suitably encapsulated as part of the forthcoming performance RFE 7043675. Reviewed-by: brutisso
author ysr
date Thu, 02 Jun 2011 10:23:36 -0700
parents 3449f5e02cc4
children 4ee06e614636
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
2426
1d1603768966 7010070: Update all 2010 Oracle-changed OpenJDK files to have the proper copyright dates - second pass
trims
parents: 2303
diff changeset
2 * Copyright (c) 2003, 2011, 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 #ifndef SHARE_VM_CLASSFILE_STACKMAPFRAME_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
26 #define SHARE_VM_CLASSFILE_STACKMAPFRAME_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
27
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
28 #include "classfile/verificationType.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
29 #include "classfile/verifier.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
30 #include "oops/methodOop.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
31 #include "runtime/handles.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
32 #include "runtime/signature.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
33 #include "utilities/exceptions.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
34
0
a61af66fc99e Initial load
duke
parents:
diff changeset
35 // A StackMapFrame represents one frame in the stack map attribute.
a61af66fc99e Initial load
duke
parents:
diff changeset
36
a61af66fc99e Initial load
duke
parents:
diff changeset
37 enum {
a61af66fc99e Initial load
duke
parents:
diff changeset
38 FLAG_THIS_UNINIT = 0x01
a61af66fc99e Initial load
duke
parents:
diff changeset
39 };
a61af66fc99e Initial load
duke
parents:
diff changeset
40
a61af66fc99e Initial load
duke
parents:
diff changeset
41 class StackMapFrame : public ResourceObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
42 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
43 int32_t _offset;
a61af66fc99e Initial load
duke
parents:
diff changeset
44
a61af66fc99e Initial load
duke
parents:
diff changeset
45 // See comment in StackMapTable about _frame_count about why these
a61af66fc99e Initial load
duke
parents:
diff changeset
46 // fields are int32_t instead of u2.
a61af66fc99e Initial load
duke
parents:
diff changeset
47 int32_t _locals_size; // number of valid type elements in _locals
a61af66fc99e Initial load
duke
parents:
diff changeset
48 int32_t _stack_size; // number of valid type elements in _stack
a61af66fc99e Initial load
duke
parents:
diff changeset
49
a61af66fc99e Initial load
duke
parents:
diff changeset
50 int32_t _max_locals;
a61af66fc99e Initial load
duke
parents:
diff changeset
51 int32_t _max_stack;
a61af66fc99e Initial load
duke
parents:
diff changeset
52
a61af66fc99e Initial load
duke
parents:
diff changeset
53 u1 _flags;
a61af66fc99e Initial load
duke
parents:
diff changeset
54 VerificationType* _locals; // local variable type array
a61af66fc99e Initial load
duke
parents:
diff changeset
55 VerificationType* _stack; // operand stack type array
a61af66fc99e Initial load
duke
parents:
diff changeset
56
a61af66fc99e Initial load
duke
parents:
diff changeset
57 ClassVerifier* _verifier; // the verifier verifying this method
a61af66fc99e Initial load
duke
parents:
diff changeset
58
a61af66fc99e Initial load
duke
parents:
diff changeset
59 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
60 // constructors
a61af66fc99e Initial load
duke
parents:
diff changeset
61
a61af66fc99e Initial load
duke
parents:
diff changeset
62 // This constructor is used by the type checker to allocate frames
a61af66fc99e Initial load
duke
parents:
diff changeset
63 // in type state, which have _max_locals and _max_stack array elements
a61af66fc99e Initial load
duke
parents:
diff changeset
64 // in _locals and _stack.
a61af66fc99e Initial load
duke
parents:
diff changeset
65 StackMapFrame(u2 max_locals, u2 max_stack, ClassVerifier* verifier);
a61af66fc99e Initial load
duke
parents:
diff changeset
66
a61af66fc99e Initial load
duke
parents:
diff changeset
67 // This constructor is used to initialize stackmap frames in stackmap table,
a61af66fc99e Initial load
duke
parents:
diff changeset
68 // which have _locals_size and _stack_size array elements in _locals and _stack.
a61af66fc99e Initial load
duke
parents:
diff changeset
69 StackMapFrame(int32_t offset,
a61af66fc99e Initial load
duke
parents:
diff changeset
70 u1 flags,
a61af66fc99e Initial load
duke
parents:
diff changeset
71 u2 locals_size,
a61af66fc99e Initial load
duke
parents:
diff changeset
72 u2 stack_size,
a61af66fc99e Initial load
duke
parents:
diff changeset
73 u2 max_locals,
a61af66fc99e Initial load
duke
parents:
diff changeset
74 u2 max_stack,
a61af66fc99e Initial load
duke
parents:
diff changeset
75 VerificationType* locals,
a61af66fc99e Initial load
duke
parents:
diff changeset
76 VerificationType* stack,
a61af66fc99e Initial load
duke
parents:
diff changeset
77 ClassVerifier* v) : _offset(offset), _flags(flags),
a61af66fc99e Initial load
duke
parents:
diff changeset
78 _locals_size(locals_size),
a61af66fc99e Initial load
duke
parents:
diff changeset
79 _stack_size(stack_size),
a61af66fc99e Initial load
duke
parents:
diff changeset
80 _max_locals(max_locals),
a61af66fc99e Initial load
duke
parents:
diff changeset
81 _max_stack(max_stack),
a61af66fc99e Initial load
duke
parents:
diff changeset
82 _locals(locals), _stack(stack),
a61af66fc99e Initial load
duke
parents:
diff changeset
83 _verifier(v) { }
a61af66fc99e Initial load
duke
parents:
diff changeset
84
a61af66fc99e Initial load
duke
parents:
diff changeset
85 inline void set_offset(int32_t offset) { _offset = offset; }
a61af66fc99e Initial load
duke
parents:
diff changeset
86 inline void set_verifier(ClassVerifier* v) { _verifier = v; }
a61af66fc99e Initial load
duke
parents:
diff changeset
87 inline void set_flags(u1 flags) { _flags = flags; }
a61af66fc99e Initial load
duke
parents:
diff changeset
88 inline void set_locals_size(u2 locals_size) { _locals_size = locals_size; }
a61af66fc99e Initial load
duke
parents:
diff changeset
89 inline void set_stack_size(u2 stack_size) { _stack_size = stack_size; }
a61af66fc99e Initial load
duke
parents:
diff changeset
90 inline void clear_stack() { _stack_size = 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
91 inline int32_t offset() const { return _offset; }
a61af66fc99e Initial load
duke
parents:
diff changeset
92 inline ClassVerifier* verifier() const { return _verifier; }
a61af66fc99e Initial load
duke
parents:
diff changeset
93 inline u1 flags() const { return _flags; }
a61af66fc99e Initial load
duke
parents:
diff changeset
94 inline int32_t locals_size() const { return _locals_size; }
a61af66fc99e Initial load
duke
parents:
diff changeset
95 inline VerificationType* locals() const { return _locals; }
a61af66fc99e Initial load
duke
parents:
diff changeset
96 inline int32_t stack_size() const { return _stack_size; }
a61af66fc99e Initial load
duke
parents:
diff changeset
97 inline VerificationType* stack() const { return _stack; }
a61af66fc99e Initial load
duke
parents:
diff changeset
98 inline int32_t max_locals() const { return _max_locals; }
a61af66fc99e Initial load
duke
parents:
diff changeset
99 inline int32_t max_stack() const { return _max_stack; }
a61af66fc99e Initial load
duke
parents:
diff changeset
100 inline bool flag_this_uninit() const { return _flags & FLAG_THIS_UNINIT; }
a61af66fc99e Initial load
duke
parents:
diff changeset
101
a61af66fc99e Initial load
duke
parents:
diff changeset
102 // Set locals and stack types to bogus
a61af66fc99e Initial load
duke
parents:
diff changeset
103 inline void reset() {
a61af66fc99e Initial load
duke
parents:
diff changeset
104 int32_t i;
a61af66fc99e Initial load
duke
parents:
diff changeset
105 for (i = 0; i < _max_locals; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
106 _locals[i] = VerificationType::bogus_type();
a61af66fc99e Initial load
duke
parents:
diff changeset
107 }
a61af66fc99e Initial load
duke
parents:
diff changeset
108 for (i = 0; i < _max_stack; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
109 _stack[i] = VerificationType::bogus_type();
a61af66fc99e Initial load
duke
parents:
diff changeset
110 }
a61af66fc99e Initial load
duke
parents:
diff changeset
111 }
a61af66fc99e Initial load
duke
parents:
diff changeset
112
a61af66fc99e Initial load
duke
parents:
diff changeset
113 // Return a StackMapFrame with the same local variable array and empty stack.
a61af66fc99e Initial load
duke
parents:
diff changeset
114 // Stack array is allocate with unused one element.
a61af66fc99e Initial load
duke
parents:
diff changeset
115 StackMapFrame* frame_in_exception_handler(u1 flags);
a61af66fc99e Initial load
duke
parents:
diff changeset
116
a61af66fc99e Initial load
duke
parents:
diff changeset
117 // Set local variable type array based on m's signature.
a61af66fc99e Initial load
duke
parents:
diff changeset
118 VerificationType set_locals_from_arg(
a61af66fc99e Initial load
duke
parents:
diff changeset
119 const methodHandle m, VerificationType thisKlass, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
120
a61af66fc99e Initial load
duke
parents:
diff changeset
121 // Search local variable type array and stack type array.
a61af66fc99e Initial load
duke
parents:
diff changeset
122 // Return true if an uninitialized object is found.
a61af66fc99e Initial load
duke
parents:
diff changeset
123 bool has_new_object() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
124
a61af66fc99e Initial load
duke
parents:
diff changeset
125 // Search local variable type array and stack type array.
a61af66fc99e Initial load
duke
parents:
diff changeset
126 // Set every element with type of old_object to new_object.
a61af66fc99e Initial load
duke
parents:
diff changeset
127 void initialize_object(
a61af66fc99e Initial load
duke
parents:
diff changeset
128 VerificationType old_object, VerificationType new_object);
a61af66fc99e Initial load
duke
parents:
diff changeset
129
a61af66fc99e Initial load
duke
parents:
diff changeset
130 // Copy local variable type array in src into this local variable type array.
a61af66fc99e Initial load
duke
parents:
diff changeset
131 void copy_locals(const StackMapFrame* src);
a61af66fc99e Initial load
duke
parents:
diff changeset
132
a61af66fc99e Initial load
duke
parents:
diff changeset
133 // Copy stack type array in src into this stack type array.
a61af66fc99e Initial load
duke
parents:
diff changeset
134 void copy_stack(const StackMapFrame* src);
a61af66fc99e Initial load
duke
parents:
diff changeset
135
a61af66fc99e Initial load
duke
parents:
diff changeset
136 // Return true if this stack map frame is assignable to target.
2472
7144a1d6e0a9 7030388: JCK test failed to reject invalid class check01304m10n.
kamg
parents: 2303
diff changeset
137 bool is_assignable_to(const StackMapFrame* target,
7144a1d6e0a9 7030388: JCK test failed to reject invalid class check01304m10n.
kamg
parents: 2303
diff changeset
138 bool is_exception_handler, TRAPS) const;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
139
a61af66fc99e Initial load
duke
parents:
diff changeset
140 // Push type into stack type array.
a61af66fc99e Initial load
duke
parents:
diff changeset
141 inline void push_stack(VerificationType type, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
142 assert(!type.is_check(), "Must be a real type");
a61af66fc99e Initial load
duke
parents:
diff changeset
143 if (_stack_size >= _max_stack) {
a61af66fc99e Initial load
duke
parents:
diff changeset
144 verifier()->verify_error(_offset, "Operand stack overflow");
a61af66fc99e Initial load
duke
parents:
diff changeset
145 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
146 }
a61af66fc99e Initial load
duke
parents:
diff changeset
147 _stack[_stack_size++] = type;
a61af66fc99e Initial load
duke
parents:
diff changeset
148 }
a61af66fc99e Initial load
duke
parents:
diff changeset
149
a61af66fc99e Initial load
duke
parents:
diff changeset
150 inline void push_stack_2(
a61af66fc99e Initial load
duke
parents:
diff changeset
151 VerificationType type1, VerificationType type2, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
152 assert(type1.is_long() || type1.is_double(), "must be long/double");
a61af66fc99e Initial load
duke
parents:
diff changeset
153 assert(type2.is_long2() || type2.is_double2(), "must be long/double_2");
a61af66fc99e Initial load
duke
parents:
diff changeset
154 if (_stack_size >= _max_stack - 1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
155 verifier()->verify_error(_offset, "Operand stack overflow");
a61af66fc99e Initial load
duke
parents:
diff changeset
156 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
157 }
a61af66fc99e Initial load
duke
parents:
diff changeset
158 _stack[_stack_size++] = type1;
a61af66fc99e Initial load
duke
parents:
diff changeset
159 _stack[_stack_size++] = type2;
a61af66fc99e Initial load
duke
parents:
diff changeset
160 }
a61af66fc99e Initial load
duke
parents:
diff changeset
161
a61af66fc99e Initial load
duke
parents:
diff changeset
162 // Pop and return the top type on stack without verifying.
a61af66fc99e Initial load
duke
parents:
diff changeset
163 inline VerificationType pop_stack(TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
164 if (_stack_size <= 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
165 verifier()->verify_error(_offset, "Operand stack underflow");
a61af66fc99e Initial load
duke
parents:
diff changeset
166 return VerificationType::bogus_type();
a61af66fc99e Initial load
duke
parents:
diff changeset
167 }
a61af66fc99e Initial load
duke
parents:
diff changeset
168 // Put bogus type to indicate it's no longer valid.
a61af66fc99e Initial load
duke
parents:
diff changeset
169 // Added to make it consistent with the other pop_stack method.
a61af66fc99e Initial load
duke
parents:
diff changeset
170 VerificationType top = _stack[--_stack_size];
a61af66fc99e Initial load
duke
parents:
diff changeset
171 NOT_PRODUCT( _stack[_stack_size] = VerificationType::bogus_type(); )
a61af66fc99e Initial load
duke
parents:
diff changeset
172 return top;
a61af66fc99e Initial load
duke
parents:
diff changeset
173 }
a61af66fc99e Initial load
duke
parents:
diff changeset
174
a61af66fc99e Initial load
duke
parents:
diff changeset
175 // Pop and return the top type on stack type array after verifying it
a61af66fc99e Initial load
duke
parents:
diff changeset
176 // is assignable to type.
a61af66fc99e Initial load
duke
parents:
diff changeset
177 inline VerificationType pop_stack(VerificationType type, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
178 if (_stack_size != 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
179 VerificationType top = _stack[_stack_size - 1];
a61af66fc99e Initial load
duke
parents:
diff changeset
180 bool subtype = type.is_assignable_from(
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
181 top, verifier(), CHECK_(VerificationType::bogus_type()));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
182 if (subtype) {
a61af66fc99e Initial load
duke
parents:
diff changeset
183 _stack_size --;
a61af66fc99e Initial load
duke
parents:
diff changeset
184 NOT_PRODUCT( _stack[_stack_size] = VerificationType::bogus_type(); )
a61af66fc99e Initial load
duke
parents:
diff changeset
185 return top;
a61af66fc99e Initial load
duke
parents:
diff changeset
186 }
a61af66fc99e Initial load
duke
parents:
diff changeset
187 }
a61af66fc99e Initial load
duke
parents:
diff changeset
188 return pop_stack_ex(type, THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
189 }
a61af66fc99e Initial load
duke
parents:
diff changeset
190
a61af66fc99e Initial load
duke
parents:
diff changeset
191 inline void pop_stack_2(
a61af66fc99e Initial load
duke
parents:
diff changeset
192 VerificationType type1, VerificationType type2, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
193 assert(type1.is_long2() || type1.is_double2(), "must be long/double");
a61af66fc99e Initial load
duke
parents:
diff changeset
194 assert(type2.is_long() || type2.is_double(), "must be long/double_2");
a61af66fc99e Initial load
duke
parents:
diff changeset
195 if (_stack_size >= 2) {
a61af66fc99e Initial load
duke
parents:
diff changeset
196 VerificationType top1 = _stack[_stack_size - 1];
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
197 bool subtype1 = type1.is_assignable_from(top1, verifier(), CHECK);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
198 VerificationType top2 = _stack[_stack_size - 2];
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
199 bool subtype2 = type2.is_assignable_from(top2, verifier(), CHECK);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
200 if (subtype1 && subtype2) {
a61af66fc99e Initial load
duke
parents:
diff changeset
201 _stack_size -= 2;
a61af66fc99e Initial load
duke
parents:
diff changeset
202 NOT_PRODUCT( _stack[_stack_size] = VerificationType::bogus_type(); )
a61af66fc99e Initial load
duke
parents:
diff changeset
203 NOT_PRODUCT( _stack[_stack_size+1] = VerificationType::bogus_type(); )
a61af66fc99e Initial load
duke
parents:
diff changeset
204 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
205 }
a61af66fc99e Initial load
duke
parents:
diff changeset
206 }
a61af66fc99e Initial load
duke
parents:
diff changeset
207 pop_stack_ex(type1, THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
208 pop_stack_ex(type2, THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
209 }
a61af66fc99e Initial load
duke
parents:
diff changeset
210
a61af66fc99e Initial load
duke
parents:
diff changeset
211 // Uncommon case that throws exceptions.
a61af66fc99e Initial load
duke
parents:
diff changeset
212 VerificationType pop_stack_ex(VerificationType type, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
213
a61af66fc99e Initial load
duke
parents:
diff changeset
214 // Return the type at index in local variable array after verifying
a61af66fc99e Initial load
duke
parents:
diff changeset
215 // it is assignable to type.
a61af66fc99e Initial load
duke
parents:
diff changeset
216 VerificationType get_local(int32_t index, VerificationType type, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
217 // For long/double.
a61af66fc99e Initial load
duke
parents:
diff changeset
218 void get_local_2(
a61af66fc99e Initial load
duke
parents:
diff changeset
219 int32_t index, VerificationType type1, VerificationType type2, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
220
a61af66fc99e Initial load
duke
parents:
diff changeset
221 // Set element at index in local variable array to type.
a61af66fc99e Initial load
duke
parents:
diff changeset
222 void set_local(int32_t index, VerificationType type, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
223 // For long/double.
a61af66fc99e Initial load
duke
parents:
diff changeset
224 void set_local_2(
a61af66fc99e Initial load
duke
parents:
diff changeset
225 int32_t index, VerificationType type1, VerificationType type2, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
226
a61af66fc99e Initial load
duke
parents:
diff changeset
227 // Private auxiliary method used only in is_assignable_to(StackMapFrame).
a61af66fc99e Initial load
duke
parents:
diff changeset
228 // Returns true if src is assignable to target.
a61af66fc99e Initial load
duke
parents:
diff changeset
229 bool is_assignable_to(
a61af66fc99e Initial load
duke
parents:
diff changeset
230 VerificationType* src, VerificationType* target, int32_t len, TRAPS) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
231
2303
c1a6154012c8 7020118: Alter frame assignability to allow for exception handler coverage of invokespecial <init>
kamg
parents: 2177
diff changeset
232 bool has_flag_match_exception(const StackMapFrame* target) const;
c1a6154012c8 7020118: Alter frame assignability to allow for exception handler coverage of invokespecial <init>
kamg
parents: 2177
diff changeset
233
0
a61af66fc99e Initial load
duke
parents:
diff changeset
234 // Debugging
a61af66fc99e Initial load
duke
parents:
diff changeset
235 void print() const PRODUCT_RETURN;
a61af66fc99e Initial load
duke
parents:
diff changeset
236 };
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
237
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
238 #endif // SHARE_VM_CLASSFILE_STACKMAPFRAME_HPP