src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/classfile/ClassLoaderData.java
author coleenp
Wed, 18 Apr 2018 18:43:04 -0400
changeset 49824 e242740a92b8
parent 47216 71c04702a3d5
child 50929 ef57cfcd22ff
permissions -rw-r--r--
8201556: Disallow reading oops in ClassLoaderData if unloading Summary: Move class_loader oop to an OopHandle, and assert that holder is alive when getting class_loader. Reviewed-by: kbarrett, adinn
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
     1
/*
49824
e242740a92b8 8201556: Disallow reading oops in ClassLoaderData if unloading
coleenp
parents: 47216
diff changeset
     2
 * Copyright (c) 2012, 2018, Oracle and/or its affiliates. All rights reserved.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
     4
 *
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
     7
 * published by the Free Software Foundation.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
     8
 *
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    13
 * accompanied this code).
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    14
 *
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    18
 *
14847
92a59a418262 8004982: JDK8 source with GPL header errors
katleman
parents: 13728
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
92a59a418262 8004982: JDK8 source with GPL header errors
katleman
parents: 13728
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
92a59a418262 8004982: JDK8 source with GPL header errors
katleman
parents: 13728
diff changeset
    21
 * questions.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    22
 *
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    23
 */
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    24
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    25
package sun.jvm.hotspot.classfile;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    26
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    27
import java.io.PrintStream;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    28
import sun.jvm.hotspot.debugger.*;
46729
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 42889
diff changeset
    29
