src/share/vm/classfile/classFileParser.hpp

Fri, 18 Mar 2011 16:00:34 -0700

author
never
date
Fri, 18 Mar 2011 16:00:34 -0700
changeset 2658
c7f3d0b4570f
parent 2639
8033953d67ff
child 2698
38fea01eb669
permissions
-rw-r--r--

7017732: move static fields into Class to prepare for perm gen removal
Reviewed-by: kvn, coleenp, twisti, stefank

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

mercurial