hotspot/src/share/vm/oops/klassVtable.hpp
author kamg
Thu, 11 Oct 2012 12:25:42 -0400
changeset 14385 959bbcc16725
parent 13952 e3cf184080bc
child 15591 b8aa0577f137
permissions -rw-r--r--
7200776: Implement default methods in interfaces Summary: Add generic type analysis and default method selection algorithms Reviewed-by: coleenp, acorn
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
     2
 * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 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 "memory/allocation.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "oops/oopsHierarchy.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "runtime/handles.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
#include "utilities/growableArray.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    32
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
    33
// 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
    34
// and ArrayKlass.  klassVtable objects are used just as convenient transient accessors to the vtable,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
// not to actually hold the vtable data.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
// Note: the klassVtable should not be accessed before the class has been verified
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
// (until that point, the vtable is uninitialized).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
// Currently a klassVtable contains a direct reference to the vtable data, and is therefore
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
// not preserved across GCs.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
class vtableEntry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
class klassVtable : public ResourceObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  KlassHandle  _klass;            // my klass
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  int          _tableOffset;      // offset of start of vtable data within klass
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  int          _length;           // length of vtable (number of entries)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  int          _verify_count;     // to make verify faster
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  // Ordering important, so greater_than (>) can be used as an merge operator.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  enum AccessType {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
    acc_private         = 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
    acc_package_private = 1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
    acc_publicprotected = 2
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  klassVtable(KlassHandle h_klass, void* base, int length) : _klass(h_klass) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
    _tableOffset = (address)base - (address)h_klass(); _length = length;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  // accessors
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  vtableEntry* table() const      { return (vtableEntry*)(address(_klass()) + _tableOffset); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  KlassHandle klass() const       { return _klass;  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  int length() const              { return _length; }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
    68
  inline Method* method_at(int i) const;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
    69
  inline Method* unchecked_method_at(int i) const;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
    70
  inline Method** adr_method_at(int i) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  // 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
    73
  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
    74
  int index_of_miranda(Symbol* name, Symbol* signature);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  void initialize_vtable(bool checkconstraints, TRAPS);   // initialize vtable of a new klass
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
9172
a4e13ccafc44 7032407: Crash in LinkResolver::runtime_resolve_virtual_method()
coleenp
parents: 8297
diff changeset
    78
  // CDS/RedefineClasses support - clear vtables so they can be reinitialized
a4e13ccafc44 7032407: Crash in LinkResolver::runtime_resolve_virtual_method()
coleenp
parents: 8297
diff changeset
    79
  // 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
    80
  // 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
    81
  // 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
    82
  // is necessary.
a4e13ccafc44 7032407: Crash in LinkResolver::runtime_resolve_virtual_method()
coleenp
parents: 8297
diff changeset
    83
  void clear_vtable();
a4e13ccafc44 7032407: Crash in LinkResolver::runtime_resolve_virtual_method()
coleenp
parents: 8297
diff changeset
    84
  bool is_initialized();
a4e13ccafc44 7032407: Crash in LinkResolver::runtime_resolve_virtual_method()
coleenp
parents: 8297
diff changeset
    85
a4e13ccafc44 7032407: Crash in LinkResolver::runtime_resolve_virtual_method()
coleenp
parents: 8297
diff changeset
    86
  // computes vtable length (in words) and the number of miranda methods
14385
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13952
diff changeset
    87
  static void compute_vtable_size_and_num_mirandas(
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13952
diff changeset
    88
      int* vtable_length, int* num_new_mirandas,
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13952
diff changeset
    89
      GrowableArray<Method*>* all_mirandas, Klass* super,
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13952
diff changeset
    90
      Array<Method*>* methods, AccessFlags class_flags, Handle classloader,
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13952
diff changeset
    91
      Symbol* classname, Array<Klass*>* local_interfaces, TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  // RedefineClasses() API support:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  // If any entry of this vtable points to any of old_methods,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  // replace it with the corresponding new_method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  // trace_name_printed is set to true if the current call has
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  // printed the klass name so that other routines in the adjust_*
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  // group don't print the klass name.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
    99
  void adjust_method_entries(Method** old_methods, Method** new_methods,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
                             int methods_length, bool * trace_name_printed);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  // Debugging code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  void print()                                              PRODUCT_RETURN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  void verify(outputStream* st, bool force = false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  static void print_statistics()                            PRODUCT_RETURN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  bool check_no_old_entries();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  void dump_vtable();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  friend class vtableEntry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
 private:
2264
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 189
diff changeset
   115
  enum { VTABLE_TRANSITIVE_OVERRIDE_VERSION = 51 } ;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  void copy_vtable_to(vtableEntry* start);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  int  initialize_from_super(KlassHandle super);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   118
  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
   119
  void put_method_at(Method* m, int index);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   120
  static bool needs_new_vtable_entry(methodHandle m, Klass* super, Handle classloader, Symbol* classname, AccessFlags access_flags, TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   122
  bool update_inherited_vtable(InstanceKlass* klass, methodHandle target_method, int super_vtable_len, bool checkconstraints, TRAPS);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   123
 InstanceKlass* find_transitive_override(InstanceKlass* initialsuper, methodHandle target_method, int vtable_index,
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   124
                                         Handle target_loader, Symbol* target_classname, Thread* THREAD);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  // support for miranda methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  bool is_miranda_entry_at(int i);
14385
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13952
diff changeset
   128
  void fill_in_mirandas(int* initialized);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   129
  static bool is_miranda(Method* m, Array<Method*>* class_methods, Klass* super);
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,
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13952
diff changeset
   133
      Array<Method*>* current_interface_methods, Array<Method*>* class_methods,
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13952
diff changeset
   134
      Klass* super);
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13952
diff changeset
   135
  static void get_mirandas(
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13952
diff changeset
   136
      GrowableArray<Method*>* new_mirandas,
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13952
diff changeset
   137
      GrowableArray<Method*>* all_mirandas, Klass* super,
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13952
diff changeset
   138
      Array<Method*>* class_methods, Array<Klass*>* local_interfaces);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  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
   141
  inline InstanceKlass* ik() const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
// private helper class for klassVtable
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
// description of entry points:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
//    destination is interpreted:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
//      from_compiled_code_entry_point -> c2iadapter
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
//      from_interpreter_entry_point   -> interpreter entry point
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
//    destination is compiled:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
//      from_compiled_code_entry_point -> nmethod entry point
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
//      from_interpreter_entry_point   -> i2cadapter
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
class vtableEntry VALUE_OBJ_CLASS_SPEC {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  // size in words
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  static int size() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
    return sizeof(vtableEntry) / sizeof(HeapWord);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  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
   160
  Method* method() const    { return _method; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
 private:
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   163
  Method* _method;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   164
  void set(Method* method)  { assert(method != NULL, "use clear"); _method = method; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  void clear()                { _method = NULL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  void print()                                        PRODUCT_RETURN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  void verify(klassVtable* vt, outputStream* st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  friend class klassVtable;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   173
inline Method* klassVtable::method_at(int i) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  assert(i >= 0 && i < _length, "index out of bounds");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  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
   176
  assert(((Metadata*)table()[i].method())->is_method(), "should be method");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  return table()[i].method();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   180
inline Method* klassVtable::unchecked_method_at(int i) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  assert(i >= 0 && i < _length, "index out of bounds");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  return table()[i].method();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   185
inline Method** klassVtable::adr_method_at(int i) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  // Allow one past the last entry to be referenced; useful for loop bounds.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  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
   188
  return (Method**)(address(table() + i) + vtableEntry::method_offset_in_bytes());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
// --------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
class klassItable;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
class itableMethodEntry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
class itableOffsetEntry VALUE_OBJ_CLASS_SPEC {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
 private:
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   197
  Klass* _interface;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  int      _offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
 public:
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   200
  Klass* interface_klass() const { return _interface; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  int      offset() const          { return _offset; }
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
  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
   204
  itableMethodEntry* first_method_entry(Klass* k)              { return method_entry(k, _offset); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   206
  void initialize(Klass* interf, int offset) { _interface = interf; _offset = offset; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  // Static size and offset accessors
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  static int size()                       { return sizeof(itableOffsetEntry) / HeapWordSize; }    // size in words
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  static int interface_offset_in_bytes()  { return offset_of(itableOffsetEntry, _interface); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  static int offset_offset_in_bytes()     { return offset_of(itableOffsetEntry, _offset); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  friend class klassItable;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
class itableMethodEntry VALUE_OBJ_CLASS_SPEC {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
 private:
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   219
  Method* _method;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
 public:
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   222
  Method* method() const { return _method; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  void clear()             { _method = NULL; }
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
  void initialize(Method* method);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  // Static size and offset accessors
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  static int size()                         { return sizeof(itableMethodEntry) / HeapWordSize; }  // size in words
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  static int method_offset_in_bytes()       { return offset_of(itableMethodEntry, _method); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  friend class klassItable;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
// Format of an itable
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
//    ---- offset table ---
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   239
//    Klass* of interface 1             \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
//    offset to vtable from start of oop  / offset table entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
//    ...
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   242
//    Klass* of interface n             \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
//    offset to vtable from start of oop  / offset table entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
//    --- vtable for interface 1 ---
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   245
//    Method*                             \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
//    compiler entry point                / method table entry
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
//    Method*                             \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
//    compiler entry point                / method table entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
//    -- vtable for interface 2 ---
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
//    ...
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
class klassItable : public ResourceObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
  instanceKlassHandle  _klass;             // my klass
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
  int                  _table_offset;      // offset of start of itable data within klass (in words)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
  int                  _size_offset_table; // size of offset table (in itableOffset entries)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  int                  _size_method_table; // size of methodtable (in itableMethodEntry entries)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  void initialize_itable_for_interface(int method_table_offset, KlassHandle interf_h, bool checkconstraints, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
  klassItable(instanceKlassHandle klass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
  itableOffsetEntry* offset_entry(int i) { assert(0 <= i && i <= _size_offset_table, "index out of bounds");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
                                           return &((itableOffsetEntry*)vtable_start())[i]; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  itableMethodEntry* method_entry(int i) { assert(0 <= i && i <= _size_method_table, "index out of bounds");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
                                           return &((itableMethodEntry*)method_start())[i]; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
189
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
   270
  int size_offset_table()                { return _size_offset_table; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
  // Initialization
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
  void initialize_itable(bool checkconstraints, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  // Updates
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   276
  void initialize_with_method(Method* m);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
  // RedefineClasses() API support:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
  // if any entry of this itable points to any of old_methods,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  // replace it with the corresponding new_method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
  // trace_name_printed is set to true if the current call has
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
  // printed the klass name so that other routines in the adjust_*
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
  // group don't print the klass name.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   284
  void adjust_method_entries(Method** old_methods, Method** new_methods,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
                             int methods_length, bool * trace_name_printed);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
  // Setup of itable
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   288
  static int compute_itable_size(Array<Klass*>* transitive_interfaces);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
  static void setup_itable_offset_table(instanceKlassHandle klass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
  // Resolving of method to index
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   292
  static int compute_itable_index(Method* m);
2332
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 189
diff changeset
   293
  // ...and back again:
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   294
  static Method* method_for_itable_index(Klass* klass, int itable_index);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
  // Debugging/Statistics
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
  static void print_statistics() PRODUCT_RETURN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
  intptr_t* vtable_start() const { return ((intptr_t*)_klass()) + _table_offset; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
  intptr_t* method_start() const { return vtable_start() + _size_offset_table * itableOffsetEntry::size(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
  // Helper methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
  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
   304
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  // Statistics
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
  NOT_PRODUCT(static int  _total_classes;)   // Total no. of classes with itables
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
  NOT_PRODUCT(static long _total_size;)      // Total no. of bytes used for itables
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
  static void update_stats(int size) PRODUCT_RETURN NOT_PRODUCT({ _total_classes++; _total_size += size; })
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   310
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   311
 public:
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   312
#ifndef PRODUCT
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   313
  bool check_no_old_entries();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   314
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   316
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   317
#endif // SHARE_VM_OOPS_KLASSVTABLE_HPP