annotate src/share/vm/classfile/classFileParser.hpp @ 939:9eebd3ac74cf

6845368: large objects cause a crash or unexpected exception Reviewed-by: jmasa, iveresov
author jcoomes
date Thu, 13 Aug 2009 16:22:45 -0700
parents b37c246bf7ce
children 26b774d693aa
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
710
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 470
diff changeset
2 * Copyright 1997-2009 Sun Microsystems, Inc. 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 *
a61af66fc99e Initial load
duke
parents:
diff changeset
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 * CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 * have any questions.
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 // Parser for for .class files
a61af66fc99e Initial load
duke
parents:
diff changeset
26 //
a61af66fc99e Initial load
duke
parents:
diff changeset
27 // The bytes describing the class file structure is read from a Stream object
a61af66fc99e Initial load
duke
parents:
diff changeset
28
a61af66fc99e Initial load
duke
parents:
diff changeset
29 class ClassFileParser VALUE_OBJ_CLASS_SPEC {
a61af66fc99e Initial load
duke
parents:
diff changeset
30 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
31 bool _need_verify;
a61af66fc99e Initial load
duke
parents:
diff changeset
32 bool _relax_verify;
a61af66fc99e Initial load
duke
parents:
diff changeset
33 u2 _major_version;
a61af66fc99e Initial load
duke
parents:
diff changeset
34 u2 _minor_version;
a61af66fc99e Initial load
duke
parents:
diff changeset
35 symbolHandle _class_name;
710
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 470
diff changeset
36 KlassHandle _host_klass;
431
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 0
diff changeset
37 GrowableArray<Handle>* _cp_patches; // overrides for CP entries
0
a61af66fc99e Initial load
duke
parents:
diff changeset
38
a61af66fc99e Initial load
duke
parents:
diff changeset
39 bool _has_finalizer;
a61af66fc99e Initial load
duke
parents:
diff changeset
40 bool _has_empty_finalizer;
a61af66fc99e Initial load
duke
parents:
diff changeset
41 bool _has_vanilla_constructor;
a61af66fc99e Initial load
duke
parents:
diff changeset
42
a61af66fc99e Initial load
duke
parents:
diff changeset
43 enum { fixed_buffer_size = 128 };
a61af66fc99e Initial load
duke
parents:
diff changeset
44 u_char linenumbertable_buffer[fixed_buffer_size];
a61af66fc99e Initial load
duke
parents:
diff changeset
45
a61af66fc99e Initial load
duke
parents:
diff changeset
46 ClassFileStream* _stream; // Actual input stream
a61af66fc99e Initial load
duke
parents:
diff changeset
47
a61af66fc99e Initial load
duke
parents:
diff changeset
48 enum { LegalClass, LegalField, LegalMethod }; // used to verify unqualified names
a61af66fc99e Initial load
duke
parents:
diff changeset
49
a61af66fc99e Initial load
duke
parents:
diff changeset
50 // Accessors
a61af66fc99e Initial load
duke
parents:
diff changeset
51 ClassFileStream* stream() { return _stream; }
a61af66fc99e Initial load
duke
parents:
diff changeset
52 void set_stream(ClassFileStream* st) { _stream = st; }
a61af66fc99e Initial load
duke
parents:
diff changeset
53
a61af66fc99e Initial load
duke
parents:
diff changeset
54 // Constant pool parsing
a61af66fc99e Initial load
duke
parents:
diff changeset
55 void parse_constant_pool_entries(constantPoolHandle cp, int length, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
56
a61af66fc99e Initial load
duke
parents:
diff changeset
57 constantPoolHandle parse_constant_pool(TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
58
a61af66fc99e Initial load
duke
parents:
diff changeset
59 // Interface parsing
a61af66fc99e Initial load
duke
parents:
diff changeset
60 objArrayHandle parse_interfaces(constantPoolHandle cp,
a61af66fc99e Initial load
duke
parents:
diff changeset
61 int length,
a61af66fc99e Initial load
duke
parents:
diff changeset
62 Handle class_loader,
a61af66fc99e Initial load
duke
parents:
diff changeset
63 Handle protection_domain,
a61af66fc99e Initial load
duke
parents:
diff changeset
64 symbolHandle class_name,
a61af66fc99e Initial load
duke
parents:
diff changeset
65 TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
66
a61af66fc99e Initial load
duke
parents:
diff changeset
67 // Field parsing
a61af66fc99e Initial load
duke
parents:
diff changeset
68 void parse_field_attributes(constantPoolHandle cp, u2 attributes_count,
a61af66fc99e Initial load
duke
parents:
diff changeset
69 bool is_static, u2 signature_index,
a61af66fc99e Initial load
duke
parents:
diff changeset
70 u2* constantvalue_index_addr,
a61af66fc99e Initial load
duke
parents:
diff changeset
71 bool* is_synthetic_addr,
a61af66fc99e Initial load
duke
parents:
diff changeset
72 u2* generic_signature_index_addr,
a61af66fc99e Initial load
duke
parents:
diff changeset
73 typeArrayHandle* field_annotations, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
74 typeArrayHandle parse_fields(constantPoolHandle cp, bool is_interface,
a61af66fc99e Initial load
duke
parents:
diff changeset
75 struct FieldAllocationCount *fac,
a61af66fc99e Initial load
duke
parents:
diff changeset
76 objArrayHandle* fields_annotations, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
77
a61af66fc99e Initial load
duke
parents:
diff changeset
78 // Method parsing
a61af66fc99e Initial load
duke
parents:
diff changeset
79 methodHandle parse_method(constantPoolHandle cp, bool is_interface,
a61af66fc99e Initial load
duke
parents:
diff changeset
80 AccessFlags* promoted_flags,
a61af66fc99e Initial load
duke
parents:
diff changeset
81 typeArrayHandle* method_annotations,
a61af66fc99e Initial load
duke
parents:
diff changeset
82 typeArrayHandle* method_parameter_annotations,
a61af66fc99e Initial load
duke
parents:
diff changeset
83 typeArrayHandle* method_default_annotations,
a61af66fc99e Initial load
duke
parents:
diff changeset
84 TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
85 objArrayHandle parse_methods (constantPoolHandle cp, bool is_interface,
a61af66fc99e Initial load
duke
parents:
diff changeset
86 AccessFlags* promoted_flags,
a61af66fc99e Initial load
duke
parents:
diff changeset
87 bool* has_final_method,
a61af66fc99e Initial load
duke
parents:
diff changeset
88 objArrayOop* methods_annotations_oop,
a61af66fc99e Initial load
duke
parents:
diff changeset
89 objArrayOop* methods_parameter_annotations_oop,
a61af66fc99e Initial load
duke
parents:
diff changeset
90 objArrayOop* methods_default_annotations_oop,
a61af66fc99e Initial load
duke
parents:
diff changeset
91 TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
92 typeArrayHandle sort_methods (objArrayHandle methods,
a61af66fc99e Initial load
duke
parents:
diff changeset
93 objArrayHandle methods_annotations,
a61af66fc99e Initial load
duke
parents:
diff changeset
94 objArrayHandle methods_parameter_annotations,
a61af66fc99e Initial load
duke
parents:
diff changeset
95 objArrayHandle methods_default_annotations,
a61af66fc99e Initial load
duke
parents:
diff changeset
96 TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
97 typeArrayHandle parse_exception_table(u4 code_length, u4 exception_table_length,
a61af66fc99e Initial load
duke
parents:
diff changeset
98 constantPoolHandle cp, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
99 void parse_linenumber_table(
a61af66fc99e Initial load
duke
parents:
diff changeset
100 u4 code_attribute_length, u4 code_length,
a61af66fc99e Initial load
duke
parents:
diff changeset
101 CompressedLineNumberWriteStream** write_stream, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
102 u2* parse_localvariable_table(u4 code_length, u2 max_locals, u4 code_attribute_length,
a61af66fc99e Initial load
duke
parents:
diff changeset
103 constantPoolHandle cp, u2* localvariable_table_length,
a61af66fc99e Initial load
duke
parents:
diff changeset
104 bool isLVTT, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
105 u2* parse_checked_exceptions(u2* checked_exceptions_length, u4 method_attribute_length,
a61af66fc99e Initial load
duke
parents:
diff changeset
106 constantPoolHandle cp, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
107 void parse_type_array(u2 array_length, u4 code_length, u4* u1_index, u4* u2_index,
a61af66fc99e Initial load
duke
parents:
diff changeset
108 u1* u1_array, u2* u2_array, constantPoolHandle cp, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
109 typeArrayOop parse_stackmap_table(u4 code_attribute_length, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
110
a61af66fc99e Initial load
duke
parents:
diff changeset
111 // Classfile attribute parsing
a61af66fc99e Initial load
duke
parents:
diff changeset
112 void parse_classfile_sourcefile_attribute(constantPoolHandle cp, instanceKlassHandle k, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
113 void parse_classfile_source_debug_extension_attribute(constantPoolHandle cp,
a61af66fc99e Initial load
duke
parents:
diff changeset
114 instanceKlassHandle k, int length, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
115 u2 parse_classfile_inner_classes_attribute(constantPoolHandle cp,
a61af66fc99e Initial load
duke
parents:
diff changeset
116 instanceKlassHandle k, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
117 void parse_classfile_attributes(constantPoolHandle cp, instanceKlassHandle k, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
118 void parse_classfile_synthetic_attribute(constantPoolHandle cp, instanceKlassHandle k, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
119 void parse_classfile_signature_attribute(constantPoolHandle cp, instanceKlassHandle k, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
120
a61af66fc99e Initial load
duke
parents:
diff changeset
121 // Annotations handling
a61af66fc99e Initial load
duke
parents:
diff changeset
122 typeArrayHandle assemble_annotations(u1* runtime_visible_annotations,
a61af66fc99e Initial load
duke
parents:
diff changeset
123 int runtime_visible_annotations_length,
a61af66fc99e Initial load
duke
parents:
diff changeset
124 u1* runtime_invisible_annotations,
a61af66fc99e Initial load
duke
parents:
diff changeset
125 int runtime_invisible_annotations_length, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
126
a61af66fc99e Initial load
duke
parents:
diff changeset
127 // Final setup
939
9eebd3ac74cf 6845368: large objects cause a crash or unexpected exception
jcoomes
parents: 938
diff changeset
128 unsigned int compute_oop_map_count(instanceKlassHandle super,
9eebd3ac74cf 6845368: large objects cause a crash or unexpected exception
jcoomes
parents: 938
diff changeset
129 unsigned int nonstatic_oop_count,
9eebd3ac74cf 6845368: large objects cause a crash or unexpected exception
jcoomes
parents: 938
diff changeset
130 int first_nonstatic_oop_offset);
9eebd3ac74cf 6845368: large objects cause a crash or unexpected exception
jcoomes
parents: 938
diff changeset
131 void fill_oop_maps(instanceKlassHandle k,
9eebd3ac74cf 6845368: large objects cause a crash or unexpected exception
jcoomes
parents: 938
diff changeset
132 unsigned int nonstatic_oop_map_count,
9eebd3ac74cf 6845368: large objects cause a crash or unexpected exception
jcoomes
parents: 938
diff changeset
133 int* nonstatic_oop_offsets,
9eebd3ac74cf 6845368: large objects cause a crash or unexpected exception
jcoomes
parents: 938
diff changeset
134 unsigned int* nonstatic_oop_counts);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
135 void set_precomputed_flags(instanceKlassHandle k);
a61af66fc99e Initial load
duke
parents:
diff changeset
136 objArrayHandle compute_transitive_interfaces(instanceKlassHandle super,
a61af66fc99e Initial load
duke
parents:
diff changeset
137 objArrayHandle local_ifs, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
138
a61af66fc99e Initial load
duke
parents:
diff changeset
139 // Special handling for certain classes.
a61af66fc99e Initial load
duke
parents:
diff changeset
140 // Add the "discovered" field to java.lang.ref.Reference if
a61af66fc99e Initial load
duke
parents:
diff changeset
141 // it does not exist.
a61af66fc99e Initial load
duke
parents:
diff changeset
142 void java_lang_ref_Reference_fix_pre(typeArrayHandle* fields_ptr,
a61af66fc99e Initial load
duke
parents:
diff changeset
143 constantPoolHandle cp, FieldAllocationCount *fac_ptr, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
144 // Adjust the field allocation counts for java.lang.Class to add
a61af66fc99e Initial load
duke
parents:
diff changeset
145 // fake fields.
a61af66fc99e Initial load
duke
parents:
diff changeset
146 void java_lang_Class_fix_pre(objArrayHandle* methods_ptr,
a61af66fc99e Initial load
duke
parents:
diff changeset
147 FieldAllocationCount *fac_ptr, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
148 // Adjust the next_nonstatic_oop_offset to place the fake fields
a61af66fc99e Initial load
duke
parents:
diff changeset
149 // before any Java fields.
a61af66fc99e Initial load
duke
parents:
diff changeset
150 void java_lang_Class_fix_post(int* next_nonstatic_oop_offset);
710
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 470
diff changeset
151 // Adjust the field allocation counts for java.dyn.MethodHandle to add
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 470
diff changeset
152 // a fake address (void*) field.
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 470
diff changeset
153 void java_dyn_MethodHandle_fix_pre(constantPoolHandle cp,
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 470
diff changeset
154 typeArrayHandle* fields_ptr,
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 470
diff changeset
155 FieldAllocationCount *fac_ptr, TRAPS);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
156
a61af66fc99e Initial load
duke
parents:
diff changeset
157 // Format checker methods
a61af66fc99e Initial load
duke
parents:
diff changeset
158 void classfile_parse_error(const char* msg, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
159 void classfile_parse_error(const char* msg, int index, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
160 void classfile_parse_error(const char* msg, const char *name, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
161 void classfile_parse_error(const char* msg, int index, const char *name, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
162 inline void guarantee_property(bool b, const char* msg, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
163 if (!b) { classfile_parse_error(msg, CHECK); }
a61af66fc99e Initial load
duke
parents:
diff changeset
164 }
a61af66fc99e Initial load
duke
parents:
diff changeset
165
a61af66fc99e Initial load
duke
parents:
diff changeset
166 inline void assert_property(bool b, const char* msg, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
167 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
168 if (!b) { fatal(msg); }
a61af66fc99e Initial load
duke
parents:
diff changeset
169 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
170 }
a61af66fc99e Initial load
duke
parents:
diff changeset
171
a61af66fc99e Initial load
duke
parents:
diff changeset
172 inline void check_property(bool property, const char* msg, int index, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
173 if (_need_verify) {
a61af66fc99e Initial load
duke
parents:
diff changeset
174 guarantee_property(property, msg, index, CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
175 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
176 assert_property(property, msg, CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
177 }
a61af66fc99e Initial load
duke
parents:
diff changeset
178 }
a61af66fc99e Initial load
duke
parents:
diff changeset
179
a61af66fc99e Initial load
duke
parents:
diff changeset
180 inline void check_property(bool property, const char* msg, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
181 if (_need_verify) {
a61af66fc99e Initial load
duke
parents:
diff changeset
182 guarantee_property(property, msg, CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
183 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
184 assert_property(property, msg, CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
185 }
a61af66fc99e Initial load
duke
parents:
diff changeset
186 }
a61af66fc99e Initial load
duke
parents:
diff changeset
187
a61af66fc99e Initial load
duke
parents:
diff changeset
188 inline void guarantee_property(bool b, const char* msg, int index, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
189 if (!b) { classfile_parse_error(msg, index, CHECK); }
a61af66fc99e Initial load
duke
parents:
diff changeset
190 }
a61af66fc99e Initial load
duke
parents:
diff changeset
191 inline void guarantee_property(bool b, const char* msg, const char *name, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
192 if (!b) { classfile_parse_error(msg, name, CHECK); }
a61af66fc99e Initial load
duke
parents:
diff changeset
193 }
a61af66fc99e Initial load
duke
parents:
diff changeset
194 inline void guarantee_property(bool b, const char* msg, int index, const char *name, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
195 if (!b) { classfile_parse_error(msg, index, name, CHECK); }
a61af66fc99e Initial load
duke
parents:
diff changeset
196 }
a61af66fc99e Initial load
duke
parents:
diff changeset
197
a61af66fc99e Initial load
duke
parents:
diff changeset
198 bool is_supported_version(u2 major, u2 minor);
a61af66fc99e Initial load
duke
parents:
diff changeset
199 bool has_illegal_visibility(jint flags);
a61af66fc99e Initial load
duke
parents:
diff changeset
200
a61af66fc99e Initial load
duke
parents:
diff changeset
201 void verify_constantvalue(int constantvalue_index, int signature_index, constantPoolHandle cp, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
202 void verify_legal_utf8(const unsigned char* buffer, int length, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
203 void verify_legal_class_name(symbolHandle name, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
204 void verify_legal_field_name(symbolHandle name, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
205 void verify_legal_method_name(symbolHandle name, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
206 void verify_legal_field_signature(symbolHandle fieldname, symbolHandle signature, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
207 int verify_legal_method_signature(symbolHandle methodname, symbolHandle signature, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
208 void verify_legal_class_modifiers(jint flags, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
209 void verify_legal_field_modifiers(jint flags, bool is_interface, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
210 void verify_legal_method_modifiers(jint flags, bool is_interface, symbolHandle name, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
211 bool verify_unqualified_name(char* name, unsigned int length, int type);
a61af66fc99e Initial load
duke
parents:
diff changeset
212 char* skip_over_field_name(char* name, bool slash_ok, unsigned int length);
a61af66fc99e Initial load
duke
parents:
diff changeset
213 char* skip_over_field_signature(char* signature, bool void_ok, unsigned int length, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
214
710
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 470
diff changeset
215 bool is_anonymous() {
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 470
diff changeset
216 assert(AnonymousClasses || _host_klass.is_null(), "");
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 470
diff changeset
217 return _host_klass.not_null();
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 470
diff changeset
218 }
431
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 0
diff changeset
219 bool has_cp_patch_at(int index) {
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 0
diff changeset
220 assert(AnonymousClasses, "");
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 0
diff changeset
221 assert(index >= 0, "oob");
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 0
diff changeset
222 return (_cp_patches != NULL
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 0
diff changeset
223 && index < _cp_patches->length()
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 0
diff changeset
224 && _cp_patches->adr_at(index)->not_null());
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 0
diff changeset
225 }
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 0
diff changeset
226 Handle cp_patch_at(int index) {
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 0
diff changeset
227 assert(has_cp_patch_at(index), "oob");
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 0
diff changeset
228 return _cp_patches->at(index);
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 0
diff changeset
229 }
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 0
diff changeset
230 Handle clear_cp_patch_at(int index) {
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 0
diff changeset
231 Handle patch = cp_patch_at(index);
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 0
diff changeset
232 _cp_patches->at_put(index, Handle());
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 0
diff changeset
233 assert(!has_cp_patch_at(index), "");
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 0
diff changeset
234 return patch;
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 0
diff changeset
235 }
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 0
diff changeset
236 void patch_constant_pool(constantPoolHandle cp, int index, Handle patch, TRAPS);
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 0
diff changeset
237
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 0
diff changeset
238 // Wrapper for constantTag.is_klass_[or_]reference.
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 0
diff changeset
239 // In older versions of the VM, klassOops cannot sneak into early phases of
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 0
diff changeset
240 // constant pool construction, but in later versions they can.
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 0
diff changeset
241 // %%% Let's phase out the old is_klass_reference.
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 0
diff changeset
242 bool is_klass_reference(constantPoolHandle cp, int index) {
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 0
diff changeset
243 return ((LinkWellKnownClasses || AnonymousClasses)
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 0
diff changeset
244 ? cp->tag_at(index).is_klass_or_reference()
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 0
diff changeset
245 : cp->tag_at(index).is_klass_reference());
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 0
diff changeset
246 }
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 0
diff changeset
247
0
a61af66fc99e Initial load
duke
parents:
diff changeset
248 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
249 // Constructor
a61af66fc99e Initial load
duke
parents:
diff changeset
250 ClassFileParser(ClassFileStream* st) { set_stream(st); }
a61af66fc99e Initial load
duke
parents:
diff changeset
251
a61af66fc99e Initial load
duke
parents:
diff changeset
252 // Parse .class file and return new klassOop. The klassOop is not hooked up
a61af66fc99e Initial load
duke
parents:
diff changeset
253 // to the system dictionary or any other structures, so a .class file can
a61af66fc99e Initial load
duke
parents:
diff changeset
254 // be loaded several times if desired.
a61af66fc99e Initial load
duke
parents:
diff changeset
255 // The system dictionary hookup is done by the caller.
a61af66fc99e Initial load
duke
parents:
diff changeset
256 //
a61af66fc99e Initial load
duke
parents:
diff changeset
257 // "parsed_name" is updated by this method, and is the name found
a61af66fc99e Initial load
duke
parents:
diff changeset
258 // while parsing the stream.
a61af66fc99e Initial load
duke
parents:
diff changeset
259 instanceKlassHandle parseClassFile(symbolHandle name,
a61af66fc99e Initial load
duke
parents:
diff changeset
260 Handle class_loader,
a61af66fc99e Initial load
duke
parents:
diff changeset
261 Handle protection_domain,
a61af66fc99e Initial load
duke
parents:
diff changeset
262 symbolHandle& parsed_name,
431
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 0
diff changeset
263 TRAPS) {
710
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 470
diff changeset
264 KlassHandle no_host_klass;
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 470
diff changeset
265 return parseClassFile(name, class_loader, protection_domain, no_host_klass, NULL, parsed_name, THREAD);
431
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 0
diff changeset
266 }
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 0
diff changeset
267 instanceKlassHandle parseClassFile(symbolHandle name,
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 0
diff changeset
268 Handle class_loader,
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 0
diff changeset
269 Handle protection_domain,
710
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 470
diff changeset
270 KlassHandle host_klass,
431
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 0
diff changeset
271 GrowableArray<Handle>* cp_patches,
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 0
diff changeset
272 symbolHandle& parsed_name,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
273 TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
274
a61af66fc99e Initial load
duke
parents:
diff changeset
275 // Verifier checks
a61af66fc99e Initial load
duke
parents:
diff changeset
276 static void check_super_class_access(instanceKlassHandle this_klass, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
277 static void check_super_interface_access(instanceKlassHandle this_klass, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
278 static void check_final_method_override(instanceKlassHandle this_klass, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
279 static void check_illegal_static_method(instanceKlassHandle this_klass, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
280 };