hotspot/src/share/vm/oops/klassVtable.cpp
author coleenp
Mon, 26 Oct 2015 13:11:36 -0400
changeset 33602 16053580a684
parent 33148 68fa8b6c4340
child 33611 9abd65805e19
permissions -rw-r--r--
8139163: InstanceKlass::cast passes through NULL Summary: Reduce raw (InstanceKlass*) casts and InstanceKlass::cast, which no long allows null Reviewed-by: twisti, kbarrett
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
28373
26fdc99d32f8 6583051: crash when adding non-static methods to java.lang.Object class
coleenp
parents: 25504
diff changeset
     2
 * Copyright (c) 1997, 2015, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5403
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5403
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: 5403
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
#include "precompiled.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#include "classfile/systemDictionary.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
#include "classfile/vmSymbols.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 29871
diff changeset
    28
#include "gc/shared/gcLocker.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "memory/resourceArea.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "memory/universe.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
#include "oops/instanceKlass.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    32
#include "oops/klassVtable.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
    33
#include "oops/method.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    34
#include "oops/objArrayOop.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    35
#include "oops/oop.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    36
#include "prims/jvmtiRedefineClassesTrace.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    37
#include "runtime/arguments.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    38
#include "runtime/handles.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    39
#include "utilities/copy.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
    41
