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