hotspot/src/share/vm/classfile/classFileParser.hpp
author zmajo
Fri, 03 Jul 2015 07:25:03 +0200
changeset 31587 e48945b7849c
parent 31402 78cd32274693
child 33593 60764a78fa5c
permissions -rw-r--r--
8076112: Add @HotSpotIntrinsicCandidate annotation to indicate methods for which Java Runtime has intrinsics Summary: Annotate possibly intrinsified methods with @HotSpotIntrinsicCandidate. Add checks omitted by intrinsics to the library code. Add CheckIntrinsics flags to check consistency of intrinsics. Reviewed-by: jrose, kvn, thartmann, vlivanov, abuckley, darcy, ascarpino, briangoetz, alanb, aph, dnsimon
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
29081
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents: 28027
diff changeset
     2
 * Copyright (c) 1997, 2015, 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"
29201
fee2bbb2ec1d 8073389: Remove the include of resourceArea.hpp from classFileParser.hpp
stefank
parents: 29081
diff changeset
    29
#include "classfile/symbolTable.hpp"
fee2bbb2ec1d 8073389: Remove the include of resourceArea.hpp from classFileParser.hpp
stefank
parents: 29081
diff changeset
    30
#include "oops/annotations.hpp"
fee2bbb2ec1d 8073389: Remove the include of resourceArea.hpp from classFileParser.hpp
stefank
parents: 29081
diff changeset
    31
#include "oops/constantPool.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7114
diff changeset
    32
#include "oops/typeArrayOop.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7114
diff changeset
    33
#include "utilities/accessFlags.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7114
diff changeset
    34
29201
fee2bbb2ec1d 8073389: Remove the include of resourceArea.hpp from classFileParser.hpp
stefank
parents: 29081
diff changeset
    35
class CompressedLineNumberWriteStream;
10546
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 8883
diff changeset
    36
class FieldAllocationCount;
29201
fee2bbb2ec1d 8073389: Remove the include of resourceArea.hpp from classFileParser.hpp
stefank
parents: 29081
diff changeset
    37
class FieldInfo;
15935
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
    38
