hotspot/src/share/vm/classfile/classFileParser.hpp
author kvn
Tue, 17 Jul 2012 11:16:13 -0700
changeset 13296 4e00da2c0596
parent 13295 34d3b7128667
parent 13282 9872915dd78d
child 13391 30245956af37
permissions -rw-r--r--
Merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
12263
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11412
diff changeset
     2
 * Copyright (c) 1997, 2012, 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"
13291
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
    34
#include "classfile/symbolTable.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7114
diff changeset
    35
10546
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 8883
diff changeset
    36
class FieldAllocationCount;
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 8883
diff changeset
    37
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 8883
diff changeset
    38
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
// Parser for for .class files
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
// The bytes describing the class file structure is read from a Stream object
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
class ClassFileParser VALUE_OBJ_CLASS_SPEC {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  bool _need_verify;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  bool _relax_verify;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  u2   _major_version;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  u2   _minor_version;
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7436
diff changeset
    49
  Symbol* _class_name;
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 1623
diff changeset
    50
  KlassHandle _host_klass;
1550
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
    51
  GrowableArray<Handle>* _cp_patches; // overrides for CP entries
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
13291
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
    53
  // precomputed flags
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  bool _has_finalizer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  bool _has_empty_finalizer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  bool _has_vanilla_constructor;
13291
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
    57
  int _max_bootstrap_specifier_index;  // detects BSS values
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
13291
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
    59
  // class attributes parsed before the instance klass is created:
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
    60
  bool       _synthetic_flag;
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
    61
  Symbol*    _sourcefile;
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
    62
  Symbol*    _generic_signature;
13295
kvn
parents: 13291
diff changeset
    63
  char*      _sde_buffer;
kvn
parents: 13291
diff changeset
    64
  int        _sde_length;
13291
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
    65
  typeArrayHandle _inner_classes;
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
    66
  typeArrayHandle _annotations;
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
    67
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
    68
  void set_class_synthetic_flag(bool x)           { _synthetic_flag = x; }
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
    69
  void set_class_sourcefile(Symbol* x)            { _sourcefile = x; }
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
    70
  void set_class_generic_signature(Symbol* x)     { _generic_signature = x; }
13295
kvn
parents: 13291
diff changeset
    71
  void set_class_sde_buffer(char* x, int len)     { _sde_buffer = x; _sde_length = len; }
13291
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
    72
  void set_class_inner_classes(typeArrayHandle x) { _inner_classes = x; }
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
    73
  void set_class_annotations(typeArrayHandle x)   { _annotations = x; }
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
    74
  void init_parsed_class_attributes() {
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
    75
    _synthetic_flag = false;
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
    76
    _sourcefile = NULL;
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
    77
    _generic_signature = NULL;
13295
kvn
parents: 13291
diff changeset
    78
    _sde_buffer = NULL;
kvn
parents: 13291
diff changeset
    79
    _sde_length = 0;
13291
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
    80
    // initialize the other flags too:
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
    81
    _has_finalizer = _has_empty_finalizer = _has_vanilla_constructor = false;
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
    82
    _max_bootstrap_specifier_index = -1;
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
    83
  }
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
    84
  void apply_parsed_class_attributes(instanceKlassHandle k);  // update k
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
    85
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
    86
  class AnnotationCollector {
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
    87
  public:
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
    88
    enum Location { _in_field, _in_method, _in_class };
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
    89
    enum ID {
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
    90
      _unknown = 0,
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
    91
      _method_ForceInline,
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
    92
      _annotation_LIMIT
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
    93
    };
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
    94
    const Location _location;
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
    95
    int _annotations_present;
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
    96
    AnnotationCollector(Location location)
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
    97
    : _location(location), _annotations_present(0)
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
    98
    {
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
    99
      assert((int)_annotation_LIMIT <= (int)sizeof(_annotations_present) * BitsPerByte, "");
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   100
    }
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   101
    // If this annotation name has an ID, report it (or _none).
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   102
    ID annotation_index(Symbol* name);
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   103
    // Set the annotation name:
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   104
    void set_annotation(ID id) {
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   105
      assert((int)id >= 0 && (int)id < (int)_annotation_LIMIT, "oob");
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   106
      _annotations_present |= nth_bit((int)id);
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   107
    }
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   108
    // Report if the annotation is present.
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   109
    bool has_any_annotations() { return _annotations_present != 0; }
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   110
    bool has_annotation(ID id) { return (nth_bit((int)id) & _annotations_present) != 0; }
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   111
  };
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   112
  class FieldAnnotationCollector: public AnnotationCollector {
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   113
  public:
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   114
    FieldAnnotationCollector() : AnnotationCollector(_in_field) { }
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   115
    void apply_to(FieldInfo* f);
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   116
  };
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   117
  class MethodAnnotationCollector: public AnnotationCollector {
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   118
  public:
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   119
    MethodAnnotationCollector() : AnnotationCollector(_in_method) { }
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   120
    void apply_to(methodHandle m);
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   121
  };
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   122
  class ClassAnnotationCollector: public AnnotationCollector {
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   123
  public:
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   124
    ClassAnnotationCollector() : AnnotationCollector(_in_class) { }
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   125
    void apply_to(instanceKlassHandle k);
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   126
  };
7436
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
   127
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  enum { fixed_buffer_size = 128 };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  u_char linenumbertable_buffer[fixed_buffer_size];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  ClassFileStream* _stream;              // Actual input stream
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  enum { LegalClass, LegalField, LegalMethod }; // used to verify unqualified names
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  // Accessors
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  ClassFileStream* stream()                        { return _stream; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  void set_stream(ClassFileStream* st)             { _stream = st; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  // Constant pool parsing
12263
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11412
diff changeset
   140
  void parse_constant_pool_entries(Handle class_loader,
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11412
diff changeset
   141
                                   constantPoolHandle cp, int length, TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
12263
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11412
diff changeset
   143
  constantPoolHandle parse_constant_pool(Handle class_loader, TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  // Interface parsing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  objArrayHandle parse_interfaces(constantPoolHandle cp,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
                                  int length,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
                                  Handle class_loader,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
                                  Handle protection_domain,
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7436
diff changeset
   150
                                  Symbol* class_name,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
                                  TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  // Field parsing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  void parse_field_attributes(constantPoolHandle cp, u2 attributes_count,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
                              bool is_static, u2 signature_index,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
                              u2* constantvalue_index_addr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
                              bool* is_synthetic_addr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
                              u2* generic_signature_index_addr,
13291
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   159
                              typeArrayHandle* field_annotations,
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   160
                              FieldAnnotationCollector* parsed_annotations,
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   161
                              TRAPS);
10546
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 8883
diff changeset
   162
  typeArrayHandle parse_fields(Symbol* class_name,
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 8883
diff changeset
   163
                               constantPoolHandle cp, bool is_interface,
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 8883
diff changeset
   164
                               FieldAllocationCount *fac,
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 8883
diff changeset
   165
                               objArrayHandle* fields_annotations,
11412
62fe312f32c5 7123315: instanceKlass::_static_oop_field_count and instanceKlass::_java_fields_count should be u2 type.
jiangli
parents: 10546
diff changeset
   166
                               u2* java_fields_count_ptr, TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  // Method parsing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  methodHandle parse_method(constantPoolHandle cp, bool is_interface,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
                            AccessFlags* promoted_flags,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
                            typeArrayHandle* method_annotations,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
                            typeArrayHandle* method_parameter_annotations,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
                            typeArrayHandle* method_default_annotations,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
                            TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  objArrayHandle parse_methods (constantPoolHandle cp, bool is_interface,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
                                AccessFlags* promoted_flags,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
                                bool* has_final_method,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
                                objArrayOop* methods_annotations_oop,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
                                objArrayOop* methods_parameter_annotations_oop,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
                                objArrayOop* methods_default_annotations_oop,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
                                TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  typeArrayHandle sort_methods (objArrayHandle methods,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
                                objArrayHandle methods_annotations,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
                                objArrayHandle methods_parameter_annotations,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
                                objArrayHandle methods_default_annotations,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
                                TRAPS);
13282
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12267
diff changeset
   187
  u2* parse_exception_table(u4 code_length, u4 exception_table_length,
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12267
diff changeset
   188
                            constantPoolHandle cp, TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  void parse_linenumber_table(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
      u4 code_attribute_length, u4 code_length,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
      CompressedLineNumberWriteStream** write_stream, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  u2* parse_localvariable_table(u4 code_length, u2 max_locals, u4 code_attribute_length,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
                                constantPoolHandle cp, u2* localvariable_table_length,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
                                bool isLVTT, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  u2* parse_checked_exceptions(u2* checked_exceptions_length, u4 method_attribute_length,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
                               constantPoolHandle cp, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  void parse_type_array(u2 array_length, u4 code_length, u4* u1_index, u4* u2_index,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
                        u1* u1_array, u2* u2_array, constantPoolHandle cp, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  typeArrayOop parse_stackmap_table(u4 code_attribute_length, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  // Classfile attribute parsing
13291
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   202
  void parse_classfile_sourcefile_attribute(constantPoolHandle cp, TRAPS);
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   203
  void parse_classfile_source_debug_extension_attribute(constantPoolHandle cp, int length, TRAPS);
12231
6a9cfc59a18a 7109878: The instanceKlass EnclosingMethhod attribute fields can be folded into the _inner_class field.
jiangli
parents: 11412
diff changeset
   204
  u2   parse_classfile_inner_classes_attribute(u1* inner_classes_attribute_start,
6a9cfc59a18a 7109878: The instanceKlass EnclosingMethhod attribute fields can be folded into the _inner_class field.
jiangli
parents: 11412
diff changeset
   205
                                               bool parsed_enclosingmethod_attribute,
6a9cfc59a18a 7109878: The instanceKlass EnclosingMethhod attribute fields can be folded into the _inner_class field.
jiangli
parents: 11412
diff changeset
   206
                                               u2 enclosing_method_class_index,
6a9cfc59a18a 7109878: The instanceKlass EnclosingMethhod attribute fields can be folded into the _inner_class field.
jiangli
parents: 11412
diff changeset
   207
                                               u2 enclosing_method_method_index,
6a9cfc59a18a 7109878: The instanceKlass EnclosingMethhod attribute fields can be folded into the _inner_class field.
jiangli
parents: 11412
diff changeset
   208
                                               constantPoolHandle cp,
13291
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   209
                                               TRAPS);
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   210
  void parse_classfile_attributes(constantPoolHandle cp,
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   211
                                  ClassAnnotationCollector* parsed_annotations,
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   212
                                  TRAPS);
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   213
  void parse_classfile_synthetic_attribute(constantPoolHandle cp, TRAPS);
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   214
  void parse_classfile_signature_attribute(constantPoolHandle cp, TRAPS);
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   215
  void parse_classfile_bootstrap_methods_attribute(constantPoolHandle cp, u4 attribute_length, TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  // Annotations handling
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  typeArrayHandle assemble_annotations(u1* runtime_visible_annotations,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
                                       int runtime_visible_annotations_length,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
                                       u1* runtime_invisible_annotations,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
                                       int runtime_invisible_annotations_length, TRAPS);
13291
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   222
  int skip_annotation(u1* buffer, int limit, int index);
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   223
  int skip_annotation_value(u1* buffer, int limit, int index);
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   224
  void parse_annotations(u1* buffer, int limit, constantPoolHandle cp,
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   225
                         /* Results (currently, only one result is supported): */
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   226
                         AnnotationCollector* result,
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   227
                         TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  // Final setup
3694
942b7bc7f28c 6845368: large objects cause a crash or unexpected exception
jcoomes
parents: 3693
diff changeset
   230
  unsigned int compute_oop_map_count(instanceKlassHandle super,
942b7bc7f28c 6845368: large objects cause a crash or unexpected exception
jcoomes
parents: 3693
diff changeset
   231
                                     unsigned int nonstatic_oop_count,
942b7bc7f28c 6845368: large objects cause a crash or unexpected exception
jcoomes
parents: 3693
diff changeset
   232
                                     int first_nonstatic_oop_offset);
942b7bc7f28c 6845368: large objects cause a crash or unexpected exception
jcoomes
parents: 3693
diff changeset
   233
  void fill_oop_maps(instanceKlassHandle k,
942b7bc7f28c 6845368: large objects cause a crash or unexpected exception
jcoomes
parents: 3693
diff changeset
   234
                     unsigned int nonstatic_oop_map_count,
942b7bc7f28c 6845368: large objects cause a crash or unexpected exception
jcoomes
parents: 3693
diff changeset
   235
                     int* nonstatic_oop_offsets,
942b7bc7f28c 6845368: large objects cause a crash or unexpected exception
jcoomes
parents: 3693
diff changeset
   236
                     unsigned int* nonstatic_oop_counts);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  void set_precomputed_flags(instanceKlassHandle k);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
  objArrayHandle compute_transitive_interfaces(instanceKlassHandle super,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
                                               objArrayHandle local_ifs, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  // Format checker methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  void classfile_parse_error(const char* msg, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  void classfile_parse_error(const char* msg, int index, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
  void classfile_parse_error(const char* msg, const char *name, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  void classfile_parse_error(const char* msg, int index, const char *name, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
  inline void guarantee_property(bool b, const char* msg, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
    if (!b) { classfile_parse_error(msg, CHECK); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
  inline void assert_property(bool b, const char* msg, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
    if (!b) { fatal(msg); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
  inline void check_property(bool property, const char* msg, int index, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
    if (_need_verify) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
      guarantee_property(property, msg, index, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
      assert_property(property, msg, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
  inline void check_property(bool property, const char* msg, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
    if (_need_verify) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
      guarantee_property(property, msg, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
      assert_property(property, msg, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
  inline void guarantee_property(bool b, const char* msg, int index, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
    if (!b) { classfile_parse_error(msg, index, CHECK); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  inline void guarantee_property(bool b, const char* msg, const char *name, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
    if (!b) { classfile_parse_error(msg, name, CHECK); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
  inline void guarantee_property(bool b, const char* msg, int index, const char *name, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
    if (!b) { classfile_parse_error(msg, index, name, CHECK); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
5709
3b5307e27c1d 6930553: classfile format checker allows invalid method descriptor in CONSTANT_NameAndType_info in some cases
kamg
parents: 3821
diff changeset
   282
  void throwIllegalSignature(
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7436
diff changeset
   283
      const char* type, Symbol* name, Symbol* sig, TRAPS);
5709
3b5307e27c1d 6930553: classfile format checker allows invalid method descriptor in CONSTANT_NameAndType_info in some cases
kamg
parents: 3821
diff changeset
   284
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
  bool is_supported_version(u2 major, u2 minor);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  bool has_illegal_visibility(jint flags);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
  void verify_constantvalue(int constantvalue_index, int signature_index, constantPoolHandle cp, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
  void verify_legal_utf8(const unsigned char* buffer, int length, TRAPS);
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7436
diff changeset
   290
  void verify_legal_class_name(Symbol* name, TRAPS);
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7436
diff changeset
   291
  void verify_legal_field_name(Symbol* name, TRAPS);
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7436
diff changeset
   292
  void verify_legal_method_name(Symbol* name, TRAPS);
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7436
diff changeset
   293
  void verify_legal_field_signature(Symbol* fieldname, Symbol* signature, TRAPS);
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7436
diff changeset
   294
  int  verify_legal_method_signature(Symbol* methodname, Symbol* signature, TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
  void verify_legal_class_modifiers(jint flags, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
  void verify_legal_field_modifiers(jint flags, bool is_interface, TRAPS);
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7436
diff changeset
   297
  void verify_legal_method_modifiers(jint flags, bool is_interface, Symbol* name, TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
  bool verify_unqualified_name(char* name, unsigned int length, int type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
  char* skip_over_field_name(char* name, bool slash_ok, unsigned int length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
  char* skip_over_field_signature(char* signature, bool void_ok, unsigned int length, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 1623
diff changeset
   302
  bool is_anonymous() {
8883
5569135acca3 6817525: turn on method handle functionality by default for JSR 292
twisti
parents: 8725
diff changeset
   303
    assert(EnableInvokeDynamic || _host_klass.is_null(), "");
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 1623
diff changeset
   304
    return _host_klass.not_null();
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 1623
diff changeset
   305
  }
1550
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   306
  bool has_cp_patch_at(int index) {
8883
5569135acca3 6817525: turn on method handle functionality by default for JSR 292
twisti
parents: 8725
diff changeset
   307
    assert(EnableInvokeDynamic, "");
1550
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   308
    assert(index >= 0, "oob");
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   309
    return (_cp_patches != NULL
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   310
            && index < _cp_patches->length()
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   311
            && _cp_patches->adr_at(index)->not_null());
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   312
  }
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   313
  Handle cp_patch_at(int index) {
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   314
    assert(has_cp_patch_at(index), "oob");
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   315
    return _cp_patches->at(index);
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   316
  }
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   317
  Handle clear_cp_patch_at(int index) {
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   318
    Handle patch = cp_patch_at(index);
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   319
    _cp_patches->at_put(index, Handle());
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   320
    assert(!has_cp_patch_at(index), "");
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   321
    return patch;
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   322
  }
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   323
  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
   324
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   325
  // Wrapper for constantTag.is_klass_[or_]reference.
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   326
  // 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
   327
  // 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
   328
  // %%% 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
   329
  bool is_klass_reference(constantPoolHandle cp, int index) {
8883
5569135acca3 6817525: turn on method handle functionality by default for JSR 292
twisti
parents: 8725
diff changeset
   330
    return ((LinkWellKnownClasses || EnableInvokeDynamic)
1550
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   331
            ? 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
   332
            : cp->tag_at(index).is_klass_reference());
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   333
  }
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   334
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
  // Constructor
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
  ClassFileParser(ClassFileStream* st) { set_stream(st); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
  // Parse .class file and return new klassOop. The klassOop is not hooked up
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
  // to the system dictionary or any other structures, so a .class file can
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
  // be loaded several times if desired.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
  // The system dictionary hookup is done by the caller.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
  // "parsed_name" is updated by this method, and is the name found
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
  // while parsing the stream.
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7436
diff changeset
   346
  instanceKlassHandle parseClassFile(Symbol* name,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
                                     Handle class_loader,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
                                     Handle protection_domain,
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7436
diff changeset
   349
                                     TempNewSymbol& parsed_name,
3820
0a8fbbe180db 6830542: Performance: JVM_DefineClass already verified.
acorn
parents: 3575
diff changeset
   350
                                     bool verify,
1550
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   351
                                     TRAPS) {
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 1623
diff changeset
   352
    KlassHandle no_host_klass;
3820
0a8fbbe180db 6830542: Performance: JVM_DefineClass already verified.
acorn
parents: 3575
diff changeset
   353
    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
   354
  }
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7436
diff changeset
   355
  instanceKlassHandle parseClassFile(Symbol* name,
1550
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   356
                                     Handle class_loader,
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   357
                                     Handle protection_domain,
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 1623
diff changeset
   358
                                     KlassHandle host_klass,
1550
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   359
                                     GrowableArray<Handle>* cp_patches,
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7436
diff changeset
   360
                                     TempNewSymbol& parsed_name,
3820
0a8fbbe180db 6830542: Performance: JVM_DefineClass already verified.
acorn
parents: 3575
diff changeset
   361
                                     bool verify,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
                                     TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
  // Verifier checks
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
  static void check_super_class_access(instanceKlassHandle this_klass, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
  static void check_super_interface_access(instanceKlassHandle this_klass, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
  static void check_final_method_override(instanceKlassHandle this_klass, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
  static void check_illegal_static_method(instanceKlassHandle this_klass, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7114
diff changeset
   370
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7114
diff changeset
   371
#endif // SHARE_VM_CLASSFILE_CLASSFILEPARSER_HPP