src/hotspot/share/oops/klassVtable.hpp
author redestad
Tue, 08 Oct 2019 20:47:46 +0200
changeset 58507 7c1d0616828c
parent 53904 9c3fe09f69bc
permissions -rw-r--r--
8232006: Remove dead code from klassVtable Reviewed-by: coleenp, jiangli, lfoltan
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 51329
diff changeset
     2
 * Copyright (c) 1997, 2019, 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
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 51329
diff changeset
    25
#ifndef SHARE_OOPS_KLASSVTABLE_HPP
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 51329
diff changeset
    26
#define SHARE_OOPS_KLASSVTABLE_HPP
7397
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
 public:
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 40633
diff changeset
    52
  klassVtable(Klass* klass, void* base, int length) : _klass(klass) {
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 40633
diff changeset
    53
    _tableOffset = (address)base - (address)klass; _length = length;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  // accessors
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 40633
diff changeset
    57
  vtableEntry* table() const      { return (vtableEntry*)(address(_klass) + _tableOffset); }
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 40633
diff changeset
    58
  Klass* klass() const            { return _klass;  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  int length() const              { return _length; }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
    60
  inline Method* method_at(int i) const;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
    61
  inline Method* unchecked_method_at(int i) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  // searching; all methods return -1 if not found
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    64
  int index_of_miranda(Symbol* name, Symbol* signature);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  void initialize_vtable(bool checkconstraints, TRAPS);   // initialize vtable of a new klass
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
9172
a4e13ccafc44 7032407: Crash in LinkResolver::runtime_resolve_virtual_method()
coleenp
parents: 8297
diff changeset
    68
  // computes vtable length (in words) and the number of miranda methods
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 29316
diff changeset
    69
  static void compute_vtable_size_and_num_mirandas(int* vtable_length,
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 29316
diff changeset
    70
                                                   int* num_new_mirandas,
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 29316
diff changeset
    71
                                                   GrowableArray<Method*>* all_mirandas,
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 29316
diff changeset
    72
                                                   const Klass* super,
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 29316
diff changeset
    73
                                                   Array<Method*>* methods,
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 29316
diff changeset
    74
                                                   AccessFlags class_flags,
40633
c33ad2ff51de 8163808: Fix asserts and logging for old classfile vtable construction
acorn
parents: 39714
diff changeset
    75
                                                   u2 major_version,
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 29316
diff changeset
    76
                                                   Handle classloader,
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 29316
diff changeset
    77
                                                   Symbol* classname,
51329
9c68699bebe5 8208999: Some use of Klass* should be replaced by InstanceKlass*
iklam
parents: 51096
diff changeset
    78
                                                   Array<InstanceKlass*>* local_interfaces,
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 29316
diff changeset
    79
                                                   TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
15591
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14385
diff changeset
    81
#if INCLUDE_JVMTI
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  // RedefineClasses() API support:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  // If any entry of this vtable points to any of old_methods,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  // replace it with the corresponding new_method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  // trace_name_printed is set to true if the current call has
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  // printed the klass name so that other routines in the adjust_*
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  // group don't print the klass name.
20391
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20017
diff changeset
    88
  bool adjust_default_method(int vtable_index, Method* old_method, Method* new_method);
53904
9c3fe09f69bc 8078725: method adjustments can be done just once for all classes involved into redefinition
coleenp
parents: 53244
diff changeset
    89
  void adjust_method_entries(bool* trace_name_printed);
15591
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14385
diff changeset
    90
  bool check_no_old_or_obsolete_entries();
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14385
diff changeset
    91
  void dump_vtable();
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14385
diff changeset
    92
#endif // INCLUDE_JVMTI
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  // Debugging code
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  void print()                                              PRODUCT_RETURN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  void verify(outputStream* st, bool force = false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  static void print_statistics()                            PRODUCT_RETURN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  friend class vtableEntry;
40633
c33ad2ff51de 8163808: Fix asserts and logging for old classfile vtable construction
acorn
parents: 39714
diff changeset
   101
c33ad2ff51de 8163808: Fix asserts and logging for old classfile vtable construction
acorn
parents: 39714
diff changeset
   102
 public:
c33ad2ff51de 8163808: Fix asserts and logging for old classfile vtable construction
acorn
parents: 39714
diff changeset
   103
  // 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
   104
  // 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
   105
  // of the class whose vtable we are calculating.
c33ad2ff51de 8163808: Fix asserts and logging for old classfile vtable construction
acorn
parents: 39714
diff changeset
   106
  enum { VTABLE_TRANSITIVE_OVERRIDE_VERSION = 51 } ;
c33ad2ff51de 8163808: Fix asserts and logging for old classfile vtable construction
acorn
parents: 39714
diff changeset
   107
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  void copy_vtable_to(vtableEntry* start);
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 40633
diff changeset
   110
  int  initialize_from_super(Klass* super);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   111
  void put_method_at(Method* m, int index);
46727
6e4a84748e2c 8183039: Re-examine methodHandle methods uninlined by 8144256
coleenp
parents: 46408
diff changeset
   112
  static bool needs_new_vtable_entry(const methodHandle& m,
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 29316
diff changeset
   113
                                     const Klass* super,
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 29316
diff changeset
   114
                                     Handle classloader,
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 29316
diff changeset
   115
                                     Symbol* classname,
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 29316
diff changeset
   116
                                     AccessFlags access_flags,
40633
c33ad2ff51de 8163808: Fix asserts and logging for old classfile vtable construction
acorn
parents: 39714
diff changeset
   117
                                     u2 major_version,
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 29316
diff changeset
   118
                                     TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
46727
6e4a84748e2c 8183039: Re-examine methodHandle methods uninlined by 8144256
coleenp
parents: 46408
diff changeset
   120
  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
   121
 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
   122
                                         Handle target_loader, Symbol* target_classname, Thread* THREAD);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  // support for miranda methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  bool is_miranda_entry_at(int i);
51096
695dff91a997 8178712: ResourceMark may be missing inside initialize_[vi]table
lfoltan
parents: 49621
diff changeset
   126
  int fill_in_mirandas(int initialized, TRAPS);
20391
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20017
diff changeset
   127
  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
   128
                         Array<Method*>* default_methods, const Klass* super,
474cec233fb2 8154587: Resolution fails for default method named 'clone'
hseigel
parents: 47216
diff changeset
   129
                         bool is_interface);
14385
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13952
diff changeset
   130
  static void add_new_mirandas_to_lists(
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13952
diff changeset
   131
      GrowableArray<Method*>* new_mirandas,
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13952
diff changeset
   132
      GrowableArray<Method*>* all_mirandas,
20391
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20017
diff changeset
   133
      Array<Method*>* current_interface_methods,
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20017
diff changeset
   134
      Array<Method*>* class_methods,
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20017
diff changeset
   135
      Array<Method*>* default_methods,
48463
474cec233fb2 8154587: Resolution fails for default method named 'clone'
hseigel
parents: 47216
diff changeset
   136
      const Klass* super,
474cec233fb2 8154587: Resolution fails for default method named 'clone'
hseigel
parents: 47216
diff changeset
   137
      bool is_interface);
14385
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13952
diff changeset
   138
  static void get_mirandas(
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13952
diff changeset
   139
      GrowableArray<Method*>* new_mirandas,
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 29316
diff changeset
   140
      GrowableArray<Method*>* all_mirandas,
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 29316
diff changeset
   141
      const Klass* super,
20391
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20017
diff changeset
   142
      Array<Method*>* class_methods,
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20017
diff changeset
   143
      Array<Method*>* default_methods,
51329
9c68699bebe5 8208999: Some use of Klass* should be replaced by InstanceKlass*
iklam
parents: 51096
diff changeset
   144
      Array<InstanceKlass*>* local_interfaces,
48463
474cec233fb2 8154587: Resolution fails for default method named 'clone'
hseigel
parents: 47216
diff changeset
   145
      bool is_interface);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  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
   147
  inline InstanceKlass* ik() const;
39714
976b97b59d87 8153312: Constrain AppCDS behavior
jiangli
parents: 35898
diff changeset
   148
  // When loading a class from CDS archive at run time, and no class redefintion
976b97b59d87 8153312: Constrain AppCDS behavior
jiangli
parents: 35898
diff changeset
   149
  // has happened, it is expected that the class's itable/vtables are
976b97b59d87 8153312: Constrain AppCDS behavior
jiangli
parents: 35898
diff changeset
   150
  // laid out exactly the same way as they had been during dump time.
976b97b59d87 8153312: Constrain AppCDS behavior
jiangli
parents: 35898
diff changeset
   151
  // Therefore, in klassVtable::initialize_[iv]table, we do not layout the
976b97b59d87 8153312: Constrain AppCDS behavior
jiangli
parents: 35898
diff changeset
   152
  // tables again. Instead, we only rerun the process to create/check
976b97b59d87 8153312: Constrain AppCDS behavior
jiangli
parents: 35898
diff changeset
   153
  // the class loader constraints. In non-product builds, we add asserts to
976b97b59d87 8153312: Constrain AppCDS behavior
jiangli
parents: 35898
diff changeset
   154
  // guarantee that the table's layout would be the same as at dump time.
976b97b59d87 8153312: Constrain AppCDS behavior
jiangli
parents: 35898
diff changeset
   155
  //
976b97b59d87 8153312: Constrain AppCDS behavior
jiangli
parents: 35898
diff changeset
   156
  // If JVMTI redefines any class, the read-only shared memory are remapped
976b97b59d87 8153312: Constrain AppCDS behavior
jiangli
parents: 35898
diff changeset
   157
  // as read-write. A shared class' vtable/itable are re-initialized and
976b97b59d87 8153312: Constrain AppCDS behavior
jiangli
parents: 35898
diff changeset
   158
  // might have different layout due to class redefinition of the shared class
976b97b59d87 8153312: Constrain AppCDS behavior
jiangli
parents: 35898
diff changeset
   159
  // or its super types.
976b97b59d87 8153312: Constrain AppCDS behavior
jiangli
parents: 35898
diff changeset
   160
  bool is_preinitialized_vtable();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
// private helper class for klassVtable
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
// description of entry points:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
//    destination is interpreted:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
//      from_compiled_code_entry_point -> c2iadapter
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
//      from_interpreter_entry_point   -> interpreter entry point
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
//    destination is compiled:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
//      from_compiled_code_entry_point -> nmethod entry point
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
//      from_interpreter_entry_point   -> i2cadapter
49364
601146c66cad 8173070: Remove ValueObj class for allocation subclassing for runtime code
coleenp
parents: 48463
diff changeset
   172
class vtableEntry {
20011
d74937287461 8024760: add more types, fields and constants to VMStructs
twisti
parents: 15591
diff changeset
   173
  friend class VMStructs;
35123
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 29316
diff changeset
   174
  friend class JVMCIVMStructs;
20011
d74937287461 8024760: add more types, fields and constants to VMStructs
twisti
parents: 15591
diff changeset
   175
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  // 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
   178
  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
   179
  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
   180
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  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
   182
  Method* method() const    { return _method; }
46746
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46727
diff changeset
   183
  Method** method_addr()    { return &_method; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
 private:
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   186
  Method* _method;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   187
  void set(Method* method)  { assert(method != NULL, "use clear"); _method = method; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  void clear()                { _method = NULL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  void print()                                        PRODUCT_RETURN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  void verify(klassVtable* vt, outputStream* st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  friend class klassVtable;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   196
inline Method* klassVtable::method_at(int i) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  assert(i >= 0 && i < _length, "index out of bounds");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  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
   199
  assert(((Metadata*)table()[i].method())->is_method(), "should be method");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  return table()[i].method();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   203
inline Method* klassVtable::unchecked_method_at(int i) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  assert(i >= 0 && i < _length, "index out of bounds");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  return table()[i].method();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
// --------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
class klassItable;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
class itableMethodEntry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
49364
601146c66cad 8173070: Remove ValueObj class for allocation subclassing for runtime code
coleenp
parents: 48463
diff changeset
   212
class itableOffsetEntry {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
 private:
51329
9c68699bebe5 8208999: Some use of Klass* should be replaced by InstanceKlass*
iklam
parents: 51096
diff changeset
   214
  InstanceKlass* _interface;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  int      _offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
 public:
51329
9c68699bebe5 8208999: Some use of Klass* should be replaced by InstanceKlass*
iklam
parents: 51096
diff changeset
   217
  InstanceKlass* interface_klass() const { return _interface; }
9c68699bebe5 8208999: Some use of Klass* should be replaced by InstanceKlass*
iklam
parents: 51096
diff changeset
   218
  InstanceKlass**interface_klass_addr()  { return &_interface; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  int      offset() const          { return _offset; }
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
  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
   222
  itableMethodEntry* first_method_entry(Klass* k)              { return method_entry(k, _offset); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
51329
9c68699bebe5 8208999: Some use of Klass* should be replaced by InstanceKlass*
iklam
parents: 51096
diff changeset
   224
  void initialize(InstanceKlass* interf, int offset) { _interface = interf; _offset = offset; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  // 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
   227
  static int size()                       { return sizeof(itableOffsetEntry) / wordSize; }    // size in words
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  static int interface_offset_in_bytes()  { return offset_of(itableOffsetEntry, _interface); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  static int offset_offset_in_bytes()     { return offset_of(itableOffsetEntry, _offset); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  friend class klassItable;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
49364
601146c66cad 8173070: Remove ValueObj class for allocation subclassing for runtime code
coleenp
parents: 48463
diff changeset
   235
class itableMethodEntry {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
 private:
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   237
  Method* _method;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
 public:
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   240
  Method* method() const { return _method; }
46746
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46727
diff changeset
   241
  Method**method_addr() { return &_method; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  void clear()             { _method = NULL; }
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
  void initialize(Method* method);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  // 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
   248
  static int size()                         { return sizeof(itableMethodEntry) / wordSize; }  // size in words
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
  static int method_offset_in_bytes()       { return offset_of(itableMethodEntry, _method); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
  friend class klassItable;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
// Format of an itable
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
//    ---- offset table ---
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   258
//    Klass* of interface 1             \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
//    offset to vtable from start of oop  / offset table entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
//    ...
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   261
//    Klass* of interface n             \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
//    offset to vtable from start of oop  / offset table entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
//    --- vtable for interface 1 ---
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   264
//    Method*                             \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
//    compiler entry point                / method table entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
//    ...
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   267
//    Method*                             \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
//    compiler entry point                / method table entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
//    -- vtable for interface 2 ---
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
//    ...
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
//
49364
601146c66cad 8173070: Remove ValueObj class for allocation subclassing for runtime code
coleenp
parents: 48463
diff changeset
   272
class klassItable {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
 private:
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 40633
diff changeset
   274
  InstanceKlass*       _klass;             // my klass
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  int                  _table_offset;      // offset of start of itable data within klass (in words)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
  int                  _size_offset_table; // size of offset table (in itableOffset entries)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
  int                  _size_method_table; // size of methodtable (in itableMethodEntry entries)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
51329
9c68699bebe5 8208999: Some use of Klass* should be replaced by InstanceKlass*
iklam
parents: 51096
diff changeset
   279
  void initialize_itable_for_interface(int method_table_offset, InstanceKlass* interf_h, bool checkconstraints, TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
 public:
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 40633
diff changeset
   281
  klassItable(InstanceKlass* klass);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
  itableOffsetEntry* offset_entry(int i) { assert(0 <= i && i <= _size_offset_table, "index out of bounds");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
                                           return &((itableOffsetEntry*)vtable_start())[i]; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  itableMethodEntry* method_entry(int i) { assert(0 <= i && i <= _size_method_table, "index out of bounds");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
                                           return &((itableMethodEntry*)method_start())[i]; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
189
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
   289
  int size_offset_table()                { return _size_offset_table; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
  // Initialization
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
  void initialize_itable(bool checkconstraints, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
15591
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14385
diff changeset
   294
#if INCLUDE_JVMTI
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
  // RedefineClasses() API support:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
  // if any entry of this itable points to any of old_methods,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
  // replace it with the corresponding new_method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
  // trace_name_printed is set to true if the current call has
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
  // printed the klass name so that other routines in the adjust_*
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
  // group don't print the klass name.
53904
9c3fe09f69bc 8078725: method adjustments can be done just once for all classes involved into redefinition
coleenp
parents: 53244
diff changeset
   301
  void adjust_method_entries(bool* trace_name_printed);
15591
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14385
diff changeset
   302
  bool check_no_old_or_obsolete_entries();
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14385
diff changeset
   303
  void dump_itable();
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14385
diff changeset
   304
#endif // INCLUDE_JVMTI
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
  // Setup of itable
51329
9c68699bebe5 8208999: Some use of Klass* should be replaced by InstanceKlass*
iklam
parents: 51096
diff changeset
   307
  static int assign_itable_indices_for_interface(InstanceKlass* klass, TRAPS);
9c68699bebe5 8208999: Some use of Klass* should be replaced by InstanceKlass*
iklam
parents: 51096
diff changeset
   308
  static int method_count_for_interface(InstanceKlass* klass);
9c68699bebe5 8208999: Some use of Klass* should be replaced by InstanceKlass*
iklam
parents: 51096
diff changeset
   309
  static int compute_itable_size(Array<InstanceKlass*>* transitive_interfaces);
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 40633
diff changeset
   310
  static void setup_itable_offset_table(InstanceKlass* klass);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
  // Debugging/Statistics
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
  static void print_statistics() PRODUCT_RETURN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
 private:
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 40633
diff changeset
   315
  intptr_t* vtable_start() const { return ((intptr_t*)_klass) + _table_offset; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
  intptr_t* method_start() const { return vtable_start() + _size_offset_table * itableOffsetEntry::size(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
  // Helper methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
  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
   320
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  // Statistics
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
  NOT_PRODUCT(static int  _total_classes;)   // Total no. of classes with itables
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
  NOT_PRODUCT(static long _total_size;)      // Total no. of bytes used for itables
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
  static void update_stats(int size) PRODUCT_RETURN NOT_PRODUCT({ _total_classes++; _total_size += size; })
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   327
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 51329
diff changeset
   328
#endif // SHARE_OOPS_KLASSVTABLE_HPP