class FieldLayoutInfo;
10546
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 8883
diff changeset
    39
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 8883
diff changeset
    40
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
// Parser for for .class files
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
// The bytes describing the class file structure is read from a Stream object
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
class ClassFileParser VALUE_OBJ_CLASS_SPEC {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  bool _need_verify;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  bool _relax_verify;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  u2   _major_version;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  u2   _minor_version;
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7436
diff changeset
    51
  Symbol* _class_name;
15935
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
    52
  ClassLoaderData* _loader_data;
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 1623
diff changeset
    53
  KlassHandle _host_klass;
1550
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
    54
  GrowableArray<Handle>* _cp_patches; // overrides for CP entries
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
13291
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
    56
  // precomputed flags
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  bool _has_finalizer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  bool _has_empty_finalizer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  bool _has_vanilla_constructor;
13291
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
    60
  int _max_bootstrap_specifier_index;  // detects BSS values
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
13291
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
    62
  // class attributes parsed before the instance klass is created:
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
    63
  bool       _synthetic_flag;
15935
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
    64
  int        _sde_length;
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
    65
  char*      _sde_buffer;
19326
14cb6cf26a96 8021948: Change InstanceKlass::_source_file_name and _generic_signature from Symbol* to constant pool indexes.
jiangli
parents: 17073
diff changeset
    66
  u2         _sourcefile_index;
14cb6cf26a96 8021948: Change InstanceKlass::_source_file_name and _generic_signature from Symbol* to constant pool indexes.
jiangli
parents: 17073
diff changeset
    67
  u2         _generic_signature_index;
15935
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
    68
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
    69
  // Metadata created before the instance klass is created.  Must be deallocated
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
    70
  // if not transferred to the InstanceKlass upon successful class loading
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
    71
  // in which case these pointers have been set to NULL.
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
    72
  instanceKlassHandle _super_klass;
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
    73
  ConstantPool*    _cp;
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
    74
  Array<u2>*       _fields;
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
    75
  Array<Method*>*  _methods;
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
    76
  Array<u2>*       _inner_classes;
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
    77
  Array<Klass*>*   _local_interfaces;
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
    78
  Array<Klass*>*   _transitive_interfaces;
28027
c63d0bb0101c 8065634: Crash in InstanceKlass::clean_method_data when _method is NULL
stefank
parents: 27402
diff changeset
    79
  Annotations*     _combined_annotations;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    80
  AnnotationArray* _annotations;
15097
9db149412e0e 8004823: Add VM support for type annotation reflection
stefank
parents: 14588
diff changeset
    81
  AnnotationArray* _type_annotations;
15935
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
    82
  Array<AnnotationArray*>* _fields_annotations;
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
    83
  Array<AnnotationArray*>* _fields_type_annotations;
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
    84
  InstanceKlass*   _klass;  // InstanceKlass once created.
13291
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
    85
19326
14cb6cf26a96 8021948: Change InstanceKlass::_source_file_name and _generic_signature from Symbol* to constant pool indexes.
jiangli
parents: 17073
diff changeset
    86
  void set_class_synthetic_flag(bool x)        { _synthetic_flag = x; }
14cb6cf26a96 8021948: Change InstanceKlass::_source_file_name and _generic_signature from Symbol* to constant pool indexes.
jiangli
parents: 17073
diff changeset
    87
  void set_class_sourcefile_index(u2 x)        { _sourcefile_index = x; }
14cb6cf26a96 8021948: Change InstanceKlass::_source_file_name and _generic_signature from Symbol* to constant pool indexes.
jiangli
parents: 17073
diff changeset
    88
  void set_class_generic_signature_index(u2 x) { _generic_signature_index = x; }
14cb6cf26a96 8021948: Change InstanceKlass::_source_file_name and _generic_signature from Symbol* to constant pool indexes.
jiangli
parents: 17073
diff changeset
    89
  void set_class_sde_buffer(char* x, int len)  { _sde_buffer = x; _sde_length = len; }
15935
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
    90
28027
c63d0bb0101c 8065634: Crash in InstanceKlass::clean_method_data when _method is NULL
stefank
parents: 27402
diff changeset
    91
  void create_combined_annotations(TRAPS);
c63d0bb0101c 8065634: Crash in InstanceKlass::clean_method_data when _method is NULL
stefank
parents: 27402
diff changeset
    92
15935
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
    93
  void init_parsed_class_attributes(ClassLoaderData* loader_data) {
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
    94
    _loader_data = loader_data;
13291
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
    95
    _synthetic_flag = false;
19326
14cb6cf26a96 8021948: Change InstanceKlass::_source_file_name and _generic_signature from Symbol* to constant pool indexes.
jiangli
parents: 17073
diff changeset
    96
    _sourcefile_index = 0;
14cb6cf26a96 8021948: Change InstanceKlass::_source_file_name and _generic_signature from Symbol* to constant pool indexes.
jiangli
parents: 17073
diff changeset
    97
    _generic_signature_index = 0;
13295
kvn
parents: 13291
diff changeset
    98
    _sde_buffer = NULL;
kvn
parents: 13291
diff changeset
    99
    _sde_length = 0;
13291
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   100
    // initialize the other flags too:
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   101
    _has_finalizer = _has_empty_finalizer = _has_vanilla_constructor = false;
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   102
    _max_bootstrap_specifier_index = -1;
15935
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   103
    clear_class_metadata();
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   104
    _klass = NULL;
13291
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   105
  }
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   106
  void apply_parsed_class_attributes(instanceKlassHandle k);  // update k
15935
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   107
  void apply_parsed_class_metadata(instanceKlassHandle k, int fields_count, TRAPS);
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   108
  void clear_class_metadata() {
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   109
    // metadata created before the instance klass is created.  Must be
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   110
    // deallocated if classfile parsing returns an error.
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   111
    _cp = NULL;
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   112
    _fields = NULL;
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   113
    _methods = NULL;
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   114
    _inner_classes = NULL;
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   115
    _local_interfaces = NULL;
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   116
    _transitive_interfaces = NULL;
28027
c63d0bb0101c 8065634: Crash in InstanceKlass::clean_method_data when _method is NULL
stefank
parents: 27402
diff changeset
   117
    _combined_annotations = NULL;
15935
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   118
    _annotations = _type_annotations = NULL;
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   119
    _fields_annotations = _fields_type_annotations = NULL;
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   120
  }
13291
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 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
    enum Location { _in_field, _in_method, _in_class };
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   125
    enum ID {
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   126
      _unknown = 0,
16617
6235d2c7549f 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 15935
diff changeset
   127
      _method_CallerSensitive,
13291
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   128
      _method_ForceInline,
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13296
diff changeset
   129
      _method_DontInline,
31228
8e427370cdd1 8074551: GWT can be marked non-compilable due to deopt count pollution
vlivanov
parents: 29201
diff changeset
   130
      _method_InjectedProfile,
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13296
diff changeset
   131
      _method_LambdaForm_Compiled,
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13296
diff changeset
   132
      _method_LambdaForm_Hidden,
31587
e48945b7849c 8076112: Add @HotSpotIntrinsicCandidate annotation to indicate methods for which Java Runtime has intrinsics
zmajo
parents: 31402
diff changeset
   133
      _method_HotSpotIntrinsicCandidate,
15193
8e6b5694267f 8003985: Support @Contended Annotation - JEP 142
jwilhelm
parents: 15097
diff changeset
   134
      _sun_misc_Contended,
19770
7cb9f982ea81 8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents: 19326
diff changeset
   135
      _field_Stable,
13291
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   136
      _annotation_LIMIT
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   137
    };
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   138
    const Location _location;
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   139
    int _annotations_present;
15193
8e6b5694267f 8003985: Support @Contended Annotation - JEP 142
jwilhelm
parents: 15097
diff changeset
   140
    u2 _contended_group;
8e6b5694267f 8003985: Support @Contended Annotation - JEP 142
jwilhelm
parents: 15097
diff changeset
   141
13291
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   142
    AnnotationCollector(Location location)
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   143
    : _location(location), _annotations_present(0)
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   144
    {
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   145
      assert((int)_annotation_LIMIT <= (int)sizeof(_annotations_present) * BitsPerByte, "");
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   146
    }
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   147
    // If this annotation name has an ID, report it (or _none).
15193
8e6b5694267f 8003985: Support @Contended Annotation - JEP 142
jwilhelm
parents: 15097
diff changeset
   148
    ID annotation_index(ClassLoaderData* loader_data, Symbol* name);
13291
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   149
    // Set the annotation name:
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   150
    void set_annotation(ID id) {
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   151
      assert((int)id >= 0 && (int)id < (int)_annotation_LIMIT, "oob");
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   152
      _annotations_present |= nth_bit((int)id);
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   153
    }
19770
7cb9f982ea81 8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents: 19326
diff changeset
   154
7cb9f982ea81 8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents: 19326
diff changeset
   155
    void remove_annotation(ID id) {
7cb9f982ea81 8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents: 19326
diff changeset
   156
      assert((int)id >= 0 && (int)id < (int)_annotation_LIMIT, "oob");
7cb9f982ea81 8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents: 19326
diff changeset
   157
      _annotations_present &= ~nth_bit((int)id);
7cb9f982ea81 8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents: 19326
diff changeset
   158
    }
7cb9f982ea81 8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents: 19326
diff changeset
   159
13291
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   160
    // Report if the annotation is present.
19770
7cb9f982ea81 8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents: 19326
diff changeset
   161
    bool has_any_annotations() const { return _annotations_present != 0; }
7cb9f982ea81 8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents: 19326
diff changeset
   162
    bool has_annotation(ID id) const { return (nth_bit((int)id) & _annotations_present) != 0; }
15193
8e6b5694267f 8003985: Support @Contended Annotation - JEP 142
jwilhelm
parents: 15097
diff changeset
   163
8e6b5694267f 8003985: Support @Contended Annotation - JEP 142
jwilhelm
parents: 15097
diff changeset
   164
    void set_contended_group(u2 group) { _contended_group = group; }
19770
7cb9f982ea81 8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents: 19326
diff changeset
   165
    u2 contended_group() const { return _contended_group; }
15193
8e6b5694267f 8003985: Support @Contended Annotation - JEP 142
jwilhelm
parents: 15097
diff changeset
   166
19770
7cb9f982ea81 8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents: 19326
diff changeset
   167
    bool is_contended() const { return has_annotation(_sun_misc_Contended); }
7cb9f982ea81 8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents: 19326
diff changeset
   168
7cb9f982ea81 8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents: 19326
diff changeset
   169
    void set_stable(bool stable) { set_annotation(_field_Stable); }
7cb9f982ea81 8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents: 19326
diff changeset
   170
    bool is_stable() const { return has_annotation(_field_Stable); }
13291
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   171
  };
