src/hotspot/share/oops/klassVtable.hpp
author lfoltan
Mon, 16 Jul 2018 09:06:33 -0400
changeset 51096 695dff91a997
parent 49621 5ef28d560b6f
child 51329 9c68699bebe5
permissions -rw-r--r--
8178712: ResourceMark may be missing inside initialize_[vi]table Summary: Clean up use of ResourceMark within initialize_[vi]table. Reviewed-by: ccheung, iklam, jiangli
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
49364
601146c66cad 8173070: Remove ValueObj class for allocation subclassing for runtime code
coleenp
parents: 48463
diff changeset
     2
 * Copyright (c) 1997, 2018, 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: 2343
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 2343
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: 2343
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: 5547
diff changeset
    25
#ifndef SHARE_VM_OOPS_KLASSVTABLE_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#define SHARE_VM_OOPS_KLASSVTABLE_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "oops/oopsHierarchy.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "runtime/handles.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "utilities/growableArray.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
    32
// A klassVtable abstracts the variable-length vtable that is embedded in InstanceKlass
13952
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13728
diff changeset
    33
// and ArrayKlass.  klassVtable objects are used just as convenient transient accessors to the vtable,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
// not to actually hold the vtable data.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
// Note: the klassVtable should not be accessed before the class has been verified
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
// (until that point, the vtable is uninitialized).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
// Currently a klassVtable contains a direct reference to the vtable data, and is therefore
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
// not preserved across GCs.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
class vtableEntry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
49364
601146c66cad 8173070: Remove ValueObj class for allocation subclassing for runtime code
coleenp
parents: 48463
diff changeset
    43
