src/hotspot/share/code/dependencies.cpp
author chegar
Thu, 17 Oct 2019 20:54:25 +0100
branchdatagramsocketimpl-branch
changeset 58679 9c3209ff7550
parent 58678 9cf78a70fa4f
parent 58177 4932dce35882
permissions -rw-r--r--
datagramsocketimpl-branch: merge with default
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
55635
0fb70c9118ce 8222446: assert(C->env()->system_dictionary_modification_counter_changed()) failed: Must invalidate if TypeFuncs differ
coleenp
parents: 54721
diff changeset
     2
 * Copyright (c) 2005, 2019, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4754
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4754
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: 4754
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 "ci/ciArrayKlass.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
#include "ci/ciEnv.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "ci/ciKlass.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "ci/ciMethod.hpp"
29081
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents: 28514
diff changeset
    30
#include "classfile/javaClasses.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
#include "code/dependencies.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    32
#include "compiler/compileLog.hpp"
48299
e8f5fc8f5f67 8191052: [Graal] java/lang/invoke/CallSiteTest.java intermittently fails with "Failed dependency of type call_site_target_value" when running with Graal as JIT
never
parents: 47216
diff changeset
    33
#include "compiler/compileBroker.hpp"
e8f5fc8f5f67 8191052: [Graal] java/lang/invoke/CallSiteTest.java intermittently fails with "Failed dependency of type call_site_target_value" when running with Graal as JIT
never
parents: 47216
diff changeset
    34
#include "compiler/compileTask.hpp"
37248
11a660dbbb8e 8132524: Missing includes to resourceArea.hpp
jprovino
parents: 35499
diff changeset
    35
#include "memory/resourceArea.hpp"
50735
2f2af62dfac7 8010319: Implementation of JEP 181: Nest-Based Access Control
dholmes
parents: 49902
diff changeset
    36
#include "oops/klass.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    37
#include "oops/oop.inline.hpp"
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
    38
#include "oops/objArrayKlass.hpp"
49902
3661f31c6df4 8202150: [REDO] Split globals.hpp to factor out the Flag class
gziemski
parents: 49860
diff changeset
    39
#include "runtime/flags/flagSetting.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
    40
#include "runtime/handles.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    41
#include "runtime/handles.inline.hpp"
49192
6734eeef4283 8198474: Move JNIHandles::resolve into jniHandles.inline.hpp
kbarrett
parents: 48299
diff changeset
    42
#include "runtime/jniHandles.inline.hpp"
24351
61b33cc6d3cf 8042195: Introduce umbrella header orderAccess.inline.hpp.
goetz
parents: 23187
diff changeset
    43
#include "runtime/thread.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    44
#include "utilities/copy.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
static bool must_be_in_vm() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  Thread* thread = Thread::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  if (thread->is_Java_thread())
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
    return ((JavaThread*)thread)->thread_state() == _thread_in_vm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
    return true;  //something like this: thread->is_VM_thread();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
#endif //ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
void Dependencies::initialize(ciEnv* env) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  Arena* arena = env->arena();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  _oop_recorder = env->oop_recorder();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  _log = env->log();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  _dep_seen = new(arena) GrowableArray<int>(arena, 500, 0, 0);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
    62