15935
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   172
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   173
  // This class also doubles as a holder for metadata cleanup.
13291
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   174
  class FieldAnnotationCollector: public AnnotationCollector {
15935
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   175
    ClassLoaderData* _loader_data;
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   176
    AnnotationArray* _field_annotations;
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   177
    AnnotationArray* _field_type_annotations;
13291
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   178
  public:
15935
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   179
    FieldAnnotationCollector(ClassLoaderData* loader_data) :
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   180
                                 AnnotationCollector(_in_field),
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   181
                                 _loader_data(loader_data),
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   182
                                 _field_annotations(NULL),
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   183
                                 _field_type_annotations(NULL) {}
13291
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   184
    void apply_to(FieldInfo* f);
15935
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   185
    ~FieldAnnotationCollector();
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   186
    AnnotationArray* field_annotations()      { return _field_annotations; }
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   187
    AnnotationArray* field_type_annotations() { return _field_type_annotations; }
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   188
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   189
    void set_field_annotations(AnnotationArray* a)      { _field_annotations = a; }
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   190
    void set_field_type_annotations(AnnotationArray* a) { _field_type_annotations = a; }
13291
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   191
  };
15935
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   192
13291
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   193
  class MethodAnnotationCollector: public AnnotationCollector {
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   194
  public:
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   195
    MethodAnnotationCollector() : AnnotationCollector(_in_method) { }
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   196
    void apply_to(methodHandle m);
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   197
  };
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   198
  class ClassAnnotationCollector: public AnnotationCollector {
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   199
  public:
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   200
    ClassAnnotationCollector() : AnnotationCollector(_in_class) { }
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   201
    void apply_to(instanceKlassHandle k);
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   202
  };
