src/share/vm/classfile/classFileParser.hpp

Tue, 28 Aug 2018 10:10:11 -0400

author
hseigel
date
Tue, 28 Aug 2018 10:10:11 -0400
changeset 9866
41515291559a
parent 9858
b985cbb00e68
child 9931
fd44df5e3bc3
child 10013
7ab1cd9c7843
permissions
-rw-r--r--

8202578: Revisit location for class unload events
Summary: Use notify_unload_class() to post JFR class unload events instead of doing a separate traversal of the class loader data graph
Reviewed-by: lfoltan, coleenp, mgronlun, egahlin

duke@435 1 /*
drchase@6680 2 * Copyright (c) 1997, 2014, Oracle and/or its affiliates. All rights reserved.
duke@435 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 *
duke@435 5 * This code is free software; you can redistribute it and/or modify it
duke@435 6 * under the terms of the GNU General Public License version 2 only, as
duke@435 7 * published by the Free Software Foundation.
duke@435 8 *
duke@435 9 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 * version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 * accompanied this code).
duke@435 14 *
duke@435 15 * You should have received a copy of the GNU General Public License version
duke@435 16 * 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 *
trims@1907 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 20 * or visit www.oracle.com if you need additional information or have any
trims@1907 21 * questions.
duke@435 22 *
duke@435 23 */
duke@435 24
stefank@2314 25 #ifndef SHARE_VM_CLASSFILE_CLASSFILEPARSER_HPP
stefank@2314 26 #define SHARE_VM_CLASSFILE_CLASSFILEPARSER_HPP
stefank@2314 27
stefank@2314 28 #include "classfile/classFileStream.hpp"
stefank@2314 29 #include "memory/resourceArea.hpp"
stefank@2314 30 #include "oops/oop.inline.hpp"
stefank@2314 31 #include "oops/typeArrayOop.hpp"
stefank@2314 32 #include "runtime/handles.inline.hpp"
stefank@2314 33 #include "utilities/accessFlags.hpp"
jrose@3926 34 #include "classfile/symbolTable.hpp"
stefank@2314 35
never@3137 36 class FieldAllocationCount;
coleenp@4719 37 class FieldLayoutInfo;
never@3137 38
never@3137 39
duke@435 40 // Parser for for .class files
duke@435 41 //
duke@435 42 // The bytes describing the class file structure is read from a Stream object
duke@435 43
duke@435 44 class ClassFileParser VALUE_OBJ_CLASS_SPEC {
duke@435 45 private:
duke@435 46 bool _need_verify;
duke@435 47 bool _relax_verify;
duke@435 48 u2 _major_version;
duke@435 49 u2 _minor_version;
apetushkov@9858 50 u2 _this_class_index;
coleenp@2497 51 Symbol* _class_name;
coleenp@4719 52 ClassLoaderData* _loader_data;
jrose@1145 53 KlassHandle _host_klass;
jrose@866 54 GrowableArray<Handle>* _cp_patches; // overrides for CP entries
duke@435 55
jrose@3926 56 // precomputed flags
duke@435 57 bool _has_finalizer;
duke@435 58 bool _has_empty_finalizer;
duke@435 59 bool _has_vanilla_constructor;
jrose@3926 60 int _max_bootstrap_specifier_index; // detects BSS values
duke@435 61
jrose@3926 62 // class attributes parsed before the instance klass is created:
jrose@3926 63 bool _synthetic_flag;
coleenp@4719 64 int _sde_length;
coleenp@4719 65 char* _sde_buffer;
jiangli@5535 66 u2 _sourcefile_index;
jiangli@5535 67 u2 _generic_signature_index;
coleenp@4719 68
coleenp@4719 69 // Metadata created before the instance klass is created. Must be deallocated
coleenp@4719 70 // if not transferred to the InstanceKlass upon successful class loading
coleenp@4719 71 // in which case these pointers have been set to NULL.
coleenp@4719 72 instanceKlassHandle _super_klass;
coleenp@4719 73 ConstantPool* _cp;
coleenp@4719 74 Array<u2>* _fields;
coleenp@4719 75 Array<Method*>* _methods;
coleenp@4719 76 Array<u2>* _inner_classes;
coleenp@4719 77 Array<Klass*>* _local_interfaces;
coleenp@4719 78 Array<Klass*>* _transitive_interfaces;
stefank@7417 79 Annotations* _combined_annotations;
coleenp@4037 80 AnnotationArray* _annotations;
stefank@4393 81 AnnotationArray* _type_annotations;
coleenp@4719 82 Array<AnnotationArray*>* _fields_annotations;
coleenp@4719 83 Array<AnnotationArray*>* _fields_type_annotations;
coleenp@4719 84 InstanceKlass* _klass; // InstanceKlass once created.
jrose@3926 85
jiangli@5535 86 void set_class_synthetic_flag(bool x) { _synthetic_flag = x; }
jiangli@5535 87 void set_class_sourcefile_index(u2 x) { _sourcefile_index = x; }
jiangli@5535 88 void set_class_generic_signature_index(u2 x) { _generic_signature_index = x; }
jiangli@5535 89 void set_class_sde_buffer(char* x, int len) { _sde_buffer = x; _sde_length = len; }
coleenp@4719 90
stefank@7417 91 void create_combined_annotations(TRAPS);
stefank@7417 92
coleenp@4719 93 void init_parsed_class_attributes(ClassLoaderData* loader_data) {
coleenp@4719 94 _loader_data = loader_data;
jrose@3926 95 _synthetic_flag = false;
jiangli@5535 96 _sourcefile_index = 0;
jiangli@5535 97 _generic_signature_index = 0;
kvn@3930 98 _sde_buffer = NULL;
kvn@3930 99 _sde_length = 0;
jrose@3926 100 // initialize the other flags too:
jrose@3926 101 _has_finalizer = _has_empty_finalizer = _has_vanilla_constructor = false;
jrose@3926 102 _max_bootstrap_specifier_index = -1;
coleenp@4719 103 clear_class_metadata();
coleenp@4719 104 _klass = NULL;
jrose@3926 105 }
jrose@3926 106 void apply_parsed_class_attributes(instanceKlassHandle k); // update k
coleenp@4719 107 void apply_parsed_class_metadata(instanceKlassHandle k, int fields_count, TRAPS);
coleenp@4719 108 void clear_class_metadata() {
coleenp@4719 109 // metadata created before the instance klass is created. Must be
coleenp@4719 110 // deallocated if classfile parsing returns an error.
coleenp@4719 111 _cp = NULL;
coleenp@4719 112 _fields = NULL;
coleenp@4719 113 _methods = NULL;
coleenp@4719 114 _inner_classes = NULL;
coleenp@4719 115 _local_interfaces = NULL;
coleenp@4719 116 _transitive_interfaces = NULL;
stefank@7417 117 _combined_annotations = NULL;
coleenp@4719 118 _annotations = _type_annotations = NULL;
coleenp@4719 119 _fields_annotations = _fields_type_annotations = NULL;
coleenp@4719 120 }
jrose@3926 121
jrose@3926 122 class AnnotationCollector {
jrose@3926 123 public:
jrose@3926 124 enum Location { _in_field, _in_method, _in_class };
jrose@3926 125 enum ID {
jrose@3926 126 _unknown = 0,
twisti@4866 127 _method_CallerSensitive,
jrose@3926 128 _method_ForceInline,
twisti@3969 129 _method_DontInline,
vlivanov@7890 130 _method_InjectedProfile,
twisti@3969 131 _method_LambdaForm_Compiled,
twisti@3969 132 _method_LambdaForm_Hidden,
jwilhelm@4430 133 _sun_misc_Contended,
vlivanov@5658 134 _field_Stable,
jrose@3926 135 _annotation_LIMIT
jrose@3926 136 };
jrose@3926 137 const Location _location;
jrose@3926 138 int _annotations_present;
jwilhelm@4430 139 u2 _contended_group;
jwilhelm@4430 140
jrose@3926 141 AnnotationCollector(Location location)
jrose@3926 142 : _location(location), _annotations_present(0)
jrose@3926 143 {
jrose@3926 144 assert((int)_annotation_LIMIT <= (int)sizeof(_annotations_present) * BitsPerByte, "");
jrose@3926 145 }
jrose@3926 146 // If this annotation name has an ID, report it (or _none).
jwilhelm@4430 147 ID annotation_index(ClassLoaderData* loader_data, Symbol* name);
jrose@3926 148 // Set the annotation name:
jrose@3926 149 void set_annotation(ID id) {
jrose@3926 150 assert((int)id >= 0 && (int)id < (int)_annotation_LIMIT, "oob");
jrose@3926 151 _annotations_present |= nth_bit((int)id);
jrose@3926 152 }
vlivanov@5658 153
vlivanov@5658 154 void remove_annotation(ID id) {
vlivanov@5658 155 assert((int)id >= 0 && (int)id < (int)_annotation_LIMIT, "oob");
vlivanov@5658 156 _annotations_present &= ~nth_bit((int)id);
vlivanov@5658 157 }
vlivanov@5658 158
jrose@3926 159 // Report if the annotation is present.
vlivanov@5658 160 bool has_any_annotations() const { return _annotations_present != 0; }
vlivanov@5658 161 bool has_annotation(ID id) const { return (nth_bit((int)id) & _annotations_present) != 0; }
jwilhelm@4430 162
jwilhelm@4430 163 void set_contended_group(u2 group) { _contended_group = group; }
vlivanov@5658 164 u2 contended_group() const { return _contended_group; }
jwilhelm@4430 165
vlivanov@5658 166 bool is_contended() const { return has_annotation(_sun_misc_Contended); }
vlivanov@5658 167
vlivanov@5658 168 void set_stable(bool stable) { set_annotation(_field_Stable); }
vlivanov@5658 169 bool is_stable() const { return has_annotation(_field_Stable); }
jrose@3926 170 };
coleenp@4719 171
coleenp@4719 172 // This class also doubles as a holder for metadata cleanup.
jrose@3926 173 class FieldAnnotationCollector: public AnnotationCollector {
coleenp@4719 174 ClassLoaderData* _loader_data;
coleenp@4719 175 AnnotationArray* _field_annotations;
coleenp@4719 176 AnnotationArray* _field_type_annotations;
jrose@3926 177 public:
coleenp@4719 178 FieldAnnotationCollector(ClassLoaderData* loader_data) :
coleenp@4719 179 AnnotationCollector(_in_field),
coleenp@4719 180 _loader_data(loader_data),
coleenp@4719 181 _field_annotations(NULL),
coleenp@4719 182 _field_type_annotations(NULL) {}
jrose@3926 183 void apply_to(FieldInfo* f);
coleenp@4719 184 ~FieldAnnotationCollector();
coleenp@4719 185 AnnotationArray* field_annotations() { return _field_annotations; }
coleenp@4719 186 AnnotationArray* field_type_annotations() { return _field_type_annotations; }
coleenp@4719 187
coleenp@4719 188 void set_field_annotations(AnnotationArray* a) { _field_annotations = a; }
coleenp@4719 189 void set_field_type_annotations(AnnotationArray* a) { _field_type_annotations = a; }
jrose@3926 190 };
coleenp@4719 191
jrose@3926 192 class MethodAnnotationCollector: public AnnotationCollector {
jrose@3926 193 public:
jrose@3926 194 MethodAnnotationCollector() : AnnotationCollector(_in_method) { }
jrose@3926 195 void apply_to(methodHandle m);
jrose@3926 196 };
jrose@3926 197 class ClassAnnotationCollector: public AnnotationCollector {
jrose@3926 198 public:
jrose@3926 199 ClassAnnotationCollector() : AnnotationCollector(_in_class) { }
jrose@3926 200 void apply_to(instanceKlassHandle k);
jrose@3926 201 };
jrose@2353 202
duke@435 203 enum { fixed_buffer_size = 128 };
duke@435 204 u_char linenumbertable_buffer[fixed_buffer_size];
duke@435 205
duke@435 206 ClassFileStream* _stream; // Actual input stream
duke@435 207
duke@435 208 enum { LegalClass, LegalField, LegalMethod }; // used to verify unqualified names
duke@435 209
duke@435 210 // Accessors
duke@435 211 ClassFileStream* stream() { return _stream; }
duke@435 212 void set_stream(ClassFileStream* st) { _stream = st; }
duke@435 213
duke@435 214 // Constant pool parsing
coleenp@4719 215 void parse_constant_pool_entries(int length, TRAPS);
duke@435 216
coleenp@4719 217 constantPoolHandle parse_constant_pool(TRAPS);
duke@435 218
duke@435 219 // Interface parsing
coleenp@4719 220 Array<Klass*>* parse_interfaces(int length,
duke@435 221 Handle protection_domain,
coleenp@2497 222 Symbol* class_name,
kamg@4245 223 bool* has_default_methods,
duke@435 224 TRAPS);
coleenp@4037 225 void record_defined_class_dependencies(instanceKlassHandle defined_klass, TRAPS);
duke@435 226
coleenp@4719 227 instanceKlassHandle parse_super_class(int super_class_index, TRAPS);
duke@435 228 // Field parsing
coleenp@4719 229 void parse_field_attributes(u2 attributes_count,
duke@435 230 bool is_static, u2 signature_index,
duke@435 231 u2* constantvalue_index_addr,
duke@435 232 bool* is_synthetic_addr,
duke@435 233 u2* generic_signature_index_addr,
jrose@3926 234 FieldAnnotationCollector* parsed_annotations,
jrose@3926 235 TRAPS);
coleenp@4719 236 Array<u2>* parse_fields(Symbol* class_name,
coleenp@4719 237 bool is_interface,
coleenp@4142 238 FieldAllocationCount *fac,
coleenp@4142 239 u2* java_fields_count_ptr, TRAPS);
duke@435 240
jwilhelm@4430 241 void print_field_layout(Symbol* name,
jwilhelm@4430 242 Array<u2>* fields,
jwilhelm@4430 243 constantPoolHandle cp,
jwilhelm@4430 244 int instance_size,
jwilhelm@4430 245 int instance_fields_start,
jwilhelm@4430 246 int instance_fields_end,
jwilhelm@4430 247 int static_fields_end);
jwilhelm@4430 248
duke@435 249 // Method parsing
coleenp@4719 250 methodHandle parse_method(bool is_interface,
duke@435 251 AccessFlags* promoted_flags,
duke@435 252 TRAPS);
coleenp@4719 253 Array<Method*>* parse_methods(bool is_interface,
duke@435 254 AccessFlags* promoted_flags,
duke@435 255 bool* has_final_method,
acorn@7290 256 bool* declares_default_methods,
duke@435 257 TRAPS);
coleenp@4719 258 intArray* sort_methods(Array<Method*>* methods);
coleenp@4719 259
coleenp@4719 260 u2* parse_exception_table(u4 code_length, u4 exception_table_length,
coleenp@4719 261 TRAPS);
duke@435 262 void parse_linenumber_table(
duke@435 263 u4 code_attribute_length, u4 code_length,
duke@435 264 CompressedLineNumberWriteStream** write_stream, TRAPS);
duke@435 265 u2* parse_localvariable_table(u4 code_length, u2 max_locals, u4 code_attribute_length,
coleenp@4719 266 u2* localvariable_table_length,
duke@435 267 bool isLVTT, TRAPS);
duke@435 268 u2* parse_checked_exceptions(u2* checked_exceptions_length, u4 method_attribute_length,
coleenp@4719 269 TRAPS);
duke@435 270 void parse_type_array(u2 array_length, u4 code_length, u4* u1_index, u4* u2_index,
coleenp@4719 271 u1* u1_array, u2* u2_array, TRAPS);
coleenp@4719 272 u1* parse_stackmap_table(u4 code_attribute_length, TRAPS);
duke@435 273
duke@435 274 // Classfile attribute parsing
acorn@6765 275 u2 parse_generic_signature_attribute(TRAPS);
coleenp@4719 276 void parse_classfile_sourcefile_attribute(TRAPS);
coleenp@4719 277 void parse_classfile_source_debug_extension_attribute(int length, TRAPS);
coleenp@4719 278 u2 parse_classfile_inner_classes_attribute(u1* inner_classes_attribute_start,
jiangli@3670 279 bool parsed_enclosingmethod_attribute,
jiangli@3670 280 u2 enclosing_method_class_index,
jiangli@3670 281 u2 enclosing_method_method_index,
jrose@3926 282 TRAPS);
coleenp@4719 283 void parse_classfile_attributes(ClassAnnotationCollector* parsed_annotations,
jrose@3926 284 TRAPS);
coleenp@4719 285 void parse_classfile_synthetic_attribute(TRAPS);
coleenp@4719 286 void parse_classfile_signature_attribute(TRAPS);
coleenp@4719 287 void parse_classfile_bootstrap_methods_attribute(u4 attribute_length, TRAPS);
duke@435 288
duke@435 289 // Annotations handling
coleenp@4719 290 AnnotationArray* assemble_annotations(u1* runtime_visible_annotations,
coleenp@4142 291 int runtime_visible_annotations_length,
coleenp@4142 292 u1* runtime_invisible_annotations,
coleenp@4142 293 int runtime_invisible_annotations_length, TRAPS);
jrose@3926 294 int skip_annotation(u1* buffer, int limit, int index);
jrose@3926 295 int skip_annotation_value(u1* buffer, int limit, int index);
coleenp@4719 296 void parse_annotations(u1* buffer, int limit,
jrose@3926 297 /* Results (currently, only one result is supported): */
jrose@3926 298 AnnotationCollector* result,
jrose@3926 299 TRAPS);
duke@435 300
duke@435 301 // Final setup
jcoomes@1374 302 unsigned int compute_oop_map_count(instanceKlassHandle super,
jcoomes@1374 303 unsigned int nonstatic_oop_count,
jcoomes@1374 304 int first_nonstatic_oop_offset);
jcoomes@1374 305 void fill_oop_maps(instanceKlassHandle k,
jcoomes@1374 306 unsigned int nonstatic_oop_map_count,
jcoomes@1374 307 int* nonstatic_oop_offsets,
jcoomes@1374 308 unsigned int* nonstatic_oop_counts);
duke@435 309 void set_precomputed_flags(instanceKlassHandle k);
coleenp@4719 310 Array<Klass*>* compute_transitive_interfaces(instanceKlassHandle super,
coleenp@4142 311 Array<Klass*>* local_ifs, TRAPS);
duke@435 312
duke@435 313 // Format checker methods
duke@435 314 void classfile_parse_error(const char* msg, TRAPS);
duke@435 315 void classfile_parse_error(const char* msg, int index, TRAPS);
duke@435 316 void classfile_parse_error(const char* msg, const char *name, TRAPS);
duke@435 317 void classfile_parse_error(const char* msg, int index, const char *name, TRAPS);
shshahma@8761 318 void classfile_parse_error(const char* msg, const char* name, const char* signature, TRAPS);
duke@435 319 inline void guarantee_property(bool b, const char* msg, TRAPS) {
duke@435 320 if (!b) { classfile_parse_error(msg, CHECK); }
duke@435 321 }
duke@435 322
drchase@6680 323 PRAGMA_DIAG_PUSH
drchase@6680 324 PRAGMA_FORMAT_NONLITERAL_IGNORED
drchase@6680 325 inline void assert_property(bool b, const char* msg, TRAPS) {
duke@435 326 #ifdef ASSERT
hseigel@4979 327 if (!b) {
hseigel@4979 328 ResourceMark rm(THREAD);
hseigel@4979 329 fatal(err_msg(msg, _class_name->as_C_string()));
hseigel@4979 330 }
hseigel@4979 331 #endif
hseigel@4979 332 }
hseigel@4979 333
hseigel@4979 334 inline void assert_property(bool b, const char* msg, int index, TRAPS) {
hseigel@4979 335 #ifdef ASSERT
hseigel@4979 336 if (!b) {
hseigel@4979 337 ResourceMark rm(THREAD);
hseigel@4979 338 fatal(err_msg(msg, index, _class_name->as_C_string()));
hseigel@4979 339 }
duke@435 340 #endif
duke@435 341 }
drchase@6680 342 PRAGMA_DIAG_POP
duke@435 343
duke@435 344 inline void check_property(bool property, const char* msg, int index, TRAPS) {
duke@435 345 if (_need_verify) {
duke@435 346 guarantee_property(property, msg, index, CHECK);
duke@435 347 } else {
hseigel@4979 348 assert_property(property, msg, index, CHECK);
duke@435 349 }
duke@435 350 }
duke@435 351
duke@435 352 inline void check_property(bool property, const char* msg, TRAPS) {
duke@435 353 if (_need_verify) {
duke@435 354 guarantee_property(property, msg, CHECK);
duke@435 355 } else {
duke@435 356 assert_property(property, msg, CHECK);
duke@435 357 }
duke@435 358 }
duke@435 359
duke@435 360 inline void guarantee_property(bool b, const char* msg, int index, TRAPS) {
duke@435 361 if (!b) { classfile_parse_error(msg, index, CHECK); }
duke@435 362 }
duke@435 363 inline void guarantee_property(bool b, const char* msg, const char *name, TRAPS) {
duke@435 364 if (!b) { classfile_parse_error(msg, name, CHECK); }
duke@435 365 }
duke@435 366 inline void guarantee_property(bool b, const char* msg, int index, const char *name, TRAPS) {
duke@435 367 if (!b) { classfile_parse_error(msg, index, name, CHECK); }
duke@435 368 }
duke@435 369
kamg@1941 370 void throwIllegalSignature(
coleenp@2497 371 const char* type, Symbol* name, Symbol* sig, TRAPS);
kamg@1941 372
duke@435 373 bool is_supported_version(u2 major, u2 minor);
duke@435 374 bool has_illegal_visibility(jint flags);
duke@435 375
coleenp@4719 376 void verify_constantvalue(int constantvalue_index, int signature_index, TRAPS);
duke@435 377 void verify_legal_utf8(const unsigned char* buffer, int length, TRAPS);
coleenp@2497 378 void verify_legal_class_name(Symbol* name, TRAPS);
coleenp@2497 379 void verify_legal_field_name(Symbol* name, TRAPS);
coleenp@2497 380 void verify_legal_method_name(Symbol* name, TRAPS);
coleenp@2497 381 void verify_legal_field_signature(Symbol* fieldname, Symbol* signature, TRAPS);
coleenp@2497 382 int verify_legal_method_signature(Symbol* methodname, Symbol* signature, TRAPS);
duke@435 383 void verify_legal_class_modifiers(jint flags, TRAPS);
duke@435 384 void verify_legal_field_modifiers(jint flags, bool is_interface, TRAPS);
coleenp@2497 385 void verify_legal_method_modifiers(jint flags, bool is_interface, Symbol* name, TRAPS);
duke@435 386 bool verify_unqualified_name(char* name, unsigned int length, int type);
duke@435 387 char* skip_over_field_name(char* name, bool slash_ok, unsigned int length);
duke@435 388 char* skip_over_field_signature(char* signature, bool void_ok, unsigned int length, TRAPS);
duke@435 389
jrose@1145 390 bool is_anonymous() {
twisti@2698 391 assert(EnableInvokeDynamic || _host_klass.is_null(), "");
jrose@1145 392 return _host_klass.not_null();
jrose@1145 393 }
jrose@866 394 bool has_cp_patch_at(int index) {
twisti@2698 395 assert(EnableInvokeDynamic, "");
jrose@866 396 assert(index >= 0, "oob");
jrose@866 397 return (_cp_patches != NULL
jrose@866 398 && index < _cp_patches->length()
jrose@866 399 && _cp_patches->adr_at(index)->not_null());
jrose@866 400 }
jrose@866 401 Handle cp_patch_at(int index) {
jrose@866 402 assert(has_cp_patch_at(index), "oob");
jrose@866 403 return _cp_patches->at(index);
jrose@866 404 }
jrose@866 405 Handle clear_cp_patch_at(int index) {
jrose@866 406 Handle patch = cp_patch_at(index);
jrose@866 407 _cp_patches->at_put(index, Handle());
jrose@866 408 assert(!has_cp_patch_at(index), "");
jrose@866 409 return patch;
jrose@866 410 }
jrose@866 411 void patch_constant_pool(constantPoolHandle cp, int index, Handle patch, TRAPS);
jrose@866 412
jrose@866 413 // Wrapper for constantTag.is_klass_[or_]reference.
coleenp@4037 414 // In older versions of the VM, Klass*s cannot sneak into early phases of
jrose@866 415 // constant pool construction, but in later versions they can.
jrose@866 416 // %%% Let's phase out the old is_klass_reference.
coleenp@4719 417 bool valid_klass_reference_at(int index) {
coleenp@4719 418 return _cp->is_within_bounds(index) &&
coleenp@4719 419 (EnableInvokeDynamic
coleenp@4719 420 ? _cp->tag_at(index).is_klass_or_reference()
coleenp@4719 421 : _cp->tag_at(index).is_klass_reference());
coleenp@4719 422 }
coleenp@4719 423
coleenp@4719 424 // Checks that the cpool index is in range and is a utf8
coleenp@4719 425 bool valid_symbol_at(int cpool_index) {
coleenp@4719 426 return (_cp->is_within_bounds(cpool_index) &&
coleenp@4719 427 _cp->tag_at(cpool_index).is_utf8());
jrose@866 428 }
jrose@866 429
coleenp@4572 430 void copy_localvariable_table(ConstMethod* cm, int lvt_cnt,
coleenp@4572 431 u2* localvariable_table_length,
coleenp@4572 432 u2** localvariable_table_start,
coleenp@4572 433 int lvtt_cnt,
coleenp@4572 434 u2* localvariable_type_table_length,
coleenp@4572 435 u2** localvariable_type_table_start,
coleenp@4572 436 TRAPS);
coleenp@4572 437
coleenp@4719 438 void copy_method_annotations(ConstMethod* cm,
coleenp@4572 439 u1* runtime_visible_annotations,
coleenp@4572 440 int runtime_visible_annotations_length,
coleenp@4572 441 u1* runtime_invisible_annotations,
coleenp@4572 442 int runtime_invisible_annotations_length,
coleenp@4572 443 u1* runtime_visible_parameter_annotations,
coleenp@4572 444 int runtime_visible_parameter_annotations_length,
coleenp@4572 445 u1* runtime_invisible_parameter_annotations,
coleenp@4572 446 int runtime_invisible_parameter_annotations_length,
coleenp@4572 447 u1* runtime_visible_type_annotations,
coleenp@4572 448 int runtime_visible_type_annotations_length,
coleenp@4572 449 u1* runtime_invisible_type_annotations,
coleenp@4572 450 int runtime_invisible_type_annotations_length,
coleenp@4572 451 u1* annotation_default,
coleenp@4572 452 int annotation_default_length,
coleenp@4572 453 TRAPS);
coleenp@4572 454
coleenp@4719 455 // lays out fields in class and returns the total oopmap count
coleenp@4719 456 void layout_fields(Handle class_loader, FieldAllocationCount* fac,
coleenp@4719 457 ClassAnnotationCollector* parsed_annotations,
coleenp@4719 458 FieldLayoutInfo* info, TRAPS);
coleenp@4719 459
duke@435 460 public:
duke@435 461 // Constructor
duke@435 462 ClassFileParser(ClassFileStream* st) { set_stream(st); }
coleenp@4719 463 ~ClassFileParser();
duke@435 464
coleenp@4037 465 // Parse .class file and return new Klass*. The Klass* is not hooked up
duke@435 466 // to the system dictionary or any other structures, so a .class file can
duke@435 467 // be loaded several times if desired.
duke@435 468 // The system dictionary hookup is done by the caller.
duke@435 469 //
duke@435 470 // "parsed_name" is updated by this method, and is the name found
duke@435 471 // while parsing the stream.
coleenp@2497 472 instanceKlassHandle parseClassFile(Symbol* name,
coleenp@4304 473 ClassLoaderData* loader_data,
duke@435 474 Handle protection_domain,
coleenp@2497 475 TempNewSymbol& parsed_name,
acorn@1408 476 bool verify,
jrose@866 477 TRAPS) {
jrose@1145 478 KlassHandle no_host_klass;
coleenp@4304 479 return parseClassFile(name, loader_data, protection_domain, no_host_klass, NULL, parsed_name, verify, THREAD);
jrose@866 480 }
coleenp@2497 481 instanceKlassHandle parseClassFile(Symbol* name,
coleenp@4304 482 ClassLoaderData* loader_data,
jrose@866 483 Handle protection_domain,
jrose@1145 484 KlassHandle host_klass,
jrose@866 485 GrowableArray<Handle>* cp_patches,
coleenp@2497 486 TempNewSymbol& parsed_name,
acorn@1408 487 bool verify,
duke@435 488 TRAPS);
duke@435 489
duke@435 490 // Verifier checks
duke@435 491 static void check_super_class_access(instanceKlassHandle this_klass, TRAPS);
duke@435 492 static void check_super_interface_access(instanceKlassHandle this_klass, TRAPS);
duke@435 493 static void check_final_method_override(instanceKlassHandle this_klass, TRAPS);
duke@435 494 static void check_illegal_static_method(instanceKlassHandle this_klass, TRAPS);
apetushkov@9858 495
apetushkov@9858 496 u2 this_class_index() const { return _this_class_index; }
apetushkov@9858 497
apetushkov@9858 498 #if INCLUDE_JFR
apetushkov@9858 499 ClassFileStream* clone_stream() const;
apetushkov@9858 500 void set_klass_to_deallocate(InstanceKlass* klass);
apetushkov@9858 501 #endif // INCLUDE_JFR
duke@435 502 };
stefank@2314 503
stefank@2314 504 #endif // SHARE_VM_CLASSFILE_CLASSFILEPARSER_HPP

mercurial