inline InstanceKlass* klassVtable::ik() const {
33602
16053580a684 8139163: InstanceKlass::cast passes through NULL
coleenp
parents: 33148
diff changeset
    42
  return InstanceKlass::cast(_klass());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
// this function computes the vtable size (including the size needed for miranda
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
    47
// methods) and the number of miranda methods in this class.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
// Note on Miranda methods: Let's say there is a class C that implements
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
    49
// interface I, and none of C's superclasses implements I.
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
    50
// Let's say there is an abstract method m in I that neither C
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
    51
// nor any of its super classes implement (i.e there is no method of any access,
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
    52
// with the same name and signature as m), then m is a Miranda method which is
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
// entered as a public abstract method in C's vtable.  From then on it should
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
// treated as any other public method in C for method over-ride purposes.
14385
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13952
diff changeset
    55
void klassVtable::compute_vtable_size_and_num_mirandas(
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13952
diff changeset
    56
    int* vtable_length_ret, int* num_new_mirandas,
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13952
diff changeset
    57
    GrowableArray<Method*>* all_mirandas, Klass* super,
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13952
diff changeset
    58
    Array<Method*>* methods, AccessFlags class_flags,
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13952
diff changeset
    59
    Handle classloader, Symbol* classname, Array<Klass*>* local_interfaces,
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13952
diff changeset
    60
    TRAPS) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  No_Safepoint_Verifier nsv;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  // set up default result values
14385
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13952
diff changeset
    64
  int vtable_length = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  // start off with super's vtable length
33602
16053580a684 8139163: InstanceKlass::cast passes through NULL
coleenp
parents: 33148
diff changeset
    67
  vtable_length = super == NULL ? 0 : super->vtable_length();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  // go thru each method in the methods table to see if it needs a new entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  int len = methods->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  for (int i = 0; i < len; i++) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
    72
    assert(methods->at(i)->is_method(), "must be a Method*");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
    73
    methodHandle mh(THREAD, methods->at(i));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
2264
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
    75
    if (needs_new_vtable_entry(mh, super, classloader, classname, class_flags, THREAD)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
      vtable_length += vtableEntry::size(); // we need a new entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
14385
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13952
diff changeset
    80
  GrowableArray<Method*> new_mirandas(20);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  // compute the number of mirandas methods that must be added to the end
20391
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
    82
  get_mirandas(&new_mirandas, all_mirandas, super, methods, NULL, local_interfaces);
14385
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13952
diff changeset
    83
  *num_new_mirandas = new_mirandas.length();
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13952
diff changeset
    84
21556
e75cd34a59e0 8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents: 20391
diff changeset
    85
  // Interfaces do not need interface methods in their vtables
e75cd34a59e0 8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents: 20391
diff changeset
    86
  // This includes miranda methods and during later processing, default methods
e75cd34a59e0 8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents: 20391
diff changeset
    87
  if (!class_flags.is_interface()) {
e75cd34a59e0 8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents: 20391
diff changeset
    88
    vtable_length += *num_new_mirandas * vtableEntry::size();
e75cd34a59e0 8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents: 20391
diff changeset
    89
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  if (Universe::is_bootstrapping() && vtable_length == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
    // array classes don't have their superclass set correctly during
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
    // bootstrapping
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
    vtable_length = Universe::base_vtable_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
28373
26fdc99d32f8 6583051: crash when adding non-static methods to java.lang.Object class
coleenp
parents: 25504
diff changeset
    97
  if (super == NULL && vtable_length != Universe::base_vtable_size()) {
26fdc99d32f8 6583051: crash when adding non-static methods to java.lang.Object class
coleenp
parents: 25504
diff changeset
    98
    if (Universe::is_bootstrapping()) {
26fdc99d32f8 6583051: crash when adding non-static methods to java.lang.Object class
coleenp
parents: 25504
diff changeset
    99
      // Someone is attempting to override java.lang.Object incorrectly on the
26fdc99d32f8 6583051: crash when adding non-static methods to java.lang.Object class
coleenp
parents: 25504
diff changeset
   100
      // bootclasspath.  The JVM cannot recover from this error including throwing
26fdc99d32f8 6583051: crash when adding non-static methods to java.lang.Object class
coleenp
parents: 25504
diff changeset
   101
      // an exception
26fdc99d32f8 6583051: crash when adding non-static methods to java.lang.Object class
coleenp
parents: 25504
diff changeset
   102
      vm_exit_during_initialization("Incompatible definition of java.lang.Object");
26fdc99d32f8 6583051: crash when adding non-static methods to java.lang.Object class
coleenp
parents: 25504
diff changeset
   103
    } else {
26fdc99d32f8 6583051: crash when adding non-static methods to java.lang.Object class
coleenp
parents: 25504
diff changeset
   104
      // Someone is attempting to redefine java.lang.Object incorrectly.  The
26fdc99d32f8 6583051: crash when adding non-static methods to java.lang.Object class
coleenp
parents: 25504
diff changeset
   105
      // only way this should happen is from
26fdc99d32f8 6583051: crash when adding non-static methods to java.lang.Object class
coleenp
parents: 25504
diff changeset
   106
      // SystemDictionary::resolve_from_stream(), which will detect this later
26fdc99d32f8 6583051: crash when adding non-static methods to java.lang.Object class
coleenp
parents: 25504
diff changeset
   107
      // and throw a security exception.  So don't assert here to let
26fdc99d32f8 6583051: crash when adding non-static methods to java.lang.Object class
coleenp
parents: 25504
diff changeset
   108
      // the exception occur.
26fdc99d32f8 6583051: crash when adding non-static methods to java.lang.Object class
coleenp
parents: 25504
diff changeset
   109
      vtable_length = Universe::base_vtable_size();
26fdc99d32f8 6583051: crash when adding non-static methods to java.lang.Object class
coleenp
parents: 25504
diff changeset
   110
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  assert(vtable_length % vtableEntry::size() == 0, "bad vtable length");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  assert(vtable_length >= Universe::base_vtable_size(), "vtable too small");
14385
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13952
diff changeset
   114
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13952
diff changeset
   115
  *vtable_length_ret = vtable_length;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   118
int klassVtable::index_of(Method* m, int len) const {
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
   119
  assert(m->has_vtable_index(), "do not ask this of non-vtable methods");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  return m->vtable_index();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
   123
// Copy super class's vtable to the first part (prefix) of this class's vtable,
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
   124
// and return the number of entries copied.  Expects that 'super' is the Java
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
   125
// super class (arrays can have "array" super classes that must be skipped).
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
int klassVtable::initialize_from_super(KlassHandle super) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  if (super.is_null()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
    return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
    // copy methods from superKlass
33602
16053580a684 8139163: InstanceKlass::cast passes through NULL
coleenp
parents: 33148
diff changeset
   131
    klassVtable* superVtable = super->vtable();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
    assert(superVtable->length() <= _length, "vtable too short");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
    superVtable->verify(tty, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
    superVtable->copy_vtable_to(table());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
    if (PrintVtables && Verbose) {
2264
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   139
      ResourceMark rm;
33602
16053580a684 8139163: InstanceKlass::cast passes through NULL
coleenp
parents: 33148
diff changeset
   140
      tty->print_cr("copy vtable from %s to %s size %d", super->internal_name(), klass()->internal_name(), _length);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
    return superVtable->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
   147
//
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
   148
// Revised lookup semantics   introduced 1.3 (Kestrel beta)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
void klassVtable::initialize_vtable(bool checkconstraints, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  // Note:  Arrays can have intermediate array supers.  Use java_super to skip them.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  KlassHandle super (THREAD, klass()->java_super());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  int nofNewEntries = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  if (PrintVtables && !klass()->oop_is_array()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
    ResourceMark rm(THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
    tty->print_cr("Initializing: %s", _klass->name()->as_C_string());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  oop* end_of_obj = (oop*)_klass() + _klass()->size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  oop* end_of_vtable = (oop*)&table()[_length];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  assert(end_of_vtable <= end_of_obj, "vtable extends beyond end");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  if (Universe::is_bootstrapping()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
    // just clear everything
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
    for (int i = 0; i < _length; i++) table()[i].clear();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  int super_vtable_len = initialize_from_super(super);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  if (klass()->oop_is_array()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
    assert(super_vtable_len == _length, "arrays shouldn't introduce new methods");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  } else {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   176
    assert(_klass->oop_is_instance(), "must be InstanceKlass");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   178
    Array<Method*>* methods = ik()->methods();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   179
    int len = methods->length();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
    int initialized = super_vtable_len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
   182
    // Check each of this class's methods against super;
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
   183
    // if override, replace in copy of super vtable, otherwise append to end
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
    for (int i = 0; i < len; i++) {
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
   185
      // update_inherited_vtable can stop for gc - ensure using handles
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
      HandleMark hm(THREAD);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   187
      assert(methods->at(i)->is_method(), "must be a Method*");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   188
      methodHandle mh(THREAD, methods->at(i));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
20391
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   190
      bool needs_new_entry = update_inherited_vtable(ik(), mh, super_vtable_len, -1, checkconstraints, CHECK);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
      if (needs_new_entry) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
        put_method_at(mh(), initialized);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
        mh()->set_vtable_index(initialized); // set primary vtable index
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
        initialized++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
20391
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   199
    // update vtable with default_methods
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   200
    Array<Method*>* default_methods = ik()->default_methods();
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   201
    if (default_methods != NULL) {
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   202
      len = default_methods->length();
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   203
      if (len > 0) {
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   204
        Array<int>* def_vtable_indices = NULL;
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   205
        if ((def_vtable_indices = ik()->default_vtable_indices()) == NULL) {
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   206
          def_vtable_indices = ik()->create_new_default_vtable_indices(len, CHECK);
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   207
        } else {
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   208
          assert(def_vtable_indices->length() == len, "reinit vtable len?");
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   209
        }
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   210
        for (int i = 0; i < len; i++) {
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   211
          HandleMark hm(THREAD);
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   212
          assert(default_methods->at(i)->is_method(), "must be a Method*");
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   213
          methodHandle mh(THREAD, default_methods->at(i));
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   214
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   215
          bool needs_new_entry = update_inherited_vtable(ik(), mh, super_vtable_len, i, checkconstraints, CHECK);
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   216
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   217
          // needs new entry
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   218
          if (needs_new_entry) {
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   219
            put_method_at(mh(), initialized);
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   220
            def_vtable_indices->at_put(i, initialized); //set vtable index
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   221
            initialized++;
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   222
          }
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   223
        }
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   224
      }
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   225
    }
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   226
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   227
    // add miranda methods; it will also return the updated initialized
21556
e75cd34a59e0 8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents: 20391
diff changeset
   228
    // Interfaces do not need interface methods in their vtables
e75cd34a59e0 8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents: 20391
diff changeset
   229
    // This includes miranda methods and during later processing, default methods
e75cd34a59e0 8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents: 20391
diff changeset
   230
    if (!ik()->is_interface()) {
e75cd34a59e0 8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents: 20391
diff changeset
   231
      initialized = fill_in_mirandas(initialized);
e75cd34a59e0 8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents: 20391
diff changeset
   232
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
2264
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   234
    // In class hierarchies where the accessibility is not increasing (i.e., going from private ->
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
   235
    // package_private -> public/protected), the vtable might actually be smaller than our initial
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
    // calculation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
    assert(initialized <= _length, "vtable initialization failed");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
    for(;initialized < _length; initialized++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
      put_method_at(NULL, initialized);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
    NOT_PRODUCT(verify(tty, true));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
2264
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   245
// Called for cases where a method does not override its superclass' vtable entry
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   246
// For bytecodes not produced by javac together it is possible that a method does not override
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   247
// the superclass's method, but might indirectly override a super-super class's vtable entry
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   248
// If none found, return a null superk, else return the superk of the method this does override
25504
69de8357bc53 8032536: JVM resolves wrong method in some unusual cases
hseigel
parents: 24424
diff changeset
   249
// For public and protected methods: if they override a superclass, they will
69de8357bc53 8032536: JVM resolves wrong method in some unusual cases
hseigel
parents: 24424
diff changeset
   250
// also be overridden themselves appropriately.
69de8357bc53 8032536: JVM resolves wrong method in some unusual cases
hseigel
parents: 24424
diff changeset
   251
// Private methods do not override and are not overridden.
69de8357bc53 8032536: JVM resolves wrong method in some unusual cases
hseigel
parents: 24424
diff changeset
   252
// Package Private methods are trickier:
69de8357bc53 8032536: JVM resolves wrong method in some unusual cases
hseigel
parents: 24424
diff changeset
   253
// e.g. P1.A, pub m
69de8357bc53 8032536: JVM resolves wrong method in some unusual cases
hseigel
parents: 24424
diff changeset
   254
// P2.B extends A, package private m
69de8357bc53 8032536: JVM resolves wrong method in some unusual cases
hseigel
parents: 24424
diff changeset
   255
// P1.C extends B, public m
69de8357bc53 8032536: JVM resolves wrong method in some unusual cases
hseigel
parents: 24424
diff changeset
   256
// P1.C.m needs to override P1.A.m and can not override P2.B.m
69de8357bc53 8032536: JVM resolves wrong method in some unusual cases
hseigel
parents: 24424
diff changeset
   257
// Therefore: all package private methods need their own vtable entries for
69de8357bc53 8032536: JVM resolves wrong method in some unusual cases
hseigel
parents: 24424
diff changeset
   258
// them to be the root of an inheritance overriding decision
69de8357bc53 8032536: JVM resolves wrong method in some unusual cases
hseigel
parents: 24424
diff changeset
   259
// Package private methods may also override other vtable entries
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   260
InstanceKlass* klassVtable::find_transitive_override(InstanceKlass* initialsuper, methodHandle target_method,
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7443
diff changeset
   261
                            int vtable_index, Handle target_loader, Symbol* target_classname, Thread * THREAD) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   262
  InstanceKlass* superk = initialsuper;
2264
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   263
  while (superk != NULL && superk->super() != NULL) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   264
    InstanceKlass* supersuperklass = InstanceKlass::cast(superk->super());
2264
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   265
    klassVtable* ssVtable = supersuperklass->vtable();
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   266
    if (vtable_index < ssVtable->length()) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   267
      Method* super_method = ssVtable->method_at(vtable_index);
2264
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   268
#ifndef PRODUCT
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7443
diff changeset
   269
      Symbol* name= target_method()->name();
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7443
diff changeset
   270
      Symbol* signature = target_method()->signature();
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7443
diff changeset
   271
      assert(super_method->name() == name && super_method->signature() == signature, "vtable entry name/sig mismatch");
2264
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   272
#endif
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   273
      if (supersuperklass->is_override(super_method, target_loader, target_classname, THREAD)) {
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   274
#ifndef PRODUCT
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   275
        if (PrintVtables && Verbose) {
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   276
          ResourceMark rm(THREAD);
20391
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   277
          char* sig = target_method()->name_and_sig_as_C_string();
2264
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   278
          tty->print("transitive overriding superclass %s with %s::%s index %d, original flags: ",
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   279
           supersuperklass->internal_name(),
20391
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   280
           _klass->internal_name(), sig, vtable_index);
2264
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   281
           super_method->access_flags().print_on(tty);
20391
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   282
           if (super_method->is_default_method()) {
21556
e75cd34a59e0 8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents: 20391
diff changeset
   283
             tty->print("default ");
20391
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   284
           }
2264
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   285
           tty->print("overriders flags: ");
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   286
           target_method->access_flags().print_on(tty);
20391
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   287
           if (target_method->is_default_method()) {
21556
e75cd34a59e0 8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents: 20391
diff changeset
   288
             tty->print("default ");
20391
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   289
           }
2264
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   290
        }
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   291
#endif /*PRODUCT*/
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   292
        break; // return found superk
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   293
      }
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   294
    } else  {
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   295
      // super class has no vtable entry here, stop transitive search
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   296
      superk = (InstanceKlass*)NULL;
2264
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   297
      break;
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   298
    }
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   299
    // if no override found yet, continue to search up
33602
16053580a684 8139163: InstanceKlass::cast passes through NULL
coleenp
parents: 33148
diff changeset
   300
    superk = superk->super() == NULL ? NULL : InstanceKlass::cast(superk->super());
2264
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   301
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
2264
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   303
  return superk;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
// Update child's copy of super vtable for overrides
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
   307
// OR return true if a new vtable entry is required.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   308
// Only called for InstanceKlass's, i.e. not for arrays
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
// If that changed, could not use _klass as handle for klass
20391
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   310
bool klassVtable::update_inherited_vtable(InstanceKlass* klass, methodHandle target_method,
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   311
                                          int super_vtable_len, int default_index,
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   312
                                          bool checkconstraints, TRAPS) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
  bool allocate_new = true;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   315
  assert(klass->oop_is_instance(), "must be InstanceKlass");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
20391
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   317
  Array<int>* def_vtable_indices = NULL;
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   318
  bool is_default = false;
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   319
  // default methods are concrete methods in superinterfaces which are added to the vtable
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   320
  // with their real method_holder
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   321
  // Since vtable and itable indices share the same storage, don't touch
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   322
  // the default method's real vtable/itable index
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   323
  // default_vtable_indices stores the vtable value relative to this inheritor
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   324
  if (default_index >= 0 ) {
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   325
    is_default = true;
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   326
    def_vtable_indices = klass->default_vtable_indices();
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   327
    assert(def_vtable_indices != NULL, "def vtable alloc?");
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   328
    assert(default_index <= def_vtable_indices->length(), "def vtable len?");
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   329
  } else {
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   330
    assert(klass == target_method()->method_holder(), "caller resp.");
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   331
    // Initialize the method's vtable index to "nonvirtual".
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   332
    // If we allocate a vtable entry, we will update it to a non-negative number.
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   333
    target_method()->set_vtable_index(Method::nonvirtual_vtable_index);
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   334
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
  // Static and <init> methods are never in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
  if (target_method()->is_static() || target_method()->name() ==  vmSymbols::object_initializer_name()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
   341
  if (target_method->is_final_method(klass->access_flags())) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
    // a final method never needs a new entry; final methods can be statically
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
    // resolved and they have to be present in the vtable only if they override
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
    // a super's method, in which case they re-use its entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
    allocate_new = false;
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
   346
  } else if (klass->is_interface()) {
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
   347
    allocate_new = false;  // see note below in needs_new_vtable_entry
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
   348
    // An interface never allocates new vtable slots, only inherits old ones.
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
   349
    // This method will either be assigned its own itable index later,
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
   350
    // or be assigned an inherited vtable index in the loop below.
21556
e75cd34a59e0 8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents: 20391
diff changeset
   351
    // default methods inherited by classes store their vtable indices
e75cd34a59e0 8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents: 20391
diff changeset
   352
    // in the inheritor's default_vtable_indices
e75cd34a59e0 8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents: 20391
diff changeset
   353
    // default methods inherited by interfaces may already have a
e75cd34a59e0 8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents: 20391
diff changeset
   354
    // valid itable index, if so, don't change it
e75cd34a59e0 8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents: 20391
diff changeset
   355
    // overpass methods in an interface will be assigned an itable index later
e75cd34a59e0 8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents: 20391
diff changeset
   356
    // by an inheriting class
e75cd34a59e0 8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents: 20391
diff changeset
   357
    if (!is_default || !target_method()->has_itable_index()) {
e75cd34a59e0 8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents: 20391
diff changeset
   358
      target_method()->set_vtable_index(Method::pending_itable_index);
e75cd34a59e0 8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents: 20391
diff changeset
   359
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
  // we need a new entry if there is no superclass
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
  if (klass->super() == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
    return allocate_new;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
20284
595a25ab9474 8011311: Private interface methods. Default conflicts:ICCE. no erased_super_default.
acorn
parents: 20017
diff changeset
   367
  // private methods in classes always have a new entry in the vtable
2264
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   368
  // specification interpretation since classic has
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   369
  // private methods not overriding
20284
595a25ab9474 8011311: Private interface methods. Default conflicts:ICCE. no erased_super_default.
acorn
parents: 20017
diff changeset
   370
  // JDK8 adds private methods in interfaces which require invokespecial
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
  if (target_method()->is_private()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
    return allocate_new;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
  // search through the vtable and update overridden entries
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
  // Since check_signature_loaders acquires SystemDictionary_lock
2264
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   377
  // which can block for gc, once we are in this loop, use handles
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   378
  // For classfiles built with >= jdk7, we now look for transitive overrides
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7443
diff changeset
   380
  Symbol* name = target_method()->name();
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7443
diff changeset
   381
  Symbol* signature = target_method()->signature();
20391
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   382
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   383
  KlassHandle target_klass(THREAD, target_method()->method_holder());
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   384
  if (target_klass == NULL) {
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   385
    target_klass = _klass;
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   386
  }
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   387
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   388
  Handle target_loader(THREAD, target_klass->class_loader());
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   389
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   390
  Symbol* target_classname = target_klass->name();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
  for(int i = 0; i < super_vtable_len; i++) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   392
    Method* super_method = method_at(i);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
    // Check if method name matches
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7443
diff changeset
   394
    if (super_method->name() == name && super_method->signature() == signature) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
2264
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   396
      // get super_klass for method_holder for the found method
14391
df0a1573d5bd 8000725: NPG: method_holder() and pool_holder() and pool_holder field should be InstanceKlass
coleenp
parents: 14385
diff changeset
   397
      InstanceKlass* super_klass =  super_method->method_holder();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
29871
77e7fe063568 8065366: Better private method resolution
acorn
parents: 29320
diff changeset
   399
      // private methods are also never overridden
77e7fe063568 8065366: Better private method resolution
acorn
parents: 29320
diff changeset
   400
      if (!super_method->is_private() &&
77e7fe063568 8065366: Better private method resolution
acorn
parents: 29320
diff changeset
   401
          (is_default
20391
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   402
          || ((super_klass->is_override(super_method, target_loader, target_classname, THREAD))
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   403
          || ((klass->major_version() >= VTABLE_TRANSITIVE_OVERRIDE_VERSION)
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   404
          && ((super_klass = find_transitive_override(super_klass,
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   405
                             target_method, i, target_loader,
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   406
                             target_classname, THREAD))
29871
77e7fe063568 8065366: Better private method resolution
acorn
parents: 29320
diff changeset
   407
                             != (InstanceKlass*)NULL)))))
20391
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   408
        {
25504
69de8357bc53 8032536: JVM resolves wrong method in some unusual cases
hseigel
parents: 24424
diff changeset
   409
        // Package private methods always need a new entry to root their own
69de8357bc53 8032536: JVM resolves wrong method in some unusual cases
hseigel
parents: 24424
diff changeset
   410
        // overriding. They may also override other methods.
69de8357bc53 8032536: JVM resolves wrong method in some unusual cases
hseigel
parents: 24424
diff changeset
   411
        if (!target_method()->is_package_private()) {
69de8357bc53 8032536: JVM resolves wrong method in some unusual cases
hseigel
parents: 24424
diff changeset
   412
          allocate_new = false;
69de8357bc53 8032536: JVM resolves wrong method in some unusual cases
hseigel
parents: 24424
diff changeset
   413
        }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
        if (checkconstraints) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
        // Override vtable entry if passes loader constraint check
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
        // if loader constraint checking requested
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
        // No need to visit his super, since he and his super
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
        // have already made any needed loader constraints.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
        // Since loader constraints are transitive, it is enough
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
        // to link to the first super, and we get all the others.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
          Handle super_loader(THREAD, super_klass->class_loader());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
2264
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   424
          if (target_loader() != super_loader()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
            ResourceMark rm(THREAD);
16591
73047b0eb568 8009731: Confusing error message for loader constraint violation
acorn
parents: 15591
diff changeset
   426
            Symbol* failed_type_symbol =
2264
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   427
              SystemDictionary::check_signature_loaders(signature, target_loader,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
                                                        super_loader, true,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
                                                        CHECK_(false));
16591
73047b0eb568 8009731: Confusing error message for loader constraint violation
acorn
parents: 15591
diff changeset
   430
            if (failed_type_symbol != NULL) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
              const char* msg = "loader constraint violation: when resolving "
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
                "overridden method \"%s\" the class loader (instance"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
                " of %s) of the current class, %s, and its superclass loader "
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
                "(instance of %s), have different Class objects for the type "
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
                "%s used in the signature";
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
              char* sig = target_method()->name_and_sig_as_C_string();
2264
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   437
              const char* loader1 = SystemDictionary::loader_name(target_loader());
20391
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   438
              char* current = target_klass->name()->as_C_string();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
              const char* loader2 = SystemDictionary::loader_name(super_loader());
16591
73047b0eb568 8009731: Confusing error message for loader constraint violation
acorn
parents: 15591
diff changeset
   440
              char* failed_type_name = failed_type_symbol->as_C_string();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
              size_t buflen = strlen(msg) + strlen(sig) + strlen(loader1) +
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
                strlen(current) + strlen(loader2) + strlen(failed_type_name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
              char* buf = NEW_RESOURCE_ARRAY_IN_THREAD(THREAD, char, buflen);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
              jio_snprintf(buf, buflen, msg, sig, loader1, current, loader2,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
                           failed_type_name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
              THROW_MSG_(vmSymbols::java_lang_LinkageError(), buf, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
            }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
          }
2264
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   449
       }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
20391
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   451
       put_method_at(target_method(), i);
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   452
       if (!is_default) {
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   453
         target_method()->set_vtable_index(i);
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   454
       } else {
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   455
         if (def_vtable_indices != NULL) {
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   456
           def_vtable_indices->at_put(default_index, i);
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   457
         }
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   458
         assert(super_method->is_default_method() || super_method->is_overpass()
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   459
                || super_method->is_abstract(), "default override error");
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   460
       }
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   461
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   462
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
#ifndef PRODUCT
2264
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   464
        if (PrintVtables && Verbose) {
20391
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   465
          ResourceMark rm(THREAD);
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   466
          char* sig = target_method()->name_and_sig_as_C_string();
2264
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   467
          tty->print("overriding with %s::%s index %d, original flags: ",
20391
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   468
           target_klass->internal_name(), sig, i);
2264
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   469
           super_method->access_flags().print_on(tty);
20391
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   470
           if (super_method->is_default_method()) {
21556
e75cd34a59e0 8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents: 20391
diff changeset
   471
             tty->print("default ");
20391
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   472
           }
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   473
           if (super_method->is_overpass()) {
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   474
             tty->print("overpass");
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   475
           }
2264
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   476
           tty->print("overriders flags: ");
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   477
           target_method->access_flags().print_on(tty);
20391
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   478
           if (target_method->is_default_method()) {
21556
e75cd34a59e0 8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents: 20391
diff changeset
   479
             tty->print("default ");
20391
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   480
           }
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   481
           if (target_method->is_overpass()) {
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   482
             tty->print("overpass");
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   483
           }
2264
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   484
           tty->cr();
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   485
        }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
#endif /*PRODUCT*/
2264
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   487
      } else {
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   488
        // allocate_new = true; default. We might override one entry,
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   489
        // but not override another. Once we override one, not need new
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
#ifndef PRODUCT
2264
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   491
        if (PrintVtables && Verbose) {
20391
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   492
          ResourceMark rm(THREAD);
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   493
          char* sig = target_method()->name_and_sig_as_C_string();
2264
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   494
          tty->print("NOT overriding with %s::%s index %d, original flags: ",
20391
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   495
           target_klass->internal_name(), sig,i);
2264
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   496
           super_method->access_flags().print_on(tty);
20391
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   497
           if (super_method->is_default_method()) {
21556
e75cd34a59e0 8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents: 20391
diff changeset
   498
             tty->print("default ");
20391
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   499
           }
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   500
           if (super_method->is_overpass()) {
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   501
             tty->print("overpass");
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   502
           }
2264
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   503
           tty->print("overriders flags: ");
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   504
           target_method->access_flags().print_on(tty);
20391
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   505
           if (target_method->is_default_method()) {
21556
e75cd34a59e0 8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents: 20391
diff changeset
   506
             tty->print("default ");
20391
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   507
           }
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   508
           if (target_method->is_overpass()) {
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   509
             tty->print("overpass");
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   510
           }
2264
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   511
           tty->cr();
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   512
        }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
#endif /*PRODUCT*/
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
  return allocate_new;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   520
void klassVtable::put_method_at(Method* m, int index) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
  if (PrintVtables && Verbose) {
2264
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   523
    ResourceMark rm;
21556
e75cd34a59e0 8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents: 20391
diff changeset
   524
    const char* sig = (m != NULL) ? m->name_and_sig_as_C_string() : "<NULL>";
e75cd34a59e0 8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents: 20391
diff changeset
   525
    tty->print("adding %s at index %d, flags: ", sig, index);
e75cd34a59e0 8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents: 20391
diff changeset
   526
    if (m != NULL) {
e75cd34a59e0 8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents: 20391
diff changeset
   527
      m->access_flags().print_on(tty);
e75cd34a59e0 8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents: 20391
diff changeset
   528
      if (m->is_default_method()) {
e75cd34a59e0 8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents: 20391
diff changeset
   529
        tty->print("default ");
e75cd34a59e0 8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents: 20391
diff changeset
   530
      }
e75cd34a59e0 8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents: 20391
diff changeset
   531
      if (m->is_overpass()) {
e75cd34a59e0 8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents: 20391
diff changeset
   532
        tty->print("overpass");
e75cd34a59e0 8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents: 20391
diff changeset
   533
      }
e75cd34a59e0 8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents: 20391
diff changeset
   534
    }
e75cd34a59e0 8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents: 20391
diff changeset
   535
    tty->cr();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
  table()[index].set(m);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
// Find out if a method "m" with superclass "super", loader "classloader" and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
// name "classname" needs a new vtable entry.  Let P be a class package defined
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
// by "classloader" and "classname".
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
// NOTE: The logic used here is very similar to the one used for computing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
// the vtables indices for a method. We cannot directly use that function because,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   546
// we allocate the InstanceKlass at load time, and that requires that the
2264
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   547
// superclass has been loaded.
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   548
// However, the vtable entries are filled in at link time, and therefore
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   549
// the superclass' vtable may not yet have been filled in.
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   550
bool klassVtable::needs_new_vtable_entry(methodHandle target_method,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   551
                                         Klass* super,
2264
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   552
                                         Handle classloader,
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7443
diff changeset
   553
                                         Symbol* classname,
2264
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   554
                                         AccessFlags class_flags,
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   555
                                         TRAPS) {
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
   556
  if (class_flags.is_interface()) {
25504
69de8357bc53 8032536: JVM resolves wrong method in some unusual cases
hseigel
parents: 24424
diff changeset
   557
    // Interfaces do not use vtables, except for java.lang.Object methods,
69de8357bc53 8032536: JVM resolves wrong method in some unusual cases
hseigel
parents: 24424
diff changeset
   558
    // so there is no point to assigning
69de8357bc53 8032536: JVM resolves wrong method in some unusual cases
hseigel
parents: 24424
diff changeset
   559
    // a vtable index to any of their local methods.  If we refrain from doing this,
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
   560
    // we can use Method::_vtable_index to hold the itable index
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
   561
    return false;
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
   562
  }
14385
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13952
diff changeset
   563
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
   564
  if (target_method->is_final_method(class_flags) ||
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
      // a final method never needs a new entry; final methods can be statically
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
      // resolved and they have to be present in the vtable only if they override
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
      // a super's method, in which case they re-use its entry
2264
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   568
      (target_method()->is_static()) ||
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
      // static methods don't need to be in vtable
2264
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   570
      (target_method()->name() ==  vmSymbols::object_initializer_name())
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
      // <init> is never called dynamically-bound
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
      ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
20391
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   576
  // Concrete interface methods do not need new entries, they override
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   577
  // abstract method entries using default inheritance rules
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   578
  if (target_method()->method_holder() != NULL &&
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   579
      target_method()->method_holder()->is_interface()  &&
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   580
      !target_method()->is_abstract() ) {
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   581
    return false;
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   582
  }
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   583
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
  // we need a new entry if there is no superclass
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
  if (super == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
20284
595a25ab9474 8011311: Private interface methods. Default conflicts:ICCE. no erased_super_default.
acorn
parents: 20017
diff changeset
   589
  // private methods in classes always have a new entry in the vtable
2264
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   590
  // specification interpretation since classic has
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   591
  // private methods not overriding
20391
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   592
  // JDK8 adds private  methods in interfaces which require invokespecial
2264
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   593
  if (target_method()->is_private()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
25504
69de8357bc53 8032536: JVM resolves wrong method in some unusual cases
hseigel
parents: 24424
diff changeset
   597
  // Package private methods always need a new entry to root their own
69de8357bc53 8032536: JVM resolves wrong method in some unusual cases
hseigel
parents: 24424
diff changeset
   598
  // overriding. This allows transitive overriding to work.
69de8357bc53 8032536: JVM resolves wrong method in some unusual cases
hseigel
parents: 24424
diff changeset
   599
  if (target_method()->is_package_private()) {
69de8357bc53 8032536: JVM resolves wrong method in some unusual cases
hseigel
parents: 24424
diff changeset
   600
    return true;
69de8357bc53 8032536: JVM resolves wrong method in some unusual cases
hseigel
parents: 24424
diff changeset
   601
  }
69de8357bc53 8032536: JVM resolves wrong method in some unusual cases
hseigel
parents: 24424
diff changeset
   602
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
  // search through the super class hierarchy to see if we need
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
  // a new entry
2264
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   605
  ResourceMark rm;
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7443
diff changeset
   606
  Symbol* name = target_method()->name();
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7443
diff changeset
   607
  Symbol* signature = target_method()->signature();
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   608
  Klass* k = super;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   609
  Method* super_method = NULL;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   610
  InstanceKlass *holder = NULL;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   611
  Method* recheck_method =  NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
  while (k != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
    // lookup through the hierarchy for a method with matching name and sign.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   614
    super_method = InstanceKlass::cast(k)->lookup_method(name, signature);
2264
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   615
    if (super_method == NULL) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
      break; // we still have to search for a matching miranda method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
    // get the class holding the matching method
2264
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   619
    // make sure you use that class for is_override
14391
df0a1573d5bd 8000725: NPG: method_holder() and pool_holder() and pool_holder field should be InstanceKlass
coleenp
parents: 14385
diff changeset
   620
    InstanceKlass* superk = super_method->method_holder();
2264
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   621
    // we want only instance method matches
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   622
    // pretend private methods are not in the super vtable
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   623
    // since we do override around them: e.g. a.m pub/b.m private/c.m pub,
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   624
    // ignore private, c.m pub does override a.m pub
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   625
    // For classes that were not javac'd together, we also do transitive overriding around
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   626
    // methods that have less accessibility
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   627
    if ((!super_method->is_static()) &&
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   628
       (!super_method->is_private())) {
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   629
      if (superk->is_override(super_method, classloader, classname, THREAD)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
        return false;
2264
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   631
      // else keep looking for transitive overrides
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
2264
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   635
    // Start with lookup result and continue to search up
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   636
    k = superk->super(); // haven't found an override match yet; continue to look
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
  // if the target method is public or protected it may have a matching
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
  // miranda method in the super, whose entry it should re-use.
2264
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   641
  // Actually, to handle cases that javac would not generate, we need
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   642
  // this check for all access permissions.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   643
  InstanceKlass *sk = InstanceKlass::cast(super);
2264
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   644
  if (sk->has_miranda_methods()) {
28731
f7339cba0a6a 8067480: Crash in klassItable::initialize_itable_for_interface when running vm.runtime.defmeth.StaticMethodsTest.
lfoltan
parents: 28373
diff changeset
   645
    if (sk->lookup_method_in_all_interfaces(name, signature, Klass::find_defaults) != NULL) {
2264
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
   646
      return false;  // found a matching miranda; we do not need a new entry
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
  return true; // found no match; we need a new entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
// Support for miranda methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
// get the vtable index of a miranda method with matching "name" and "signature"
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7443
diff changeset
   655
int klassVtable::index_of_miranda(Symbol* name, Symbol* signature) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
  // search from the bottom, might be faster
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
  for (int i = (length() - 1); i >= 0; i--) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   658
    Method* m = table()[i].method();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
    if (is_miranda_entry_at(i) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
        m->name() == name && m->signature() == signature) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
      return i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
  }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   664
  return Method::invalid_vtable_index;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
   667
// check if an entry at an index is miranda
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
   668
// requires that method m at entry be declared ("held") by an interface.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
bool klassVtable::is_miranda_entry_at(int i) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   670
  Method* m = method_at(i);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   671
  Klass* method_holder = m->method_holder();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   672
  InstanceKlass *mhk = InstanceKlass::cast(method_holder);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
20284
595a25ab9474 8011311: Private interface methods. Default conflicts:ICCE. no erased_super_default.
acorn
parents: 20017
diff changeset
   674
  // miranda methods are public abstract instance interface methods in a class's vtable
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
  if (mhk->is_interface()) {
14385
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13952
diff changeset
   676
    assert(m->is_public(), "should be public");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
    assert(ik()->implements_interface(method_holder) , "this class should implement the interface");
21556
e75cd34a59e0 8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents: 20391
diff changeset
   678
    if (is_miranda(m, ik()->methods(), ik()->default_methods(), ik()->super())) {
e75cd34a59e0 8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents: 20391
diff changeset
   679
      return true;
e75cd34a59e0 8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents: 20391
diff changeset
   680
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
32189
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   685
// Check if a method is a miranda method, given a class's methods array,
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   686
// its default_method table and its super class.
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   687
// "Miranda" means an abstract non-private method that would not be
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   688
// overridden for the local class.
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   689
// A "miranda" method should only include non-private interface
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   690
// instance methods, i.e. not private methods, not static methods,
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   691
// not default methods (concrete interface methods), not overpass methods.
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   692
// If a given class already has a local (including overpass) method, a
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   693
// default method, or any of its superclasses has the same which would have
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   694
// overridden an abstract method, then this is not a miranda method.
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   695
//
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   696
// Miranda methods are checked multiple times.
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   697
// Pass 1: during class load/class file parsing: before vtable size calculation:
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   698
// include superinterface abstract and default methods (non-private instance).
29871
77e7fe063568 8065366: Better private method resolution
acorn
parents: 29320
diff changeset
   699
// We include potential default methods to give them space in the vtable.
32189
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   700
// During the first run, the current instanceKlass has not yet been
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   701
// created, the superclasses and superinterfaces do have instanceKlasses
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   702
// but may not have vtables, the default_methods list is empty, no overpasses.
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   703
// This is seen by default method creation.
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   704
//
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   705
// Pass 2: recalculated during vtable initialization: only include abstract methods.
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   706
// The goal of pass 2 is to walk through the superinterfaces to see if any of
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   707
// the superinterface methods (which were all abstract pre-default methods)
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   708
// need to be added to the vtable.
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   709
// With the addition of default methods, we have three new challenges:
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   710
// overpasses, static interface methods and private interface methods.
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   711
// Static and private interface methods do not get added to the vtable and
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   712
// are not seen by the method resolution process, so we skip those.
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   713
// Overpass methods are already in the vtable, so vtable lookup will
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   714
// find them and we don't need to add a miranda method to the end of
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   715
// the vtable. So we look for overpass methods and if they are found we
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   716
// return false. Note that we inherit our superclasses vtable, so
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   717
// the superclass' search also needs to use find_overpass so that if
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   718
// one is found we return false.
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   719
// False means - we don't need a miranda method added to the vtable.
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   720
//
29871
77e7fe063568 8065366: Better private method resolution
acorn
parents: 29320
diff changeset
   721
// During the second run, default_methods is set up, so concrete methods from
77e7fe063568 8065366: Better private method resolution
acorn
parents: 29320
diff changeset
   722
// superinterfaces with matching names/signatures to default_methods are already
77e7fe063568 8065366: Better private method resolution
acorn
parents: 29320
diff changeset
   723
// in the default_methods list and do not need to be appended to the vtable
32189
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   724
// as mirandas. Abstract methods may already have been handled via
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   725
// overpasses - either local or superclass overpasses, which may be
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   726
// in the vtable already.
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   727
//
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   728
// Pass 3: They are also checked by link resolution and selection,
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   729
// for invocation on a method (not interface method) reference that
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   730
// resolves to a method with an interface as its method_holder.
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   731
// Used as part of walking from the bottom of the vtable to find
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   732
// the vtable index for the miranda method.
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   733
//
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   734
// Part of the Miranda Rights in the US mean that if you do not have
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   735
// an attorney one will be appointed for you.
20391
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   736
bool klassVtable::is_miranda(Method* m, Array<Method*>* class_methods,
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   737
                             Array<Method*>* default_methods, Klass* super) {
21556
e75cd34a59e0 8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents: 20391
diff changeset
   738
  if (m->is_static() || m->is_private() || m->is_overpass()) {
17092
8d0bef547de9 8013418: assert(i == total_args_passed) in AdapterHandlerLibrary::get_adapter since 8-b87
bharadwaj
parents: 16591
diff changeset
   739
    return false;
8d0bef547de9 8013418: assert(i == total_args_passed) in AdapterHandlerLibrary::get_adapter since 8-b87
bharadwaj
parents: 16591
diff changeset
   740
  }
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7443
diff changeset
   741
  Symbol* name = m->name();
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7443
diff changeset
   742
  Symbol* signature = m->signature();
21913
0e2fd7282ac6 8028438: static superclass method masks default methods
acorn
parents: 21770
diff changeset
   743
32189
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   744
  // First look in local methods to see if already covered
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   745
  if (InstanceKlass::find_local_method(class_methods, name, signature,
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   746
              Klass::find_overpass, Klass::skip_static, Klass::skip_private) != NULL)
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   747
  {
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   748
    return false;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   749
  }
7443
39c85d63abf2 6989076: JVM crashes in klassItable::initialize_itable_for_interface
dsamersoff
parents: 7397
diff changeset
   750
32189
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   751
  // Check local default methods
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   752
  if ((default_methods != NULL) &&
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   753
    (InstanceKlass::find_method(default_methods, name, signature) != NULL))
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   754
   {
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   755
     return false;
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   756
   }
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   757
33602
16053580a684 8139163: InstanceKlass::cast passes through NULL
coleenp
parents: 33148
diff changeset
   758
  // Iterate on all superclasses, which should be InstanceKlasses.
32189
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   759
  // Note that we explicitly look for overpasses at each level.
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   760
  // Overpasses may or may not exist for supers for pass 1,
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   761
  // they should have been created for pass 2 and later.
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   762
33602
16053580a684 8139163: InstanceKlass::cast passes through NULL
coleenp
parents: 33148
diff changeset
   763
  for (Klass* cursuper = super; cursuper != NULL; cursuper = cursuper->super())
32189
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   764
  {
33602
16053580a684 8139163: InstanceKlass::cast passes through NULL
coleenp
parents: 33148
diff changeset
   765
     if (InstanceKlass::cast(cursuper)->find_local_method(name, signature,
32189
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   766
           Klass::find_overpass, Klass::skip_static, Klass::skip_private) != NULL) {
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   767
       return false;
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   768
     }
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   769
  }
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   770
5264b560ab1b 8087342: Crash in klassItable::initialize_itable_for_interface
acorn
parents: 31019
diff changeset
   771
  return true;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   772
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   773
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
   774
// Scans current_interface_methods for miranda methods that do not
20391
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   775
// already appear in new_mirandas, or default methods,  and are also not defined-and-non-private
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
   776
// in super (superclass).  These mirandas are added to all_mirandas if it is
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
   777
// not null; in addition, those that are not duplicates of miranda methods
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
   778
// inherited by super from its interfaces are added to new_mirandas.
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
   779
// Thus, new_mirandas will be the set of mirandas that this class introduces,
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
   780
// all_mirandas will be the set of all mirandas applicable to this class
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
   781
// including all defined in superclasses.
14385
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13952
diff changeset
   782
void klassVtable::add_new_mirandas_to_lists(
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13952
diff changeset
   783
    GrowableArray<Method*>* new_mirandas, GrowableArray<Method*>* all_mirandas,
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13952
diff changeset
   784
    Array<Method*>* current_interface_methods, Array<Method*>* class_methods,
20391
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   785
    Array<Method*>* default_methods, Klass* super) {
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   786
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   787
  // iterate thru the current interface's method to see if it a miranda
489c9b5090e2 Initial load
duke
parents:
diff changeset
   788
  int num_methods = current_interface_methods->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   789
  for (int i = 0; i < num_methods; i++) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   790
    Method* im = current_interface_methods->at(i);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   791
    bool is_duplicate = false;
14385
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13952
diff changeset
   792
    int num_of_current_mirandas = new_mirandas->length();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   793
    // check for duplicate mirandas in different interfaces we implement
489c9b5090e2 Initial load
duke
parents:
diff changeset
   794
    for (int j = 0; j < num_of_current_mirandas; j++) {
14385
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13952
diff changeset
   795
      Method* miranda = new_mirandas->at(j);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   796
      if ((im->name() == miranda->name()) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   797
          (im->signature() == miranda->signature())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   798
        is_duplicate = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   799
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   800
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   801
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   802
489c9b5090e2 Initial load
duke
parents:
diff changeset
   803
    if (!is_duplicate) { // we don't want duplicate miranda entries in the vtable
20391
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   804
      if (is_miranda(im, class_methods, default_methods, super)) { // is it a miranda at all?
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   805
        InstanceKlass *sk = InstanceKlass::cast(super);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   806
        // check if it is a duplicate of a super's miranda
28731
f7339cba0a6a 8067480: Crash in klassItable::initialize_itable_for_interface when running vm.runtime.defmeth.StaticMethodsTest.
lfoltan
parents: 28373
diff changeset
   807
        if (sk->lookup_method_in_all_interfaces(im->name(), im->signature(), Klass::find_defaults) == NULL) {
14385
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13952
diff changeset
   808
          new_mirandas->append(im);
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13952
diff changeset
   809
        }
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13952
diff changeset
   810
        if (all_mirandas != NULL) {
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13952
diff changeset
   811
          all_mirandas->append(im);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   812
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   813
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   814
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   815
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   816
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   817
14385
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13952
diff changeset
   818
void klassVtable::get_mirandas(GrowableArray<Method*>* new_mirandas,
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13952
diff changeset
   819
                               GrowableArray<Method*>* all_mirandas,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   820
                               Klass* super, Array<Method*>* class_methods,
20391
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   821
                               Array<Method*>* default_methods,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   822
                               Array<Klass*>* local_interfaces) {
14385
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13952
diff changeset
   823
  assert((new_mirandas->length() == 0) , "current mirandas must be 0");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   824
489c9b5090e2 Initial load
duke
parents:
diff changeset
   825
  // iterate thru the local interfaces looking for a miranda
489c9b5090e2 Initial load
duke
parents:
diff changeset
   826
  int num_local_ifs = local_interfaces->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   827
  for (int i = 0; i < num_local_ifs; i++) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   828
    InstanceKlass *ik = InstanceKlass::cast(local_interfaces->at(i));
14385
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13952
diff changeset
   829
    add_new_mirandas_to_lists(new_mirandas, all_mirandas,
20391
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   830
                              ik->methods(), class_methods,
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   831
                              default_methods, super);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   832
    // iterate thru each local's super interfaces
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   833
    Array<Klass*>* super_ifs = ik->transitive_interfaces();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   834
    int num_super_ifs = super_ifs->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   835
    for (int j = 0; j < num_super_ifs; j++) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   836
      InstanceKlass *sik = InstanceKlass::cast(super_ifs->at(j));
14385
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13952
diff changeset
   837
      add_new_mirandas_to_lists(new_mirandas, all_mirandas,
20391
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   838
                                sik->methods(), class_methods,
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   839
                                default_methods, super);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   840
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   841
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   842
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   843
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
   844
// Discover miranda methods ("miranda" = "interface abstract, no binding"),
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
   845
// and append them into the vtable starting at index initialized,
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
   846
// return the new value of initialized.
21556
e75cd34a59e0 8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents: 20391
diff changeset
   847
// Miranda methods use vtable entries, but do not get assigned a vtable_index
e75cd34a59e0 8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents: 20391
diff changeset
   848
// The vtable_index is discovered by searching from the end of the vtable
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
   849
int klassVtable::fill_in_mirandas(int initialized) {
14385
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13952
diff changeset
   850
  GrowableArray<Method*> mirandas(20);
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13952
diff changeset
   851
  get_mirandas(&mirandas, NULL, ik()->super(), ik()->methods(),
20391
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   852
               ik()->default_methods(), ik()->local_interfaces());
14385
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13952
diff changeset
   853
  for (int i = 0; i < mirandas.length(); i++) {
20391
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   854
    if (PrintVtables && Verbose) {
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   855
      Method* meth = mirandas.at(i);
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   856
      ResourceMark rm(Thread::current());
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   857
      if (meth != NULL) {
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   858
        char* sig = meth->name_and_sig_as_C_string();
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   859
        tty->print("fill in mirandas with %s index %d, flags: ",
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   860
          sig, initialized);
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   861
        meth->access_flags().print_on(tty);
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   862
        if (meth->is_default_method()) {
21556
e75cd34a59e0 8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents: 20391
diff changeset
   863
          tty->print("default ");
20391
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   864
        }
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   865
        tty->cr();
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   866
      }
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   867
    }
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
   868
    put_method_at(mirandas.at(i), initialized);
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
   869
    ++initialized;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   870
  }
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
   871
  return initialized;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   872
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   873
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
   874
// Copy this class's vtable to the vtable beginning at start.
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
   875
// Used to copy superclass vtable to prefix of subclass's vtable.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   876
void klassVtable::copy_vtable_to(vtableEntry* start) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   877
  Copy::disjoint_words((HeapWord*)table(), (HeapWord*)start, _length * vtableEntry::size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   878
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   879
15591
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14488
diff changeset
   880
#if INCLUDE_JVMTI
20391
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   881
bool klassVtable::adjust_default_method(int vtable_index, Method* old_method, Method* new_method) {
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   882
  // If old_method is default, find this vtable index in default_vtable_indices
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   883
  // and replace that method in the _default_methods list
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   884
  bool updated = false;
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   885
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   886
  Array<Method*>* default_methods = ik()->default_methods();
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   887
  if (default_methods != NULL) {
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   888
    int len = default_methods->length();
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   889
    for (int idx = 0; idx < len; idx++) {
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   890
      if (vtable_index == ik()->default_vtable_indices()->at(idx)) {
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   891
        if (default_methods->at(idx) == old_method) {
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   892
          default_methods->at_put(idx, new_method);
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   893
          updated = true;
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   894
        }
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   895
        break;
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   896
      }
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   897
    }
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   898
  }
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   899
  return updated;
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   900
}
29316
5287df8a8972 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 28731
diff changeset
   901
5287df8a8972 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 28731
diff changeset
   902
// search the vtable for uses of either obsolete or EMCP methods
5287df8a8972 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 28731
diff changeset
   903
void klassVtable::adjust_method_entries(InstanceKlass* holder, bool * trace_name_printed) {
5287df8a8972 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 28731
diff changeset
   904
  int prn_enabled = 0;
5287df8a8972 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 28731
diff changeset
   905
  for (int index = 0; index < length(); index++) {
5287df8a8972 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 28731
diff changeset
   906
    Method* old_method = unchecked_method_at(index);
5287df8a8972 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 28731
diff changeset
   907
    if (old_method == NULL || old_method->method_holder() != holder || !old_method->is_old()) {
5287df8a8972 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 28731
diff changeset
   908
      continue; // skip uninteresting entries
5287df8a8972 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 28731
diff changeset
   909
    }
5287df8a8972 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 28731
diff changeset
   910
    assert(!old_method->is_deleted(), "vtable methods may not be deleted");
5287df8a8972 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 28731
diff changeset
   911
5287df8a8972 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 28731
diff changeset
   912
    Method* new_method = holder->method_with_idnum(old_method->orig_method_idnum());
5287df8a8972 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 28731
diff changeset
   913
5287df8a8972 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 28731
diff changeset
   914
    assert(new_method != NULL, "method_with_idnum() should not be NULL");
5287df8a8972 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 28731
diff changeset
   915
    assert(old_method != new_method, "sanity check");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   916
29316
5287df8a8972 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 28731
diff changeset
   917
    put_method_at(new_method, index);
5287df8a8972 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 28731
diff changeset
   918
    // For default methods, need to update the _default_methods array
5287df8a8972 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 28731
diff changeset
   919
    // which can only have one method entry for a given signature
5287df8a8972 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 28731
diff changeset
   920
    bool updated_default = false;
5287df8a8972 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 28731
diff changeset
   921
    if (old_method->is_default_method()) {
5287df8a8972 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 28731
diff changeset
   922
      updated_default = adjust_default_method(index, old_method, new_method);
5287df8a8972 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 28731
diff changeset
   923
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   924
29316
5287df8a8972 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 28731
diff changeset
   925
    if (RC_TRACE_IN_RANGE(0x00100000, 0x00400000)) {
5287df8a8972 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 28731
diff changeset
   926
      if (!(*trace_name_printed)) {
5287df8a8972 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 28731
diff changeset
   927
        // RC_TRACE_MESG macro has an embedded ResourceMark
5287df8a8972 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 28731
diff changeset
   928
        RC_TRACE_MESG(("adjust: klassname=%s for methods from name=%s",
5287df8a8972 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 28731
diff changeset
   929
                       klass()->external_name(),
5287df8a8972 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 28731
diff changeset
   930
                       old_method->method_holder()->external_name()));
5287df8a8972 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 28731
diff changeset
   931
        *trace_name_printed = true;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   932
      }
29316
5287df8a8972 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 28731
diff changeset
   933
      // RC_TRACE macro has an embedded ResourceMark
5287df8a8972 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 28731
diff changeset
   934
      RC_TRACE(0x00100000, ("vtable method update: %s(%s), updated default = %s",
5287df8a8972 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 28731
diff changeset
   935
                            new_method->name()->as_C_string(),
5287df8a8972 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 28731
diff changeset
   936
                            new_method->signature()->as_C_string(),
5287df8a8972 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 28731
diff changeset
   937
                            updated_default ? "true" : "false"));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   938
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   939
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   940
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   941
15591
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14488
diff changeset
   942
// a vtable should never contain old or obsolete methods
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14488
diff changeset
   943
bool klassVtable::check_no_old_or_obsolete_entries() {
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14488
diff changeset
   944
  for (int i = 0; i < length(); i++) {
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14488
diff changeset
   945
    Method* m = unchecked_method_at(i);
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14488
diff changeset
   946
    if (m != NULL &&
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14488
diff changeset
   947
        (NOT_PRODUCT(!m->is_valid() ||) m->is_old() || m->is_obsolete())) {
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14488
diff changeset
   948
      return false;
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14488
diff changeset
   949
    }
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14488
diff changeset
   950
  }
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14488
diff changeset
   951
  return true;
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14488
diff changeset
   952
}
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14488
diff changeset
   953
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14488
diff changeset
   954
void klassVtable::dump_vtable() {
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14488
diff changeset
   955
  tty->print_cr("vtable dump --");
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14488
diff changeset
   956
  for (int i = 0; i < length(); i++) {
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14488
diff changeset
   957
    Method* m = unchecked_method_at(i);
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14488
diff changeset
   958
    if (m != NULL) {
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14488
diff changeset
   959
      tty->print("      (%5d)  ", i);
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14488
diff changeset
   960
      m->access_flags().print_on(tty);
20391
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   961
      if (m->is_default_method()) {
21556
e75cd34a59e0 8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents: 20391
diff changeset
   962
        tty->print("default ");
20391
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   963
      }
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   964
      if (m->is_overpass()) {
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   965
        tty->print("overpass");
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
   966
      }
15591
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14488
diff changeset
   967
      tty->print(" --  ");
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14488
diff changeset
   968
      m->print_name(tty);
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14488
diff changeset
   969
      tty->cr();
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14488
diff changeset
   970
    }
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14488
diff changeset
   971
  }
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14488
diff changeset
   972
}
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14488
diff changeset
   973
#endif // INCLUDE_JVMTI
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14488
diff changeset
   974
9172
a4e13ccafc44 7032407: Crash in LinkResolver::runtime_resolve_virtual_method()
coleenp
parents: 8725
diff changeset
   975
// CDS/RedefineClasses support - clear vtables so they can be reinitialized
a4e13ccafc44 7032407: Crash in LinkResolver::runtime_resolve_virtual_method()
coleenp
parents: 8725
diff changeset
   976
void klassVtable::clear_vtable() {
a4e13ccafc44 7032407: Crash in LinkResolver::runtime_resolve_virtual_method()
coleenp
parents: 8725
diff changeset
   977
  for (int i = 0; i < _length; i++) table()[i].clear();
a4e13ccafc44 7032407: Crash in LinkResolver::runtime_resolve_virtual_method()
coleenp
parents: 8725
diff changeset
   978
}
a4e13ccafc44 7032407: Crash in LinkResolver::runtime_resolve_virtual_method()
coleenp
parents: 8725
diff changeset
   979
a4e13ccafc44 7032407: Crash in LinkResolver::runtime_resolve_virtual_method()
coleenp
parents: 8725
diff changeset
   980
bool klassVtable::is_initialized() {
a4e13ccafc44 7032407: Crash in LinkResolver::runtime_resolve_virtual_method()
coleenp
parents: 8725
diff changeset
   981
  return _length == 0 || table()[0].method() != NULL;
a4e13ccafc44 7032407: Crash in LinkResolver::runtime_resolve_virtual_method()
coleenp
parents: 8725
diff changeset
   982
}
a4e13ccafc44 7032407: Crash in LinkResolver::runtime_resolve_virtual_method()
coleenp
parents: 8725
diff changeset
   983
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   984
//-----------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   985
// Itable code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   986
489c9b5090e2 Initial load
duke
parents:
diff changeset
   987
// Initialize a itableMethodEntry
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
   988
void itableMethodEntry::initialize(Method* m) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   989
  if (m == NULL) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   990
489c9b5090e2 Initial load
duke
parents:
diff changeset
   991
  _method = m;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   992
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   993
489c9b5090e2 Initial load
duke
parents:
diff changeset
   994
klassItable::klassItable(instanceKlassHandle klass) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   995
  _klass = klass;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   996
489c9b5090e2 Initial load
duke
parents:
diff changeset
   997
  if (klass->itable_length() > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   998
    itableOffsetEntry* offset_entry = (itableOffsetEntry*)klass->start_of_itable();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   999
    if (offset_entry  != NULL && offset_entry->interface_klass() != NULL) { // Check that itable is initialized
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1000
      // First offset entry points to the first method_entry
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
  1001
      intptr_t* method_entry  = (intptr_t *)(((address)klass()) + offset_entry->offset());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1002
      intptr_t* end         = klass->end_of_itable();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1003
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
  1004
      _table_offset      = (intptr_t*)offset_entry - (intptr_t*)klass();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1005
      _size_offset_table = (method_entry - ((intptr_t*)offset_entry)) / itableOffsetEntry::size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1006
      _size_method_table = (end - method_entry)                  / itableMethodEntry::size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1007
      assert(_table_offset >= 0 && _size_offset_table >= 0 && _size_method_table >= 0, "wrong computation");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1008
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1009
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1010
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1011
189
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
  1012
  // The length of the itable was either zero, or it has not yet been initialized.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1013
  _table_offset      = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1014
  _size_offset_table = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1015
  _size_method_table = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1016
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1017
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1018
static int initialize_count = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1019
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1020
// Initialization
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1021
void klassItable::initialize_itable(bool checkconstraints, TRAPS) {
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1022
  if (_klass->is_interface()) {
20391
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
  1023
    // This needs to go after vtable indices are assigned but
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
  1024
    // before implementors need to know the number of itable indices.
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
  1025
    assign_itable_indices_for_interface(_klass());
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1026
  }
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1027
189
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
  1028
  // Cannot be setup doing bootstrapping, interfaces don't have
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
  1029
  // itables, and klass with only ones entry have empty itables
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
  1030
  if (Universe::is_bootstrapping() ||
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
  1031
      _klass->is_interface() ||
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
  1032
      _klass->itable_length() == itableOffsetEntry::size()) return;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1033
189
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
  1034
  // There's alway an extra itable entry so we can null-terminate it.
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
  1035
  guarantee(size_offset_table() >= 1, "too small");
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
  1036
  int num_interfaces = size_offset_table() - 1;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1037
  if (num_interfaces > 0) {
189
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
  1038
    if (TraceItables) tty->print_cr("%3d: Initializing itables for %s", ++initialize_count,
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
  1039
                                    _klass->name()->as_C_string());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1040
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1041
2264
55d0115a54fe 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 2136
diff changeset
  1042
    // Iterate through all interfaces
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1043
    int i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1044
    for(i = 0; i < num_interfaces; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1045
      itableOffsetEntry* ioe = offset_entry(i);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
  1046
      HandleMark hm(THREAD);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1047
      KlassHandle interf_h (THREAD, ioe->interface_klass());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1048
      assert(interf_h() != NULL && ioe->offset() != 0, "bad offset entry in itable");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1049
      initialize_itable_for_interface(ioe->offset(), interf_h, checkconstraints, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1050
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1051
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1052
  }
189
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
  1053
  // Check that the last entry is empty
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
  1054
  itableOffsetEntry* ioe = offset_entry(size_offset_table() - 1);
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
  1055
  guarantee(ioe->interface_klass() == NULL && ioe->offset() == 0, "terminator entry missing");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1056
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1057
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1058
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1059
inline bool interface_method_needs_itable_index(Method* m) {
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1060
  if (m->is_static())           return false;   // e.g., Stream.empty
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1061
  if (m->is_initializer())      return false;   // <init> or <clinit>
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1062
  // If an interface redeclares a method from java.lang.Object,
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1063
  // it should already have a vtable index, don't touch it.
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1064
  // e.g., CharSequence.toString (from initialize_vtable)
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1065
  // if (m->has_vtable_index())  return false; // NO!
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1066
  return true;
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1067
}
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1068
20391
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
  1069
int klassItable::assign_itable_indices_for_interface(Klass* klass) {
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1070
  // an interface does not have an itable, but its methods need to be numbered
30615
4713e7c7b96f 8030680: 292 cleanup from default method code assessment
acorn
parents: 29871
diff changeset
  1071
  if (TraceItables) tty->print_cr("%3d: Initializing itable indices for interface %s", ++initialize_count,
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1072
                                  klass->name()->as_C_string());
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1073
  Array<Method*>* methods = InstanceKlass::cast(klass)->methods();
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1074
  int nof_methods = methods->length();
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1075
  int ime_num = 0;
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1076
  for (int i = 0; i < nof_methods; i++) {
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1077
    Method* m = methods->at(i);
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1078
    if (interface_method_needs_itable_index(m)) {
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1079
      assert(!m->is_final_method(), "no final interface methods");
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1080
      // If m is already assigned a vtable index, do not disturb it.
21556
e75cd34a59e0 8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents: 20391
diff changeset
  1081
      if (TraceItables && Verbose) {
e75cd34a59e0 8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents: 20391
diff changeset
  1082
        ResourceMark rm;
e75cd34a59e0 8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents: 20391
diff changeset
  1083
        const char* sig = (m != NULL) ? m->name_and_sig_as_C_string() : "<NULL>";
e75cd34a59e0 8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents: 20391
diff changeset
  1084
        if (m->has_vtable_index()) {
30615
4713e7c7b96f 8030680: 292 cleanup from default method code assessment
acorn
parents: 29871
diff changeset
  1085
          tty->print("vtable index %d for method: %s, flags: ", m->vtable_index(), sig);
21556
e75cd34a59e0 8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents: 20391
diff changeset
  1086
        } else {
e75cd34a59e0 8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents: 20391
diff changeset
  1087
          tty->print("itable index %d for method: %s, flags: ", ime_num, sig);
e75cd34a59e0 8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents: 20391
diff changeset
  1088
        }
e75cd34a59e0 8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents: 20391
diff changeset
  1089
        if (m != NULL) {
e75cd34a59e0 8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents: 20391
diff changeset
  1090
          m->access_flags().print_on(tty);
e75cd34a59e0 8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents: 20391
diff changeset
  1091
          if (m->is_default_method()) {
e75cd34a59e0 8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents: 20391
diff changeset
  1092
            tty->print("default ");
e75cd34a59e0 8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents: 20391
diff changeset
  1093
          }
e75cd34a59e0 8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents: 20391
diff changeset
  1094
          if (m->is_overpass()) {
e75cd34a59e0 8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents: 20391
diff changeset
  1095
            tty->print("overpass");
e75cd34a59e0 8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents: 20391
diff changeset
  1096
          }
e75cd34a59e0 8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents: 20391
diff changeset
  1097
        }
e75cd34a59e0 8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents: 20391
diff changeset
  1098
        tty->cr();
e75cd34a59e0 8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents: 20391
diff changeset
  1099
      }
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1100
      if (!m->has_vtable_index()) {
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1101
        assert(m->vtable_index() == Method::pending_itable_index, "set by initialize_vtable");
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1102
        m->set_itable_index(ime_num);
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1103
        // Progress to next itable entry
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1104
        ime_num++;
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1105
      }
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1106
    }
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1107
  }
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1108
  assert(ime_num == method_count_for_interface(klass), "proper sizing");
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1109
  return ime_num;
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1110
}
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1111
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1112
int klassItable::method_count_for_interface(Klass* interf) {
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1113
  assert(interf->oop_is_instance(), "must be");
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1114
  assert(interf->is_interface(), "must be");
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1115
  Array<Method*>* methods = InstanceKlass::cast(interf)->methods();
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1116
  int nof_methods = methods->length();
30615
4713e7c7b96f 8030680: 292 cleanup from default method code assessment
acorn
parents: 29871
diff changeset
  1117
  int length = 0;
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1118
  while (nof_methods > 0) {
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1119
    Method* m = methods->at(nof_methods-1);
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1120
    if (m->has_itable_index()) {
30615
4713e7c7b96f 8030680: 292 cleanup from default method code assessment
acorn
parents: 29871
diff changeset
  1121
      length = m->itable_index() + 1;
4713e7c7b96f 8030680: 292 cleanup from default method code assessment
acorn
parents: 29871
diff changeset
  1122
      break;
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1123
    }
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1124
    nof_methods -= 1;
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1125
  }
30615
4713e7c7b96f 8030680: 292 cleanup from default method code assessment
acorn
parents: 29871
diff changeset
  1126
#ifdef ASSERT
4713e7c7b96f 8030680: 292 cleanup from default method code assessment
acorn
parents: 29871
diff changeset
  1127
  int nof_methods_copy = nof_methods;
4713e7c7b96f 8030680: 292 cleanup from default method code assessment
acorn
parents: 29871
diff changeset
  1128
  while (nof_methods_copy > 0) {
4713e7c7b96f 8030680: 292 cleanup from default method code assessment
acorn
parents: 29871
diff changeset
  1129
    Method* mm = methods->at(--nof_methods_copy);
4713e7c7b96f 8030680: 292 cleanup from default method code assessment
acorn
parents: 29871
diff changeset
  1130
    assert(!mm->has_itable_index() || mm->itable_index() < length, "");
4713e7c7b96f 8030680: 292 cleanup from default method code assessment
acorn
parents: 29871
diff changeset
  1131
  }
4713e7c7b96f 8030680: 292 cleanup from default method code assessment
acorn
parents: 29871
diff changeset
  1132
#endif //ASSERT
4713e7c7b96f 8030680: 292 cleanup from default method code assessment
acorn
parents: 29871
diff changeset
  1133
  // return the rightmost itable index, plus one; or 0 if no methods have
4713e7c7b96f 8030680: 292 cleanup from default method code assessment
acorn
parents: 29871
diff changeset
  1134
  // itable indices
4713e7c7b96f 8030680: 292 cleanup from default method code assessment
acorn
parents: 29871
diff changeset
  1135
  return length;
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1136
}
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1137
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1138
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1139
void klassItable::initialize_itable_for_interface(int method_table_offset, KlassHandle interf_h, bool checkconstraints, TRAPS) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
  1140
  Array<Method*>* methods = InstanceKlass::cast(interf_h())->methods();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
  1141
  int nof_methods = methods->length();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1142
  HandleMark hm;
5402
c51fd0c1d005 6888953: some calls to function-like macros are missing semicolons
jcoomes
parents: 2343
diff changeset
  1143
  assert(nof_methods > 0, "at least one method must exist for interface to be in vtable");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
  1144
  Handle interface_loader (THREAD, InstanceKlass::cast(interf_h())->class_loader());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1145
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1146
  int ime_count = method_count_for_interface(interf_h());
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1147
  for (int i = 0; i < nof_methods; i++) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
  1148
    Method* m = methods->at(i);
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1149
    methodHandle target;
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1150
    if (m->has_itable_index()) {
22232
26acfad336c0 8027804: JCK resolveMethod test fails expecting AbstractMethodError
hseigel
parents: 21913
diff changeset
  1151
      // This search must match the runtime resolution, i.e. selection search for invokeinterface
26acfad336c0 8027804: JCK resolveMethod test fails expecting AbstractMethodError
hseigel
parents: 21913
diff changeset
  1152
      // to correctly enforce loader constraints for interface method inheritance
31019
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30768
diff changeset
  1153
      target = LinkResolver::lookup_instance_method_in_klasses(_klass, m->name(), m->signature(), CHECK);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1154
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1155
    if (target == NULL || !target->is_public() || target->is_abstract()) {
21770
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents: 21556
diff changeset
  1156
      // Entry does not resolve. Leave it empty for AbstractMethodError.
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents: 21556
diff changeset
  1157
        if (!(target == NULL) && !target->is_public()) {
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents: 21556
diff changeset
  1158
          // Stuff an IllegalAccessError throwing method in there instead.
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents: 21556
diff changeset
  1159
          itableOffsetEntry::method_entry(_klass(), method_table_offset)[m->itable_index()].
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents: 21556
diff changeset
  1160
              initialize(Universe::throw_illegal_access_error());
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents: 21556
diff changeset
  1161
        }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1162
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1163
      // Entry did resolve, check loader constraints before initializing
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1164
      // if checkconstraints requested
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1165
      if (checkconstraints) {
14391
df0a1573d5bd 8000725: NPG: method_holder() and pool_holder() and pool_holder field should be InstanceKlass
coleenp
parents: 14385
diff changeset
  1166
        Handle method_holder_loader (THREAD, target->method_holder()->class_loader());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1167
        if (method_holder_loader() != interface_loader()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1168
          ResourceMark rm(THREAD);
16591
73047b0eb568 8009731: Confusing error message for loader constraint violation
acorn
parents: 15591
diff changeset
  1169
          Symbol* failed_type_symbol =
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1170
            SystemDictionary::check_signature_loaders(m->signature(),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1171
                                                      method_holder_loader,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1172
                                                      interface_loader,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1173
                                                      true, CHECK);
16591
73047b0eb568 8009731: Confusing error message for loader constraint violation
acorn
parents: 15591
diff changeset
  1174
          if (failed_type_symbol != NULL) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1175
            const char* msg = "loader constraint violation in interface "
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1176
              "itable initialization: when resolving method \"%s\" the class"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1177
              " loader (instance of %s) of the current class, %s, "
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1178
              "and the class loader (instance of %s) for interface "
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1179
              "%s have different Class objects for the type %s "
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1180
              "used in the signature";
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1181
            char* sig = target()->name_and_sig_as_C_string();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1182
            const char* loader1 = SystemDictionary::loader_name(method_holder_loader());
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1183
            char* current = _klass->name()->as_C_string();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1184
            const char* loader2 = SystemDictionary::loader_name(interface_loader());
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
  1185
            char* iface = InstanceKlass::cast(interf_h())->name()->as_C_string();
16591
73047b0eb568 8009731: Confusing error message for loader constraint violation
acorn
parents: 15591
diff changeset
  1186
            char* failed_type_name = failed_type_symbol->as_C_string();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1187
            size_t buflen = strlen(msg) + strlen(sig) + strlen(loader1) +
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1188
              strlen(current) + strlen(loader2) + strlen(iface) +
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1189
              strlen(failed_type_name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1190
            char* buf = NEW_RESOURCE_ARRAY_IN_THREAD(THREAD, char, buflen);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1191
            jio_snprintf(buf, buflen, msg, sig, loader1, current, loader2,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1192
                         iface, failed_type_name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1193
            THROW_MSG(vmSymbols::java_lang_LinkageError(), buf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1194
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1195
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1196
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1197
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1198
      // ime may have moved during GC so recalculate address
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1199
      int ime_num = m->itable_index();
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1200
      assert(ime_num < ime_count, "oob");
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1201
      itableOffsetEntry::method_entry(_klass(), method_table_offset)[ime_num].initialize(target());
20391
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
  1202
      if (TraceItables && Verbose) {
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
  1203
        ResourceMark rm(THREAD);
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
  1204
        if (target() != NULL) {
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
  1205
          char* sig = target()->name_and_sig_as_C_string();
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
  1206
          tty->print("interface: %s, ime_num: %d, target: %s, method_holder: %s ",
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
  1207
                    interf_h()->internal_name(), ime_num, sig,
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
  1208
                    target()->method_holder()->internal_name());
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
  1209
          tty->print("target_method flags: ");
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
  1210
          target()->access_flags().print_on(tty);
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
  1211
          if (target()->is_default_method()) {
21556
e75cd34a59e0 8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents: 20391
diff changeset
  1212
            tty->print("default ");
20391
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
  1213
          }
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
  1214
          tty->cr();
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
  1215
        }
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
  1216
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1217
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1218
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1219
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1220
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
  1221
// Update entry for specific Method*
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
  1222
void klassItable::initialize_with_method(Method* m) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1223
  itableMethodEntry* ime = method_entry(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1224
  for(int i = 0; i < _size_method_table; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1225
    if (ime->method() == m) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1226
      ime->initialize(m);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1227
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1228
    ime++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1229
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1230
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1231
15591
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14488
diff changeset
  1232
#if INCLUDE_JVMTI
29316
5287df8a8972 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 28731
diff changeset
  1233
// search the itable for uses of either obsolete or EMCP methods
5287df8a8972 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 28731
diff changeset
  1234
void klassItable::adjust_method_entries(InstanceKlass* holder, bool * trace_name_printed) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1235
29316
5287df8a8972 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 28731
diff changeset
  1236
  itableMethodEntry* ime = method_entry(0);
5287df8a8972 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 28731
diff changeset
  1237
  for (int i = 0; i < _size_method_table; i++, ime++) {
5287df8a8972 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 28731
diff changeset
  1238
    Method* old_method = ime->method();
5287df8a8972 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 28731
diff changeset
  1239
    if (old_method == NULL || old_method->method_holder() != holder || !old_method->is_old()) {
5287df8a8972 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 28731
diff changeset
  1240
      continue; // skip uninteresting entries
5287df8a8972 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 28731
diff changeset
  1241
    }
5287df8a8972 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 28731
diff changeset
  1242
    assert(!old_method->is_deleted(), "itable methods may not be deleted");
5287df8a8972 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 28731
diff changeset
  1243
5287df8a8972 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 28731
diff changeset
  1244
    Method* new_method = holder->method_with_idnum(old_method->orig_method_idnum());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1245
29316
5287df8a8972 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 28731
diff changeset
  1246
    assert(new_method != NULL, "method_with_idnum() should not be NULL");
5287df8a8972 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 28731
diff changeset
  1247
    assert(old_method != new_method, "sanity check");
5287df8a8972 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 28731
diff changeset
  1248
5287df8a8972 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 28731
diff changeset
  1249
    ime->initialize(new_method);
5287df8a8972 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 28731
diff changeset
  1250
5287df8a8972 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 28731
diff changeset
  1251
    if (RC_TRACE_IN_RANGE(0x00100000, 0x00400000)) {
5287df8a8972 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 28731
diff changeset
  1252
      if (!(*trace_name_printed)) {
5287df8a8972 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 28731
diff changeset
  1253
        // RC_TRACE_MESG macro has an embedded ResourceMark
5287df8a8972 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 28731
diff changeset
  1254
        RC_TRACE_MESG(("adjust: name=%s",
5287df8a8972 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 28731
diff changeset
  1255
          old_method->method_holder()->external_name()));
5287df8a8972 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 28731
diff changeset
  1256
        *trace_name_printed = true;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1257
      }
29316
5287df8a8972 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 28731
diff changeset
  1258
      // RC_TRACE macro has an embedded ResourceMark
5287df8a8972 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 28731
diff changeset
  1259
      RC_TRACE(0x00200000, ("itable method update: %s(%s)",
5287df8a8972 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 28731
diff changeset
  1260
        new_method->name()->as_C_string(),
5287df8a8972 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 28731
diff changeset
  1261
        new_method->signature()->as_C_string()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1262
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1263
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1264
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1265
15591
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14488
diff changeset
  1266
// an itable should never contain old or obsolete methods
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14488
diff changeset
  1267
bool klassItable::check_no_old_or_obsolete_entries() {
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14488
diff changeset
  1268
  itableMethodEntry* ime = method_entry(0);
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14488
diff changeset
  1269
  for (int i = 0; i < _size_method_table; i++) {
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14488
diff changeset
  1270
    Method* m = ime->method();
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14488
diff changeset
  1271
    if (m != NULL &&
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14488
diff changeset
  1272
        (NOT_PRODUCT(!m->is_valid() ||) m->is_old() || m->is_obsolete())) {
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14488
diff changeset
  1273
      return false;
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14488
diff changeset
  1274
    }
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14488
diff changeset
  1275
    ime++;
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14488
diff changeset
  1276
  }
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14488
diff changeset
  1277
  return true;
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14488
diff changeset
  1278
}
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14488
diff changeset
  1279
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14488
diff changeset
  1280
void klassItable::dump_itable() {
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14488
diff changeset
  1281
  itableMethodEntry* ime = method_entry(0);
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14488
diff changeset
  1282
  tty->print_cr("itable dump --");
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14488
diff changeset
  1283
  for (int i = 0; i < _size_method_table; i++) {
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14488
diff changeset
  1284
    Method* m = ime->method();
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14488
diff changeset
  1285
    if (m != NULL) {
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14488
diff changeset
  1286
      tty->print("      (%5d)  ", i);
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14488
diff changeset
  1287
      m->access_flags().print_on(tty);
20391
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
  1288
      if (m->is_default_method()) {
21556
e75cd34a59e0 8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents: 20391
diff changeset
  1289
        tty->print("default ");
20391
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
  1290
      }
15591
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14488
diff changeset
  1291
      tty->print(" --  ");
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14488
diff changeset
  1292
      m->print_name(tty);
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14488
diff changeset
  1293
      tty->cr();
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14488
diff changeset
  1294
    }
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14488
diff changeset
  1295
    ime++;
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14488
diff changeset
  1296
  }
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14488
diff changeset
  1297
}
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14488
diff changeset
  1298
#endif // INCLUDE_JVMTI
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 14488
diff changeset
  1299
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1300
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1301
// Setup
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1302
class InterfaceVisiterClosure : public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1303
 public:
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
  1304
  virtual void doit(Klass* intf, int method_count) = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1305
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1306
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1307
// Visit all interfaces with at least one itable method
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
  1308
void visit_all_interfaces(Array<Klass*>* transitive_intf, InterfaceVisiterClosure *blk) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1309
  // Handle array argument
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1310
  for(int i = 0; i < transitive_intf->length(); i++) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
  1311
    Klass* intf = transitive_intf->at(i);
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 14391
diff changeset
  1312
    assert(intf->is_interface(), "sanity check");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1313
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1314
    // Find no. of itable methods
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1315
    int method_count = 0;
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1316
    // method_count = klassItable::method_count_for_interface(intf);
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1317
    Array<Method*>* methods = InstanceKlass::cast(intf)->methods();
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1318
    if (methods->length() > 0) {
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1319
      for (int i = methods->length(); --i >= 0; ) {
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1320
        if (interface_method_needs_itable_index(methods->at(i))) {
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1321
          method_count++;
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1322
        }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1323
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1324
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1325
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1326
    // Only count interfaces with at least one method
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1327
    if (method_count > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1328
      blk->doit(intf, method_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1329
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1330
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1331
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1332
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1333
class CountInterfacesClosure : public InterfaceVisiterClosure {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1334
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1335
  int _nof_methods;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1336
  int _nof_interfaces;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1337
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1338
   CountInterfacesClosure() { _nof_methods = 0; _nof_interfaces = 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1339
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1340
   int nof_methods() const    { return _nof_methods; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1341
   int nof_interfaces() const { return _nof_interfaces; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1342
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
  1343
   void doit(Klass* intf, int method_count) { _nof_methods += method_count; _nof_interfaces++; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1344
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1345
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1346
class SetupItableClosure : public InterfaceVisiterClosure  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1347
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1348
  itableOffsetEntry* _offset_entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1349
  itableMethodEntry* _method_entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1350
  address            _klass_begin;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1351
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1352
  SetupItableClosure(address klass_begin, itableOffsetEntry* offset_entry, itableMethodEntry* method_entry) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1353
    _klass_begin  = klass_begin;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1354
    _offset_entry = offset_entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1355
    _method_entry = method_entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1356
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1357
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1358
  itableMethodEntry* method_entry() const { return _method_entry; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1359
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
  1360
  void doit(Klass* intf, int method_count) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1361
    int offset = ((address)_method_entry) - _klass_begin;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1362
    _offset_entry->initialize(intf, offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1363
    _offset_entry++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1364
    _method_entry += method_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1365
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1366
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1367
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
  1368
int klassItable::compute_itable_size(Array<Klass*>* transitive_interfaces) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1369
  // Count no of interfaces and total number of interface methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1370
  CountInterfacesClosure cic;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
  1371
  visit_all_interfaces(transitive_interfaces, &cic);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1372
189
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
  1373
  // There's alway an extra itable entry so we can null-terminate it.
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
  1374
  int itable_size = calc_itable_size(cic.nof_interfaces() + 1, cic.nof_methods());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1375
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1376
  // Statistics
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1377
  update_stats(itable_size * HeapWordSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1378
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1379
  return itable_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1380
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1381
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1382
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1383
// Fill out offset table and interface klasses into the itable space
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1384
void klassItable::setup_itable_offset_table(instanceKlassHandle klass) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1385
  if (klass->itable_length() == 0) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1386
  assert(!klass->is_interface(), "Should have zero length itable");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1387
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1388
  // Count no of interfaces and total number of interface methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1389
  CountInterfacesClosure cic;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1390
  visit_all_interfaces(klass->transitive_interfaces(), &cic);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1391
  int nof_methods    = cic.nof_methods();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1392
  int nof_interfaces = cic.nof_interfaces();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1393
189
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
  1394
  // Add one extra entry so we can null-terminate the table
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
  1395
  nof_interfaces++;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1396
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
  1397
  assert(compute_itable_size(klass->transitive_interfaces()) ==
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1398
         calc_itable_size(nof_interfaces, nof_methods),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1399
         "mismatch calculation of itable size");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1400
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1401
  // Fill-out offset table
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1402
  itableOffsetEntry* ioe = (itableOffsetEntry*)klass->start_of_itable();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1403
  itableMethodEntry* ime = (itableMethodEntry*)(ioe + nof_interfaces);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1404
  intptr_t* end               = klass->end_of_itable();
8725
8c1e3dd5fe1b 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 8653
diff changeset
  1405
  assert((oop*)(ime + nof_methods) <= (oop*)klass->start_of_nonstatic_oop_maps(), "wrong offset calculation (1)");
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  1406
  assert((oop*)(end) == (oop*)(ime + nof_methods),                      "wrong offset calculation (2)");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1407
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1408
  // Visit all interfaces and initialize itable offset table
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
  1409
  SetupItableClosure sic((address)klass(), ioe, ime);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1410
  visit_all_interfaces(klass->transitive_interfaces(), &sic);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1411
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1412
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1413
  ime  = sic.method_entry();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1414
  oop* v = (oop*) klass->end_of_itable();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1415
  assert( (oop*)(ime) == v, "wrong offset calculation (2)");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1416
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1417
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1418
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1419
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1420
// inverse to itable_index
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
  1421
Method* klassItable::method_for_itable_index(Klass* intf, int itable_index) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
  1422
  assert(InstanceKlass::cast(intf)->is_interface(), "sanity check");
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1423
  assert(intf->verify_itable_index(itable_index), "");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
  1424
  Array<Method*>* methods = InstanceKlass::cast(intf)->methods();
2332
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2136
diff changeset
  1425
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1426
  if (itable_index < 0 || itable_index >= method_count_for_interface(intf))
20391
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 20284
diff changeset
  1427
    return NULL;                // help caller defend against bad indices
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1428
2332
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2136
diff changeset
  1429
  int index = itable_index;
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1430
  Method* m = methods->at(index);
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1431
  int index2 = -1;
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1432
  while (!m->has_itable_index() ||
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1433
         (index2 = m->itable_index()) != itable_index) {
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1434
    assert(index2 < itable_index, "monotonic");
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1435
    if (++index == methods->length())
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1436
      return NULL;
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1437
    m = methods->at(index);
2332
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2136
diff changeset
  1438
  }
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17092
diff changeset
  1439
  assert(m->itable_index() == itable_index, "correct inverse");
2332
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2136
diff changeset
  1440
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2136
diff changeset
  1441
  return m;
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2136
diff changeset
  1442
}
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2136
diff changeset
  1443
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1444
void klassVtable::verify(outputStream* st, bool forced) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1445
  // make sure table is initialized
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1446
  if (!Universe::is_fully_initialized()) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1447
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1448
  // avoid redundant verifies
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1449
  if (!forced && _verify_count == Universe::verify_count()) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1450
  _verify_count = Universe::verify_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1451
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1452
  oop* end_of_obj = (oop*)_klass() + _klass()->size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1453
  oop* end_of_vtable = (oop *)&table()[_length];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1454
  if (end_of_vtable > end_of_obj) {
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32189
diff changeset
  1455
    fatal("klass %s: klass object too short (vtable extends beyond end)",
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32189
diff changeset
  1456
          _klass->internal_name());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1457
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1458
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1459
  for (int i = 0; i < _length; i++) table()[i].verify(this, st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1460
  // verify consistency with superKlass vtable
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
  1461
  Klass* super = _klass->super();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1462
  if (super != NULL) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
  1463
    InstanceKlass* sk = InstanceKlass::cast(super);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1464
    klassVtable* vt = sk->vtable();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1465
    for (int i = 0; i < vt->length(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1466
      verify_against(st, vt, i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1467
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1468
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1469
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1470
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1471
void klassVtable::verify_against(outputStream* st, klassVtable* vt, int index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1472
  vtableEntry* vte = &vt->table()[index];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1473
  if (vte->method()->name()      != table()[index].method()->name() ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1474
      vte->method()->signature() != table()[index].method()->signature()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1475
    fatal("mismatched name/signature of vtable entries");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1476
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1477
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1478
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1479
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1480
void klassVtable::print() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1481
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1482
  tty->print("klassVtable for klass %s (length %d):\n", _klass->internal_name(), length());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1483
  for (int i = 0; i < length(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1484
    table()[i].print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1485
    tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1486
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1487
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1488
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1489
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1490
void vtableEntry::verify(klassVtable* vt, outputStream* st) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1491
  NOT_PRODUCT(FlagSetting fs(IgnoreLockingAssertions, true));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1492
  assert(method() != NULL, "must have set method");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1493
  method()->verify();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1494
  // we sub_type, because it could be a miranda method
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1495
  if (!vt->klass()->is_subtype_of(method()->method_holder())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1496
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1497
    print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1498
#endif
33148
68fa8b6c4340 8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 33105
diff changeset
  1499
    fatal("vtableEntry " PTR_FORMAT ": method is from subclass", p2i(this));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1500
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1501
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1502
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1503
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1504
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1505
void vtableEntry::print() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1506
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1507
  tty->print("vtableEntry %s: ", method()->name()->as_C_string());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1508
  if (Verbose) {
33148
68fa8b6c4340 8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 33105
diff changeset
  1509
    tty->print("m " PTR_FORMAT " ", p2i(method()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1510
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1511
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1512
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1513
class VtableStats : AllStatic {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1514
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1515
  static int no_klasses;                // # classes with vtables
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1516
  static int no_array_klasses;          // # array classes
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1517
  static int no_instance_klasses;       // # instanceKlasses
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1518
  static int sum_of_vtable_len;         // total # of vtable entries
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1519
  static int sum_of_array_vtable_len;   // total # of vtable entries in array klasses only
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1520
  static int fixed;                     // total fixed overhead in bytes
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1521
  static int filler;                    // overhead caused by filler bytes
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1522
  static int entries;                   // total bytes consumed by vtable entries
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1523
  static int array_entries;             // total bytes consumed by array vtable entries
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1524
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
  1525
  static void do_class(Klass* k) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9172
diff changeset
  1526
    Klass* kl = k;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1527
    klassVtable* vt = kl->vtable();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1528
    if (vt == NULL) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1529
    no_klasses++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1530
    if (kl->oop_is_instance()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1531
      no_instance_klasses++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1532
      kl->array_klasses_do(do_class);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1533
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1534
    if (kl->oop_is_array()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1535
      no_array_klasses++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1536
      sum_of_array_vtable_len += vt->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1537
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1538
    sum_of_vtable_len += vt->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1539
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1540
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1541
  static void compute() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1542
    SystemDictionary::classes_do(do_class);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1543
    fixed  = no_klasses * oopSize;      // vtable length
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1544
    // filler size is a conservative approximation
13952
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13728
diff changeset
  1545
    filler = oopSize * (no_klasses - no_instance_klasses) * (sizeof(InstanceKlass) - sizeof(ArrayKlass) - 1);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1546
    entries = sizeof(vtableEntry) * sum_of_vtable_len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1547
    array_entries = sizeof(vtableEntry) * sum_of_array_vtable_len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1548
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1549
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1550
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1551
int VtableStats::no_klasses = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1552
int VtableStats::no_array_klasses = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1553
int VtableStats::no_instance_klasses = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1554
int VtableStats::sum_of_vtable_len = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1555
int VtableStats::sum_of_array_vtable_len = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1556
int VtableStats::fixed = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1557
int VtableStats::filler = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1558
int VtableStats::entries = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1559
int VtableStats::array_entries = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1560
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1561
void klassVtable::print_statistics() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1562
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1563
  HandleMark hm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1564
  VtableStats::compute();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1565
  tty->print_cr("vtable statistics:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1566
  tty->print_cr("%6d classes (%d instance, %d array)", VtableStats::no_klasses, VtableStats::no_instance_klasses, VtableStats::no_array_klasses);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1567
  int total = VtableStats::fixed + VtableStats::filler + VtableStats::entries;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1568
  tty->print_cr("%6d bytes fixed overhead (refs + vtable object header)", VtableStats::fixed);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1569
  tty->print_cr("%6d bytes filler overhead", VtableStats::filler);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1570
  tty->print_cr("%6d bytes for vtable entries (%d for arrays)", VtableStats::entries, VtableStats::array_entries);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1571
  tty->print_cr("%6d bytes total", total);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1572
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1573
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1574
int  klassItable::_total_classes;   // Total no. of classes with itables
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1575
long klassItable::_total_size;      // Total no. of bytes used for itables
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1576
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1577
void klassItable::print_statistics() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1578
 tty->print_cr("itable statistics:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1579
 tty->print_cr("%6d classes with itables", _total_classes);
33148
68fa8b6c4340 8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 33105
diff changeset
  1580
 tty->print_cr("%6lu K uses for itables (average by class: %ld bytes)", _total_size / K, _total_size / _total_classes);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1581
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1582
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1583
#endif // PRODUCT