7436
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
   203
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  enum { fixed_buffer_size = 128 };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  u_char linenumbertable_buffer[fixed_buffer_size];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  ClassFileStream* _stream;              // Actual input stream
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  enum { LegalClass, LegalField, LegalMethod }; // used to verify unqualified names
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  // Accessors
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  ClassFileStream* stream()                        { return _stream; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  void set_stream(ClassFileStream* st)             { _stream = st; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  // Constant pool parsing
15935
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   216
  void parse_constant_pool_entries(int length, TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
15935
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   218
  constantPoolHandle parse_constant_pool(TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  // Interface parsing
15935
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   221
  Array<Klass*>* parse_interfaces(int length,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
                                  Handle protection_domain,
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7436
diff changeset
   223
                                  Symbol* class_name,
14385
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13974
diff changeset
   224
                                  bool* has_default_methods,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
                                  TRAPS);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   226
  void record_defined_class_dependencies(instanceKlassHandle defined_klass, TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
15935
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   228
  instanceKlassHandle parse_super_class(int super_class_index, TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  // Field parsing
15935
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   230
  void parse_field_attributes(u2 attributes_count,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
                              bool is_static, u2 signature_index,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
                              u2* constantvalue_index_addr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
                              bool* is_synthetic_addr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
                              u2* generic_signature_index_addr,
13291
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   235
                              FieldAnnotationCollector* parsed_annotations,
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   236
                              TRAPS);
15935
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   237
  Array<u2>* parse_fields(Symbol* class_name,
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   238
                          bool is_interface,
13952
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13728
diff changeset
   239
                          FieldAllocationCount *fac,
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13728
diff changeset
   240
                          u2* java_fields_count_ptr, TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
15193
8e6b5694267f 8003985: Support @Contended Annotation - JEP 142
jwilhelm
parents: 15097
diff changeset
   242
  void print_field_layout(Symbol* name,
8e6b5694267f 8003985: Support @Contended Annotation - JEP 142
jwilhelm
parents: 15097
diff changeset
   243
                          Array<u2>* fields,
8e6b5694267f 8003985: Support @Contended Annotation - JEP 142
jwilhelm
parents: 15097
diff changeset
   244
                          constantPoolHandle cp,
8e6b5694267f 8003985: Support @Contended Annotation - JEP 142
jwilhelm
parents: 15097
diff changeset
   245
                          int instance_size,
8e6b5694267f 8003985: Support @Contended Annotation - JEP 142
jwilhelm
parents: 15097
diff changeset
   246
                          int instance_fields_start,
8e6b5694267f 8003985: Support @Contended Annotation - JEP 142
jwilhelm
parents: 15097
diff changeset
   247
                          int instance_fields_end,
8e6b5694267f 8003985: Support @Contended Annotation - JEP 142
jwilhelm
parents: 15097
diff changeset
   248
                          int static_fields_end);
8e6b5694267f 8003985: Support @Contended Annotation - JEP 142
jwilhelm
parents: 15097
diff changeset
   249
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
  // Method parsing
15935
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   251
  methodHandle parse_method(bool is_interface,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
                            AccessFlags* promoted_flags,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
                            TRAPS);
15935
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   254
  Array<Method*>* parse_methods(bool is_interface,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
                                AccessFlags* promoted_flags,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
                                bool* has_final_method,
27402
5c4675ddc00c 8043275: Fix interface initialization for default methods.
acorn
parents: 25507
diff changeset
   257
                                bool* declares_default_methods,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
                                TRAPS);
15935
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   259
  intArray* sort_methods(Array<Method*>* methods);
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   260
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   261
  u2* parse_exception_table(u4 code_length, u4 exception_table_length,
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   262
                            TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
  void parse_linenumber_table(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
      u4 code_attribute_length, u4 code_length,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
      CompressedLineNumberWriteStream** write_stream, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
  u2* parse_localvariable_table(u4 code_length, u2 max_locals, u4 code_attribute_length,
15935
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   267
                                u2* localvariable_table_length,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
                                bool isLVTT, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
  u2* parse_checked_exceptions(u2* checked_exceptions_length, u4 method_attribute_length,
15935
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   270
                               TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  void parse_type_array(u2 array_length, u4 code_length, u4* u1_index, u4* u2_index,
15935
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   272
                        u1* u1_array, u2* u2_array, TRAPS);
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   273
  u1* parse_stackmap_table(u4 code_attribute_length, TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  // Classfile attribute parsing
25507
37c0bd9e16a0 8037167: Better method signature resolution
acorn
parents: 24424
diff changeset
   276
  u2 parse_generic_signature_attribute(TRAPS);
15935
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   277
  void parse_classfile_sourcefile_attribute(TRAPS);
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   278
  void parse_classfile_source_debug_extension_attribute(int length, TRAPS);
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   279
  u2   parse_classfile_inner_classes_attribute(u1* inner_classes_attribute_start,
12231
6a9cfc59a18a 7109878: The instanceKlass EnclosingMethhod attribute fields can be folded into the _inner_class field.
jiangli
parents: 11412
diff changeset
   280
                                               bool parsed_enclosingmethod_attribute,
6a9cfc59a18a 7109878: The instanceKlass EnclosingMethhod attribute fields can be folded into the _inner_class field.
jiangli
parents: 11412
diff changeset
   281
                                               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
   282
                                               u2 enclosing_method_method_index,
13291
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   283
                                               TRAPS);
15935
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   284
  void parse_classfile_attributes(ClassAnnotationCollector* parsed_annotations,
13291
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   285
                                  TRAPS);
15935
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   286
  void parse_classfile_synthetic_attribute(TRAPS);
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   287
  void parse_classfile_signature_attribute(TRAPS);
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   288
  void parse_classfile_bootstrap_methods_attribute(u4 attribute_length, TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
  // Annotations handling
15935
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   291
  AnnotationArray* assemble_annotations(u1* runtime_visible_annotations,
13952
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13728
diff changeset
   292
                                        int runtime_visible_annotations_length,
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13728
diff changeset
   293
                                        u1* runtime_invisible_annotations,
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13728
diff changeset
   294
                                        int runtime_invisible_annotations_length, TRAPS);
13291
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   295
  int skip_annotation(u1* buffer, int limit, int index);
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   296
  int skip_annotation_value(u1* buffer, int limit, int index);
15935
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   297
  void parse_annotations(u1* buffer, int limit,
13291
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 12267
diff changeset
   298
                         /* Results (currently, only one result is supported): */
31366
67eccccbb2ca 8042041: https://bugs.openjdk.java.net/browse/JDK-8042041
hseigel
parents: 29201
diff changeset
   299
                         AnnotationCollector* result);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
  // Final setup
3694
942b7bc7f28c 6845368: large objects cause a crash or unexpected exception
jcoomes
parents: 3693
diff changeset
   302
  unsigned int compute_oop_map_count(instanceKlassHandle super,
942b7bc7f28c 6845368: large objects cause a crash or unexpected exception
jcoomes
parents: 3693
diff changeset
   303
                                     unsigned int nonstatic_oop_count,
942b7bc7f28c 6845368: large objects cause a crash or unexpected exception
jcoomes
parents: 3693
diff changeset
   304
                                     int first_nonstatic_oop_offset);
942b7bc7f28c 6845368: large objects cause a crash or unexpected exception
jcoomes
parents: 3693
diff changeset
   305
  void fill_oop_maps(instanceKlassHandle k,
942b7bc7f28c 6845368: large objects cause a crash or unexpected exception
jcoomes
parents: 3693
diff changeset
   306
                     unsigned int nonstatic_oop_map_count,
942b7bc7f28c 6845368: large objects cause a crash or unexpected exception
jcoomes
parents: 3693
diff changeset
   307
                     int* nonstatic_oop_offsets,
942b7bc7f28c 6845368: large objects cause a crash or unexpected exception
jcoomes
parents: 3693
diff changeset
   308
                     unsigned int* nonstatic_oop_counts);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
  void set_precomputed_flags(instanceKlassHandle k);
15935
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   310
  Array<Klass*>* compute_transitive_interfaces(instanceKlassHandle super,
13952
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13728
diff changeset
   311
                                               Array<Klass*>* local_ifs, TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
  // Format checker methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
  void classfile_parse_error(const char* msg, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
  void classfile_parse_error(const char* msg, int index, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
  void classfile_parse_error(const char* msg, const char *name, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
  void classfile_parse_error(const char* msg, int index, const char *name, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
  inline void guarantee_property(bool b, const char* msg, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
    if (!b) { classfile_parse_error(msg, CHECK); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
29201
fee2bbb2ec1d 8073389: Remove the include of resourceArea.hpp from classFileParser.hpp
stefank
parents: 29081
diff changeset
   322
  void report_assert_property_failure(const char* msg, TRAPS);
fee2bbb2ec1d 8073389: Remove the include of resourceArea.hpp from classFileParser.hpp
stefank
parents: 29081
diff changeset
   323
  void report_assert_property_failure(const char* msg, int index, TRAPS);
fee2bbb2ec1d 8073389: Remove the include of resourceArea.hpp from classFileParser.hpp
stefank
parents: 29081
diff changeset
   324
fee2bbb2ec1d 8073389: Remove the include of resourceArea.hpp from classFileParser.hpp
stefank
parents: 29081
diff changeset
   325
  inline void assert_property(bool b, const char* msg, TRAPS) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
#ifdef ASSERT
17073
99baa410e207 8012695: Assertion message displays %u and %s text instead of actual values
hseigel
parents: 16692
diff changeset
   327
    if (!b) {
29201
fee2bbb2ec1d 8073389: Remove the include of resourceArea.hpp from classFileParser.hpp
stefank
parents: 29081
diff changeset
   328
      report_assert_property_failure(msg, THREAD);
17073
99baa410e207 8012695: Assertion message displays %u and %s text instead of actual values
hseigel
parents: 16692
diff changeset
   329
    }
99baa410e207 8012695: Assertion message displays %u and %s text instead of actual values
hseigel
parents: 16692
diff changeset
   330
#endif
99baa410e207 8012695: Assertion message displays %u and %s text instead of actual values
hseigel
parents: 16692
diff changeset
   331
  }
99baa410e207 8012695: Assertion message displays %u and %s text instead of actual values
hseigel
parents: 16692
diff changeset
   332
99baa410e207 8012695: Assertion message displays %u and %s text instead of actual values
hseigel
parents: 16692
diff changeset
   333
  inline void assert_property(bool b, const char* msg, int index, TRAPS) {
99baa410e207 8012695: Assertion message displays %u and %s text instead of actual values
hseigel
parents: 16692
diff changeset
   334
#ifdef ASSERT
99baa410e207 8012695: Assertion message displays %u and %s text instead of actual values
hseigel
parents: 16692
diff changeset
   335
    if (!b) {
29201
fee2bbb2ec1d 8073389: Remove the include of resourceArea.hpp from classFileParser.hpp
stefank
parents: 29081
diff changeset
   336
      report_assert_property_failure(msg, index, THREAD);
17073
99baa410e207 8012695: Assertion message displays %u and %s text instead of actual values
hseigel
parents: 16692
diff changeset
   337
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
  inline void check_property(bool property, const char* msg, int index, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
    if (_need_verify) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
      guarantee_property(property, msg, index, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
    } else {
17073
99baa410e207 8012695: Assertion message displays %u and %s text instead of actual values
hseigel
parents: 16692
diff changeset
   345
      assert_property(property, msg, index, CHECK);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
  inline void check_property(bool property, const char* msg, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
    if (_need_verify) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
      guarantee_property(property, msg, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
      assert_property(property, msg, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
  inline void guarantee_property(bool b, const char* msg, int index, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
    if (!b) { classfile_parse_error(msg, index, CHECK); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
  inline void guarantee_property(bool b, const char* msg, const char *name, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
    if (!b) { classfile_parse_error(msg, name, CHECK); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
  inline void guarantee_property(bool b, const char* msg, int index, const char *name, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
    if (!b) { classfile_parse_error(msg, index, name, CHECK); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
5709
3b5307e27c1d 6930553: classfile format checker allows invalid method descriptor in CONSTANT_NameAndType_info in some cases
kamg
parents: 3821
diff changeset
   367
  void throwIllegalSignature(
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7436
diff changeset
   368
      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
   369
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
  bool is_supported_version(u2 major, u2 minor);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
  bool has_illegal_visibility(jint flags);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
15935
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   373
  void verify_constantvalue(int constantvalue_index, int signature_index, TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
  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
   375
  void verify_legal_class_name(Symbol* name, TRAPS);
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7436
diff changeset
   376
  void verify_legal_field_name(Symbol* name, TRAPS);
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7436
diff changeset
   377
  void verify_legal_method_name(Symbol* name, TRAPS);
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7436
diff changeset
   378
  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
   379
  int  verify_legal_method_signature(Symbol* methodname, Symbol* signature, TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
  void verify_legal_class_modifiers(jint flags, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
  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
   382
  void verify_legal_method_modifiers(jint flags, bool is_interface, Symbol* name, TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
  bool verify_unqualified_name(char* name, unsigned int length, int type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
  char* skip_over_field_name(char* name, bool slash_ok, unsigned int length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
  char* skip_over_field_signature(char* signature, bool void_ok, unsigned int length, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 1623
diff changeset
   387
  bool is_anonymous() {
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 1623
diff changeset
   388
    return _host_klass.not_null();
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 1623
diff changeset
   389
  }
1550
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   390
  bool has_cp_patch_at(int index) {
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   391
    assert(index >= 0, "oob");
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   392
    return (_cp_patches != NULL
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   393
            && index < _cp_patches->length()
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   394
            && _cp_patches->adr_at(index)->not_null());
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   395
  }
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   396
  Handle cp_patch_at(int index) {
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   397
    assert(has_cp_patch_at(index), "oob");
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   398
    return _cp_patches->at(index);
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   399
  }
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   400
  Handle clear_cp_patch_at(int index) {
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   401
    Handle patch = cp_patch_at(index);
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   402
    _cp_patches->at_put(index, Handle());
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   403
    assert(!has_cp_patch_at(index), "");
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   404
    return patch;
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   405
  }
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   406
  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
   407
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   408
  // Wrapper for constantTag.is_klass_[or_]reference.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   409
  // In older versions of the VM, Klass*s cannot sneak into early phases of
1550
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   410
  // 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
   411
  // %%% Let's phase out the old is_klass_reference.
15935
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   412
  bool valid_klass_reference_at(int index) {
24322
c2978d1578e3 8036956: remove EnableInvokeDynamic flag
anoll
parents: 19770
diff changeset
   413
    return _cp->is_within_bounds(index) && _cp->tag_at(index).is_klass_or_reference();
15935
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   414
  }
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   415
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   416
  // Checks that the cpool index is in range and is a utf8
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   417
  bool valid_symbol_at(int cpool_index) {
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   418
    return (_cp->is_within_bounds(cpool_index) &&
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   419
            _cp->tag_at(cpool_index).is_utf8());
1550
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   420
  }
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   421
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15193
diff changeset
   422
  void copy_localvariable_table(ConstMethod* cm, int lvt_cnt,
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15193
diff changeset
   423
                                u2* localvariable_table_length,
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15193
diff changeset
   424
                                u2** localvariable_table_start,
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15193
diff changeset
   425
                                int lvtt_cnt,
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15193
diff changeset
   426
                                u2* localvariable_type_table_length,
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15193
diff changeset
   427
                                u2** localvariable_type_table_start,
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15193
diff changeset
   428
                                TRAPS);
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15193
diff changeset
   429
15935
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   430
  void copy_method_annotations(ConstMethod* cm,
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15193
diff changeset
   431
                               u1* runtime_visible_annotations,
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15193
diff changeset
   432
                               int runtime_visible_annotations_length,
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15193
diff changeset
   433
                               u1* runtime_invisible_annotations,
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15193
diff changeset
   434
                               int runtime_invisible_annotations_length,
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15193
diff changeset
   435
                               u1* runtime_visible_parameter_annotations,
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15193
diff changeset
   436
                               int runtime_visible_parameter_annotations_length,
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15193
diff changeset
   437
                               u1* runtime_invisible_parameter_annotations,
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15193
diff changeset
   438
                               int runtime_invisible_parameter_annotations_length,
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15193
diff changeset
   439
                               u1* runtime_visible_type_annotations,
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15193
diff changeset
   440
                               int runtime_visible_type_annotations_length,
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15193
diff changeset
   441
                               u1* runtime_invisible_type_annotations,
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15193
diff changeset
   442
                               int runtime_invisible_type_annotations_length,
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15193
diff changeset
   443
                               u1* annotation_default,
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15193
diff changeset
   444
                               int annotation_default_length,
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15193
diff changeset
   445
                               TRAPS);
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15193
diff changeset
   446
15935
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   447
  // lays out fields in class and returns the total oopmap count
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   448
  void layout_fields(Handle class_loader, FieldAllocationCount* fac,
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   449
                     ClassAnnotationCollector* parsed_annotations,
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   450
                     FieldLayoutInfo* info, TRAPS);
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   451
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
  // Constructor
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
  ClassFileParser(ClassFileStream* st) { set_stream(st); }
15935
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   455
  ~ClassFileParser();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   457
  // Parse .class file and return new Klass*. The Klass* is not hooked up
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
  // to the system dictionary or any other structures, so a .class file can
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
  // be loaded several times if desired.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
  // The system dictionary hookup is done by the caller.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
  // "parsed_name" is updated by this method, and is the name found
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
  // while parsing the stream.
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7436
diff changeset
   464
  instanceKlassHandle parseClassFile(Symbol* name,
14588
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 14385
diff changeset
   465
                                     ClassLoaderData* loader_data,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
                                     Handle protection_domain,
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7436
diff changeset
   467
                                     TempNewSymbol& parsed_name,
3820
0a8fbbe180db 6830542: Performance: JVM_DefineClass already verified.
acorn
parents: 3575
diff changeset
   468
                                     bool verify,
1550
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   469
                                     TRAPS) {
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 1623
diff changeset
   470
    KlassHandle no_host_klass;
14588
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 14385
diff changeset
   471
    return parseClassFile(name, loader_data, 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
   472
  }
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7436
diff changeset
   473
  instanceKlassHandle parseClassFile(Symbol* name,
14588
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 14385
diff changeset
   474
                                     ClassLoaderData* loader_data,
1550
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   475
                                     Handle protection_domain,
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 1623
diff changeset
   476
                                     KlassHandle host_klass,
1550
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   477
                                     GrowableArray<Handle>* cp_patches,
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7436
diff changeset
   478
                                     TempNewSymbol& parsed_name,
3820
0a8fbbe180db 6830542: Performance: JVM_DefineClass already verified.
acorn
parents: 3575
diff changeset
   479
                                     bool verify,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
                                     TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
  // Verifier checks
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
  static void check_super_class_access(instanceKlassHandle this_klass, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
  static void check_super_interface_access(instanceKlassHandle this_klass, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
  static void check_final_method_override(instanceKlassHandle this_klass, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
  static void check_illegal_static_method(instanceKlassHandle this_klass, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7114
diff changeset
   488
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7114
diff changeset
   489
#endif // SHARE_VM_CLASSFILE_CLASSFILEPARSER_HPP