#if INCLUDE_JVMCI
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
    63
  _using_dep_values = false;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
    64
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  DEBUG_ONLY(_deps[end_marker] = NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  for (int i = (int)FIRST_TYPE; i < (int)TYPE_LIMIT; i++) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
    67
    _deps[i] = new(arena) GrowableArray<ciBaseObject*>(arena, 10, 0, 0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  _content_bytes = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  _size_in_bytes = (size_t)-1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  assert(TYPE_LIMIT <= (1<<LG2_TYPE_LIMIT), "sanity");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
void Dependencies::assert_evol_method(ciMethod* m) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  assert_common_1(evol_method, m);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
void Dependencies::assert_leaf_type(ciKlass* ctxk) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  if (ctxk->is_array_klass()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
    // As a special case, support this assertion on an array type,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
    // which reduces to an assertion on its element type.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
    // Note that this cannot be done with assertions that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
    // relate to concreteness or abstractness.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
    ciType* elemt = ctxk->as_array_klass()->base_element_type();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
    if (!elemt->is_instance_klass())  return;   // Ex:  int[][]
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
    ctxk = elemt->as_instance_klass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
    //if (ctxk->is_final())  return;            // Ex:  String[][]
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  check_ctxk(ctxk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  assert_common_1(leaf_type, ctxk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
void Dependencies::assert_abstract_with_unique_concrete_subtype(ciKlass* ctxk, ciKlass* conck) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  check_ctxk_abstract(ctxk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  assert_common_2(abstract_with_unique_concrete_subtype, ctxk, conck);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
void Dependencies::assert_abstract_with_no_concrete_subtype(ciKlass* ctxk) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  check_ctxk_abstract(ctxk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  assert_common_1(abstract_with_no_concrete_subtype, ctxk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
void Dependencies::assert_concrete_with_no_concrete_subtype(ciKlass* ctxk) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  check_ctxk_concrete(ctxk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  assert_common_1(concrete_with_no_concrete_subtype, ctxk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
void Dependencies::assert_unique_concrete_method(ciKlass* ctxk, ciMethod* uniqm) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  check_ctxk(ctxk);
54721
3661ad97da8f 8223171: Redundant nmethod dependencies for effectively final methods
vlivanov
parents: 50735
diff changeset
   111
  check_unique_method(ctxk, uniqm);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  assert_common_2(unique_concrete_method, ctxk, uniqm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
void Dependencies::assert_abstract_with_exclusive_concrete_subtypes(ciKlass* ctxk, ciKlass* k1, ciKlass* k2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  check_ctxk(ctxk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  assert_common_3(abstract_with_exclusive_concrete_subtypes_2, ctxk, k1, k2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
void Dependencies::assert_exclusive_concrete_methods(ciKlass* ctxk, ciMethod* m1, ciMethod* m2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  check_ctxk(ctxk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  assert_common_3(exclusive_concrete_methods_2, ctxk, m1, m2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
void Dependencies::assert_has_no_finalizable_subclasses(ciKlass* ctxk) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  check_ctxk(ctxk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  assert_common_1(no_finalizable_subclasses, ctxk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
10503
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10265
diff changeset
   130
void Dependencies::assert_call_site_target_value(ciCallSite* call_site, ciMethodHandle* method_handle) {
31037
01a5c5fa5681 8079205: CallSite dependency tracking is broken after sun.misc.Cleaner became automatically cleared
vlivanov
parents: 30296
diff changeset
   131
  assert_common_2(call_site_target_value, call_site, method_handle);
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
   132
}
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
   133
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   134
#if INCLUDE_JVMCI
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   135
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   136
Dependencies::Dependencies(Arena* arena, OopRecorder* oop_recorder, CompileLog* log) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   137
  _oop_recorder = oop_recorder;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   138
  _log = log;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   139
  _dep_seen = new(arena) GrowableArray<int>(arena, 500, 0, 0);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   140
  _using_dep_values = true;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   141
  DEBUG_ONLY(_dep_values[end_marker] = NULL);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   142
  for (int i = (int)FIRST_TYPE; i < (int)TYPE_LIMIT; i++) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   143
    _dep_values[i] = new(arena) GrowableArray<DepValue>(arena, 10, 0, DepValue());
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   144
  }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   145
  _content_bytes = NULL;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   146
  _size_in_bytes = (size_t)-1;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   147
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   148
  assert(TYPE_LIMIT <= (1<<LG2_TYPE_LIMIT), "sanity");
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   149
}
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   150
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   151
void Dependencies::assert_evol_method(Method* m) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   152
  assert_common_1(evol_method, DepValue(_oop_recorder, m));
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   153
}
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   154
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   155
void Dependencies::assert_has_no_finalizable_subclasses(Klass* ctxk) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   156
  check_ctxk(ctxk);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   157
  assert_common_1(no_finalizable_subclasses, DepValue(_oop_recorder, ctxk));
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   158
}
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   159
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   160
void Dependencies::assert_leaf_type(Klass* ctxk) {
33611
9abd65805e19 8139203: Consistent naming for klass type predicates
coleenp
parents: 33602
diff changeset
   161
  if (ctxk->is_array_klass()) {
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   162
    // As a special case, support this assertion on an array type,
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   163
    // which reduces to an assertion on its element type.
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   164
    // Note that this cannot be done with assertions that
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   165
    // relate to concreteness or abstractness.
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   166
    BasicType elemt = ArrayKlass::cast(ctxk)->element_type();
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   167
    if (is_java_primitive(elemt))  return;   // Ex:  int[][]
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   168
    ctxk = ObjArrayKlass::cast(ctxk)->bottom_klass();
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   169
    //if (ctxk->is_final())  return;            // Ex:  String[][]
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   170
  }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   171
  check_ctxk(ctxk);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   172
  assert_common_1(leaf_type, DepValue(_oop_recorder, ctxk));
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   173
}
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   174
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   175
void Dependencies::assert_abstract_with_unique_concrete_subtype(Klass* ctxk, Klass* conck) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   176
  check_ctxk_abstract(ctxk);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   177
  DepValue ctxk_dv(_oop_recorder, ctxk);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   178
  DepValue conck_dv(_oop_recorder, conck, &ctxk_dv);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   179
  assert_common_2(abstract_with_unique_concrete_subtype, ctxk_dv, conck_dv);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   180
}
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   181
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   182
void Dependencies::assert_unique_concrete_method(Klass* ctxk, Method* uniqm) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   183
  check_ctxk(ctxk);
54721
3661ad97da8f 8223171: Redundant nmethod dependencies for effectively final methods
vlivanov
parents: 50735
diff changeset
   184
  check_unique_method(ctxk, uniqm);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   185
  assert_common_2(unique_concrete_method, DepValue(_oop_recorder, ctxk), DepValue(_oop_recorder, uniqm));
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   186
}
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   187
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   188
void Dependencies::assert_call_site_target_value(oop call_site, oop method_handle) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   189
  assert_common_2(call_site_target_value, DepValue(_oop_recorder, JNIHandles::make_local(call_site)), DepValue(_oop_recorder, JNIHandles::make_local(method_handle)));
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   190
}
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   191
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   192
#endif // INCLUDE_JVMCI
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   193
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   194
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
// Helper function.  If we are adding a new dep. under ctxk2,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
// try to find an old dep. under a broader* ctxk1.  If there is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
//
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   198
bool Dependencies::maybe_merge_ctxk(GrowableArray<ciBaseObject*>* deps,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
                                    int ctxk_i, ciKlass* ctxk2) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   200
  ciKlass* ctxk1 = deps->at(ctxk_i)->as_metadata()->as_klass();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  if (ctxk2->is_subtype_of(ctxk1)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
    return true;  // success, and no need to change
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  } else if (ctxk1->is_subtype_of(ctxk2)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
    // new context class fully subsumes previous one
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
    deps->at_put(ctxk_i, ctxk2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   212
void Dependencies::assert_common_1(DepType dept, ciBaseObject* x) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  assert(dep_args(dept) == 1, "sanity");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  log_dependency(dept, x);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   215
  GrowableArray<ciBaseObject*>* deps = _deps[dept];
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  // see if the same (or a similar) dep is already recorded
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  if (note_dep_seen(dept, x)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
    assert(deps->find(x) >= 0, "sanity");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
    deps->append(x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
10503
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10265
diff changeset
   225
void Dependencies::assert_common_2(DepType dept,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   226
                                   ciBaseObject* x0, ciBaseObject* x1) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  assert(dep_args(dept) == 2, "sanity");
10503
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10265
diff changeset
   228
  log_dependency(dept, x0, x1);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   229
  GrowableArray<ciBaseObject*>* deps = _deps[dept];
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  // see if the same (or a similar) dep is already recorded
10503
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10265
diff changeset
   232
  bool has_ctxk = has_explicit_context_arg(dept);
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10265
diff changeset
   233
  if (has_ctxk) {
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10265
diff changeset
   234
    assert(dep_context_arg(dept) == 0, "sanity");
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10265
diff changeset
   235
    if (note_dep_seen(dept, x1)) {
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10265
diff changeset
   236
      // look in this bucket for redundant assertions
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10265
diff changeset
   237
      const int stride = 2;
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10265
diff changeset
   238
      for (int i = deps->length(); (i -= stride) >= 0; ) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   239
        ciBaseObject* y1 = deps->at(i+1);
10503
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10265
diff changeset
   240
        if (x1 == y1) {  // same subject; check the context
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   241
          if (maybe_merge_ctxk(deps, i+0, x0->as_metadata()->as_klass())) {
10503
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10265
diff changeset
   242
            return;
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10265
diff changeset
   243
          }
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10265
diff changeset
   244
        }
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10265
diff changeset
   245
      }
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10265
diff changeset
   246
    }
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10265
diff changeset
   247
  } else {
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10265
diff changeset
   248
    if (note_dep_seen(dept, x0) && note_dep_seen(dept, x1)) {
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10265
diff changeset
   249
      // look in this bucket for redundant assertions
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10265
diff changeset
   250
      const int stride = 2;
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10265
diff changeset
   251
      for (int i = deps->length(); (i -= stride) >= 0; ) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   252
        ciBaseObject* y0 = deps->at(i+0);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   253
        ciBaseObject* y1 = deps->at(i+1);
10503
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10265
diff changeset
   254
        if (x0 == y0 && x1 == y1) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
          return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
  // append the assertion in the correct bucket:
10503
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10265
diff changeset
   262
  deps->append(x0);
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10265
diff changeset
   263
  deps->append(x1);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
10503
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10265
diff changeset
   266
void Dependencies::assert_common_3(DepType dept,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   267
                                   ciKlass* ctxk, ciBaseObject* x, ciBaseObject* x2) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  assert(dep_context_arg(dept) == 0, "sanity");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
  assert(dep_args(dept) == 3, "sanity");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
  log_dependency(dept, ctxk, x, x2);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   271
  GrowableArray<ciBaseObject*>* deps = _deps[dept];
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
  // try to normalize an unordered pair:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
  bool swap = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  switch (dept) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
  case abstract_with_exclusive_concrete_subtypes_2:
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   277
    swap = (x->ident() > x2->ident() && x->as_metadata()->as_klass() != ctxk);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
  case exclusive_concrete_methods_2:
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   280
    swap = (x->ident() > x2->ident() && x->as_metadata()->as_method()->holder() != ctxk);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
    break;
46630
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 46271
diff changeset
   282
  default:
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 46271
diff changeset
   283
    break;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
  }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   285
  if (swap) { ciBaseObject* t = x; x = x2; x2 = t; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
  // see if the same (or a similar) dep is already recorded
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
  if (note_dep_seen(dept, x) && note_dep_seen(dept, x2)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
    // look in this bucket for redundant assertions
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
    const int stride = 3;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
    for (int i = deps->length(); (i -= stride) >= 0; ) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   292
      ciBaseObject* y  = deps->at(i+1);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   293
      ciBaseObject* y2 = deps->at(i+2);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
      if (x == y && x2 == y2) {  // same subjects; check the context
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
        if (maybe_merge_ctxk(deps, i+0, ctxk)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
          return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
  // append the assertion in the correct bucket:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
  deps->append(ctxk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
  deps->append(x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
  deps->append(x2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   307
#if INCLUDE_JVMCI
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   308
bool Dependencies::maybe_merge_ctxk(GrowableArray<DepValue>* deps,
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   309
                                    int ctxk_i, DepValue ctxk2_dv) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   310
  Klass* ctxk1 = deps->at(ctxk_i).as_klass(_oop_recorder);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   311
  Klass* ctxk2 = ctxk2_dv.as_klass(_oop_recorder);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   312
  if (ctxk2->is_subtype_of(ctxk1)) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   313
    return true;  // success, and no need to change
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   314
  } else if (ctxk1->is_subtype_of(ctxk2)) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   315
    // new context class fully subsumes previous one
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   316
    deps->at_put(ctxk_i, ctxk2_dv);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   317
    return true;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   318
  } else {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   319
    return false;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   320
  }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   321
}
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   322
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   323
void Dependencies::assert_common_1(DepType dept, DepValue x) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   324
  assert(dep_args(dept) == 1, "sanity");
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   325
  //log_dependency(dept, x);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   326
  GrowableArray<DepValue>* deps = _dep_values[dept];
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   327
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   328
  // see if the same (or a similar) dep is already recorded
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   329
  if (note_dep_seen(dept, x)) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   330
    assert(deps->find(x) >= 0, "sanity");
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   331
  } else {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   332
    deps->append(x);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   333
  }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   334
}
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   335
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   336
void Dependencies::assert_common_2(DepType dept,
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   337
                                   DepValue x0, DepValue x1) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   338
  assert(dep_args(dept) == 2, "sanity");
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   339
  //log_dependency(dept, x0, x1);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   340
  GrowableArray<DepValue>* deps = _dep_values[dept];
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   341
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   342
  // see if the same (or a similar) dep is already recorded
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   343
  bool has_ctxk = has_explicit_context_arg(dept);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   344
  if (has_ctxk) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   345
    assert(dep_context_arg(dept) == 0, "sanity");
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   346
    if (note_dep_seen(dept, x1)) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   347
      // look in this bucket for redundant assertions
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   348
      const int stride = 2;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   349
      for (int i = deps->length(); (i -= stride) >= 0; ) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   350
        DepValue y1 = deps->at(i+1);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   351
        if (x1 == y1) {  // same subject; check the context
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   352
          if (maybe_merge_ctxk(deps, i+0, x0)) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   353
            return;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   354
          }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   355
        }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   356
      }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   357
    }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   358
  } else {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   359
    if (note_dep_seen(dept, x0) && note_dep_seen(dept, x1)) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   360
      // look in this bucket for redundant assertions
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   361
      const int stride = 2;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   362
      for (int i = deps->length(); (i -= stride) >= 0; ) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   363
        DepValue y0 = deps->at(i+0);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   364
        DepValue y1 = deps->at(i+1);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   365
        if (x0 == y0 && x1 == y1) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   366
          return;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   367
        }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   368
      }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   369
    }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   370
  }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   371
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   372
  // append the assertion in the correct bucket:
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   373
  deps->append(x0);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   374
  deps->append(x1);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   375
}
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   376
#endif // INCLUDE_JVMCI
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   377
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
/// Support for encoding dependencies into an nmethod:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
void Dependencies::copy_to(nmethod* nm) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
  address beg = nm->dependencies_begin();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
  address end = nm->dependencies_end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
  guarantee(end - beg >= (ptrdiff_t) size_in_bytes(), "bad sizing");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
  Copy::disjoint_words((HeapWord*) content_bytes(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
                       (HeapWord*) beg,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
                       size_in_bytes() / sizeof(HeapWord));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
  assert(size_in_bytes() % sizeof(HeapWord) == 0, "copy by words");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   390
static int sort_dep(ciBaseObject** p1, ciBaseObject** p2, int narg) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
  for (int i = 0; i < narg; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
    int diff = p1[i]->ident() - p2[i]->ident();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
    if (diff != 0)  return diff;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
  return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
}
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   397
static int sort_dep_arg_1(ciBaseObject** p1, ciBaseObject** p2)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
{ return sort_dep(p1, p2, 1); }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   399
static int sort_dep_arg_2(ciBaseObject** p1, ciBaseObject** p2)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
{ return sort_dep(p1, p2, 2); }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   401
static int sort_dep_arg_3(ciBaseObject** p1, ciBaseObject** p2)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
{ return sort_dep(p1, p2, 3); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   404
#if INCLUDE_JVMCI
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   405
// metadata deps are sorted before object deps
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   406
static int sort_dep_value(Dependencies::DepValue* p1, Dependencies::DepValue* p2, int narg) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   407
  for (int i = 0; i < narg; i++) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   408
    int diff = p1[i].sort_key() - p2[i].sort_key();
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   409
    if (diff != 0)  return diff;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   410
  }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   411
  return 0;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   412
}
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   413
static int sort_dep_value_arg_1(Dependencies::DepValue* p1, Dependencies::DepValue* p2)
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   414
{ return sort_dep_value(p1, p2, 1); }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   415
static int sort_dep_value_arg_2(Dependencies::DepValue* p1, Dependencies::DepValue* p2)
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   416
{ return sort_dep_value(p1, p2, 2); }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   417
static int sort_dep_value_arg_3(Dependencies::DepValue* p1, Dependencies::DepValue* p2)
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   418
{ return sort_dep_value(p1, p2, 3); }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   419
#endif // INCLUDE_JVMCI
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   420
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
void Dependencies::sort_all_deps() {
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   422
#if INCLUDE_JVMCI
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   423
  if (_using_dep_values) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   424
    for (int deptv = (int)FIRST_TYPE; deptv < (int)TYPE_LIMIT; deptv++) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   425
      DepType dept = (DepType)deptv;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   426
      GrowableArray<DepValue>* deps = _dep_values[dept];
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   427
      if (deps->length() <= 1)  continue;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   428
      switch (dep_args(dept)) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   429
      case 1: deps->sort(sort_dep_value_arg_1, 1); break;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   430
      case 2: deps->sort(sort_dep_value_arg_2, 2); break;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   431
      case 3: deps->sort(sort_dep_value_arg_3, 3); break;
46630
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 46271
diff changeset
   432
      default: ShouldNotReachHere(); break;
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   433
      }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   434
    }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   435
    return;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   436
  }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   437
#endif // INCLUDE_JVMCI
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
  for (int deptv = (int)FIRST_TYPE; deptv < (int)TYPE_LIMIT; deptv++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
    DepType dept = (DepType)deptv;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   440
    GrowableArray<ciBaseObject*>* deps = _deps[dept];
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
    if (deps->length() <= 1)  continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
    switch (dep_args(dept)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
    case 1: deps->sort(sort_dep_arg_1, 1); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
    case 2: deps->sort(sort_dep_arg_2, 2); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
    case 3: deps->sort(sort_dep_arg_3, 3); break;
46630
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 46271
diff changeset
   446
    default: ShouldNotReachHere(); break;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
size_t Dependencies::estimate_size_in_bytes() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
  size_t est_size = 100;
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   453
#if INCLUDE_JVMCI
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   454
  if (_using_dep_values) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   455
    for (int deptv = (int)FIRST_TYPE; deptv < (int)TYPE_LIMIT; deptv++) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   456
      DepType dept = (DepType)deptv;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   457
      GrowableArray<DepValue>* deps = _dep_values[dept];
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   458
      est_size += deps->length() * 2;  // tags and argument(s)
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   459
    }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   460
    return est_size;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   461
  }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   462
#endif // INCLUDE_JVMCI
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
  for (int deptv = (int)FIRST_TYPE; deptv < (int)TYPE_LIMIT; deptv++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
    DepType dept = (DepType)deptv;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   465
    GrowableArray<ciBaseObject*>* deps = _deps[dept];
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
    est_size += deps->length()*2;  // tags and argument(s)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
  return est_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   471
ciKlass* Dependencies::ctxk_encoded_as_null(DepType dept, ciBaseObject* x) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
  switch (dept) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
  case abstract_with_exclusive_concrete_subtypes_2:
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   474
    return x->as_metadata()->as_klass();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
  case unique_concrete_method:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
  case exclusive_concrete_methods_2:
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   477
    return x->as_metadata()->as_method()->holder();
46630
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 46271
diff changeset
   478
  default:
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 46271
diff changeset
   479
    return NULL;  // let NULL be NULL
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   483
Klass* Dependencies::ctxk_encoded_as_null(DepType dept, Metadata* x) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
  assert(must_be_in_vm(), "raw oops here");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
  switch (dept) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
  case abstract_with_exclusive_concrete_subtypes_2:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
    assert(x->is_klass(), "sanity");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   488
    return (Klass*) x;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
  case unique_concrete_method:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
  case exclusive_concrete_methods_2:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
    assert(x->is_method(), "sanity");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   492
    return ((Method*)x)->method_holder();
46630
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 46271
diff changeset
   493
  default:
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 46271
diff changeset
   494
    return NULL;  // let NULL be NULL
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
void Dependencies::encode_content_bytes() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
  sort_all_deps();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
  // cast is safe, no deps can overflow INT_MAX
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
  CompressedWriteStream bytes((int)estimate_size_in_bytes());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   504
#if INCLUDE_JVMCI
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   505
  if (_using_dep_values) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   506
    for (int deptv = (int)FIRST_TYPE; deptv < (int)TYPE_LIMIT; deptv++) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   507
      DepType dept = (DepType)deptv;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   508
      GrowableArray<DepValue>* deps = _dep_values[dept];
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   509
      if (deps->length() == 0)  continue;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   510
      int stride = dep_args(dept);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   511
      int ctxkj  = dep_context_arg(dept);  // -1 if no context arg
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   512
      assert(stride > 0, "sanity");
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   513
      for (int i = 0; i < deps->length(); i += stride) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   514
        jbyte code_byte = (jbyte)dept;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   515
        int skipj = -1;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   516
        if (ctxkj >= 0 && ctxkj+1 < stride) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   517
          Klass*  ctxk = deps->at(i+ctxkj+0).as_klass(_oop_recorder);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   518
          DepValue x = deps->at(i+ctxkj+1);  // following argument
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   519
          if (ctxk == ctxk_encoded_as_null(dept, x.as_metadata(_oop_recorder))) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   520
            skipj = ctxkj;  // we win:  maybe one less oop to keep track of
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   521
            code_byte |= default_context_type_bit;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   522
          }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   523
        }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   524
        bytes.write_byte(code_byte);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   525
        for (int j = 0; j < stride; j++) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   526
          if (j == skipj)  continue;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   527
          DepValue v = deps->at(i+j);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   528
          int idx = v.index();
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   529
          bytes.write_int(idx);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   530
        }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   531
      }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   532
    }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   533
  } else {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   534
#endif // INCLUDE_JVMCI
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
  for (int deptv = (int)FIRST_TYPE; deptv < (int)TYPE_LIMIT; deptv++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
    DepType dept = (DepType)deptv;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   537
    GrowableArray<ciBaseObject*>* deps = _deps[dept];
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
    if (deps->length() == 0)  continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
    int stride = dep_args(dept);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
    int ctxkj  = dep_context_arg(dept);  // -1 if no context arg
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
    assert(stride > 0, "sanity");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
    for (int i = 0; i < deps->length(); i += stride) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
      jbyte code_byte = (jbyte)dept;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
      int skipj = -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
      if (ctxkj >= 0 && ctxkj+1 < stride) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   546
        ciKlass*  ctxk = deps->at(i+ctxkj+0)->as_metadata()->as_klass();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   547
        ciBaseObject* x     = deps->at(i+ctxkj+1);  // following argument
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
        if (ctxk == ctxk_encoded_as_null(dept, x)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
          skipj = ctxkj;  // we win:  maybe one less oop to keep track of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
          code_byte |= default_context_type_bit;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
      bytes.write_byte(code_byte);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
      for (int j = 0; j < stride; j++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
        if (j == skipj)  continue;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   556
        ciBaseObject* v = deps->at(i+j);
13965
fe09056af6ae 8000232: NPG: SIGSEGV in Dependencies::DepStream::check_klass_dependency on solaris-x64
vlivanov
parents: 13743
diff changeset
   557
        int idx;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   558
        if (v->is_object()) {
13965
fe09056af6ae 8000232: NPG: SIGSEGV in Dependencies::DepStream::check_klass_dependency on solaris-x64
vlivanov
parents: 13743
diff changeset
   559
          idx = _oop_recorder->find_index(v->as_object()->constant_encoding());
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   560
        } else {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   561
          ciMetadata* meta = v->as_metadata();
13965
fe09056af6ae 8000232: NPG: SIGSEGV in Dependencies::DepStream::check_klass_dependency on solaris-x64
vlivanov
parents: 13743
diff changeset
   562
          idx = _oop_recorder->find_index(meta->constant_encoding());
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   563
        }
13965
fe09056af6ae 8000232: NPG: SIGSEGV in Dependencies::DepStream::check_klass_dependency on solaris-x64
vlivanov
parents: 13743
diff changeset
   564
        bytes.write_int(idx);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
  }
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   568
#if INCLUDE_JVMCI
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   569
  }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   570
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
  // write a sentinel byte to mark the end
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
  bytes.write_byte(end_marker);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
  // round it out to a word boundary
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
  while (bytes.position() % sizeof(HeapWord) != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
    bytes.write_byte(end_marker);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
  // check whether the dept byte encoding really works
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
  assert((jbyte)default_context_type_bit != 0, "byte overflow");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
  _content_bytes = bytes.buffer();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
  _size_in_bytes = bytes.position();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
const char* Dependencies::_dep_name[TYPE_LIMIT] = {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
  "end_marker",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
  "evol_method",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
  "leaf_type",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
  "abstract_with_unique_concrete_subtype",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
  "abstract_with_no_concrete_subtype",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
  "concrete_with_no_concrete_subtype",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
  "unique_concrete_method",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
  "abstract_with_exclusive_concrete_subtypes_2",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
  "exclusive_concrete_methods_2",
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
   598
  "no_finalizable_subclasses",
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
   599
  "call_site_target_value"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
int Dependencies::_dep_args[TYPE_LIMIT] = {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
  -1,// end_marker
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
  1, // evol_method m
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
  1, // leaf_type ctxk
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
  2, // abstract_with_unique_concrete_subtype ctxk, k
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
  1, // abstract_with_no_concrete_subtype ctxk
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
  1, // concrete_with_no_concrete_subtype ctxk
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
  2, // unique_concrete_method ctxk, m
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
  3, // unique_concrete_subtypes_2 ctxk, k1, k2
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
  3, // unique_concrete_methods_2 ctxk, m1, m2
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
   612
  1, // no_finalizable_subclasses ctxk
31037
01a5c5fa5681 8079205: CallSite dependency tracking is broken after sun.misc.Cleaner became automatically cleared
vlivanov
parents: 30296
diff changeset
   613
  2  // call_site_target_value call_site, method_handle
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
const char* Dependencies::dep_name(Dependencies::DepType dept) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
  if (!dept_in_mask(dept, all_types))  return "?bad-dep?";
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
  return _dep_name[dept];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
int Dependencies::dep_args(Dependencies::DepType dept) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
  if (!dept_in_mask(dept, all_types))  return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
  return _dep_args[dept];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
   626
void Dependencies::check_valid_dependency_type(DepType dept) {
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 31037
diff changeset
   627
  guarantee(FIRST_TYPE <= dept && dept < TYPE_LIMIT, "invalid dependency type: %d", (int) dept);
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
   628
}
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
   629
55635
0fb70c9118ce 8222446: assert(C->env()->system_dictionary_modification_counter_changed()) failed: Must invalidate if TypeFuncs differ
coleenp
parents: 54721
diff changeset
   630
Dependencies::DepType Dependencies::validate_dependencies(CompileTask* task, char** failure_detail) {
48299
e8f5fc8f5f67 8191052: [Graal] java/lang/invoke/CallSiteTest.java intermittently fails with "Failed dependency of type call_site_target_value" when running with Graal as JIT
never
parents: 47216
diff changeset
   631
  int klass_violations = 0;
e8f5fc8f5f67 8191052: [Graal] java/lang/invoke/CallSiteTest.java intermittently fails with "Failed dependency of type call_site_target_value" when running with Graal as JIT
never
parents: 47216
diff changeset
   632
  DepType result = end_marker;
e8f5fc8f5f67 8191052: [Graal] java/lang/invoke/CallSiteTest.java intermittently fails with "Failed dependency of type call_site_target_value" when running with Graal as JIT
never
parents: 47216
diff changeset
   633
  for (Dependencies::DepStream deps(this); deps.next(); ) {
e8f5fc8f5f67 8191052: [Graal] java/lang/invoke/CallSiteTest.java intermittently fails with "Failed dependency of type call_site_target_value" when running with Graal as JIT
never
parents: 47216
diff changeset
   634
    Klass* witness = deps.check_dependency();
e8f5fc8f5f67 8191052: [Graal] java/lang/invoke/CallSiteTest.java intermittently fails with "Failed dependency of type call_site_target_value" when running with Graal as JIT
never
parents: 47216
diff changeset
   635
    if (witness != NULL) {
e8f5fc8f5f67 8191052: [Graal] java/lang/invoke/CallSiteTest.java intermittently fails with "Failed dependency of type call_site_target_value" when running with Graal as JIT
never
parents: 47216
diff changeset
   636
      if (klass_violations == 0) {
e8f5fc8f5f67 8191052: [Graal] java/lang/invoke/CallSiteTest.java intermittently fails with "Failed dependency of type call_site_target_value" when running with Graal as JIT
never
parents: 47216
diff changeset
   637
        result = deps.type();
e8f5fc8f5f67 8191052: [Graal] java/lang/invoke/CallSiteTest.java intermittently fails with "Failed dependency of type call_site_target_value" when running with Graal as JIT
never
parents: 47216
diff changeset
   638
        if (failure_detail != NULL && klass_violations == 0) {
e8f5fc8f5f67 8191052: [Graal] java/lang/invoke/CallSiteTest.java intermittently fails with "Failed dependency of type call_site_target_value" when running with Graal as JIT
never
parents: 47216
diff changeset
   639
          // Use a fixed size buffer to prevent the string stream from
e8f5fc8f5f67 8191052: [Graal] java/lang/invoke/CallSiteTest.java intermittently fails with "Failed dependency of type call_site_target_value" when running with Graal as JIT
never
parents: 47216
diff changeset
   640
          // resizing in the context of an inner resource mark.
e8f5fc8f5f67 8191052: [Graal] java/lang/invoke/CallSiteTest.java intermittently fails with "Failed dependency of type call_site_target_value" when running with Graal as JIT
never
parents: 47216
diff changeset
   641
          char* buffer = NEW_RESOURCE_ARRAY(char, O_BUFLEN);
e8f5fc8f5f67 8191052: [Graal] java/lang/invoke/CallSiteTest.java intermittently fails with "Failed dependency of type call_site_target_value" when running with Graal as JIT
never
parents: 47216
diff changeset
   642
          stringStream st(buffer, O_BUFLEN);
e8f5fc8f5f67 8191052: [Graal] java/lang/invoke/CallSiteTest.java intermittently fails with "Failed dependency of type call_site_target_value" when running with Graal as JIT
never
parents: 47216
diff changeset
   643
          deps.print_dependency(witness, true, &st);
e8f5fc8f5f67 8191052: [Graal] java/lang/invoke/CallSiteTest.java intermittently fails with "Failed dependency of type call_site_target_value" when running with Graal as JIT
never
parents: 47216
diff changeset
   644
          *failure_detail = st.as_string();
e8f5fc8f5f67 8191052: [Graal] java/lang/invoke/CallSiteTest.java intermittently fails with "Failed dependency of type call_site_target_value" when running with Graal as JIT
never
parents: 47216
diff changeset
   645
        }
e8f5fc8f5f67 8191052: [Graal] java/lang/invoke/CallSiteTest.java intermittently fails with "Failed dependency of type call_site_target_value" when running with Graal as JIT
never
parents: 47216
diff changeset
   646
      }
e8f5fc8f5f67 8191052: [Graal] java/lang/invoke/CallSiteTest.java intermittently fails with "Failed dependency of type call_site_target_value" when running with Graal as JIT
never
parents: 47216
diff changeset
   647
      klass_violations++;
55635
0fb70c9118ce 8222446: assert(C->env()->system_dictionary_modification_counter_changed()) failed: Must invalidate if TypeFuncs differ
coleenp
parents: 54721
diff changeset
   648
      if (xtty == NULL) {
48299
e8f5fc8f5f67 8191052: [Graal] java/lang/invoke/CallSiteTest.java intermittently fails with "Failed dependency of type call_site_target_value" when running with Graal as JIT
never
parents: 47216
diff changeset
   649
        // If we're not logging then a single violation is sufficient,
e8f5fc8f5f67 8191052: [Graal] java/lang/invoke/CallSiteTest.java intermittently fails with "Failed dependency of type call_site_target_value" when running with Graal as JIT
never
parents: 47216
diff changeset
   650
        // otherwise we want to log all the dependences which were
e8f5fc8f5f67 8191052: [Graal] java/lang/invoke/CallSiteTest.java intermittently fails with "Failed dependency of type call_site_target_value" when running with Graal as JIT
never
parents: 47216
diff changeset
   651
        // violated.
e8f5fc8f5f67 8191052: [Graal] java/lang/invoke/CallSiteTest.java intermittently fails with "Failed dependency of type call_site_target_value" when running with Graal as JIT
never
parents: 47216
diff changeset
   652
        break;
e8f5fc8f5f67 8191052: [Graal] java/lang/invoke/CallSiteTest.java intermittently fails with "Failed dependency of type call_site_target_value" when running with Graal as JIT
never
parents: 47216
diff changeset
   653
      }
e8f5fc8f5f67 8191052: [Graal] java/lang/invoke/CallSiteTest.java intermittently fails with "Failed dependency of type call_site_target_value" when running with Graal as JIT
never
parents: 47216
diff changeset
   654
    }
e8f5fc8f5f67 8191052: [Graal] java/lang/invoke/CallSiteTest.java intermittently fails with "Failed dependency of type call_site_target_value" when running with Graal as JIT
never
parents: 47216
diff changeset
   655
  }
e8f5fc8f5f67 8191052: [Graal] java/lang/invoke/CallSiteTest.java intermittently fails with "Failed dependency of type call_site_target_value" when running with Graal as JIT
never
parents: 47216
diff changeset
   656
e8f5fc8f5f67 8191052: [Graal] java/lang/invoke/CallSiteTest.java intermittently fails with "Failed dependency of type call_site_target_value" when running with Graal as JIT
never
parents: 47216
diff changeset
   657
  return result;
e8f5fc8f5f67 8191052: [Graal] java/lang/invoke/CallSiteTest.java intermittently fails with "Failed dependency of type call_site_target_value" when running with Graal as JIT
never
parents: 47216
diff changeset
   658
}
e8f5fc8f5f67 8191052: [Graal] java/lang/invoke/CallSiteTest.java intermittently fails with "Failed dependency of type call_site_target_value" when running with Graal as JIT
never
parents: 47216
diff changeset
   659
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
// for the sake of the compiler log, print out current dependencies:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
void Dependencies::log_all_dependencies() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
  if (log() == NULL)  return;
25936
9b693ed74c13 8040920: Uninitialised memory in hotspot/src/share/vm/code/dependencies.cpp
morris
parents: 24484
diff changeset
   663
  ResourceMark rm;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
  for (int deptv = (int)FIRST_TYPE; deptv < (int)TYPE_LIMIT; deptv++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
    DepType dept = (DepType)deptv;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   666
    GrowableArray<ciBaseObject*>* deps = _deps[dept];
25936
9b693ed74c13 8040920: Uninitialised memory in hotspot/src/share/vm/code/dependencies.cpp
morris
parents: 24484
diff changeset
   667
    int deplen = deps->length();
9b693ed74c13 8040920: Uninitialised memory in hotspot/src/share/vm/code/dependencies.cpp
morris
parents: 24484
diff changeset
   668
    if (deplen == 0) {
9b693ed74c13 8040920: Uninitialised memory in hotspot/src/share/vm/code/dependencies.cpp
morris
parents: 24484
diff changeset
   669
      continue;
9b693ed74c13 8040920: Uninitialised memory in hotspot/src/share/vm/code/dependencies.cpp
morris
parents: 24484
diff changeset
   670
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
    int stride = dep_args(dept);
25936
9b693ed74c13 8040920: Uninitialised memory in hotspot/src/share/vm/code/dependencies.cpp
morris
parents: 24484
diff changeset
   672
    GrowableArray<ciBaseObject*>* ciargs = new GrowableArray<ciBaseObject*>(stride);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
    for (int i = 0; i < deps->length(); i += stride) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
      for (int j = 0; j < stride; j++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
        // flush out the identities before printing
25936
9b693ed74c13 8040920: Uninitialised memory in hotspot/src/share/vm/code/dependencies.cpp
morris
parents: 24484
diff changeset
   676
        ciargs->push(deps->at(i+j));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
      }
25936
9b693ed74c13 8040920: Uninitialised memory in hotspot/src/share/vm/code/dependencies.cpp
morris
parents: 24484
diff changeset
   678
      write_dependency_to(log(), dept, ciargs);
9b693ed74c13 8040920: Uninitialised memory in hotspot/src/share/vm/code/dependencies.cpp
morris
parents: 24484
diff changeset
   679
      ciargs->clear();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
    }
25936
9b693ed74c13 8040920: Uninitialised memory in hotspot/src/share/vm/code/dependencies.cpp
morris
parents: 24484
diff changeset
   681
    guarantee(deplen == deps->length(), "deps array cannot grow inside nested ResoureMark scope");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
void Dependencies::write_dependency_to(CompileLog* log,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
                                       DepType dept,
25936
9b693ed74c13 8040920: Uninitialised memory in hotspot/src/share/vm/code/dependencies.cpp
morris
parents: 24484
diff changeset
   687
                                       GrowableArray<DepArgument>* args,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   688
                                       Klass* witness) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
  if (log == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
  }
25936
9b693ed74c13 8040920: Uninitialised memory in hotspot/src/share/vm/code/dependencies.cpp
morris
parents: 24484
diff changeset
   692
  ResourceMark rm;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
  ciEnv* env = ciEnv::current();
25936
9b693ed74c13 8040920: Uninitialised memory in hotspot/src/share/vm/code/dependencies.cpp
morris
parents: 24484
diff changeset
   694
  GrowableArray<ciBaseObject*>* ciargs = new GrowableArray<ciBaseObject*>(args->length());
9b693ed74c13 8040920: Uninitialised memory in hotspot/src/share/vm/code/dependencies.cpp
morris
parents: 24484
diff changeset
   695
  for (GrowableArrayIterator<DepArgument> it = args->begin(); it != args->end(); ++it) {
9b693ed74c13 8040920: Uninitialised memory in hotspot/src/share/vm/code/dependencies.cpp
morris
parents: 24484
diff changeset
   696
    DepArgument arg = *it;
9b693ed74c13 8040920: Uninitialised memory in hotspot/src/share/vm/code/dependencies.cpp
morris
parents: 24484
diff changeset
   697
    if (arg.is_oop()) {
9b693ed74c13 8040920: Uninitialised memory in hotspot/src/share/vm/code/dependencies.cpp
morris
parents: 24484
diff changeset
   698
      ciargs->push(env->get_object(arg.oop_value()));
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   699
    } else {
25936
9b693ed74c13 8040920: Uninitialised memory in hotspot/src/share/vm/code/dependencies.cpp
morris
parents: 24484
diff changeset
   700
      ciargs->push(env->get_metadata(arg.metadata_value()));
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   701
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
  }
25936
9b693ed74c13 8040920: Uninitialised memory in hotspot/src/share/vm/code/dependencies.cpp
morris
parents: 24484
diff changeset
   703
  int argslen = ciargs->length();
9b693ed74c13 8040920: Uninitialised memory in hotspot/src/share/vm/code/dependencies.cpp
morris
parents: 24484
diff changeset
   704
  Dependencies::write_dependency_to(log, dept, ciargs, witness);
9b693ed74c13 8040920: Uninitialised memory in hotspot/src/share/vm/code/dependencies.cpp
morris
parents: 24484
diff changeset
   705
  guarantee(argslen == ciargs->length(), "ciargs array cannot grow inside nested ResoureMark scope");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   707
489c9b5090e2 Initial load
duke
parents:
diff changeset
   708
void Dependencies::write_dependency_to(CompileLog* log,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   709
                                       DepType dept,
25936
9b693ed74c13 8040920: Uninitialised memory in hotspot/src/share/vm/code/dependencies.cpp
morris
parents: 24484
diff changeset
   710
                                       GrowableArray<ciBaseObject*>* args,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   711
                                       Klass* witness) {
25936
9b693ed74c13 8040920: Uninitialised memory in hotspot/src/share/vm/code/dependencies.cpp
morris
parents: 24484
diff changeset
   712
  if (log == NULL) {
9b693ed74c13 8040920: Uninitialised memory in hotspot/src/share/vm/code/dependencies.cpp
morris
parents: 24484
diff changeset
   713
    return;
9b693ed74c13 8040920: Uninitialised memory in hotspot/src/share/vm/code/dependencies.cpp
morris
parents: 24484
diff changeset
   714
  }
9b693ed74c13 8040920: Uninitialised memory in hotspot/src/share/vm/code/dependencies.cpp
morris
parents: 24484
diff changeset
   715
  ResourceMark rm;
9b693ed74c13 8040920: Uninitialised memory in hotspot/src/share/vm/code/dependencies.cpp
morris
parents: 24484
diff changeset
   716
  GrowableArray<int>* argids = new GrowableArray<int>(args->length());
9b693ed74c13 8040920: Uninitialised memory in hotspot/src/share/vm/code/dependencies.cpp
morris
parents: 24484
diff changeset
   717
  for (GrowableArrayIterator<ciBaseObject*> it = args->begin(); it != args->end(); ++it) {
9b693ed74c13 8040920: Uninitialised memory in hotspot/src/share/vm/code/dependencies.cpp
morris
parents: 24484
diff changeset
   718
    ciBaseObject* obj = *it;
9b693ed74c13 8040920: Uninitialised memory in hotspot/src/share/vm/code/dependencies.cpp
morris
parents: 24484
diff changeset
   719
    if (obj->is_object()) {
9b693ed74c13 8040920: Uninitialised memory in hotspot/src/share/vm/code/dependencies.cpp
morris
parents: 24484
diff changeset
   720
      argids->push(log->identify(obj->as_object()));
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   721
    } else {
25936
9b693ed74c13 8040920: Uninitialised memory in hotspot/src/share/vm/code/dependencies.cpp
morris
parents: 24484
diff changeset
   722
      argids->push(log->identify(obj->as_metadata()));
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   723
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   724
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   725
  if (witness != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   726
    log->begin_elem("dependency_failed");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   727
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   728
    log->begin_elem("dependency");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   729
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   730
  log->print(" type='%s'", dep_name(dept));
25936
9b693ed74c13 8040920: Uninitialised memory in hotspot/src/share/vm/code/dependencies.cpp
morris
parents: 24484
diff changeset
   731
  const int ctxkj = dep_context_arg(dept);  // -1 if no context arg
9b693ed74c13 8040920: Uninitialised memory in hotspot/src/share/vm/code/dependencies.cpp
morris
parents: 24484
diff changeset
   732
  if (ctxkj >= 0 && ctxkj < argids->length()) {
9b693ed74c13 8040920: Uninitialised memory in hotspot/src/share/vm/code/dependencies.cpp
morris
parents: 24484
diff changeset
   733
    log->print(" ctxk='%d'", argids->at(ctxkj));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   734
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   735
  // write remaining arguments, if any.
25936
9b693ed74c13 8040920: Uninitialised memory in hotspot/src/share/vm/code/dependencies.cpp
morris
parents: 24484
diff changeset
   736
  for (int j = 0; j < argids->length(); j++) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   737
    if (j == ctxkj)  continue;  // already logged
489c9b5090e2 Initial load
duke
parents:
diff changeset
   738
    if (j == 1) {
25936
9b693ed74c13 8040920: Uninitialised memory in hotspot/src/share/vm/code/dependencies.cpp
morris
parents: 24484
diff changeset
   739
      log->print(  " x='%d'",    argids->at(j));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   740
    } else {
25936
9b693ed74c13 8040920: Uninitialised memory in hotspot/src/share/vm/code/dependencies.cpp
morris
parents: 24484
diff changeset
   741
      log->print(" x%d='%d'", j, argids->at(j));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   742
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   743
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   744
  if (witness != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   745
    log->object("witness", witness);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   746
    log->stamp();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   747
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   748
  log->end_elem();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   749
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   750
489c9b5090e2 Initial load
duke
parents:
diff changeset
   751
void Dependencies::write_dependency_to(xmlStream* xtty,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   752
                                       DepType dept,
25936
9b693ed74c13 8040920: Uninitialised memory in hotspot/src/share/vm/code/dependencies.cpp
morris
parents: 24484
diff changeset
   753
                                       GrowableArray<DepArgument>* args,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   754
                                       Klass* witness) {
25936
9b693ed74c13 8040920: Uninitialised memory in hotspot/src/share/vm/code/dependencies.cpp
morris
parents: 24484
diff changeset
   755
  if (xtty == NULL) {
9b693ed74c13 8040920: Uninitialised memory in hotspot/src/share/vm/code/dependencies.cpp
morris
parents: 24484
diff changeset
   756
    return;
9b693ed74c13 8040920: Uninitialised memory in hotspot/src/share/vm/code/dependencies.cpp
morris
parents: 24484
diff changeset
   757
  }
46271
979ebd346ecf 8169881: Remove implicit Handle conversions oop->Handle
coleenp
parents: 40362
diff changeset
   758
  Thread* thread = Thread::current();
979ebd346ecf 8169881: Remove implicit Handle conversions oop->Handle
coleenp
parents: 40362
diff changeset
   759
  HandleMark rm(thread);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   760
  ttyLocker ttyl;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   761
  int ctxkj = dep_context_arg(dept);  // -1 if no context arg
489c9b5090e2 Initial load
duke
parents:
diff changeset
   762
  if (witness != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   763
    xtty->begin_elem("dependency_failed");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   764
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   765
    xtty->begin_elem("dependency");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   766
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   767
  xtty->print(" type='%s'", dep_name(dept));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   768
  if (ctxkj >= 0) {
25936
9b693ed74c13 8040920: Uninitialised memory in hotspot/src/share/vm/code/dependencies.cpp
morris
parents: 24484
diff changeset
   769
    xtty->object("ctxk", args->at(ctxkj).metadata_value());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   770
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   771
  // write remaining arguments, if any.
25936
9b693ed74c13 8040920: Uninitialised memory in hotspot/src/share/vm/code/dependencies.cpp
morris
parents: 24484
diff changeset
   772
  for (int j = 0; j < args->length(); j++) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   773
    if (j == ctxkj)  continue;  // already logged
25936
9b693ed74c13 8040920: Uninitialised memory in hotspot/src/share/vm/code/dependencies.cpp
morris
parents: 24484
diff changeset
   774
    DepArgument arg = args->at(j);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   775
    if (j == 1) {
25936
9b693ed74c13 8040920: Uninitialised memory in hotspot/src/share/vm/code/dependencies.cpp
morris
parents: 24484
diff changeset
   776
      if (arg.is_oop()) {
46271
979ebd346ecf 8169881: Remove implicit Handle conversions oop->Handle
coleenp
parents: 40362
diff changeset
   777
        xtty->object("x", Handle(thread, arg.oop_value()));
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   778
      } else {
25936
9b693ed74c13 8040920: Uninitialised memory in hotspot/src/share/vm/code/dependencies.cpp
morris
parents: 24484
diff changeset
   779
        xtty->object("x", arg.metadata_value());
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   780
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   781
    } else {
46672
dc24cb5e50a1 8184309: Buld warnings from GCC 7.1 on Fedora 26
ysuenaga
parents: 46630
diff changeset
   782
      char xn[12]; sprintf(xn, "x%d", j);
25936
9b693ed74c13 8040920: Uninitialised memory in hotspot/src/share/vm/code/dependencies.cpp
morris
parents: 24484
diff changeset
   783
      if (arg.is_oop()) {
46271
979ebd346ecf 8169881: Remove implicit Handle conversions oop->Handle
coleenp
parents: 40362
diff changeset
   784
        xtty->object(xn, Handle(thread, arg.oop_value()));
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   785
      } else {
25936
9b693ed74c13 8040920: Uninitialised memory in hotspot/src/share/vm/code/dependencies.cpp
morris
parents: 24484
diff changeset
   786
        xtty->object(xn, arg.metadata_value());
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   787
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   788
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   789
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   790
  if (witness != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   791
    xtty->object("witness", witness);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   792
    xtty->stamp();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   793
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   794
  xtty->end_elem();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   795
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   796
25936
9b693ed74c13 8040920: Uninitialised memory in hotspot/src/share/vm/code/dependencies.cpp
morris
parents: 24484
diff changeset
   797
void Dependencies::print_dependency(DepType dept, GrowableArray<DepArgument>* args,
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   798
                                    Klass* witness, outputStream* st) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   799
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   800
  ttyLocker ttyl;   // keep the following output all in one block
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   801
  st->print_cr("%s of type %s",
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   802
                (witness == NULL)? "Dependency": "Failed dependency",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   803
                dep_name(dept));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   804
  // print arguments
489c9b5090e2 Initial load
duke
parents:
diff changeset
   805
  int ctxkj = dep_context_arg(dept);  // -1 if no context arg
25936
9b693ed74c13 8040920: Uninitialised memory in hotspot/src/share/vm/code/dependencies.cpp
morris
parents: 24484
diff changeset
   806
  for (int j = 0; j < args->length(); j++) {
9b693ed74c13 8040920: Uninitialised memory in hotspot/src/share/vm/code/dependencies.cpp
morris
parents: 24484
diff changeset
   807
    DepArgument arg = args->at(j);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   808
    bool put_star = false;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   809
    if (arg.is_null())  continue;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   810
    const char* what;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   811
    if (j == ctxkj) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   812
      assert(arg.is_metadata(), "must be");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   813
      what = "context";
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   814
      put_star = !Dependencies::is_concrete_klass((Klass*)arg.metadata_value());
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   815
    } else if (arg.is_method()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   816
      what = "method ";
28514
da53c1ffc837 8064524: Compiler code generation improvements
drchase
parents: 27700
diff changeset
   817
      put_star = !Dependencies::is_concrete_method((Method*)arg.metadata_value(), NULL);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   818
    } else if (arg.is_klass()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   819
      what = "class  ";
489c9b5090e2 Initial load
duke
parents:
diff changeset
   820
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   821
      what = "object ";
489c9b5090e2 Initial load
duke
parents:
diff changeset
   822
    }
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   823
    st->print("  %s = %s", what, (put_star? "*": ""));
26914
a270e0fac50e 8058578: -XX:+TraceDependencies is broken for call_site_target_value dependency type
vlivanov
parents: 25936
diff changeset
   824
    if (arg.is_klass()) {
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   825
      st->print("%s", ((Klass*)arg.metadata_value())->external_name());
26914
a270e0fac50e 8058578: -XX:+TraceDependencies is broken for call_site_target_value dependency type
vlivanov
parents: 25936
diff changeset
   826
    } else if (arg.is_method()) {
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   827
      ((Method*)arg.metadata_value())->print_value_on(st);
26914
a270e0fac50e 8058578: -XX:+TraceDependencies is broken for call_site_target_value dependency type
vlivanov
parents: 25936
diff changeset
   828
    } else if (arg.is_oop()) {
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   829
      arg.oop_value()->print_value_on(st);
26914
a270e0fac50e 8058578: -XX:+TraceDependencies is broken for call_site_target_value dependency type
vlivanov
parents: 25936
diff changeset
   830
    } else {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   831
      ShouldNotReachHere(); // Provide impl for this type.
26914
a270e0fac50e 8058578: -XX:+TraceDependencies is broken for call_site_target_value dependency type
vlivanov
parents: 25936
diff changeset
   832
    }
a270e0fac50e 8058578: -XX:+TraceDependencies is broken for call_site_target_value dependency type
vlivanov
parents: 25936
diff changeset
   833
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   834
    st->cr();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   835
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   836
  if (witness != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   837
    bool put_star = !Dependencies::is_concrete_klass(witness);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   838
    st->print_cr("  witness = %s%s",
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   839
                  (put_star? "*": ""),
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 14391
diff changeset
   840
                  witness->external_name());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   841
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   842
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   843
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   844
void Dependencies::DepStream::log_dependency(Klass* witness) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   845
  if (_deps == NULL && xtty == NULL)  return;  // fast cutout for runtime
14477
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
   846
  ResourceMark rm;
25936
9b693ed74c13 8040920: Uninitialised memory in hotspot/src/share/vm/code/dependencies.cpp
morris
parents: 24484
diff changeset
   847
  const int nargs = argument_count();
9b693ed74c13 8040920: Uninitialised memory in hotspot/src/share/vm/code/dependencies.cpp
morris
parents: 24484
diff changeset
   848
  GrowableArray<DepArgument>* args = new GrowableArray<DepArgument>(nargs);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   849
  for (int j = 0; j < nargs; j++) {
30296
95baefac8485 8057967: CallSite dependency tracking scales devastatingly poorly
vlivanov
parents: 30195
diff changeset
   850
    if (is_oop_argument(j)) {
25936
9b693ed74c13 8040920: Uninitialised memory in hotspot/src/share/vm/code/dependencies.cpp
morris
parents: 24484
diff changeset
   851
      args->push(argument_oop(j));
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   852
    } else {
25936
9b693ed74c13 8040920: Uninitialised memory in hotspot/src/share/vm/code/dependencies.cpp
morris
parents: 24484
diff changeset
   853
      args->push(argument(j));
13965
fe09056af6ae 8000232: NPG: SIGSEGV in Dependencies::DepStream::check_klass_dependency on solaris-x64
vlivanov
parents: 13743
diff changeset
   854
    }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   855
  }
25936
9b693ed74c13 8040920: Uninitialised memory in hotspot/src/share/vm/code/dependencies.cpp
morris
parents: 24484
diff changeset
   856
  int argslen = args->length();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   857
  if (_deps != NULL && _deps->log() != NULL) {
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   858
    if (ciEnv::current() != NULL) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   859
      Dependencies::write_dependency_to(_deps->log(), type(), args, witness);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   860
    } else {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   861
      // Treat the CompileLog as an xmlstream instead
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   862
      Dependencies::write_dependency_to((xmlStream*)_deps->log(), type(), args, witness);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   863
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   864
  } else {
25936
9b693ed74c13 8040920: Uninitialised memory in hotspot/src/share/vm/code/dependencies.cpp
morris
parents: 24484
diff changeset
   865
    Dependencies::write_dependency_to(xtty, type(), args, witness);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   866
  }
25936
9b693ed74c13 8040920: Uninitialised memory in hotspot/src/share/vm/code/dependencies.cpp
morris
parents: 24484
diff changeset
   867
  guarantee(argslen == args->length(), "args array cannot grow inside nested ResoureMark scope");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   868
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   869
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   870
void Dependencies::DepStream::print_dependency(Klass* witness, bool verbose, outputStream* st) {
25936
9b693ed74c13 8040920: Uninitialised memory in hotspot/src/share/vm/code/dependencies.cpp
morris
parents: 24484
diff changeset
   871
  ResourceMark rm;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   872
  int nargs = argument_count();
25936
9b693ed74c13 8040920: Uninitialised memory in hotspot/src/share/vm/code/dependencies.cpp
morris
parents: 24484
diff changeset
   873
  GrowableArray<DepArgument>* args = new GrowableArray<DepArgument>(nargs);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   874
  for (int j = 0; j < nargs; j++) {
30296
95baefac8485 8057967: CallSite dependency tracking scales devastatingly poorly
vlivanov
parents: 30195
diff changeset
   875
    if (is_oop_argument(j)) {
26914
a270e0fac50e 8058578: -XX:+TraceDependencies is broken for call_site_target_value dependency type
vlivanov
parents: 25936
diff changeset
   876
      args->push(argument_oop(j));
a270e0fac50e 8058578: -XX:+TraceDependencies is broken for call_site_target_value dependency type
vlivanov
parents: 25936
diff changeset
   877
    } else {
a270e0fac50e 8058578: -XX:+TraceDependencies is broken for call_site_target_value dependency type
vlivanov
parents: 25936
diff changeset
   878
      args->push(argument(j));
a270e0fac50e 8058578: -XX:+TraceDependencies is broken for call_site_target_value dependency type
vlivanov
parents: 25936
diff changeset
   879
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   880
  }
25936
9b693ed74c13 8040920: Uninitialised memory in hotspot/src/share/vm/code/dependencies.cpp
morris
parents: 24484
diff changeset
   881
  int argslen = args->length();
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   882
  Dependencies::print_dependency(type(), args, witness, st);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   883
  if (verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   884
    if (_code != NULL) {
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   885
      st->print("  code: ");
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   886
      _code->print_value_on(st);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31037
diff changeset
   887
      st->cr();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   888
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   889
  }
25936
9b693ed74c13 8040920: Uninitialised memory in hotspot/src/share/vm/code/dependencies.cpp
morris
parents: 24484
diff changeset
   890
  guarantee(argslen == args->length(), "args array cannot grow inside nested ResoureMark scope");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   891
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   892
489c9b5090e2 Initial load
duke
parents:
diff changeset
   893
489c9b5090e2 Initial load
duke
parents:
diff changeset
   894
/// Dependency stream support (decodes dependencies from an nmethod):
489c9b5090e2 Initial load
duke
parents:
diff changeset
   895
489c9b5090e2 Initial load
duke
parents:
diff changeset
   896
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   897
void Dependencies::DepStream::initial_asserts(size_t byte_limit) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   898
  assert(must_be_in_vm(), "raw oops here");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   899
  _byte_limit = byte_limit;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   900
  _type       = (DepType)(end_marker-1);  // defeat "already at end" assert
489c9b5090e2 Initial load
duke
parents:
diff changeset
   901
  assert((_code!=NULL) + (_deps!=NULL) == 1, "one or t'other");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   902
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   903
#endif //ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   904
489c9b5090e2 Initial load
duke
parents:
diff changeset
   905
bool Dependencies::DepStream::next() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   906
  assert(_type != end_marker, "already at end");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   907
  if (_bytes.position() == 0 && _code != NULL
489c9b5090e2 Initial load
duke
parents:
diff changeset
   908
      && _code->dependencies_size() == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   909
    // Method has no dependencies at all.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   910
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   911
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   912
  int code_byte = (_bytes.read_byte() & 0xFF);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   913
  if (code_byte == end_marker) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   914
    DEBUG_ONLY(_type = end_marker);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   915
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   916
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   917
    int ctxk_bit = (code_byte & Dependencies::default_context_type_bit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   918
    code_byte -= ctxk_bit;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   919
    DepType dept = (DepType)code_byte;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   920
    _type = dept;
10503
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10265
diff changeset
   921
    Dependencies::check_valid_dependency_type(dept);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   922
    int stride = _dep_args[dept];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   923
    assert(stride == dep_args(dept), "sanity");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   924
    int skipj = -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   925
    if (ctxk_bit != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   926
      skipj = 0;  // currently the only context argument is at zero
489c9b5090e2 Initial load
duke
parents:
diff changeset
   927
      assert(skipj == dep_context_arg(dept), "zero arg always ctxk");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   928
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   929
    for (int j = 0; j < stride; j++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   930
      _xi[j] = (j == skipj)? 0: _bytes.read_int();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   931
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   932
    DEBUG_ONLY(_xi[stride] = -1);   // help detect overruns
489c9b5090e2 Initial load
duke
parents:
diff changeset
   933
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   934
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   935
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   936
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   937
inline Metadata* Dependencies::DepStream::recorded_metadata_at(int i) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   938
  Metadata* o = NULL;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   939
  if (_code != NULL) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   940
    o = _code->metadata_at(i);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   941
  } else {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   942
    o = _deps->oop_recorder()->metadata_at(i);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   943
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   944
  return o;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   945
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   946
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   947
inline oop Dependencies::DepStream::recorded_oop_at(int i) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   948
  return (_code != NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   949
         ? _code->oop_at(i)
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   950
    : JNIHandles::resolve(_deps->oop_recorder()->oop_at(i));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   951
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   952
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   953
Metadata* Dependencies::DepStream::argument(int i) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   954
  Metadata* result = recorded_metadata_at(argument_index(i));
13965
fe09056af6ae 8000232: NPG: SIGSEGV in Dependencies::DepStream::check_klass_dependency on solaris-x64
vlivanov
parents: 13743
diff changeset
   955
fe09056af6ae 8000232: NPG: SIGSEGV in Dependencies::DepStream::check_klass_dependency on solaris-x64
vlivanov
parents: 13743
diff changeset
   956
  if (result == NULL) { // Explicit context argument can be compressed
fe09056af6ae 8000232: NPG: SIGSEGV in Dependencies::DepStream::check_klass_dependency on solaris-x64
vlivanov
parents: 13743
diff changeset
   957
    int ctxkj = dep_context_arg(type());  // -1 if no explicit context arg
fe09056af6ae 8000232: NPG: SIGSEGV in Dependencies::DepStream::check_klass_dependency on solaris-x64
vlivanov
parents: 13743
diff changeset
   958
    if (ctxkj >= 0 && i == ctxkj && ctxkj+1 < argument_count()) {
fe09056af6ae 8000232: NPG: SIGSEGV in Dependencies::DepStream::check_klass_dependency on solaris-x64
vlivanov
parents: 13743
diff changeset
   959
      result = ctxk_encoded_as_null(type(), argument(ctxkj+1));
fe09056af6ae 8000232: NPG: SIGSEGV in Dependencies::DepStream::check_klass_dependency on solaris-x64
vlivanov
parents: 13743
diff changeset
   960
    }
fe09056af6ae 8000232: NPG: SIGSEGV in Dependencies::DepStream::check_klass_dependency on solaris-x64
vlivanov
parents: 13743
diff changeset
   961
  }
fe09056af6ae 8000232: NPG: SIGSEGV in Dependencies::DepStream::check_klass_dependency on solaris-x64
vlivanov
parents: 13743
diff changeset
   962
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   963
  assert(result == NULL || result->is_klass() || result->is_method(), "must be");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   964
  return result;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   965
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   966
22506
0759c126204d 7194669: CodeCache::mark_for_deoptimization should avoid verifying dependencies multiple times
anoll
parents: 20391
diff changeset
   967
/**
0759c126204d 7194669: CodeCache::mark_for_deoptimization should avoid verifying dependencies multiple times
anoll
parents: 20391
diff changeset
   968
 * Returns a unique identifier for each dependency argument.
0759c126204d 7194669: CodeCache::mark_for_deoptimization should avoid verifying dependencies multiple times
anoll
parents: 20391
diff changeset
   969
 */
0759c126204d 7194669: CodeCache::mark_for_deoptimization should avoid verifying dependencies multiple times
anoll
parents: 20391
diff changeset
   970
uintptr_t Dependencies::DepStream::get_identifier(int i) {
30296
95baefac8485 8057967: CallSite dependency tracking scales devastatingly poorly
vlivanov
parents: 30195
diff changeset
   971
  if (is_oop_argument(i)) {
22506
0759c126204d 7194669: CodeCache::mark_for_deoptimization should avoid verifying dependencies multiple times
anoll
parents: 20391
diff changeset
   972
    return (uintptr_t)(oopDesc*)argument_oop(i);
0759c126204d 7194669: CodeCache::mark_for_deoptimization should avoid verifying dependencies multiple times
anoll
parents: 20391
diff changeset
   973
  } else {
0759c126204d 7194669: CodeCache::mark_for_deoptimization should avoid verifying dependencies multiple times
anoll
parents: 20391
diff changeset
   974
    return (uintptr_t)argument(i);
0759c126204d 7194669: CodeCache::mark_for_deoptimization should avoid verifying dependencies multiple times
anoll
parents: 20391
diff changeset
   975
  }
0759c126204d 7194669: CodeCache::mark_for_deoptimization should avoid verifying dependencies multiple times
anoll
parents: 20391
diff changeset
   976
}
0759c126204d 7194669: CodeCache::mark_for_deoptimization should avoid verifying dependencies multiple times
anoll
parents: 20391
diff changeset
   977
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   978
oop Dependencies::DepStream::argument_oop(int i) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   979
  oop result = recorded_oop_at(argument_index(i));
46968
9119841280f4 8160399: is_oop_or_null involves undefined behavior
coleenp
parents: 46672
diff changeset
   980
  assert(oopDesc::is_oop_or_null(result), "must be");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   981
  return result;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   982
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   983
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   984
Klass* Dependencies::DepStream::context_type() {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   985
  assert(must_be_in_vm(), "raw oops here");
10503
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10265
diff changeset
   986
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10265
diff changeset
   987
  // Most dependencies have an explicit context type argument.
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10265
diff changeset
   988
  {
13965
fe09056af6ae 8000232: NPG: SIGSEGV in Dependencies::DepStream::check_klass_dependency on solaris-x64
vlivanov
parents: 13743
diff changeset
   989
    int ctxkj = dep_context_arg(type());  // -1 if no explicit context arg
10503
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10265
diff changeset
   990
    if (ctxkj >= 0) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   991
      Metadata* k = argument(ctxkj);
13965
fe09056af6ae 8000232: NPG: SIGSEGV in Dependencies::DepStream::check_klass_dependency on solaris-x64
vlivanov
parents: 13743
diff changeset
   992
      assert(k != NULL && k->is_klass(), "type check");
fe09056af6ae 8000232: NPG: SIGSEGV in Dependencies::DepStream::check_klass_dependency on solaris-x64
vlivanov
parents: 13743
diff changeset
   993
      return (Klass*)k;
10503
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10265
diff changeset
   994
    }
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10265
diff changeset
   995
  }
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10265
diff changeset
   996
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10265
diff changeset
   997
  // Some dependencies are using the klass of the first object
30296
95baefac8485 8057967: CallSite dependency tracking scales devastatingly poorly
vlivanov
parents: 30195
diff changeset
   998
  // argument as implicit context type.
10503
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10265
diff changeset
   999
  {
13965
fe09056af6ae 8000232: NPG: SIGSEGV in Dependencies::DepStream::check_klass_dependency on solaris-x64
vlivanov
parents: 13743
diff changeset
  1000
    int ctxkj = dep_implicit_context_arg(type());
10503
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10265
diff changeset
  1001
    if (ctxkj >= 0) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1002
      Klass* k = argument_oop(ctxkj)->klass();
13965
fe09056af6ae 8000232: NPG: SIGSEGV in Dependencies::DepStream::check_klass_dependency on solaris-x64
vlivanov
parents: 13743
diff changeset
  1003
      assert(k != NULL && k->is_klass(), "type check");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1004
      return (Klass*) k;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1005
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1006
  }
10503
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10265
diff changeset
  1007
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10265
diff changeset
  1008
  // And some dependencies don't have a context type at all,
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10265
diff changeset
  1009
  // e.g. evol_method.
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10265
diff changeset
  1010
  return NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1011
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1012
22506
0759c126204d 7194669: CodeCache::mark_for_deoptimization should avoid verifying dependencies multiple times
anoll
parents: 20391
diff changeset
  1013
// ----------------- DependencySignature --------------------------------------
23187
0f438571f278 8035946: Use ResourceHashtable for dependency checking
anoll
parents: 22921
diff changeset
  1014
bool DependencySignature::equals(DependencySignature const& s1, DependencySignature const& s2) {
0f438571f278 8035946: Use ResourceHashtable for dependency checking
anoll
parents: 22921
diff changeset
  1015
  if ((s1.type() != s2.type()) || (s1.args_count() != s2.args_count())) {
22506
0759c126204d 7194669: CodeCache::mark_for_deoptimization should avoid verifying dependencies multiple times
anoll
parents: 20391
diff changeset
  1016
    return false;
0759c126204d 7194669: CodeCache::mark_for_deoptimization should avoid verifying dependencies multiple times
anoll
parents: 20391
diff changeset
  1017
  }
0759c126204d 7194669: CodeCache::mark_for_deoptimization should avoid verifying dependencies multiple times
anoll
parents: 20391
diff changeset
  1018
23187
0f438571f278 8035946: Use ResourceHashtable for dependency checking
anoll
parents: 22921
diff changeset
  1019
  for (int i = 0; i < s1.args_count(); i++) {
0f438571f278 8035946: Use ResourceHashtable for dependency checking
anoll
parents: 22921
diff changeset
  1020
    if (s1.arg(i) != s2.arg(i)) {
22506
0759c126204d 7194669: CodeCache::mark_for_deoptimization should avoid verifying dependencies multiple times
anoll
parents: 20391
diff changeset
  1021
      return false;
0759c126204d 7194669: CodeCache::mark_for_deoptimization should avoid verifying dependencies multiple times
anoll
parents: 20391
diff changeset
  1022
    }
0759c126204d 7194669: CodeCache::mark_for_deoptimization should avoid verifying dependencies multiple times
anoll
parents: 20391
diff changeset
  1023
  }
0759c126204d 7194669: CodeCache::mark_for_deoptimization should avoid verifying dependencies multiple times
anoll
parents: 20391
diff changeset
  1024
  return true;
0759c126204d 7194669: CodeCache::mark_for_deoptimization should avoid verifying dependencies multiple times
anoll
parents: 20391
diff changeset
  1025
}
0759c126204d 7194669: CodeCache::mark_for_deoptimization should avoid verifying dependencies multiple times
anoll
parents: 20391
diff changeset
  1026
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1027
/// Checking dependencies:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1028
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1029
// This hierarchy walker inspects subtypes of a given type,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1030
// trying to find a "bad" class which breaks a dependency.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1031
// Such a class is called a "witness" to the broken dependency.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1032
// While searching around, we ignore "participants", which
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1033
// are already known to the dependency.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1034
class ClassHierarchyWalker {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1035
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1036
  enum { PARTICIPANT_LIMIT = 3 };
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1037
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1038
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1039
  // optional method descriptor to check for:
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
  1040
  Symbol* _name;
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
  1041
  Symbol* _signature;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1042
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1043
  // special classes which are not allowed to be witnesses:
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1044
  Klass*    _participants[PARTICIPANT_LIMIT+1];
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1045
  int       _num_participants;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1046
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1047
  // cache of method lookups
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1048
  Method* _found_methods[PARTICIPANT_LIMIT+1];
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1049
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1050
  // if non-zero, tells how many witnesses to convert to participants
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1051
  int       _record_witnesses;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1052
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1053
  void initialize(Klass* participant) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1054
    _record_witnesses = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1055
    _participants[0]  = participant;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1056
    _found_methods[0] = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1057
    _num_participants = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1058
    if (participant != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1059
      // Terminating NULL.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1060
      _participants[1] = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1061
      _found_methods[1] = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1062
      _num_participants = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1063
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1064
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1065
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1066
  void initialize_from_method(Method* m) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1067
    assert(m != NULL && m->is_method(), "sanity");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1068
    _name      = m->name();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1069
    _signature = m->signature();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1070
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1071
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1072
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1073
  // The walker is initialized to recognize certain methods and/or types
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1074
  // as friendly participants.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1075
  ClassHierarchyWalker(Klass* participant, Method* m) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1076
    initialize_from_method(m);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1077
    initialize(participant);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1078
  }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1079
  ClassHierarchyWalker(Method* m) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1080
    initialize_from_method(m);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1081
    initialize(NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1082
  }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1083
  ClassHierarchyWalker(Klass* participant = NULL) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1084
    _name      = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1085
    _signature = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1086
    initialize(participant);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1087
  }
49772
10041d61f50c 8190877: Better handling of abstract classes
thartmann
parents: 49658
diff changeset
  1088
  ClassHierarchyWalker(Klass* participants[], int num_participants) {
10041d61f50c 8190877: Better handling of abstract classes
thartmann
parents: 49658
diff changeset
  1089
    _name      = NULL;
10041d61f50c 8190877: Better handling of abstract classes
thartmann
parents: 49658
diff changeset
  1090
    _signature = NULL;
10041d61f50c 8190877: Better handling of abstract classes
thartmann
parents: 49658
diff changeset
  1091
    initialize(NULL);
10041d61f50c 8190877: Better handling of abstract classes
thartmann
parents: 49658
diff changeset
  1092
    for (int i = 0; i < num_participants; ++i) {
10041d61f50c 8190877: Better handling of abstract classes
thartmann
parents: 49658
diff changeset
  1093
      add_participant(participants[i]);
10041d61f50c 8190877: Better handling of abstract classes
thartmann
parents: 49658
diff changeset
  1094
    }
10041d61f50c 8190877: Better handling of abstract classes
thartmann
parents: 49658
diff changeset
  1095
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1096
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1097
  // This is common code for two searches:  One for concrete subtypes,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1098
  // the other for concrete method implementations and overrides.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1099
  bool doing_subtype_search() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1100
    return _name == NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1101
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1102
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1103
  int num_participants() { return _num_participants; }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1104
  Klass* participant(int n) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1105
    assert((uint)n <= (uint)_num_participants, "oob");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1106
    return _participants[n];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1107
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1108
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1109
  // Note:  If n==num_participants, returns NULL.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1110
  Method* found_method(int n) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1111
    assert((uint)n <= (uint)_num_participants, "oob");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1112
    Method* fm = _found_methods[n];
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1113
    assert(n == _num_participants || fm != NULL, "proper usage");
30195
fff35af9b018 8069263: assert(fm == NULL || fm->method_holder() == _participants[n]) failed: sanity
roland
parents: 29081
diff changeset
  1114
    if (fm != NULL && fm->method_holder() != _participants[n]) {
fff35af9b018 8069263: assert(fm == NULL || fm->method_holder() == _participants[n]) failed: sanity
roland
parents: 29081
diff changeset
  1115
      // Default methods from interfaces can be added to classes. In
fff35af9b018 8069263: assert(fm == NULL || fm->method_holder() == _participants[n]) failed: sanity
roland
parents: 29081
diff changeset
  1116
      // that case the holder of the method is not the class but the
fff35af9b018 8069263: assert(fm == NULL || fm->method_holder() == _participants[n]) failed: sanity
roland
parents: 29081
diff changeset
  1117
      // interface where it's defined.
fff35af9b018 8069263: assert(fm == NULL || fm->method_holder() == _participants[n]) failed: sanity
roland
parents: 29081
diff changeset
  1118
      assert(fm->is_default_method(), "sanity");
fff35af9b018 8069263: assert(fm == NULL || fm->method_holder() == _participants[n]) failed: sanity
roland
parents: 29081
diff changeset
  1119
      return NULL;
fff35af9b018 8069263: assert(fm == NULL || fm->method_holder() == _participants[n]) failed: sanity
roland
parents: 29081
diff changeset
  1120
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1121
    return fm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1122
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1123
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1124
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1125
  // Assert that m is inherited into ctxk, without intervening overrides.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1126
  // (May return true even if this is not true, in corner cases where we punt.)
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1127
  bool check_method_context(Klass* ctxk, Method* m) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1128
    if (m->method_holder() == ctxk)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1129
      return true;  // Quick win.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1130
    if (m->is_private())
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1131
      return false; // Quick lose.  Should not happen.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1132
    if (!(m->is_public() || m->is_protected()))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1133
      // The override story is complex when packages get involved.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1134
      return true;  // Must punt the assertion to true.
40362
94addd7cfa10 8162477: [JVMCI] assert(wf.check_method_context(ctxk, m)) failed: proper context
never
parents: 37248
diff changeset
  1135
    Method* lm = ctxk->lookup_method(m->name(), m->signature());
94addd7cfa10 8162477: [JVMCI] assert(wf.check_method_context(ctxk, m)) failed: proper context
never
parents: 37248
diff changeset
  1136
    if (lm == NULL && ctxk->is_instance_klass()) {
20391
7b146c5ebb18 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 18439
diff changeset
  1137
      // It might be an interface method
40362
94addd7cfa10 8162477: [JVMCI] assert(wf.check_method_context(ctxk, m)) failed: proper context
never
parents: 37248
diff changeset
  1138
      lm = InstanceKlass::cast(ctxk)->lookup_method_in_ordered_interfaces(m->name(),
94addd7cfa10 8162477: [JVMCI] assert(wf.check_method_context(ctxk, m)) failed: proper context
never
parents: 37248
diff changeset
  1139
                                                                          m->signature());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1140
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1141
    if (lm == m)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1142
      // Method m is inherited into ctxk.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1143
      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1144
    if (lm != NULL) {
10984
bca73db4935e 7105305: assert check_method_context proper context
never
parents: 10503
diff changeset
  1145
      if (!(lm->is_public() || lm->is_protected())) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1146
        // Method is [package-]private, so the override story is complex.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1147
        return true;  // Must punt the assertion to true.
10984
bca73db4935e 7105305: assert check_method_context proper context
never
parents: 10503
diff changeset
  1148
      }
bca73db4935e 7105305: assert check_method_context proper context
never
parents: 10503
diff changeset
  1149
      if (lm->is_static()) {
bca73db4935e 7105305: assert check_method_context proper context
never
parents: 10503
diff changeset
  1150
        // Static methods don't override non-static so punt
bca73db4935e 7105305: assert check_method_context proper context
never
parents: 10503
diff changeset
  1151
        return true;
bca73db4935e 7105305: assert check_method_context proper context
never
parents: 10503
diff changeset
  1152
      }
40362
94addd7cfa10 8162477: [JVMCI] assert(wf.check_method_context(ctxk, m)) failed: proper context
never
parents: 37248
diff changeset
  1153
      if (!Dependencies::is_concrete_method(lm, ctxk) &&
94addd7cfa10 8162477: [JVMCI] assert(wf.check_method_context(ctxk, m)) failed: proper context
never
parents: 37248
diff changeset
  1154
          !Dependencies::is_concrete_method(m, ctxk)) {
94addd7cfa10 8162477: [JVMCI] assert(wf.check_method_context(ctxk, m)) failed: proper context
never
parents: 37248
diff changeset
  1155
        // They are both non-concrete
94addd7cfa10 8162477: [JVMCI] assert(wf.check_method_context(ctxk, m)) failed: proper context
never
parents: 37248
diff changeset
  1156
        if (lm->method_holder()->is_subtype_of(m->method_holder())) {
94addd7cfa10 8162477: [JVMCI] assert(wf.check_method_context(ctxk, m)) failed: proper context
never
parents: 37248
diff changeset
  1157
          // Method m is overridden by lm, but both are non-concrete.
94addd7cfa10 8162477: [JVMCI] assert(wf.check_method_context(ctxk, m)) failed: proper context
never
parents: 37248
diff changeset
  1158
          return true;
94addd7cfa10 8162477: [JVMCI] assert(wf.check_method_context(ctxk, m)) failed: proper context
never
parents: 37248
diff changeset
  1159
        }
94addd7cfa10 8162477: [JVMCI] assert(wf.check_method_context(ctxk, m)) failed: proper context
never
parents: 37248
diff changeset
  1160
        if (lm->method_holder()->is_interface() && m->method_holder()->is_interface() &&
94addd7cfa10 8162477: [JVMCI] assert(wf.check_method_context(ctxk, m)) failed: proper context
never
parents: 37248
diff changeset
  1161
            ctxk->is_subtype_of(m->method_holder()) && ctxk->is_subtype_of(lm->method_holder())) {
94addd7cfa10 8162477: [JVMCI] assert(wf.check_method_context(ctxk, m)) failed: proper context
never
parents: 37248
diff changeset
  1162
          // Interface method defined in multiple super interfaces
94addd7cfa10 8162477: [JVMCI] assert(wf.check_method_context(ctxk, m)) failed: proper context
never
parents: 37248
diff changeset
  1163
          return true;
94addd7cfa10 8162477: [JVMCI] assert(wf.check_method_context(ctxk, m)) failed: proper context
never
parents: 37248
diff changeset
  1164
        }
94addd7cfa10 8162477: [JVMCI] assert(wf.check_method_context(ctxk, m)) failed: proper context
never
parents: 37248
diff changeset
  1165
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1166
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1167
    ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1168
    tty->print_cr("Dependency method not found in the associated context:");
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 14391
diff changeset
  1169
    tty->print_cr("  context = %s", ctxk->external_name());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1170
    tty->print(   "  method = "); m->print_short_name(tty); tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1171
    if (lm != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1172
      tty->print( "  found = "); lm->print_short_name(tty); tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1173
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1174
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1175
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1176
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1177
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1178
  void add_participant(Klass* participant) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1179
    assert(_num_participants + _record_witnesses < PARTICIPANT_LIMIT, "oob");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1180
    int np = _num_participants++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1181
    _participants[np] = participant;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1182
    _participants[np+1] = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1183
    _found_methods[np+1] = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1184
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1185
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1186
  void record_witnesses(int add) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1187
    if (add > PARTICIPANT_LIMIT)  add = PARTICIPANT_LIMIT;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1188
    assert(_num_participants + add < PARTICIPANT_LIMIT, "oob");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1189
    _record_witnesses = add;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1190
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1191
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1192
  bool is_witness(Klass* k) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1193
    if (doing_subtype_search()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1194
      return Dependencies::is_concrete_klass(k);
33611
9abd65805e19 8139203: Consistent naming for klass type predicates
coleenp
parents: 33602
diff changeset
  1195
    } else if (!k->is_instance_klass()) {
27700
a402738ebfcf 8050079: crash while compiling java.lang.ref.Finalizer::runFinalizer
thartmann
parents: 26914
diff changeset
  1196
      return false; // no methods to find in an array type
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1197
    } else {
50735
2f2af62dfac7 8010319: Implementation of JEP 181: Nest-Based Access Control
dholmes
parents: 49902
diff changeset
  1198
      // Search class hierarchy first, skipping private implementations
2f2af62dfac7 8010319: Implementation of JEP 181: Nest-Based Access Control
dholmes
parents: 49902
diff changeset
  1199
      // as they never override any inherited methods
2f2af62dfac7 8010319: Implementation of JEP 181: Nest-Based Access Control
dholmes
parents: 49902
diff changeset
  1200
      Method* m = InstanceKlass::cast(k)->find_instance_method(_name, _signature, Klass::skip_private);
28514
da53c1ffc837 8064524: Compiler code generation improvements
drchase
parents: 27700
diff changeset
  1201
      if (!Dependencies::is_concrete_method(m, k)) {
49772
10041d61f50c 8190877: Better handling of abstract classes
thartmann
parents: 49658
diff changeset
  1202
        // Check for re-abstraction of method
10041d61f50c 8190877: Better handling of abstract classes
thartmann
parents: 49658
diff changeset
  1203
        if (!k->is_interface() && m != NULL && m->is_abstract()) {
10041d61f50c 8190877: Better handling of abstract classes
thartmann
parents: 49658
diff changeset
  1204
          // Found a matching abstract method 'm' in the class hierarchy.
10041d61f50c 8190877: Better handling of abstract classes
thartmann
parents: 49658
diff changeset
  1205
          // This is fine iff 'k' is an abstract class and all concrete subtypes
10041d61f50c 8190877: Better handling of abstract classes
thartmann
parents: 49658
diff changeset
  1206
          // of 'k' override 'm' and are participates of the current search.
10041d61f50c 8190877: Better handling of abstract classes
thartmann
parents: 49658
diff changeset
  1207
          ClassHierarchyWalker wf(_participants, _num_participants);
10041d61f50c 8190877: Better handling of abstract classes
thartmann
parents: 49658
diff changeset
  1208
          Klass* w = wf.find_witness_subtype(k);
10041d61f50c 8190877: Better handling of abstract classes
thartmann
parents: 49658
diff changeset
  1209
          if (w != NULL) {
10041d61f50c 8190877: Better handling of abstract classes
thartmann
parents: 49658
diff changeset
  1210
            Method* wm = InstanceKlass::cast(w)->find_instance_method(_name, _signature);
10041d61f50c 8190877: Better handling of abstract classes
thartmann
parents: 49658
diff changeset
  1211
            if (!Dependencies::is_concrete_method(wm, w)) {
10041d61f50c 8190877: Better handling of abstract classes
thartmann
parents: 49658
diff changeset
  1212
              // Found a concrete subtype 'w' which does not override abstract method 'm'.
10041d61f50c 8190877: Better handling of abstract classes
thartmann
parents: 49658
diff changeset
  1213
              // Bail out because 'm' could be called with 'w' as receiver (leading to an
10041d61f50c 8190877: Better handling of abstract classes
thartmann
parents: 49658
diff changeset
  1214
              // AbstractMethodError) and thus the method we are looking for is not unique.
10041d61f50c 8190877: Better handling of abstract classes
thartmann
parents: 49658
diff changeset
  1215
              _found_methods[_num_participants] = m;
10041d61f50c 8190877: Better handling of abstract classes
thartmann
parents: 49658
diff changeset
  1216
              return true;
10041d61f50c 8190877: Better handling of abstract classes
thartmann
parents: 49658
diff changeset
  1217
            }
10041d61f50c 8190877: Better handling of abstract classes
thartmann
parents: 49658
diff changeset
  1218
          }
10041d61f50c 8190877: Better handling of abstract classes
thartmann
parents: 49658
diff changeset
  1219
        }
28514
da53c1ffc837 8064524: Compiler code generation improvements
drchase
parents: 27700
diff changeset
  1220
        // Check interface defaults also, if any exist.
da53c1ffc837 8064524: Compiler code generation improvements
drchase
parents: 27700
diff changeset
  1221
        Array<Method*>* default_methods = InstanceKlass::cast(k)->default_methods();
da53c1ffc837 8064524: Compiler code generation improvements
drchase
parents: 27700
diff changeset
  1222
        if (default_methods == NULL)
da53c1ffc837 8064524: Compiler code generation improvements
drchase
parents: 27700
diff changeset
  1223
            return false;
da53c1ffc837 8064524: Compiler code generation improvements
drchase
parents: 27700
diff changeset
  1224
        m = InstanceKlass::cast(k)->find_method(default_methods, _name, _signature);
da53c1ffc837 8064524: Compiler code generation improvements
drchase
parents: 27700
diff changeset
  1225
        if (!Dependencies::is_concrete_method(m, NULL))
da53c1ffc837 8064524: Compiler code generation improvements
drchase
parents: 27700
diff changeset
  1226
            return false;
da53c1ffc837 8064524: Compiler code generation improvements
drchase
parents: 27700
diff changeset
  1227
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1228
      _found_methods[_num_participants] = m;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1229
      // Note:  If add_participant(k) is called,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1230
      // the method m will already be memoized for it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1231
      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1232
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1233
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1234
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1235
  bool is_participant(Klass* k) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1236
    if (k == _participants[0]) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1237
      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1238
    } else if (_num_participants <= 1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1239
      return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1240
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1241
      return in_list(k, &_participants[1]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1242
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1243
  }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1244
  bool ignore_witness(Klass* witness) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1245
    if (_record_witnesses == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1246
      return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1247
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1248
      --_record_witnesses;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1249
      add_participant(witness);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1250
      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1251
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1252
  }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1253
  static bool in_list(Klass* x, Klass** list) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1254
    for (int i = 0; ; i++) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1255
      Klass* y = list[i];
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1256
      if (y == NULL)  break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1257
      if (y == x)  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1258
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1259
    return false;  // not in list
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1260
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1261
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1262
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1263
  // the actual search method:
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1264
  Klass* find_witness_anywhere(Klass* context_type,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1265
                                 bool participants_hide_witnesses,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1266
                                 bool top_level_call = true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1267
  // the spot-checking version:
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1268
  Klass* find_witness_in(KlassDepChange& changes,
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1269
                         Klass* context_type,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1270
                           bool participants_hide_witnesses);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1271
 public:
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1272
  Klass* find_witness_subtype(Klass* context_type, KlassDepChange* changes = NULL) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1273
    assert(doing_subtype_search(), "must set up a subtype search");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1274
    // When looking for unexpected concrete types,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1275
    // do not look beneath expected ones.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1276
    const bool participants_hide_witnesses = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1277
    // CX > CC > C' is OK, even if C' is new.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1278
    // CX > { CC,  C' } is not OK if C' is new, and C' is the witness.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1279
    if (changes != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1280
      return find_witness_in(*changes, context_type, participants_hide_witnesses);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1281
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1282
      return find_witness_anywhere(context_type, participants_hide_witnesses);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1283
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1284
  }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1285
  Klass* find_witness_definer(Klass* context_type, KlassDepChange* changes = NULL) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1286
    assert(!doing_subtype_search(), "must set up a method definer search");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1287
    // When looking for unexpected concrete methods,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1288
    // look beneath expected ones, to see if there are overrides.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1289
    const bool participants_hide_witnesses = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1290
    // CX.m > CC.m > C'.m is not OK, if C'.m is new, and C' is the witness.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1291
    if (changes != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1292
      return find_witness_in(*changes, context_type, !participants_hide_witnesses);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1293
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1294
      return find_witness_anywhere(context_type, !participants_hide_witnesses);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1295
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1296
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1297
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1298
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1299
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1300
static int deps_find_witness_calls = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1301
static int deps_find_witness_steps = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1302
static int deps_find_witness_recursions = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1303
static int deps_find_witness_singles = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1304
static int deps_find_witness_print = 0; // set to -1 to force a final print
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1305
static bool count_find_witness_calls() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1306
  if (TraceDependencies || LogCompilation) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1307
    int pcount = deps_find_witness_print + 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1308
    bool final_stats      = (pcount == 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1309
    bool initial_call     = (pcount == 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1310
    bool occasional_print = ((pcount & ((1<<10) - 1)) == 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1311
    if (pcount < 0)  pcount = 1; // crude overflow protection
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1312
    deps_find_witness_print = pcount;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1313
    if (VerifyDependencies && initial_call) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1314
      tty->print_cr("Warning:  TraceDependencies results may be inflated by VerifyDependencies");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1315
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1316
    if (occasional_print || final_stats) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1317
      // Every now and then dump a little info about dependency searching.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1318
      if (xtty != NULL) {
4754
8aef16f24e16 6614597: Performance variability in jvm2008 xml.validation
kvn
parents: 4493
diff changeset
  1319
       ttyLocker ttyl;
8aef16f24e16 6614597: Performance variability in jvm2008 xml.validation
kvn
parents: 4493
diff changeset
  1320
       xtty->elem("deps_find_witness calls='%d' steps='%d' recursions='%d' singles='%d'",
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1321
                   deps_find_witness_calls,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1322
                   deps_find_witness_steps,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1323
                   deps_find_witness_recursions,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1324
                   deps_find_witness_singles);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1325
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1326
      if (final_stats || (TraceDependencies && WizardMode)) {
4754
8aef16f24e16 6614597: Performance variability in jvm2008 xml.validation
kvn
parents: 4493
diff changeset
  1327
        ttyLocker ttyl;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1328
        tty->print_cr("Dependency check (find_witness) "
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1329
                      "calls=%d, steps=%d (avg=%.1f), recursions=%d, singles=%d",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1330
                      deps_find_witness_calls,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1331
                      deps_find_witness_steps,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1332
                      (double)deps_find_witness_steps / deps_find_witness_calls,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1333
                      deps_find_witness_recursions,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1334
                      deps_find_witness_singles);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1335
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1336
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1337
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1338
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1339
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1340
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1341
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1342
#define count_find_witness_calls() (0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1343
#endif //PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1344
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1345
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1346
Klass* ClassHierarchyWalker::find_witness_in(KlassDepChange& changes,
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1347
                                               Klass* context_type,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1348
                                               bool participants_hide_witnesses) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1349
  assert(changes.involves_context(context_type), "irrelevant dependency");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1350
  Klass* new_type = changes.new_type();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1351
18073
f02460441ddc 8014431: cleanup warnings indicated by the -Wunused-value compiler option on linux
ccheung
parents: 14490
diff changeset
  1352
  (void)count_find_witness_calls();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1353
  NOT_PRODUCT(deps_find_witness_singles++);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1354
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1355
  // Current thread must be in VM (not native mode, as in CI):
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1356
  assert(must_be_in_vm(), "raw oops here");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1357
  // Must not move the class hierarchy during this check:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1358
  assert_locked_or_safepoint(Compile_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1359
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1360
  int nof_impls = InstanceKlass::cast(context_type)->nof_implementors();
203
2e348cc9121a 6610906: inexplicable IncompatibleClassChangeError
jrose
parents: 1
diff changeset
  1361
  if (nof_impls > 1) {
2e348cc9121a 6610906: inexplicable IncompatibleClassChangeError
jrose
parents: 1
diff changeset
  1362
    // Avoid this case: *I.m > { A.m, C }; B.m > C
2e348cc9121a 6610906: inexplicable IncompatibleClassChangeError
jrose
parents: 1
diff changeset
  1363
    // %%% Until this is fixed more systematically, bail out.
2e348cc9121a 6610906: inexplicable IncompatibleClassChangeError
jrose
parents: 1
diff changeset
  1364
    // See corresponding comment in find_witness_anywhere.
2e348cc9121a 6610906: inexplicable IncompatibleClassChangeError
jrose
parents: 1
diff changeset
  1365
    return context_type;
2e348cc9121a 6610906: inexplicable IncompatibleClassChangeError
jrose
parents: 1
diff changeset
  1366
  }
2e348cc9121a 6610906: inexplicable IncompatibleClassChangeError
jrose
parents: 1
diff changeset
  1367
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1368
  assert(!is_participant(new_type), "only old classes are participants");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1369
  if (participants_hide_witnesses) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1370
    // If the new type is a subtype of a participant, we are done.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1371
    for (int i = 0; i < num_participants(); i++) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1372
      Klass* part = participant(i);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1373
      if (part == NULL)  continue;
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 14391
diff changeset
  1374
      assert(changes.involves_context(part) == new_type->is_subtype_of(part),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1375
             "correct marking of participants, b/c new_type is unique");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1376
      if (changes.involves_context(part)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1377
        // new guy is protected from this check by previous participant
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1378
        return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1379
      }
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
  if (is_witness(new_type) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1384
      !ignore_witness(new_type)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1385
    return new_type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1386
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1387
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1388
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1389
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1390
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1391
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1392
// Walk hierarchy under a context type, looking for unexpected types.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1393
// Do not report participant types, and recursively walk beneath
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1394
// them only if participants_hide_witnesses is false.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1395
// If top_level_call is false, skip testing the context type,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1396
// because the caller has already considered it.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1397
Klass* ClassHierarchyWalker::find_witness_anywhere(Klass* context_type,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1398
                                                     bool participants_hide_witnesses,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1399
                                                     bool top_level_call) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1400
  // Current thread must be in VM (not native mode, as in CI):
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1401
  assert(must_be_in_vm(), "raw oops here");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1402
  // Must not move the class hierarchy during this check:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1403
  assert_locked_or_safepoint(Compile_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1404
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1405
  bool do_counts = count_find_witness_calls();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1406
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1407
  // Check the root of the sub-hierarchy first.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1408
  if (top_level_call) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1409
    if (do_counts) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1410
      NOT_PRODUCT(deps_find_witness_calls++);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1411
      NOT_PRODUCT(deps_find_witness_steps++);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1412
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1413
    if (is_participant(context_type)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1414
      if (participants_hide_witnesses)  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1415
      // else fall through to search loop...
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1416
    } else if (is_witness(context_type) && !ignore_witness(context_type)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1417
      // The context is an abstract class or interface, to start with.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1418
      return context_type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1419
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1420
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1421
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1422
  // Now we must check each implementor and each subclass.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1423
  // Use a short worklist to avoid blowing the stack.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1424
  // Each worklist entry is a *chain* of subklass siblings to process.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1425
  const int CHAINMAX = 100;  // >= 1 + InstanceKlass::implementors_limit
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1426
  Klass* chains[CHAINMAX];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1427
  int    chaini = 0;  // index into worklist
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1428
  Klass* chain;       // scratch variable
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1429
#define ADD_SUBCLASS_CHAIN(k)                     {  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1430
    assert(chaini < CHAINMAX, "oob");                \
27700
a402738ebfcf 8050079: crash while compiling java.lang.ref.Finalizer::runFinalizer
thartmann
parents: 26914
diff changeset
  1431
    chain = k->subklass();                           \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1432
    if (chain != NULL)  chains[chaini++] = chain;    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1433
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1434
  // Look for non-abstract subclasses.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1435
  // (Note:  Interfaces do not have subclasses.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1436
  ADD_SUBCLASS_CHAIN(context_type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1437
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1438
  // If it is an interface, search its direct implementors.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1439
  // (Their subclasses are additional indirect implementors.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1440
  // See InstanceKlass::add_implementor.)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1441
  // (Note:  nof_implementors is always zero for non-interfaces.)
27700
a402738ebfcf 8050079: crash while compiling java.lang.ref.Finalizer::runFinalizer
thartmann
parents: 26914
diff changeset
  1442
  if (top_level_call) {
a402738ebfcf 8050079: crash while compiling java.lang.ref.Finalizer::runFinalizer
thartmann
parents: 26914
diff changeset
  1443
    int nof_impls = InstanceKlass::cast(context_type)->nof_implementors();
a402738ebfcf 8050079: crash while compiling java.lang.ref.Finalizer::runFinalizer
thartmann
parents: 26914
diff changeset
  1444
    if (nof_impls > 1) {
a402738ebfcf 8050079: crash while compiling java.lang.ref.Finalizer::runFinalizer
thartmann
parents: 26914
diff changeset
  1445
      // Avoid this case: *I.m > { A.m, C }; B.m > C
a402738ebfcf 8050079: crash while compiling java.lang.ref.Finalizer::runFinalizer
thartmann
parents: 26914
diff changeset
  1446
      // Here, I.m has 2 concrete implementations, but m appears unique
a402738ebfcf 8050079: crash while compiling java.lang.ref.Finalizer::runFinalizer
thartmann
parents: 26914
diff changeset
  1447
      // as A.m, because the search misses B.m when checking C.
a402738ebfcf 8050079: crash while compiling java.lang.ref.Finalizer::runFinalizer
thartmann
parents: 26914
diff changeset
  1448
      // The inherited method B.m was getting missed by the walker
a402738ebfcf 8050079: crash while compiling java.lang.ref.Finalizer::runFinalizer
thartmann
parents: 26914
diff changeset
  1449
      // when interface 'I' was the starting point.
a402738ebfcf 8050079: crash while compiling java.lang.ref.Finalizer::runFinalizer
thartmann
parents: 26914
diff changeset
  1450
      // %%% Until this is fixed more systematically, bail out.
a402738ebfcf 8050079: crash while compiling java.lang.ref.Finalizer::runFinalizer
thartmann
parents: 26914
diff changeset
  1451
      // (Old CHA had the same limitation.)
a402738ebfcf 8050079: crash while compiling java.lang.ref.Finalizer::runFinalizer
thartmann
parents: 26914
diff changeset
  1452
      return context_type;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1453
    }
27700
a402738ebfcf 8050079: crash while compiling java.lang.ref.Finalizer::runFinalizer
thartmann
parents: 26914
diff changeset
  1454
    if (nof_impls > 0) {
a402738ebfcf 8050079: crash while compiling java.lang.ref.Finalizer::runFinalizer
thartmann
parents: 26914
diff changeset
  1455
      Klass* impl = InstanceKlass::cast(context_type)->implementor();
a402738ebfcf 8050079: crash while compiling java.lang.ref.Finalizer::runFinalizer
thartmann
parents: 26914
diff changeset
  1456
      assert(impl != NULL, "just checking");
a402738ebfcf 8050079: crash while compiling java.lang.ref.Finalizer::runFinalizer
thartmann
parents: 26914
diff changeset
  1457
      // If impl is the same as the context_type, then more than one
a402738ebfcf 8050079: crash while compiling java.lang.ref.Finalizer::runFinalizer
thartmann
parents: 26914
diff changeset
  1458
      // implementor has seen. No exact info in this case.
a402738ebfcf 8050079: crash while compiling java.lang.ref.Finalizer::runFinalizer
thartmann
parents: 26914
diff changeset
  1459
      if (impl == context_type) {
a402738ebfcf 8050079: crash while compiling java.lang.ref.Finalizer::runFinalizer
thartmann
parents: 26914
diff changeset
  1460
        return context_type;  // report an inexact witness to this sad affair
a402738ebfcf 8050079: crash while compiling java.lang.ref.Finalizer::runFinalizer
thartmann
parents: 26914
diff changeset
  1461
      }
a402738ebfcf 8050079: crash while compiling java.lang.ref.Finalizer::runFinalizer
thartmann
parents: 26914
diff changeset
  1462
      if (do_counts)
a402738ebfcf 8050079: crash while compiling java.lang.ref.Finalizer::runFinalizer
thartmann
parents: 26914
diff changeset
  1463
        { NOT_PRODUCT(deps_find_witness_steps++); }
a402738ebfcf 8050079: crash while compiling java.lang.ref.Finalizer::runFinalizer
thartmann
parents: 26914
diff changeset
  1464
      if (is_participant(impl)) {
a402738ebfcf 8050079: crash while compiling java.lang.ref.Finalizer::runFinalizer
thartmann
parents: 26914
diff changeset
  1465
        if (!participants_hide_witnesses) {
a402738ebfcf 8050079: crash while compiling java.lang.ref.Finalizer::runFinalizer
thartmann
parents: 26914
diff changeset
  1466
          ADD_SUBCLASS_CHAIN(impl);
a402738ebfcf 8050079: crash while compiling java.lang.ref.Finalizer::runFinalizer
thartmann
parents: 26914
diff changeset
  1467
        }
a402738ebfcf 8050079: crash while compiling java.lang.ref.Finalizer::runFinalizer
thartmann
parents: 26914
diff changeset
  1468
      } else if (is_witness(impl) && !ignore_witness(impl)) {
a402738ebfcf 8050079: crash while compiling java.lang.ref.Finalizer::runFinalizer
thartmann
parents: 26914
diff changeset
  1469
        return impl;
a402738ebfcf 8050079: crash while compiling java.lang.ref.Finalizer::runFinalizer
thartmann
parents: 26914
diff changeset
  1470
      } else {
12369
48fd3da4025c 7154670: The instanceKlass _implementors[] and _nof_implementors are not needed for non-interface klass.
jiangli
parents: 11440
diff changeset
  1471
        ADD_SUBCLASS_CHAIN(impl);
48fd3da4025c 7154670: The instanceKlass _implementors[] and _nof_implementors are not needed for non-interface klass.
jiangli
parents: 11440
diff changeset
  1472
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1473
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1474
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1475
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1476
  // Recursively process each non-trivial sibling chain.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1477
  while (chaini > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1478
    Klass* chain = chains[--chaini];
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1479
    for (Klass* sub = chain; sub != NULL; sub = sub->next_sibling()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1480
      if (do_counts) { NOT_PRODUCT(deps_find_witness_steps++); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1481
      if (is_participant(sub)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1482
        if (participants_hide_witnesses)  continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1483
        // else fall through to process this guy's subclasses
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1484
      } else if (is_witness(sub) && !ignore_witness(sub)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1485
        return sub;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1486
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1487
      if (chaini < (VerifyDependencies? 2: CHAINMAX)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1488
        // Fast path.  (Partially disabled if VerifyDependencies.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1489
        ADD_SUBCLASS_CHAIN(sub);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1490
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1491
        // Worklist overflow.  Do a recursive call.  Should be rare.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1492
        // The recursive call will have its own worklist, of course.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1493
        // (Note that sub has already been tested, so that there is
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1494
        // no need for the recursive call to re-test.  That's handy,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1495
        // since the recursive call sees sub as the context_type.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1496
        if (do_counts) { NOT_PRODUCT(deps_find_witness_recursions++); }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1497
        Klass* witness = find_witness_anywhere(sub,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1498
                                                 participants_hide_witnesses,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1499
                                                 /*top_level_call=*/ false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1500
        if (witness != NULL)  return witness;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1501
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1502
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1503
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1504
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1505
  // No witness found.  The dependency remains unbroken.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1506
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1507
#undef ADD_SUBCLASS_CHAIN
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1508
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1509
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1510
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1511
bool Dependencies::is_concrete_klass(Klass* k) {
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 14391
diff changeset
  1512
  if (k->is_abstract())  return false;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1513
  // %%% We could treat classes which are concrete but
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1514
  // have not yet been instantiated as virtually abstract.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1515
  // This would require a deoptimization barrier on first instantiation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1516
  //if (k->is_not_instantiated())  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1517
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1518
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1519
28514
da53c1ffc837 8064524: Compiler code generation improvements
drchase
parents: 27700
diff changeset
  1520
bool Dependencies::is_concrete_method(Method* m, Klass * k) {
da53c1ffc837 8064524: Compiler code generation improvements
drchase
parents: 27700
diff changeset
  1521
  // NULL is not a concrete method,
da53c1ffc837 8064524: Compiler code generation improvements
drchase
parents: 27700
diff changeset
  1522
  // statics are irrelevant to virtual call sites,
da53c1ffc837 8064524: Compiler code generation improvements
drchase
parents: 27700
diff changeset
  1523
  // abstract methods are not concrete,
da53c1ffc837 8064524: Compiler code generation improvements
drchase
parents: 27700
diff changeset
  1524
  // overpass (error) methods are not concrete if k is abstract
da53c1ffc837 8064524: Compiler code generation improvements
drchase
parents: 27700
diff changeset
  1525
  //
da53c1ffc837 8064524: Compiler code generation improvements
drchase
parents: 27700
diff changeset
  1526
  // note "true" is conservative answer --
da53c1ffc837 8064524: Compiler code generation improvements
drchase
parents: 27700
diff changeset
  1527
  //     overpass clause is false if k == NULL, implies return true if
da53c1ffc837 8064524: Compiler code generation improvements
drchase
parents: 27700
diff changeset
  1528
  //     answer depends on overpass clause.
da53c1ffc837 8064524: Compiler code generation improvements
drchase
parents: 27700
diff changeset
  1529
  return ! ( m == NULL || m -> is_static() || m -> is_abstract() ||
46630
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 46271
diff changeset
  1530
             (m->is_overpass() && k != NULL && k -> is_abstract()) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1531
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1532
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1533
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1534
Klass* Dependencies::find_finalizable_subclass(Klass* k) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1535
  if (k->is_interface())  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1536
  if (k->has_finalizer()) return k;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1537
  k = k->subklass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1538
  while (k != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1539
    Klass* result = find_finalizable_subclass(k);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1540
    if (result != NULL) return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1541
    k = k->next_sibling();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1542
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1543
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1544
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1545
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1546
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1547
bool Dependencies::is_concrete_klass(ciInstanceKlass* k) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1548
  if (k->is_abstract())  return false;
10984
bca73db4935e 7105305: assert check_method_context proper context
never
parents: 10503
diff changeset
  1549
  // We could also return false if k does not yet appear to be
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1550
  // instantiated, if the VM version supports this distinction also.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1551
  //if (k->is_not_instantiated())  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1552
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1553
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1554
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1555
bool Dependencies::has_finalizable_subclass(ciInstanceKlass* k) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1556
  return k->has_finalizable_subclass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1557
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1558
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1559
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1560
// Any use of the contents (bytecodes) of a method must be
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1561
// marked by an "evol_method" dependency, if those contents
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1562
// can change.  (Note: A method is always dependent on itself.)
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1563
Klass* Dependencies::check_evol_method(Method* m) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1564
  assert(must_be_in_vm(), "raw oops here");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1565
  // Did somebody do a JVMTI RedefineClasses while our backs were turned?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1566
  // Or is there a now a breakpoint?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1567
  // (Assumes compiled code cannot handle bkpts; change if UseFastBreakpoints.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1568
  if (m->is_old()
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1569
      || m->number_of_breakpoints() > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1570
    return m->method_holder();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1571
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1572
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1573
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1574
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1575
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1576
// This is a strong assertion:  It is that the given type
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1577
// has no subtypes whatever.  It is most useful for
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1578
// optimizing checks on reflected types or on array types.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1579
// (Checks on types which are derived from real instances
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1580
// can be optimized more strongly than this, because we
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1581
// know that the checked type comes from a concrete type,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1582
// and therefore we can disregard abstract types.)
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1583
Klass* Dependencies::check_leaf_type(Klass* ctxk) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1584
  assert(must_be_in_vm(), "raw oops here");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1585
  assert_locked_or_safepoint(Compile_lock);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1586
  InstanceKlass* ctx = InstanceKlass::cast(ctxk);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1587
  Klass* sub = ctx->subklass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1588
  if (sub != NULL) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1589
    return sub;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1590
  } else if (ctx->nof_implementors() != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1591
    // if it is an interface, it must be unimplemented
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1592
    // (if it is not an interface, nof_implementors is always zero)
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1593
    Klass* impl = ctx->implementor();
12369
48fd3da4025c 7154670: The instanceKlass _implementors[] and _nof_implementors are not needed for non-interface klass.
jiangli
parents: 11440
diff changeset
  1594
    assert(impl != NULL, "must be set");
48fd3da4025c 7154670: The instanceKlass _implementors[] and _nof_implementors are not needed for non-interface klass.
jiangli
parents: 11440
diff changeset
  1595
    return impl;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1596
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1597
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1598
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1599
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1600
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1601
// Test the assertion that conck is the only concrete subtype* of ctxk.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1602
// The type conck itself is allowed to have have further concrete subtypes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1603
// This allows the compiler to narrow occurrences of ctxk by conck,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1604
// when dealing with the types of actual instances.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1605
Klass* Dependencies::check_abstract_with_unique_concrete_subtype(Klass* ctxk,
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1606
                                                                   Klass* conck,
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1607
                                                                   KlassDepChange* changes) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1608
  ClassHierarchyWalker wf(conck);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1609
  return wf.find_witness_subtype(ctxk, changes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1610
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1611
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1612
// If a non-concrete class has no concrete subtypes, it is not (yet)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1613
// instantiatable.  This can allow the compiler to make some paths go
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1614
// dead, if they are gated by a test of the type.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1615
Klass* Dependencies::check_abstract_with_no_concrete_subtype(Klass* ctxk,
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1616
                                                               KlassDepChange* changes) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1617
  // Find any concrete subtype, with no participants:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1618
  ClassHierarchyWalker wf;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1619
  return wf.find_witness_subtype(ctxk, changes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1620
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1621
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1622
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1623
// If a concrete class has no concrete subtypes, it can always be
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1624
// exactly typed.  This allows the use of a cheaper type test.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1625
Klass* Dependencies::check_concrete_with_no_concrete_subtype(Klass* ctxk,
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1626
                                                               KlassDepChange* changes) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1627
  // Find any concrete subtype, with only the ctxk as participant:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1628
  ClassHierarchyWalker wf(ctxk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1629
  return wf.find_witness_subtype(ctxk, changes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1630
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1631
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1632
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1633
// Find the unique concrete proper subtype of ctxk, or NULL if there
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1634
// is more than one concrete proper subtype.  If there are no concrete
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1635
// proper subtypes, return ctxk itself, whether it is concrete or not.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1636
// The returned subtype is allowed to have have further concrete subtypes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1637
// That is, return CC1 for CX > CC1 > CC2, but NULL for CX > { CC1, CC2 }.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1638
Klass* Dependencies::find_unique_concrete_subtype(Klass* ctxk) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1639
  ClassHierarchyWalker wf(ctxk);   // Ignore ctxk when walking.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1640
  wf.record_witnesses(1);          // Record one other witness when walking.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1641
  Klass* wit = wf.find_witness_subtype(ctxk);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1642
  if (wit != NULL)  return NULL;   // Too many witnesses.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1643
  Klass* conck = wf.participant(0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1644
  if (conck == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1645
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1646
    // Make sure the dependency mechanism will pass this discovery:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1647
    if (VerifyDependencies) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1648
      // Turn off dependency tracing while actually testing deps.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1649
      FlagSetting fs(TraceDependencies, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1650
      if (!Dependencies::is_concrete_klass(ctxk)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1651
        guarantee(NULL ==
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1652
                  (void *)check_abstract_with_no_concrete_subtype(ctxk),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1653
                  "verify dep.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1654
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1655
        guarantee(NULL ==
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1656
                  (void *)check_concrete_with_no_concrete_subtype(ctxk),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1657
                  "verify dep.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1658
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1659
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1660
#endif //PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1661
    return ctxk;                   // Return ctxk as a flag for "no subtypes".
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1662
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1663
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1664
    // Make sure the dependency mechanism will pass this discovery:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1665
    if (VerifyDependencies) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1666
      // Turn off dependency tracing while actually testing deps.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1667
      FlagSetting fs(TraceDependencies, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1668
      if (!Dependencies::is_concrete_klass(ctxk)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1669
        guarantee(NULL == (void *)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1670
                  check_abstract_with_unique_concrete_subtype(ctxk, conck),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1671
                  "verify dep.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1672
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1673
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1674
#endif //PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1675
    return conck;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1676
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1677
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1678
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1679
// Test the assertion that the k[12] are the only concrete subtypes of ctxk,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1680
// except possibly for further subtypes of k[12] themselves.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1681
// The context type must be abstract.  The types k1 and k2 are themselves
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1682
// allowed to have further concrete subtypes.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1683
Klass* Dependencies::check_abstract_with_exclusive_concrete_subtypes(
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1684
                                                Klass* ctxk,
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1685
                                                Klass* k1,
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1686
                                                Klass* k2,
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1687
                                                KlassDepChange* changes) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1688
  ClassHierarchyWalker wf;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1689
  wf.add_participant(k1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1690
  wf.add_participant(k2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1691
  return wf.find_witness_subtype(ctxk, changes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1692
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1693
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1694
// Search ctxk for concrete implementations.  If there are klen or fewer,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1695
// pack them into the given array and return the number.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1696
// Otherwise, return -1, meaning the given array would overflow.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1697
// (Note that a return of 0 means there are exactly no concrete subtypes.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1698
// In this search, if ctxk is concrete, it will be reported alone.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1699
// For any type CC reported, no proper subtypes of CC will be reported.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1700
int Dependencies::find_exclusive_concrete_subtypes(Klass* ctxk,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1701
                                                   int klen,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1702
                                                   Klass* karray[]) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1703
  ClassHierarchyWalker wf;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1704
  wf.record_witnesses(klen);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1705
  Klass* wit = wf.find_witness_subtype(ctxk);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1706
  if (wit != NULL)  return -1;  // Too many witnesses.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1707
  int num = wf.num_participants();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1708
  assert(num <= klen, "oob");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1709
  // Pack the result array with the good news.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1710
  for (int i = 0; i < num; i++)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1711
    karray[i] = wf.participant(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1712
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1713
  // Make sure the dependency mechanism will pass this discovery:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1714
  if (VerifyDependencies) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1715
    // Turn off dependency tracing while actually testing deps.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1716
    FlagSetting fs(TraceDependencies, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1717
    switch (Dependencies::is_concrete_klass(ctxk)? -1: num) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1718
    case -1: // ctxk was itself concrete
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1719
      guarantee(num == 1 && karray[0] == ctxk, "verify dep.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1720
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1721
    case 0:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1722
      guarantee(NULL == (void *)check_abstract_with_no_concrete_subtype(ctxk),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1723
                "verify dep.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1724
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1725
    case 1:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1726
      guarantee(NULL == (void *)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1727
                check_abstract_with_unique_concrete_subtype(ctxk, karray[0]),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1728
                "verify dep.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1729
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1730
    case 2:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1731
      guarantee(NULL == (void *)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1732
                check_abstract_with_exclusive_concrete_subtypes(ctxk,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1733
                                                                karray[0],
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1734
                                                                karray[1]),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1735
                "verify dep.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1736
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1737
    default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1738
      ShouldNotReachHere();  // klen > 2 yet supported
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1739
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1740
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1741
#endif //PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1742
  return num;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1743
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1744
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1745
// If a class (or interface) has a unique concrete method uniqm, return NULL.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1746
// Otherwise, return a class that contains an interfering method.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1747
Klass* Dependencies::check_unique_concrete_method(Klass* ctxk, Method* uniqm,
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1748
                                                    KlassDepChange* changes) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1749
  // Here is a missing optimization:  If uniqm->is_final(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1750
  // we don't really need to search beneath it for overrides.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1751
  // This is probably not important, since we don't use dependencies
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1752
  // to track final methods.  (They can't be "definalized".)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1753
  ClassHierarchyWalker wf(uniqm->method_holder(), uniqm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1754
  return wf.find_witness_definer(ctxk, changes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1755
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1756
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1757
// Find the set of all non-abstract methods under ctxk that match m.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1758
// (The method m must be defined or inherited in ctxk.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1759
// Include m itself in the set, unless it is abstract.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1760
// If this set has exactly one element, return that element.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1761
Method* Dependencies::find_unique_concrete_method(Klass* ctxk, Method* m) {
24484
4a37a32e36a9 6563994: assert(wf.check_method_context(ctxk, m), "proper context") failed
bharadwaj
parents: 24351
diff changeset
  1762
  // Return NULL if m is marked old; must have been a redefined method.
4a37a32e36a9 6563994: assert(wf.check_method_context(ctxk, m), "proper context") failed
bharadwaj
parents: 24351
diff changeset
  1763
  if (m->is_old()) {
4a37a32e36a9 6563994: assert(wf.check_method_context(ctxk, m), "proper context") failed
bharadwaj
parents: 24351
diff changeset
  1764
    return NULL;
4a37a32e36a9 6563994: assert(wf.check_method_context(ctxk, m), "proper context") failed
bharadwaj
parents: 24351
diff changeset
  1765
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1766
  ClassHierarchyWalker wf(m);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1767
  assert(wf.check_method_context(ctxk, m), "proper context");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1768
  wf.record_witnesses(1);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1769
  Klass* wit = wf.find_witness_definer(ctxk);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1770
  if (wit != NULL)  return NULL;  // Too many witnesses.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1771
  Method* fm = wf.found_method(0);  // Will be NULL if num_parts == 0.
28514
da53c1ffc837 8064524: Compiler code generation improvements
drchase
parents: 27700
diff changeset
  1772
  if (Dependencies::is_concrete_method(m, ctxk)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1773
    if (fm == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1774
      // It turns out that m was always the only implementation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1775
      fm = m;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1776
    } else if (fm != m) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1777
      // Two conflicting implementations after all.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1778
      // (This can happen if m is inherited into ctxk and fm overrides it.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1779
      return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1780
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1781
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1782
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1783
  // Make sure the dependency mechanism will pass this discovery:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1784
  if (VerifyDependencies && fm != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1785
    guarantee(NULL == (void *)check_unique_concrete_method(ctxk, fm),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1786
              "verify dep.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1787
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1788
#endif //PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1789
  return fm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1790
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1791
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1792
Klass* Dependencies::check_exclusive_concrete_methods(Klass* ctxk,
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1793
                                                        Method* m1,
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1794
                                                        Method* m2,
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1795
                                                        KlassDepChange* changes) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1796
  ClassHierarchyWalker wf(m1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1797
  wf.add_participant(m1->method_holder());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1798
  wf.add_participant(m2->method_holder());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1799
  return wf.find_witness_definer(ctxk, changes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1800
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1801
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1802
Klass* Dependencies::check_has_no_finalizable_subclasses(Klass* ctxk, KlassDepChange* changes) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1803
  Klass* search_at = ctxk;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1804
  if (changes != NULL)
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1805
    search_at = changes->new_type(); // just look at the new bit
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1806
  return find_finalizable_subclass(search_at);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1807
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1808
31037
01a5c5fa5681 8079205: CallSite dependency tracking is broken after sun.misc.Cleaner became automatically cleared
vlivanov
parents: 30296
diff changeset
  1809
Klass* Dependencies::check_call_site_target_value(oop call_site, oop method_handle, CallSiteDepChange* changes) {
49592
77fb0be7d19f 8199946: Move load/store and encode/decode out of oopDesc
stefank
parents: 49192
diff changeset
  1810
  assert(call_site != NULL, "sanity");
77fb0be7d19f 8199946: Move load/store and encode/decode out of oopDesc
stefank
parents: 49192
diff changeset
  1811
  assert(method_handle != NULL, "sanity");
30296
95baefac8485 8057967: CallSite dependency tracking scales devastatingly poorly
vlivanov
parents: 30195
diff changeset
  1812
  assert(call_site->is_a(SystemDictionary::CallSite_klass()),     "sanity");
95baefac8485 8057967: CallSite dependency tracking scales devastatingly poorly
vlivanov
parents: 30195
diff changeset
  1813
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1814
  if (changes == NULL) {
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1815
    // Validate all CallSites
58177
4932dce35882 8230841: Remove oopDesc::equals()
pliden
parents: 55635
diff changeset
  1816
    if (java_lang_invoke_CallSite::target(call_site) != method_handle)
10503
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10265
diff changeset
  1817
      return call_site->klass();  // assertion failed
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1818
  } else {
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1819
    // Validate the given CallSite
58177
4932dce35882 8230841: Remove oopDesc::equals()
pliden
parents: 55635
diff changeset
  1820
    if (call_site == changes->call_site() && java_lang_invoke_CallSite::target(call_site) != changes->method_handle()) {
4932dce35882 8230841: Remove oopDesc::equals()
pliden
parents: 55635
diff changeset
  1821
      assert(method_handle != changes->method_handle(), "must be");
10503
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10265
diff changeset
  1822
      return call_site->klass();  // assertion failed
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1823
    }
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1824
  }
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1825
  return NULL;  // assertion still valid
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1826
}
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1827
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1828
void Dependencies::DepStream::trace_and_log_witness(Klass* witness) {
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1829
  if (witness != NULL) {
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1830
    if (TraceDependencies) {
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1831
      print_dependency(witness, /*verbose=*/ true);
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1832
    }
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1833
    // The following is a no-op unless logging is enabled:
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1834
    log_dependency(witness);
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1835
  }
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1836
}
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1837
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1838
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1839
Klass* Dependencies::DepStream::check_klass_dependency(KlassDepChange* changes) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1840
  assert_locked_or_safepoint(Compile_lock);
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1841
  Dependencies::check_valid_dependency_type(type());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1842
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1843
  Klass* witness = NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1844
  switch (type()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1845
  case evol_method:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1846
    witness = check_evol_method(method_argument(0));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1847
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1848
  case leaf_type:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1849
    witness = check_leaf_type(context_type());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1850
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1851
  case abstract_with_unique_concrete_subtype:
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1852
    witness = check_abstract_with_unique_concrete_subtype(context_type(), type_argument(1), changes);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1853
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1854
  case abstract_with_no_concrete_subtype:
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1855
    witness = check_abstract_with_no_concrete_subtype(context_type(), changes);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1856
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1857
  case concrete_with_no_concrete_subtype:
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1858
    witness = check_concrete_with_no_concrete_subtype(context_type(), changes);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1859
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1860
  case unique_concrete_method:
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1861
    witness = check_unique_concrete_method(context_type(), method_argument(1), changes);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1862
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1863
  case abstract_with_exclusive_concrete_subtypes_2:
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1864
    witness = check_abstract_with_exclusive_concrete_subtypes(context_type(), type_argument(1), type_argument(2), changes);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1865
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1866
  case exclusive_concrete_methods_2:
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1867
    witness = check_exclusive_concrete_methods(context_type(), method_argument(1), method_argument(2), changes);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1868
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1869
  case no_finalizable_subclasses:
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1870
    witness = check_has_no_finalizable_subclasses(context_type(), changes);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1871
    break;
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1872
  default:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1873
    witness = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1874
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1875
  }
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1876
  trace_and_log_witness(witness);
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1877
  return witness;
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1878
}
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1879
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1880
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1881
Klass* Dependencies::DepStream::check_call_site_dependency(CallSiteDepChange* changes) {
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1882
  assert_locked_or_safepoint(Compile_lock);
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1883
  Dependencies::check_valid_dependency_type(type());
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1884
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1885
  Klass* witness = NULL;
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1886
  switch (type()) {
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1887
  case call_site_target_value:
31037
01a5c5fa5681 8079205: CallSite dependency tracking is broken after sun.misc.Cleaner became automatically cleared
vlivanov
parents: 30296
diff changeset
  1888
    witness = check_call_site_target_value(argument_oop(0), argument_oop(1), changes);
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1889
    break;
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1890
  default:
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1891
    witness = NULL;
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1892
    break;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1893
  }
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1894
  trace_and_log_witness(witness);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1895
  return witness;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1896
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1897
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1898
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1899
Klass* Dependencies::DepStream::spot_check_dependency_at(DepChange& changes) {
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1900
  // Handle klass dependency
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1901
  if (changes.is_klass_change() && changes.as_klass_change()->involves_context(context_type()))
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1902
    return check_klass_dependency(changes.as_klass_change());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1903
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1904
  // Handle CallSite dependency
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1905
  if (changes.is_call_site_change())
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1906
    return check_call_site_dependency(changes.as_call_site_change());
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1907
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1908
  // irrelevant dependency; skip it
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1909
  return NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1910
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1911
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1912
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1913
void DepChange::print() {
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1914
  int nsup = 0, nint = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1915
  for (ContextStream str(*this); str.next(); ) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1916
    Klass* k = str.klass();
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1917
    switch (str.change_type()) {
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1918
    case Change_new_type:
33602
16053580a684 8139163: InstanceKlass::cast passes through NULL
coleenp
parents: 33198
diff changeset
  1919
      tty->print_cr("  dependee = %s", k->external_name());
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1920
      break;
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1921
    case Change_new_sub:
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1922
      if (!WizardMode) {
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1923
        ++nsup;
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1924
      } else {
33602
16053580a684 8139163: InstanceKlass::cast passes through NULL
coleenp
parents: 33198
diff changeset
  1925
        tty->print_cr("  context super = %s", k->external_name());
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1926
      }
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1927
      break;
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1928
    case Change_new_impl:
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1929
      if (!WizardMode) {
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1930
        ++nint;
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1931
      } else {
33602
16053580a684 8139163: InstanceKlass::cast passes through NULL
coleenp
parents: 33198
diff changeset
  1932
        tty->print_cr("  context interface = %s", k->external_name());
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1933
      }
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1934
      break;
46630
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 46271
diff changeset
  1935
    default:
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 46271
diff changeset
  1936
      break;
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1937
    }
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1938
  }
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1939
  if (nsup + nint != 0) {
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1940
    tty->print_cr("  context supers = %d, interfaces = %d", nsup, nint);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1941
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1942
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1943
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1944
void DepChange::ContextStream::start() {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1945
  Klass* new_type = _changes.is_klass_change() ? _changes.as_klass_change()->new_type() : (Klass*) NULL;
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1946
  _change_type = (new_type == NULL ? NO_CHANGE : Start_Klass);
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1947
  _klass = new_type;
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1948
  _ti_base = NULL;
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1949
  _ti_index = 0;
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1950
  _ti_limit = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1951
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1952
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1953
bool DepChange::ContextStream::next() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1954
  switch (_change_type) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1955
  case Start_Klass:             // initial state; _klass is the new type
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1956
    _ti_base = InstanceKlass::cast(_klass)->transitive_interfaces();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1957
    _ti_index = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1958
    _change_type = Change_new_type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1959
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1960
  case Change_new_type:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1961
    // fall through:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1962
    _change_type = Change_new_sub;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1963
  case Change_new_sub:
227
1d53148d4a4c 6598190: JPRT tests fail when run with -XX:+CheckUnhandledOops
sbohne
parents: 1
diff changeset
  1964
    // 6598190: brackets workaround Sun Studio C++ compiler bug 6629277
1d53148d4a4c 6598190: JPRT tests fail when run with -XX:+CheckUnhandledOops
sbohne
parents: 1
diff changeset
  1965
    {
33602
16053580a684 8139163: InstanceKlass::cast passes through NULL
coleenp
parents: 33198
diff changeset
  1966
      _klass = _klass->super();
227
1d53148d4a4c 6598190: JPRT tests fail when run with -XX:+CheckUnhandledOops
sbohne
parents: 1
diff changeset
  1967
      if (_klass != NULL) {
1d53148d4a4c 6598190: JPRT tests fail when run with -XX:+CheckUnhandledOops
sbohne
parents: 1
diff changeset
  1968
        return true;
1d53148d4a4c 6598190: JPRT tests fail when run with -XX:+CheckUnhandledOops
sbohne
parents: 1
diff changeset
  1969
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1970
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1971
    // else set up _ti_limit and fall through:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1972
    _ti_limit = (_ti_base == NULL) ? 0 : _ti_base->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1973
    _change_type = Change_new_impl;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1974
  case Change_new_impl:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1975
    if (_ti_index < _ti_limit) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1976
      _klass = _ti_base->at(_ti_index++);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1977
      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1978
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1979
    // fall through:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1980
    _change_type = NO_CHANGE;  // iterator is exhausted
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1981
  case NO_CHANGE:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1982
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1983
  default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1984
    ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1985
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1986
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1987
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1988
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1989
void KlassDepChange::initialize() {
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1990
  // entire transaction must be under this lock:
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1991
  assert_lock_strong(Compile_lock);
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1992
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1993
  // Mark all dependee and all its superclasses
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  1994
  // Mark transitive interfaces
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1995
  for (ContextStream str(*this); str.next(); ) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1996
    Klass* d = str.klass();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1997
    assert(!InstanceKlass::cast(d)->is_marked_dependent(), "checking");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  1998
    InstanceKlass::cast(d)->set_is_marked_dependent(true);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1999
  }
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  2000
}
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  2001
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  2002
KlassDepChange::~KlassDepChange() {
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  2003
  // Unmark all dependee and all its superclasses
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  2004
  // Unmark transitive interfaces
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  2005
  for (ContextStream str(*this); str.next(); ) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  2006
    Klass* d = str.klass();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  2007
    InstanceKlass::cast(d)->set_is_marked_dependent(false);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2008
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2009
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2010
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  2011
bool KlassDepChange::involves_context(Klass* k) {
33611
9abd65805e19 8139203: Consistent naming for klass type predicates
coleenp
parents: 33602
diff changeset
  2012
  if (k == NULL || !k->is_instance_klass()) {
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  2013
    return false;
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  2014
  }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
  2015
  InstanceKlass* ik = InstanceKlass::cast(k);
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  2016
  bool is_contained = ik->is_marked_dependent();
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 14391
diff changeset
  2017
  assert(is_contained == new_type()->is_subtype_of(k),
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  2018
         "correct marking of potential context types");
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  2019
  return is_contained;
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  2020
}
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 8921
diff changeset
  2021
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2022
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2023
void Dependencies::print_statistics() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2024
  if (deps_find_witness_print != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2025
    // Call one final time, to flush out the data.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2026
    deps_find_witness_print = -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2027
    count_find_witness_calls();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2028
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2029
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2030
#endif
35498
392b50de06c6 8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents: 33611
diff changeset
  2031
392b50de06c6 8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents: 33611
diff changeset
  2032
CallSiteDepChange::CallSiteDepChange(Handle call_site, Handle method_handle) :
392b50de06c6 8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents: 33611
diff changeset
  2033
  _call_site(call_site),
392b50de06c6 8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents: 33611
diff changeset
  2034
  _method_handle(method_handle) {
392b50de06c6 8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents: 33611
diff changeset
  2035
  assert(_call_site()->is_a(SystemDictionary::CallSite_klass()), "must be");
392b50de06c6 8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents: 33611
diff changeset
  2036
  assert(_method_handle.is_null() || _method_handle()->is_a(SystemDictionary::MethodHandle_klass()), "must be");
392b50de06c6 8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents: 33611
diff changeset
  2037
}