hotspot/src/share/vm/code/dependencies.hpp
author stefank
Tue, 23 Nov 2010 13:22:55 -0800
changeset 7397 5b173b4ca846
parent 5547 f4b087cbb361
child 10265 4c869854aebd
permissions -rw-r--r--
6989984: Use standard include model for Hospot Summary: Replaced MakeDeps and the includeDB files with more standardized solutions. Reviewed-by: coleenp, kvn, kamg
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
     2
 * Copyright (c) 2005, 2010, 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: 4493
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4493
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: 4493
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    25
#ifndef SHARE_VM_CODE_DEPENDENCIES_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#define SHARE_VM_CODE_DEPENDENCIES_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "ci/ciKlass.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "code/compressedStream.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "code/nmethod.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
#include "utilities/growableArray.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    32
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
//** Dependencies represent assertions (approximate invariants) within
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
// the class hierarchy.  An example is an assertion that a given
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
// method is not overridden; another example is that a type has only
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
// one concrete subtype.  Compiled code which relies on such
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
// assertions must be discarded if they are overturned by changes in
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
// the class hierarchy.  We can think of these assertions as
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
// approximate invariants, because we expect them to be overturned
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
// very infrequently.  We are willing to perform expensive recovery
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
// operations when they are overturned.  The benefit, of course, is
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
// performing optimistic optimizations (!) on the object code.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
// Changes in the class hierarchy due to dynamic linking or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
// class evolution can violate dependencies.  There is enough
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
// indexing between classes and nmethods to make dependency
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
// checking reasonably efficient.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
class ciEnv;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
class nmethod;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
class OopRecorder;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
class xmlStream;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
class CompileLog;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
class DepChange;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
class No_Safepoint_Verifier;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
class Dependencies: public ResourceObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  // Note: In the comments on dependency types, most uses of the terms
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  // subtype and supertype are used in a "non-strict" or "inclusive"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  // sense, and are starred to remind the reader of this fact.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  // Strict uses of the terms use the word "proper".
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  // Specifically, every class is its own subtype* and supertype*.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  // (This trick is easier than continually saying things like "Y is a
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  // subtype of X or X itself".)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  // Sometimes we write X > Y to mean X is a proper supertype of Y.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  // The notation X > {Y, Z} means X has proper subtypes Y, Z.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  // The notation X.m > Y means that Y inherits m from X, while
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  // X.m > Y.m means Y overrides X.m.  A star denotes abstractness,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  // as *I > A, meaning (abstract) interface I is a super type of A,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  // or A.*m > B.m, meaning B.m implements abstract method A.m.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  // In this module, the terms "subtype" and "supertype" refer to
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  // Java-level reference type conversions, as detected by
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  // "instanceof" and performed by "checkcast" operations.  The method
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  // Klass::is_subtype_of tests these relations.  Note that "subtype"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  // is richer than "subclass" (as tested by Klass::is_subclass_of),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  // since it takes account of relations involving interface and array
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  // types.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  // To avoid needless complexity, dependencies involving array types
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  // are not accepted.  If you need to make an assertion about an
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  // array type, make the assertion about its corresponding element
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  // types.  Any assertion that might change about an array type can
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  // be converted to an assertion about its element type.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  // Most dependencies are evaluated over a "context type" CX, which
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  // stands for the set Subtypes(CX) of every Java type that is a subtype*
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  // of CX.  When the system loads a new class or interface N, it is
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  // responsible for re-evaluating changed dependencies whose context
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  // type now includes N, that is, all super types of N.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  enum DepType {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
    end_marker = 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
    // An 'evol' dependency simply notes that the contents of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
    // method were used.  If it evolves (is replaced), the nmethod
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
    // must be recompiled.  No other dependencies are implied.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
    evol_method,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
    FIRST_TYPE = evol_method,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
    // A context type CX is a leaf it if has no proper subtype.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
    leaf_type,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
    // An abstract class CX has exactly one concrete subtype CC.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
    abstract_with_unique_concrete_subtype,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
    // The type CX is purely abstract, with no concrete subtype* at all.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
    abstract_with_no_concrete_subtype,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
    // The concrete CX is free of concrete proper subtypes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
    concrete_with_no_concrete_subtype,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
    // Given a method M1 and a context class CX, the set MM(CX, M1) of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
    // "concrete matching methods" in CX of M1 is the set of every
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
    // concrete M2 for which it is possible to create an invokevirtual
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
    // or invokeinterface call site that can reach either M1 or M2.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
    // That is, M1 and M2 share a name, signature, and vtable index.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
    // We wish to notice when the set MM(CX, M1) is just {M1}, or
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
    // perhaps a set of two {M1,M2}, and issue dependencies on this.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
    // The set MM(CX, M1) can be computed by starting with any matching
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
    // concrete M2 that is inherited into CX, and then walking the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
    // subtypes* of CX looking for concrete definitions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
    // The parameters to this dependency are the method M1 and the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
    // context class CX.  M1 must be either inherited in CX or defined
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
    // in a subtype* of CX.  It asserts that MM(CX, M1) is no greater
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
    // than {M1}.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
    unique_concrete_method,       // one unique concrete method under CX
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
    // An "exclusive" assertion concerns two methods or subtypes, and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
    // declares that there are at most two (or perhaps later N>2)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
    // specific items that jointly satisfy the restriction.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
    // We list all items explicitly rather than just giving their
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
    // count, for robustness in the face of complex schema changes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
    // A context class CX (which may be either abstract or concrete)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
    // has two exclusive concrete subtypes* C1, C2 if every concrete
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
    // subtype* of CX is either C1 or C2.  Note that if neither C1 or C2
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
    // are equal to CX, then CX itself must be abstract.  But it is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
    // also possible (for example) that C1 is CX (a concrete class)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
    // and C2 is a proper subtype of C1.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
    abstract_with_exclusive_concrete_subtypes_2,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
    // This dependency asserts that MM(CX, M1) is no greater than {M1,M2}.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
    exclusive_concrete_methods_2,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
    // This dependency asserts that no instances of class or it's
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
    // subclasses require finalization registration.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
    no_finalizable_subclasses,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
    TYPE_LIMIT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
    LG2_TYPE_LIMIT = 4,  // assert(TYPE_LIMIT <= (1<<LG2_TYPE_LIMIT))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
    // handy categorizations of dependency types:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
    all_types      = ((1<<TYPE_LIMIT)-1) & ((-1)<<FIRST_TYPE),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
    non_ctxk_types = (1<<evol_method),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
    ctxk_types     = all_types & ~non_ctxk_types,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
    max_arg_count = 3,   // current maximum number of arguments (incl. ctxk)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
    // A "context type" is a class or interface that
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
    // provides context for evaluating a dependency.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
    // When present, it is one of the arguments (dep_context_arg).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
    // If a dependency does not have a context type, there is a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
    // default context, depending on the type of the dependency.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
    // This bit signals that a default context has been compressed away.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
    default_context_type_bit = (1<<LG2_TYPE_LIMIT)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  static const char* dep_name(DepType dept);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  static int         dep_args(DepType dept);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  static int  dep_context_arg(DepType dept) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
    return dept_in_mask(dept, ctxk_types)? 0: -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  // State for writing a new set of dependencies:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  GrowableArray<int>*       _dep_seen;  // (seen[h->ident] & (1<<dept))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  GrowableArray<ciObject*>* _deps[TYPE_LIMIT];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  static const char* _dep_name[TYPE_LIMIT];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  static int         _dep_args[TYPE_LIMIT];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  static bool dept_in_mask(DepType dept, int mask) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
    return (int)dept >= 0 && dept < TYPE_LIMIT && ((1<<dept) & mask) != 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  bool note_dep_seen(int dept, ciObject* x) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
    assert(dept < BitsPerInt, "oob");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
    int x_id = x->ident();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
    assert(_dep_seen != NULL, "deps must be writable");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
    int seen = _dep_seen->at_grow(x_id, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
    _dep_seen->at_put(x_id, seen | (1<<dept));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
    // return true if we've already seen dept/x
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
    return (seen & (1<<dept)) != 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  bool maybe_merge_ctxk(GrowableArray<ciObject*>* deps,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
                        int ctxk_i, ciKlass* ctxk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  void sort_all_deps();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  size_t estimate_size_in_bytes();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  // Initialize _deps, etc.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  void initialize(ciEnv* env);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  // State for making a new set of dependencies:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  OopRecorder* _oop_recorder;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  // Logging support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  CompileLog* _log;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  address  _content_bytes;  // everything but the oop references, encoded
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  size_t   _size_in_bytes;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  // Make a new empty dependencies set.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  Dependencies(ciEnv* env) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
    initialize(env);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  // Check for a valid context type.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  // Enforce the restriction against array types.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  static void check_ctxk(ciKlass* ctxk) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
    assert(ctxk->is_instance_klass(), "java types only");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  static void check_ctxk_concrete(ciKlass* ctxk) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
    assert(is_concrete_klass(ctxk->as_instance_klass()), "must be concrete");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
  static void check_ctxk_abstract(ciKlass* ctxk) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
    check_ctxk(ctxk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
    assert(!is_concrete_klass(ctxk->as_instance_klass()), "must be abstract");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  void assert_common_1(DepType dept, ciObject* x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
  void assert_common_2(DepType dept, ciKlass* ctxk, ciObject* x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  void assert_common_3(DepType dept, ciKlass* ctxk, ciObject* x, ciObject* x2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  // Adding assertions to a new dependency set at compile time:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
  void assert_evol_method(ciMethod* m);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
  void assert_leaf_type(ciKlass* ctxk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
  void assert_abstract_with_unique_concrete_subtype(ciKlass* ctxk, ciKlass* conck);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
  void assert_abstract_with_no_concrete_subtype(ciKlass* ctxk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  void assert_concrete_with_no_concrete_subtype(ciKlass* ctxk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
  void assert_unique_concrete_method(ciKlass* ctxk, ciMethod* uniqm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
  void assert_abstract_with_exclusive_concrete_subtypes(ciKlass* ctxk, ciKlass* k1, ciKlass* k2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
  void assert_exclusive_concrete_methods(ciKlass* ctxk, ciMethod* m1, ciMethod* m2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
  void assert_has_no_finalizable_subclasses(ciKlass* ctxk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  // Define whether a given method or type is concrete.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  // These methods define the term "concrete" as used in this module.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
  // For this module, an "abstract" class is one which is non-concrete.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
  // Future optimizations may allow some classes to remain
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
  // non-concrete until their first instantiation, and allow some
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
  // methods to remain non-concrete until their first invocation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
  // In that case, there would be a middle ground between concrete
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  // and abstract (as defined by the Java language and VM).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  static bool is_concrete_klass(klassOop k);    // k is instantiable
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
  static bool is_concrete_method(methodOop m);  // m is invocable
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
  static Klass* find_finalizable_subclass(Klass* k);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
  // These versions of the concreteness queries work through the CI.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
  // The CI versions are allowed to skew sometimes from the VM
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
  // (oop-based) versions.  The cost of such a difference is a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  // (safely) aborted compilation, or a deoptimization, or a missed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
  // optimization opportunity.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
  // In order to prevent spurious assertions, query results must
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
  // remain stable within any single ciEnv instance.  (I.e., they must
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  // not go back into the VM to get their value; they must cache the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
  // bit in the CI, either eagerly or lazily.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
  static bool is_concrete_klass(ciInstanceKlass* k); // k appears instantiable
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
  static bool is_concrete_method(ciMethod* m);       // m appears invocable
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
  static bool has_finalizable_subclass(ciInstanceKlass* k);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  // As a general rule, it is OK to compile under the assumption that
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
  // a given type or method is concrete, even if it at some future
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
  // point becomes abstract.  So dependency checking is one-sided, in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
  // that it permits supposedly concrete classes or methods to turn up
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
  // as really abstract.  (This shouldn't happen, except during class
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
  // evolution, but that's the logic of the checking.)  However, if a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
  // supposedly abstract class or method suddenly becomes concrete, a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
  // dependency on it must fail.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
  // Checking old assertions at run-time (in the VM only):
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
  static klassOop check_evol_method(methodOop m);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
  static klassOop check_leaf_type(klassOop ctxk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
  static klassOop check_abstract_with_unique_concrete_subtype(klassOop ctxk, klassOop conck,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
                                                              DepChange* changes = NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
  static klassOop check_abstract_with_no_concrete_subtype(klassOop ctxk,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
                                                          DepChange* changes = NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
  static klassOop check_concrete_with_no_concrete_subtype(klassOop ctxk,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
                                                          DepChange* changes = NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
  static klassOop check_unique_concrete_method(klassOop ctxk, methodOop uniqm,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
                                               DepChange* changes = NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
  static klassOop check_abstract_with_exclusive_concrete_subtypes(klassOop ctxk, klassOop k1, klassOop k2,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
                                                                  DepChange* changes = NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
  static klassOop check_exclusive_concrete_methods(klassOop ctxk, methodOop m1, methodOop m2,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
                                                   DepChange* changes = NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
  static klassOop check_has_no_finalizable_subclasses(klassOop ctxk,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
                                                      DepChange* changes = NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
  // A returned klassOop is NULL if the dependency assertion is still
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
  // valid.  A non-NULL klassOop is a 'witness' to the assertion
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
  // failure, a point in the class hierarchy where the assertion has
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
  // been proven false.  For example, if check_leaf_type returns
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
  // non-NULL, the value is a subtype of the supposed leaf type.  This
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
  // witness value may be useful for logging the dependency failure.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
  // Note that, when a dependency fails, there may be several possible
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
  // witnesses to the failure.  The value returned from the check_foo
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
  // method is chosen arbitrarily.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
  // The 'changes' value, if non-null, requests a limited spot-check
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
  // near the indicated recent changes in the class hierarchy.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
  // It is used by DepStream::spot_check_dependency_at.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
  // Detecting possible new assertions:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
  static klassOop  find_unique_concrete_subtype(klassOop ctxk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
  static methodOop find_unique_concrete_method(klassOop ctxk, methodOop m);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
  static int       find_exclusive_concrete_subtypes(klassOop ctxk, int klen, klassOop k[]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
  static int       find_exclusive_concrete_methods(klassOop ctxk, int mlen, methodOop m[]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
  // Create the encoding which will be stored in an nmethod.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
  void encode_content_bytes();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
  address content_bytes() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
    assert(_content_bytes != NULL, "encode it first");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
    return _content_bytes;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
  size_t size_in_bytes() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
    assert(_content_bytes != NULL, "encode it first");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
    return _size_in_bytes;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
  OopRecorder* oop_recorder() { return _oop_recorder; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
  CompileLog*  log()          { return _log; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
  void copy_to(nmethod* nm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
  void log_all_dependencies();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
  void log_dependency(DepType dept, int nargs, ciObject* args[]) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
    write_dependency_to(log(), dept, nargs, args);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
  void log_dependency(DepType dept,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
                      ciObject* x0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
                      ciObject* x1 = NULL,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
                      ciObject* x2 = NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
    if (log() == NULL)  return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
    ciObject* args[max_arg_count];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
    args[0] = x0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
    args[1] = x1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
    args[2] = x2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
    assert(2 < max_arg_count, "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
    log_dependency(dept, dep_args(dept), args);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
  static void write_dependency_to(CompileLog* log,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
                                  DepType dept,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
                                  int nargs, ciObject* args[],
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
                                  klassOop witness = NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
  static void write_dependency_to(CompileLog* log,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
                                  DepType dept,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
                                  int nargs, oop args[],
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
                                  klassOop witness = NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
  static void write_dependency_to(xmlStream* xtty,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
                                  DepType dept,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
                                  int nargs, oop args[],
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
                                  klassOop witness = NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
  static void print_dependency(DepType dept,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
                               int nargs, oop args[],
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
                               klassOop witness = NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
  // helper for encoding common context types as zero:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
  static ciKlass* ctxk_encoded_as_null(DepType dept, ciObject* x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
  static klassOop ctxk_encoded_as_null(DepType dept, oop x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
  // Use this to iterate over an nmethod's dependency set.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
  // Works on new and old dependency sets.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
  // Usage:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
  // ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
  // Dependencies::DepType dept;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
  // for (Dependencies::DepStream deps(nm); deps.next(); ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
  //   ...
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
  // }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
  // The caller must be in the VM, since oops are not wrapped in handles.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
  class DepStream {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
  private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
    nmethod*              _code;   // null if in a compiler thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
    Dependencies*         _deps;   // null if not in a compiler thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
    CompressedReadStream  _bytes;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
    size_t                _byte_limit;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
    // iteration variables:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
    DepType               _type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
    int                   _xi[max_arg_count+1];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
    void initial_asserts(size_t byte_limit) NOT_DEBUG({});
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
    inline oop recorded_oop_at(int i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
        // => _code? _code->oop_at(i): *_deps->_oop_recorder->handle_at(i)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
    klassOop check_dependency_impl(DepChange* changes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
  public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
    DepStream(Dependencies* deps)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
      : _deps(deps),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
        _code(NULL),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
        _bytes(deps->content_bytes())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
    {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
      initial_asserts(deps->size_in_bytes());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
    DepStream(nmethod* code)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
      : _deps(NULL),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
        _code(code),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
        _bytes(code->dependencies_begin())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
    {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
      initial_asserts(code->dependencies_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
    bool next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
    DepType type()               { return _type; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
    int argument_count()         { return dep_args(type()); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
    int argument_index(int i)    { assert(0 <= i && i < argument_count(), "oob");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
                                   return _xi[i]; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
    oop argument(int i);         // => recorded_oop_at(argument_index(i))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
    klassOop context_type();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
    methodOop method_argument(int i) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
      oop x = argument(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
      assert(x->is_method(), "type");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
      return (methodOop) x;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
    klassOop type_argument(int i) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
      oop x = argument(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
      assert(x->is_klass(), "type");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
      return (klassOop) x;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
    // The point of the whole exercise:  Is this dep is still OK?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
    klassOop check_dependency() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
      return check_dependency_impl(NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
    // A lighter version:  Checks only around recent changes in a class
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
    // hierarchy.  (See Universe::flush_dependents_on.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
    klassOop spot_check_dependency_at(DepChange& changes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
    // Log the current dependency to xtty or compilation log.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
    void log_dependency(klassOop witness = NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
    // Print the current dependency to tty.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
    void print_dependency(klassOop witness = NULL, bool verbose = false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
  friend class Dependencies::DepStream;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
  static void print_statistics() PRODUCT_RETURN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
// A class hierarchy change coming through the VM (under the Compile_lock).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
// The change is structured as a single new type with any number of supers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
// and implemented interface types.  Other than the new type, any of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
// super types can be context types for a relevant dependency, which the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
// new type could invalidate.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
class DepChange : public StackObj {
4493
9204129f065e 6843629: Make current hotspot build part of jdk5 control build
phh
parents: 1
diff changeset
   481
 public:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
  enum ChangeType {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
    NO_CHANGE = 0,              // an uninvolved klass
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
    Change_new_type,            // a newly loaded type
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
    Change_new_sub,             // a super with a new subtype
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
    Change_new_impl,            // an interface with a new implementation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
    CHANGE_LIMIT,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
    Start_Klass = CHANGE_LIMIT  // internal indicator for ContextStream
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
4493
9204129f065e 6843629: Make current hotspot build part of jdk5 control build
phh
parents: 1
diff changeset
   491
 private:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
  // each change set is rooted in exactly one new type (at present):
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
  KlassHandle _new_type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
  void initialize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
  // notes the new type, marks it and all its super-types
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
  DepChange(KlassHandle new_type)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
    : _new_type(new_type)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
    initialize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
  // cleans up the marks
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
  ~DepChange();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
  klassOop new_type()                   { return _new_type(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
  // involves_context(k) is true if k is new_type or any of the super types
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
  bool involves_context(klassOop k);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
  // Usage:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
  // for (DepChange::ContextStream str(changes); str.next(); ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
  //   klassOop k = str.klass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
  //   switch (str.change_type()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
  //     ...
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
  //   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
  // }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
  class ContextStream : public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
   private:
4493
9204129f065e 6843629: Make current hotspot build part of jdk5 control build
phh
parents: 1
diff changeset
   522
    DepChange&  _changes;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
    friend class DepChange;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
    // iteration variables:
4493
9204129f065e 6843629: Make current hotspot build part of jdk5 control build
phh
parents: 1
diff changeset
   526
    ChangeType  _change_type;
9204129f065e 6843629: Make current hotspot build part of jdk5 control build
phh
parents: 1
diff changeset
   527
    klassOop    _klass;
9204129f065e 6843629: Make current hotspot build part of jdk5 control build
phh
parents: 1
diff changeset
   528
    objArrayOop _ti_base;    // i.e., transitive_interfaces
9204129f065e 6843629: Make current hotspot build part of jdk5 control build
phh
parents: 1
diff changeset
   529
    int         _ti_index;
9204129f065e 6843629: Make current hotspot build part of jdk5 control build
phh
parents: 1
diff changeset
   530
    int         _ti_limit;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
    // start at the beginning:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
    void start() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
      klassOop new_type = _changes.new_type();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
      _change_type = (new_type == NULL ? NO_CHANGE: Start_Klass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
      _klass = new_type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
      _ti_base = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
      _ti_index = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
      _ti_limit = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
4493
9204129f065e 6843629: Make current hotspot build part of jdk5 control build
phh
parents: 1
diff changeset
   542
   public:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
    ContextStream(DepChange& changes)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
      : _changes(changes)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
    { start(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
    ContextStream(DepChange& changes, No_Safepoint_Verifier& nsv)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
      : _changes(changes)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
      // the nsv argument makes it safe to hold oops like _klass
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
    { start(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
    bool next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
4493
9204129f065e 6843629: Make current hotspot build part of jdk5 control build
phh
parents: 1
diff changeset
   554
    ChangeType change_type()     { return _change_type; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
    klassOop   klass()           { return _klass; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
  friend class DepChange::ContextStream;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
  void print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   561
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   562
#endif // SHARE_VM_CODE_DEPENDENCIES_HPP