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