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