class klassVtable {
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 40633
diff changeset
    44
  Klass*       _klass;            // my klass
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  int          _tableOffset;      // offset of start of vtable data within klass
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  int          _length;           // length of vtable (number of entries)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  int          _verify_count;     // to make verify faster
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  // Ordering important, so greater_than (>) can be used as an merge operator.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  enum AccessType {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
    acc_private         = 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
    acc_package_private = 1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
    acc_publicprotected = 2
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
 public:
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 40633
diff changeset
    59
  klassVtable(Klass* klass, void* base, int length) : _klass(klass) {
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 40633
diff changeset
    60
    _tableOffset = (address)base - (address)klass; _length = length;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  // accessors
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 40633
diff changeset
    64
  vtableEntry* table() const      { return (vtableEntry*)(address(_klass) + _tableOffset); }
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 40633
diff changeset
    65
  Klass* klass() const            { return _klass;  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  int length() const              { return _length; }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
    67
  inline Method* method_at(int i) const;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
    68
  inline Method* unchecked_method_at(int i) const;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
    69
  inline Method** adr_method_at(int i) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  // searching; all methods return -1 if not found
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
    72
  int index_of(Method* m) const                         { return index_of(m, _length); }
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    73
  int index_of_miranda(Symbol* name, Symbol* signature);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  void initialize_vtable(bool checkconstraints, TRAPS);   // initialize vtable of a new klass
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
9172
a4e13ccafc44 7032407: Crash in LinkResolver::runtime_resolve_virtual_method()
coleenp
parents: 8297
diff changeset
    77
  // CDS/RedefineClasses support - clear vtables so they can be reinitialized
a4e13ccafc44 7032407: Crash in LinkResolver::runtime_resolve_virtual_method()
coleenp
parents: 8297
diff changeset
    78
  // at dump time.  Clearing gives us an easy way to tell if the vtable has
a4e13ccafc44 7032407: Crash in LinkResolver::runtime_resolve_virtual_method()
coleenp
parents: 8297
diff changeset
    79
  // already been reinitialized at dump time (see dump.cpp).  Vtables can
a4e13ccafc44 7032407: Crash in LinkResolver::runtime_resolve_virtual_method()
coleenp
parents: 8297
diff changeset
    80
  // be initialized at run time by RedefineClasses so dumping the right order
a4e13ccafc44 7032407: Crash in LinkResolver::runtime_resolve_virtual_method()
coleenp
parents: 8297
diff changeset
    81
  // is necessary.
a4e13ccafc44 7032407: Crash in LinkResolver::runtime_resolve_virtual_method()
coleenp
parents: 8297
diff changeset
    82
  void clear_vtable();
a4e13ccafc44 7032407: Crash in LinkResolver::runtime_resolve_virtual_method()
coleenp
parents: 8297
diff changeset
    83
  bool is_initialized();
a4e13ccafc44 7032407: Crash in LinkResolver::runtime_resolve_virtual_method()
coleenp
parents: 8297
diff changeset
    84
a4e13ccafc44 7032407: Crash in LinkResolver::runtime_resolve_virtual_method()
coleenp
parents: 8297
diff changeset
    85
  // computes vtable length (in words) and the number of miranda methods
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 29316
diff changeset
    86
  static void compute_vtable_size_and_num_mirandas(int* vtable_length,
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 29316
diff changeset
    87
                                                   int* num_new_mirandas,
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 29316
diff changeset
    88
                                                   GrowableArray<Method*>* all_mirandas,
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 29316
diff changeset
    89
                                                   const Klass* super,
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 29316
diff changeset
    90
                                                   Array<Method*>* methods,
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 29316
diff changeset
    91
                                                   AccessFlags class_flags,
40633
c33ad2ff51de 8163808: Fix asserts and logging for old classfile vtable construction
acorn
parents: 39714
diff changeset
    92
                                                   u2 major_version,
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 29316
diff changeset
    93
                                                   Handle classloader,
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 29316
diff changeset
    94
                                                   Symbol* classname,
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 29316
diff changeset
    95
                                                   Array<Klass*>* local_interfaces,
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 29316
diff changeset
    96
                                                   TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
15591
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14385
diff changeset
    98
#if INCLUDE_JVMTI
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  // RedefineClasses() API support:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  // If any entry of this vtable points to any of old_methods,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  // replace it with the corresponding new_method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  // trace_name_printed is set to true if the current call has
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  // printed the klass name so that other routines in the adjust_*
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  // group don't print the klass name.
20391
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20017
diff changeset
   105
  bool adjust_default_method(int vtable_index, Method* old_method, Method* new_method);
29316
5287df8a8972 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 20391
diff changeset
   106
  void adjust_method_entries(InstanceKlass* holder, bool * trace_name_printed);
15591
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14385
diff changeset
   107
  bool check_no_old_or_obsolete_entries();
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14385
diff changeset
   108
  void dump_vtable();
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14385
diff changeset
   109
#endif // INCLUDE_JVMTI
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  // Debugging code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  void print()                                              PRODUCT_RETURN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  void verify(outputStream* st, bool force = false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  static void print_statistics()                            PRODUCT_RETURN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  friend class vtableEntry;
40633
c33ad2ff51de 8163808: Fix asserts and logging for old classfile vtable construction
acorn
parents: 39714
diff changeset
   118
c33ad2ff51de 8163808: Fix asserts and logging for old classfile vtable construction
acorn
parents: 39714
diff changeset
   119
 public:
c33ad2ff51de 8163808: Fix asserts and logging for old classfile vtable construction
acorn
parents: 39714
diff changeset
   120
  // Transitive overridng rules for class files < JDK1_7 use the older JVMS rules.
c33ad2ff51de 8163808: Fix asserts and logging for old classfile vtable construction
acorn
parents: 39714
diff changeset
   121
  // Overriding is determined as we create the vtable, so we use the class file version
c33ad2ff51de 8163808: Fix asserts and logging for old classfile vtable construction
acorn
parents: 39714
diff changeset
   122
  // of the class whose vtable we are calculating.
c33ad2ff51de 8163808: Fix asserts and logging for old classfile vtable construction
acorn
parents: 39714
diff changeset
   123
  enum { VTABLE_TRANSITIVE_OVERRIDE_VERSION = 51 } ;
c33ad2ff51de 8163808: Fix asserts and logging for old classfile vtable construction
acorn
parents: 39714
diff changeset
   124
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  void copy_vtable_to(vtableEntry* start);
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 40633
diff changeset
   127
  int  initialize_from_super(Klass* super);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   128
  int  index_of(Method* m, int len) const; // same as index_of, but search only up to len
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   129
  void put_method_at(Method* m, int index);
46727
6e4a84748e2c 8183039: Re-examine methodHandle methods uninlined by 8144256
coleenp
parents: 46408
diff changeset
   130
  static bool needs_new_vtable_entry(const methodHandle& m,
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 29316
diff changeset
   131
                                     const Klass* super,
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 29316
diff changeset
   132
                                     Handle classloader,
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 29316
diff changeset
   133
                                     Symbol* classname,
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 29316
diff changeset
   134
                                     AccessFlags access_flags,
40633
c33ad2ff51de 8163808: Fix asserts and logging for old classfile vtable construction
acorn
parents: 39714
diff changeset
   135
                                     u2 major_version,
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 29316
diff changeset
   136
                                     TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
46727
6e4a84748e2c 8183039: Re-examine methodHandle methods uninlined by 8144256
coleenp
parents: 46408
diff changeset
   138
  bool update_inherited_vtable(InstanceKlass* klass, const methodHandle& target_method, int super_vtable_len, int default_index, bool checkconstraints, TRAPS);
6e4a84748e2c 8183039: Re-examine methodHandle methods uninlined by 8144256
coleenp
parents: 46408
diff changeset
   139
 InstanceKlass* find_transitive_override(InstanceKlass* initialsuper, const methodHandle& target_method, int vtable_index,
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   140
                                         Handle target_loader, Symbol* target_classname, Thread* THREAD);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  // support for miranda methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  bool is_miranda_entry_at(int i);
51096
695dff91a997 8178712: ResourceMark may be missing inside initialize_[vi]table
lfoltan
parents: 49621
diff changeset
   144
  int fill_in_mirandas(int initialized, TRAPS);
20391
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20017
diff changeset
   145
  static bool is_miranda(Method* m, Array<Method*>* class_methods,
48463
474cec233fb2 8154587: Resolution fails for default method named 'clone'
hseigel
parents: 47216
diff changeset
   146
                         Array<Method*>* default_methods, const Klass* super,
474cec233fb2 8154587: Resolution fails for default method named 'clone'
hseigel
parents: 47216
diff changeset
   147
                         bool is_interface);
14385
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13952
diff changeset
   148
  static void add_new_mirandas_to_lists(
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13952
diff changeset
   149
      GrowableArray<Method*>* new_mirandas,
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13952
diff changeset
   150
      GrowableArray<Method*>* all_mirandas,
20391
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20017
diff changeset
   151
      Array<Method*>* current_interface_methods,
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20017
diff changeset
   152
      Array<Method*>* class_methods,
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20017
diff changeset
   153
      Array<Method*>* default_methods,
48463
474cec233fb2 8154587: Resolution fails for default method named 'clone'
hseigel
parents: 47216
diff changeset
   154
      const Klass* super,
474cec233fb2 8154587: Resolution fails for default method named 'clone'
hseigel
parents: 47216
diff changeset
   155
      bool is_interface);
14385
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13952
diff changeset
   156
  static void get_mirandas(
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13952
diff changeset
   157
      GrowableArray<Method*>* new_mirandas,
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 29316
diff changeset
   158
      GrowableArray<Method*>* all_mirandas,
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 29316
diff changeset
   159
      const Klass* super,
20391
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20017
diff changeset
   160
      Array<Method*>* class_methods,
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20017
diff changeset
   161
      Array<Method*>* default_methods,
48463
474cec233fb2 8154587: Resolution fails for default method named 'clone'
hseigel
parents: 47216
diff changeset
   162
      Array<Klass*>* local_interfaces,
474cec233fb2 8154587: Resolution fails for default method named 'clone'
hseigel
parents: 47216
diff changeset
   163
      bool is_interface);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  void verify_against(outputStream* st, klassVtable* vt, int index);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   165
  inline InstanceKlass* ik() const;
39714
976b97b59d87 8153312: Constrain AppCDS behavior
jiangli
parents: 35898
diff changeset
   166
  // When loading a class from CDS archive at run time, and no class redefintion
976b97b59d87 8153312: Constrain AppCDS behavior
jiangli
parents: 35898
diff changeset
   167
  // has happened, it is expected that the class's itable/vtables are
976b97b59d87 8153312: Constrain AppCDS behavior
jiangli
parents: 35898
diff changeset
   168
  // laid out exactly the same way as they had been during dump time.
976b97b59d87 8153312: Constrain AppCDS behavior
jiangli
parents: 35898
diff changeset
   169
  // Therefore, in klassVtable::initialize_[iv]table, we do not layout the
976b97b59d87 8153312: Constrain AppCDS behavior
jiangli
parents: 35898
diff changeset
   170
  // tables again. Instead, we only rerun the process to create/check
976b97b59d87 8153312: Constrain AppCDS behavior
jiangli
parents: 35898
diff changeset
   171
  // the class loader constraints. In non-product builds, we add asserts to
976b97b59d87 8153312: Constrain AppCDS behavior
jiangli
parents: 35898
diff changeset
   172
  // guarantee that the table's layout would be the same as at dump time.
976b97b59d87 8153312: Constrain AppCDS behavior
jiangli
parents: 35898
diff changeset
   173
  //
976b97b59d87 8153312: Constrain AppCDS behavior
jiangli
parents: 35898
diff changeset
   174
  // If JVMTI redefines any class, the read-only shared memory are remapped
976b97b59d87 8153312: Constrain AppCDS behavior
jiangli
parents: 35898
diff changeset
   175
  // as read-write. A shared class' vtable/itable are re-initialized and
976b97b59d87 8153312: Constrain AppCDS behavior
jiangli
parents: 35898
diff changeset
   176
  // might have different layout due to class redefinition of the shared class
976b97b59d87 8153312: Constrain AppCDS behavior
jiangli
parents: 35898
diff changeset
   177
  // or its super types.
976b97b59d87 8153312: Constrain AppCDS behavior
jiangli
parents: 35898
diff changeset
   178
  bool is_preinitialized_vtable();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
// private helper class for klassVtable
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
// description of entry points:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
//    destination is interpreted:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
//      from_compiled_code_entry_point -> c2iadapter
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
//      from_interpreter_entry_point   -> interpreter entry point
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
//    destination is compiled:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
//      from_compiled_code_entry_point -> nmethod entry point
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
//      from_interpreter_entry_point   -> i2cadapter
49364
601146c66cad 8173070: Remove ValueObj class for allocation subclassing for runtime code
coleenp
parents: 48463
diff changeset
   190
class vtableEntry {
20011
d74937287461 8024760: add more types, fields and constants to VMStructs
twisti
parents: 15591
diff changeset
   191
  friend class VMStructs;
35123
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 29316
diff changeset
   192
  friend class JVMCIVMStructs;
20011
d74937287461 8024760: add more types, fields and constants to VMStructs
twisti
parents: 15591
diff changeset
   193
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  // size in words
35898
ddc274f0052f 8145628: hotspot metadata classes shouldn't use HeapWordSize or heap related macros like align_object_size
coleenp
parents: 35871
diff changeset
   196
  static int size()          { return sizeof(vtableEntry) / wordSize; }
ddc274f0052f 8145628: hotspot metadata classes shouldn't use HeapWordSize or heap related macros like align_object_size
coleenp
parents: 35871
diff changeset
   197
  static int size_in_bytes() { return sizeof(vtableEntry); }
ddc274f0052f 8145628: hotspot metadata classes shouldn't use HeapWordSize or heap related macros like align_object_size
coleenp
parents: 35871
diff changeset
   198
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  static int method_offset_in_bytes() { return offset_of(vtableEntry, _method); }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   200
  Method* method() const    { return _method; }
46746
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46727
diff changeset
   201
  Method** method_addr()    { return &_method; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
 private:
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   204
  Method* _method;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   205
  void set(Method* method)  { assert(method != NULL, "use clear"); _method = method; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  void clear()                { _method = NULL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  void print()                                        PRODUCT_RETURN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  void verify(klassVtable* vt, outputStream* st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  friend class klassVtable;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   214
inline Method* klassVtable::method_at(int i) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  assert(i >= 0 && i < _length, "index out of bounds");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  assert(table()[i].method() != NULL, "should not be null");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   217
  assert(((Metadata*)table()[i].method())->is_method(), "should be method");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  return table()[i].method();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   221
inline Method* klassVtable::unchecked_method_at(int i) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  assert(i >= 0 && i < _length, "index out of bounds");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  return table()[i].method();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   226
inline Method** klassVtable::adr_method_at(int i) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  // Allow one past the last entry to be referenced; useful for loop bounds.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  assert(i >= 0 && i <= _length, "index out of bounds");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   229
  return (Method**)(address(table() + i) + vtableEntry::method_offset_in_bytes());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
// --------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
class klassItable;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
class itableMethodEntry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
49364
601146c66cad 8173070: Remove ValueObj class for allocation subclassing for runtime code
coleenp
parents: 48463
diff changeset
   236
class itableOffsetEntry {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
 private:
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   238
  Klass* _interface;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
  int      _offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
 public:
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   241
  Klass* interface_klass() const { return _interface; }
46746
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46727
diff changeset
   242
  Klass**interface_klass_addr()  { return &_interface; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  int      offset() const          { return _offset; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   245
  static itableMethodEntry* method_entry(Klass* k, int offset) { return (itableMethodEntry*)(((address)k) + offset); }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   246
  itableMethodEntry* first_method_entry(Klass* k)              { return method_entry(k, _offset); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   248
  void initialize(Klass* interf, int offset) { _interface = interf; _offset = offset; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
  // Static size and offset accessors
35898
ddc274f0052f 8145628: hotspot metadata classes shouldn't use HeapWordSize or heap related macros like align_object_size
coleenp
parents: 35871
diff changeset
   251
  static int size()                       { return sizeof(itableOffsetEntry) / wordSize; }    // size in words
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
  static int interface_offset_in_bytes()  { return offset_of(itableOffsetEntry, _interface); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  static int offset_offset_in_bytes()     { return offset_of(itableOffsetEntry, _offset); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
  friend class klassItable;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
49364
601146c66cad 8173070: Remove ValueObj class for allocation subclassing for runtime code
coleenp
parents: 48463
diff changeset
   259
class itableMethodEntry {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
 private:
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   261
  Method* _method;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
 public:
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   264
  Method* method() const { return _method; }
46746
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46727
diff changeset
   265
  Method**method_addr() { return &_method; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  void clear()             { _method = NULL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   269
  void initialize(Method* method);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  // Static size and offset accessors
35898
ddc274f0052f 8145628: hotspot metadata classes shouldn't use HeapWordSize or heap related macros like align_object_size
coleenp
parents: 35871
diff changeset
   272
  static int size()                         { return sizeof(itableMethodEntry) / wordSize; }  // size in words
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
  static int method_offset_in_bytes()       { return offset_of(itableMethodEntry, _method); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  friend class klassItable;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
// Format of an itable
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
//    ---- offset table ---
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   282
//    Klass* of interface 1             \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
//    offset to vtable from start of oop  / offset table entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
//    ...
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   285
//    Klass* of interface n             \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
//    offset to vtable from start of oop  / offset table entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
//    --- vtable for interface 1 ---
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   288
//    Method*                             \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
//    compiler entry point                / method table entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
//    ...
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   291
//    Method*                             \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
//    compiler entry point                / method table entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
//    -- vtable for interface 2 ---
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
//    ...
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
//
49364
601146c66cad 8173070: Remove ValueObj class for allocation subclassing for runtime code
coleenp
parents: 48463
diff changeset
   296
class klassItable {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
 private:
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 40633
diff changeset
   298
  InstanceKlass*       _klass;             // my klass
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
  int                  _table_offset;      // offset of start of itable data within klass (in words)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
  int                  _size_offset_table; // size of offset table (in itableOffset entries)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
  int                  _size_method_table; // size of methodtable (in itableMethodEntry entries)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 40633
diff changeset
   303
  void initialize_itable_for_interface(int method_table_offset, Klass* interf_h, bool checkconstraints, TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
 public:
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 40633
diff changeset
   305
  klassItable(InstanceKlass* klass);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
  itableOffsetEntry* offset_entry(int i) { assert(0 <= i && i <= _size_offset_table, "index out of bounds");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
                                           return &((itableOffsetEntry*)vtable_start())[i]; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
  itableMethodEntry* method_entry(int i) { assert(0 <= i && i <= _size_method_table, "index out of bounds");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
                                           return &((itableMethodEntry*)method_start())[i]; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
189
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
   313
  int size_offset_table()                { return _size_offset_table; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
  // Initialization
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
  void initialize_itable(bool checkconstraints, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
15591
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14385
diff changeset
   318
#if INCLUDE_JVMTI
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
  // RedefineClasses() API support:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
  // if any entry of this itable points to any of old_methods,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  // replace it with the corresponding new_method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
  // trace_name_printed is set to true if the current call has
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
  // printed the klass name so that other routines in the adjust_*
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
  // group don't print the klass name.
29316
5287df8a8972 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 20391
diff changeset
   325
  void adjust_method_entries(InstanceKlass* holder, bool * trace_name_printed);
15591
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14385
diff changeset
   326
  bool check_no_old_or_obsolete_entries();
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14385
diff changeset
   327
  void dump_itable();
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14385
diff changeset
   328
#endif // INCLUDE_JVMTI
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
  // Setup of itable
51096
695dff91a997 8178712: ResourceMark may be missing inside initialize_[vi]table
lfoltan
parents: 49621
diff changeset
   331
  static int assign_itable_indices_for_interface(Klass* klass, TRAPS);
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 20011
diff changeset
   332
  static int method_count_for_interface(Klass* klass);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   333
  static int compute_itable_size(Array<Klass*>* transitive_interfaces);
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 40633
diff changeset
   334
  static void setup_itable_offset_table(InstanceKlass* klass);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
  // Resolving of method to index
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   337
  static Method* method_for_itable_index(Klass* klass, int itable_index);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
  // Debugging/Statistics
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
  static void print_statistics() PRODUCT_RETURN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
 private:
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 40633
diff changeset
   342
  intptr_t* vtable_start() const { return ((intptr_t*)_klass) + _table_offset; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
  intptr_t* method_start() const { return vtable_start() + _size_offset_table * itableOffsetEntry::size(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
  // Helper methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
  static int  calc_itable_size(int num_interfaces, int num_methods) { return (num_interfaces * itableOffsetEntry::size()) + (num_methods * itableMethodEntry::size()); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
  // Statistics
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
  NOT_PRODUCT(static int  _total_classes;)   // Total no. of classes with itables
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
  NOT_PRODUCT(static long _total_size;)      // Total no. of bytes used for itables
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
  static void update_stats(int size) PRODUCT_RETURN NOT_PRODUCT({ _total_classes++; _total_size += size; })
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   354
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   355
#endif // SHARE_VM_OOPS_KLASSVTABLE_HPP