import sun.jvm.hotspot.memory.*;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    30
import sun.jvm.hotspot.runtime.*;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    31
import sun.jvm.hotspot.oops.*;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    32
import sun.jvm.hotspot.types.*;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    33
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    34
public class ClassLoaderData extends VMObject {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    35
  static {
46729
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 42889
diff changeset
    36
    VM.registerVMInitializedObserver(new java.util.Observer() {
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 42889
diff changeset
    37
        public void update(java.util.Observable o, Object data) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    38
          initialize(VM.getVM().getTypeDataBase());
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    39
        }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    40
      });
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    41
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    42
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    43
  private static synchronized void initialize(TypeDataBase db) throws WrongTypeException {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    44
    Type type      = db.lookupType("ClassLoaderData");
49824
e242740a92b8 8201556: Disallow reading oops in ClassLoaderData if unloading
coleenp
parents: 47216
diff changeset
    45
    classLoaderField = type.getAddressField("_class_loader");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    46
    nextField = type.getAddressField("_next");
46729
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 42889
diff changeset
    47
    klassesField = new MetadataField(type.getAddressField("_klasses"), 0);
42889
0b0ae99d8639 8159127: hprof heap dumps broken for lambda classdata
dsamersoff
parents: 35217
diff changeset
    48
    isAnonymousField = new CIntField(type.getCIntegerField("_is_anonymous"), 0);
46729
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 42889
diff changeset
    49
    dictionaryField = type.getAddressField("_dictionary");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    50
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    51
49824
e242740a92b8 8201556: Disallow reading oops in ClassLoaderData if unloading
coleenp
parents: 47216
diff changeset
    52
  private static AddressField   classLoaderField;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    53
  private static AddressField nextField;
46729
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 42889
diff changeset
    54
  private static MetadataField  klassesField;
42889
0b0ae99d8639 8159127: hprof heap dumps broken for lambda classdata
dsamersoff
parents: 35217
diff changeset
    55
  private static CIntField isAnonymousField;
46729
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 42889
diff changeset
    56
  private static AddressField dictionaryField;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    57
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    58
  public ClassLoaderData(Address addr) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    59
    super(addr);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    60
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    61
46729
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 42889
diff changeset
    62
  public Dictionary dictionary() {
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 42889
diff changeset
    63
      Address tmp = dictionaryField.getValue();
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 42889
diff changeset
    64
      return (Dictionary) VMObjectFactory.newObject(Dictionary.class, tmp);
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 42889
diff changeset
    65
  }
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 42889
diff changeset
    66
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    67
  public static ClassLoaderData instantiateWrapperFor(Address addr) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    68
    if (addr == null) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    69
      return null;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    70
    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    71
    return new ClassLoaderData(addr);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    72
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    73
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    74
  public Oop getClassLoader() {
49824
e242740a92b8 8201556: Disallow reading oops in ClassLoaderData if unloading
coleenp
parents: 47216
diff changeset
    75
    Address handle = classLoaderField.getValue(getAddress());
e242740a92b8 8201556: Disallow reading oops in ClassLoaderData if unloading
coleenp
parents: 47216
diff changeset
    76
    if (handle != null) {
e242740a92b8 8201556: Disallow reading oops in ClassLoaderData if unloading
coleenp
parents: 47216
diff changeset
    77
      // Load through the handle
e242740a92b8 8201556: Disallow reading oops in ClassLoaderData if unloading
coleenp
parents: 47216
diff changeset
    78
      OopHandle refs = handle.getOopHandleAt(0);
e242740a92b8 8201556: Disallow reading oops in ClassLoaderData if unloading
coleenp
parents: 47216
diff changeset
    79
      return (Instance)VM.getVM().getObjectHeap().newOop(refs);
e242740a92b8 8201556: Disallow reading oops in ClassLoaderData if unloading
coleenp
parents: 47216
diff changeset
    80
    }
e242740a92b8 8201556: Disallow reading oops in ClassLoaderData if unloading
coleenp
parents: 47216
diff changeset
    81
    return null;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    82
  }
42889
0b0ae99d8639 8159127: hprof heap dumps broken for lambda classdata
dsamersoff
parents: 35217
diff changeset
    83
0b0ae99d8639 8159127: hprof heap dumps broken for lambda classdata
dsamersoff
parents: 35217
diff changeset
    84
  public boolean getIsAnonymous() {
0b0ae99d8639 8159127: hprof heap dumps broken for lambda classdata
dsamersoff
parents: 35217
diff changeset
    85
    return isAnonymousField.getValue(this) != 0;
0b0ae99d8639 8159127: hprof heap dumps broken for lambda classdata
dsamersoff
parents: 35217
diff changeset
    86
  }
0b0ae99d8639 8159127: hprof heap dumps broken for lambda classdata
dsamersoff
parents: 35217
diff changeset
    87
0b0ae99d8639 8159127: hprof heap dumps broken for lambda classdata
dsamersoff
parents: 35217
diff changeset
    88
  public ClassLoaderData next() {
0b0ae99d8639 8159127: hprof heap dumps broken for lambda classdata
dsamersoff
parents: 35217
diff changeset
    89
    return instantiateWrapperFor(nextField.getValue(getAddress()));
0b0ae99d8639 8159127: hprof heap dumps broken for lambda classdata
dsamersoff
parents: 35217
diff changeset
    90
  }
0b0ae99d8639 8159127: hprof heap dumps broken for lambda classdata
dsamersoff
parents: 35217
diff changeset
    91
46729
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 42889
diff changeset
    92
  public Klass getKlasses()    { return (Klass)klassesField.getValue(this);  }
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 42889
diff changeset
    93
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 42889
diff changeset
    94
  /** Lookup an already loaded class. If not found null is returned. */
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 42889
diff changeset
    95
  public Klass find(Symbol className) {
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 42889
diff changeset
    96
    for (Klass l = getKlasses(); l != null; l = l.getNextLinkKlass()) {
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 42889
diff changeset
    97
        if (className.equals(l.getName())) {
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 42889
diff changeset
    98
            return l;
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 42889
diff changeset
    99
        }
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 42889
diff changeset
   100
    }
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 42889
diff changeset
   101
    return null;
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 42889
diff changeset
   102
  }
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 42889
diff changeset
   103
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 42889
diff changeset
   104
  /** Iterate over all klasses - including object, primitive
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 42889
diff changeset
   105
      array klasses */
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 42889
diff changeset
   106
  public void classesDo(ClassLoaderDataGraph.ClassVisitor v) {
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 42889
diff changeset
   107
      for (Klass l = getKlasses(); l != null; l = l.getNextLinkKlass()) {
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 42889
diff changeset
   108
          v.visit(l);
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 42889
diff changeset
   109
      }
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 42889
diff changeset
   110
  }
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 42889
diff changeset
   111
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 42889
diff changeset
   112
  /** Iterate over all klasses in the dictionary, including initiating loader. */
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 42889
diff changeset
   113
  public void allEntriesDo(ClassLoaderDataGraph.ClassAndLoaderVisitor v) {
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 42889
diff changeset
   114
      for (Klass l = getKlasses(); l != null; l = l.getNextLinkKlass()) {
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 42889
diff changeset
   115
          dictionary().allEntriesDo(v, getClassLoader());
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 42889
diff changeset
   116
      }
42889
0b0ae99d8639 8159127: hprof heap dumps broken for lambda classdata
dsamersoff
parents: 35217
diff changeset
   117
  }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   118
}