hotspot/src/share/vm/classfile/classFileParser.hpp
author jrose
Fri, 03 Dec 2010 15:53:57 -0800
changeset 7436 dbc43da3d512
parent 7397 5b173b4ca846
child 8076 96d498ec7ae1
permissions -rw-r--r--
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute Reviewed-by: twisti
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
7110
e36cfdaf744a 6994630: java/lang/instrument/IsModifiableClassAgent.java fails with -XX:+EnableInvokeDynamic
twisti
parents: 5712
diff changeset
     2
 * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 3821
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 3821
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 3821
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7114
diff changeset
    25
#ifndef SHARE_VM_CLASSFILE_CLASSFILEPARSER_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7114
diff changeset
    26
#define SHARE_VM_CLASSFILE_CLASSFILEPARSER_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7114
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7114
diff changeset
    28
#include "classfile/classFileStream.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7114
diff changeset
    29
#include "memory/resourceArea.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7114
diff changeset
    30
#include "oops/oop.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7114
diff changeset
    31
#include "oops/typeArrayOop.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7114
diff changeset
    32
#include "runtime/handles.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7114
diff changeset
    33
#include "utilities/accessFlags.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7114
diff changeset
    34
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
// Parser for for .class files
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
// The bytes describing the class file structure is read from a Stream object
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
class ClassFileParser VALUE_OBJ_CLASS_SPEC {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  bool _need_verify;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  bool _relax_verify;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  u2   _major_version;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  u2   _minor_version;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  symbolHandle _class_name;
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 1623
diff changeset
    46
  KlassHandle _host_klass;
1550
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
    47
  GrowableArray<Handle>* _cp_patches; // overrides for CP entries
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  bool _has_finalizer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  bool _has_empty_finalizer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  bool _has_vanilla_constructor;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
7436
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
    53
  int _max_bootstrap_specifier_index;
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
    54
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  enum { fixed_buffer_size = 128 };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  u_char linenumbertable_buffer[fixed_buffer_size];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  ClassFileStream* _stream;              // Actual input stream
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  enum { LegalClass, LegalField, LegalMethod }; // used to verify unqualified names
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  // Accessors
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  ClassFileStream* stream()                        { return _stream; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  void set_stream(ClassFileStream* st)             { _stream = st; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  // Constant pool parsing
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  void parse_constant_pool_entries(constantPoolHandle cp, int length, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  constantPoolHandle parse_constant_pool(TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  // Interface parsing
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  objArrayHandle parse_interfaces(constantPoolHandle cp,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
                                  int length,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
                                  Handle class_loader,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
                                  Handle protection_domain,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
                                  symbolHandle class_name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
                                  TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  // Field parsing
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  void parse_field_attributes(constantPoolHandle cp, u2 attributes_count,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
                              bool is_static, u2 signature_index,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
                              u2* constantvalue_index_addr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
                              bool* is_synthetic_addr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
                              u2* generic_signature_index_addr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
                              typeArrayHandle* field_annotations, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  typeArrayHandle parse_fields(constantPoolHandle cp, bool is_interface,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
                               struct FieldAllocationCount *fac,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
                               objArrayHandle* fields_annotations, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  // Method parsing
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  methodHandle parse_method(constantPoolHandle cp, bool is_interface,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
                            AccessFlags* promoted_flags,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
                            typeArrayHandle* method_annotations,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
                            typeArrayHandle* method_parameter_annotations,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
                            typeArrayHandle* method_default_annotations,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
                            TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  objArrayHandle parse_methods (constantPoolHandle cp, bool is_interface,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
                                AccessFlags* promoted_flags,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
                                bool* has_final_method,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
                                objArrayOop* methods_annotations_oop,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
                                objArrayOop* methods_parameter_annotations_oop,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
                                objArrayOop* methods_default_annotations_oop,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
                                TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  typeArrayHandle sort_methods (objArrayHandle methods,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
                                objArrayHandle methods_annotations,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
                                objArrayHandle methods_parameter_annotations,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
                                objArrayHandle methods_default_annotations,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
                                TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  typeArrayHandle parse_exception_table(u4 code_length, u4 exception_table_length,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
                                        constantPoolHandle cp, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  void parse_linenumber_table(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
      u4 code_attribute_length, u4 code_length,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
      CompressedLineNumberWriteStream** write_stream, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  u2* parse_localvariable_table(u4 code_length, u2 max_locals, u4 code_attribute_length,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
                                constantPoolHandle cp, u2* localvariable_table_length,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
                                bool isLVTT, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  u2* parse_checked_exceptions(u2* checked_exceptions_length, u4 method_attribute_length,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
                               constantPoolHandle cp, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  void parse_type_array(u2 array_length, u4 code_length, u4* u1_index, u4* u2_index,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
                        u1* u1_array, u2* u2_array, constantPoolHandle cp, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  typeArrayOop parse_stackmap_table(u4 code_attribute_length, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  // Classfile attribute parsing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  void parse_classfile_sourcefile_attribute(constantPoolHandle cp, instanceKlassHandle k, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  void parse_classfile_source_debug_extension_attribute(constantPoolHandle cp,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
                                                instanceKlassHandle k, int length, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  u2   parse_classfile_inner_classes_attribute(constantPoolHandle cp,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
                                               instanceKlassHandle k, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  void parse_classfile_attributes(constantPoolHandle cp, instanceKlassHandle k, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  void parse_classfile_synthetic_attribute(constantPoolHandle cp, instanceKlassHandle k, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  void parse_classfile_signature_attribute(constantPoolHandle cp, instanceKlassHandle k, TRAPS);
7436
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
   132
  void parse_classfile_bootstrap_methods_attribute(constantPoolHandle cp, instanceKlassHandle k, u4 attribute_length, TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  // Annotations handling
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  typeArrayHandle assemble_annotations(u1* runtime_visible_annotations,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
                                       int runtime_visible_annotations_length,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
                                       u1* runtime_invisible_annotations,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
                                       int runtime_invisible_annotations_length, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  // Final setup
3694
942b7bc7f28c 6845368: large objects cause a crash or unexpected exception
jcoomes
parents: 3693
diff changeset
   141
  unsigned int compute_oop_map_count(instanceKlassHandle super,
942b7bc7f28c 6845368: large objects cause a crash or unexpected exception
jcoomes
parents: 3693
diff changeset
   142
                                     unsigned int nonstatic_oop_count,
942b7bc7f28c 6845368: large objects cause a crash or unexpected exception
jcoomes
parents: 3693
diff changeset
   143
                                     int first_nonstatic_oop_offset);
942b7bc7f28c 6845368: large objects cause a crash or unexpected exception
jcoomes
parents: 3693
diff changeset
   144
  void fill_oop_maps(instanceKlassHandle k,
942b7bc7f28c 6845368: large objects cause a crash or unexpected exception
jcoomes
parents: 3693
diff changeset
   145
                     unsigned int nonstatic_oop_map_count,
942b7bc7f28c 6845368: large objects cause a crash or unexpected exception
jcoomes
parents: 3693
diff changeset
   146
                     int* nonstatic_oop_offsets,
942b7bc7f28c 6845368: large objects cause a crash or unexpected exception
jcoomes
parents: 3693
diff changeset
   147
                     unsigned int* nonstatic_oop_counts);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  void set_precomputed_flags(instanceKlassHandle k);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  objArrayHandle compute_transitive_interfaces(instanceKlassHandle super,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
                                               objArrayHandle local_ifs, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  // Special handling for certain classes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  // Add the "discovered" field to java.lang.ref.Reference if
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  // it does not exist.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  void java_lang_ref_Reference_fix_pre(typeArrayHandle* fields_ptr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
    constantPoolHandle cp, FieldAllocationCount *fac_ptr, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  // Adjust the field allocation counts for java.lang.Class to add
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  // fake fields.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  void java_lang_Class_fix_pre(objArrayHandle* methods_ptr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
    FieldAllocationCount *fac_ptr, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  // Adjust the next_nonstatic_oop_offset to place the fake fields
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  // before any Java fields.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  void java_lang_Class_fix_post(int* next_nonstatic_oop_offset);
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 1623
diff changeset
   164
  // Adjust the field allocation counts for java.dyn.MethodHandle to add
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 1623
diff changeset
   165
  // a fake address (void*) field.
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 1623
diff changeset
   166
  void java_dyn_MethodHandle_fix_pre(constantPoolHandle cp,
7110
e36cfdaf744a 6994630: java/lang/instrument/IsModifiableClassAgent.java fails with -XX:+EnableInvokeDynamic
twisti
parents: 5712
diff changeset
   167
                                     typeArrayHandle fields,
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 1623
diff changeset
   168
                                     FieldAllocationCount *fac_ptr, TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  // Format checker methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  void classfile_parse_error(const char* msg, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  void classfile_parse_error(const char* msg, int index, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  void classfile_parse_error(const char* msg, const char *name, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  void classfile_parse_error(const char* msg, int index, const char *name, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  inline void guarantee_property(bool b, const char* msg, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
    if (!b) { classfile_parse_error(msg, CHECK); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  inline void assert_property(bool b, const char* msg, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
    if (!b) { fatal(msg); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  inline void check_property(bool property, const char* msg, int index, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
    if (_need_verify) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
      guarantee_property(property, msg, index, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
      assert_property(property, msg, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  inline void check_property(bool property, const char* msg, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
    if (_need_verify) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
      guarantee_property(property, msg, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
      assert_property(property, msg, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  inline void guarantee_property(bool b, const char* msg, int index, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
    if (!b) { classfile_parse_error(msg, index, CHECK); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  inline void guarantee_property(bool b, const char* msg, const char *name, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
    if (!b) { classfile_parse_error(msg, name, CHECK); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  inline void guarantee_property(bool b, const char* msg, int index, const char *name, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
    if (!b) { classfile_parse_error(msg, index, name, CHECK); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
5709
3b5307e27c1d 6930553: classfile format checker allows invalid method descriptor in CONSTANT_NameAndType_info in some cases
kamg
parents: 3821
diff changeset
   211
  void throwIllegalSignature(
3b5307e27c1d 6930553: classfile format checker allows invalid method descriptor in CONSTANT_NameAndType_info in some cases
kamg
parents: 3821
diff changeset
   212
      const char* type, symbolHandle name, symbolHandle sig, TRAPS);
3b5307e27c1d 6930553: classfile format checker allows invalid method descriptor in CONSTANT_NameAndType_info in some cases
kamg
parents: 3821
diff changeset
   213
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  bool is_supported_version(u2 major, u2 minor);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  bool has_illegal_visibility(jint flags);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  void verify_constantvalue(int constantvalue_index, int signature_index, constantPoolHandle cp, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  void verify_legal_utf8(const unsigned char* buffer, int length, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  void verify_legal_class_name(symbolHandle name, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  void verify_legal_field_name(symbolHandle name, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  void verify_legal_method_name(symbolHandle name, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  void verify_legal_field_signature(symbolHandle fieldname, symbolHandle signature, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  int  verify_legal_method_signature(symbolHandle methodname, symbolHandle signature, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  void verify_legal_class_modifiers(jint flags, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  void verify_legal_field_modifiers(jint flags, bool is_interface, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  void verify_legal_method_modifiers(jint flags, bool is_interface, symbolHandle name, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  bool verify_unqualified_name(char* name, unsigned int length, int type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  char* skip_over_field_name(char* name, bool slash_ok, unsigned int length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  char* skip_over_field_signature(char* signature, bool void_ok, unsigned int length, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 1623
diff changeset
   231
  bool is_anonymous() {
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 1623
diff changeset
   232
    assert(AnonymousClasses || _host_klass.is_null(), "");
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 1623
diff changeset
   233
    return _host_klass.not_null();
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 1623
diff changeset
   234
  }
1550
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   235
  bool has_cp_patch_at(int index) {
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   236
    assert(AnonymousClasses, "");
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   237
    assert(index >= 0, "oob");
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   238
    return (_cp_patches != NULL
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   239
            && index < _cp_patches->length()
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   240
            && _cp_patches->adr_at(index)->not_null());
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   241
  }
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   242
  Handle cp_patch_at(int index) {
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   243
    assert(has_cp_patch_at(index), "oob");
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   244
    return _cp_patches->at(index);
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   245
  }
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   246
  Handle clear_cp_patch_at(int index) {
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   247
    Handle patch = cp_patch_at(index);
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   248
    _cp_patches->at_put(index, Handle());
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   249
    assert(!has_cp_patch_at(index), "");
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   250
    return patch;
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   251
  }
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   252
  void patch_constant_pool(constantPoolHandle cp, int index, Handle patch, TRAPS);
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   253
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   254
  // Wrapper for constantTag.is_klass_[or_]reference.
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   255
  // In older versions of the VM, klassOops cannot sneak into early phases of
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   256
  // constant pool construction, but in later versions they can.
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   257
  // %%% Let's phase out the old is_klass_reference.
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   258
  bool is_klass_reference(constantPoolHandle cp, int index) {
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   259
    return ((LinkWellKnownClasses || AnonymousClasses)
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   260
            ? cp->tag_at(index).is_klass_or_reference()
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   261
            : cp->tag_at(index).is_klass_reference());
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   262
  }
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   263
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
  // Constructor
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
  ClassFileParser(ClassFileStream* st) { set_stream(st); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  // Parse .class file and return new klassOop. The klassOop is not hooked up
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
  // to the system dictionary or any other structures, so a .class file can
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
  // be loaded several times if desired.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  // The system dictionary hookup is done by the caller.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
  // "parsed_name" is updated by this method, and is the name found
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
  // while parsing the stream.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  instanceKlassHandle parseClassFile(symbolHandle name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
                                     Handle class_loader,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
                                     Handle protection_domain,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
                                     symbolHandle& parsed_name,
3820
0a8fbbe180db 6830542: Performance: JVM_DefineClass already verified.
acorn
parents: 3575
diff changeset
   279
                                     bool verify,
1550
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   280
                                     TRAPS) {
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 1623
diff changeset
   281
    KlassHandle no_host_klass;
3820
0a8fbbe180db 6830542: Performance: JVM_DefineClass already verified.
acorn
parents: 3575
diff changeset
   282
    return parseClassFile(name, class_loader, protection_domain, no_host_klass, NULL, parsed_name, verify, THREAD);
1550
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   283
  }
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   284
  instanceKlassHandle parseClassFile(symbolHandle name,
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   285
                                     Handle class_loader,
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   286
                                     Handle protection_domain,
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 1623
diff changeset
   287
                                     KlassHandle host_klass,
1550
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   288
                                     GrowableArray<Handle>* cp_patches,
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   289
                                     symbolHandle& parsed_name,
3820
0a8fbbe180db 6830542: Performance: JVM_DefineClass already verified.
acorn
parents: 3575
diff changeset
   290
                                     bool verify,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
                                     TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
  // Verifier checks
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
  static void check_super_class_access(instanceKlassHandle this_klass, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
  static void check_super_interface_access(instanceKlassHandle this_klass, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
  static void check_final_method_override(instanceKlassHandle this_klass, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
  static void check_illegal_static_method(instanceKlassHandle this_klass, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7114
diff changeset
   299
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7114
diff changeset
   300
#endif // SHARE_VM_CLASSFILE_CLASSFILEPARSER_HPP