hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/PointerFinder.java
author coleenp
Sat, 01 Sep 2012 13:25:18 -0400
changeset 13728 882756847a04
parent 6418 6671edbd230e
child 30764 fec48bf5a827
permissions -rw-r--r--
6964458: Reimplement class meta-data storage to use native memory Summary: Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland Contributed-by: jmasa <jon.masamitsu@oracle.com>, stefank <stefan.karlsson@oracle.com>, mgerdin <mikael.gerdin@oracle.com>, never <tom.rodriguez@oracle.com>
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6418
diff changeset
     2
 * Copyright (c) 2000, 2012, 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: 1
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
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: 1
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
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
package sun.jvm.hotspot.utilities;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
import sun.jvm.hotspot.code.*;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
import sun.jvm.hotspot.debugger.*;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
import sun.jvm.hotspot.gc_interface.*;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
import sun.jvm.hotspot.interpreter.*;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
import sun.jvm.hotspot.runtime.*;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
import sun.jvm.hotspot.memory.*;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
/** This class, only intended for use in the debugging system,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
    provides the functionality of find() in the VM. */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
public class PointerFinder {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  public static PointerLocation find(Address a) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
    PointerLocation loc = new PointerLocation(a);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
    CollectedHeap heap = VM.getVM().getUniverse().heap();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
    if (heap instanceof GenCollectedHeap) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
      GenCollectedHeap genheap = (GenCollectedHeap) heap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
      if (genheap.isIn(a)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
        for (int i = 0; i < genheap.nGens(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
          Generation g = genheap.getGen(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
          if (g.isIn(a)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
            loc.gen = g;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
            break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
          if (Assert.ASSERTS_ENABLED) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6418
diff changeset
    54
          Assert.that(loc.gen != null, "Should have found this in a generation");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
        if (VM.getVM().getUseTLAB()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
          // Try to find thread containing it
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
          for (JavaThread t = VM.getVM().getThreads().first(); t != null; t = t.next()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
            ThreadLocalAllocBuffer tlab = t.tlab();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
            if (tlab.contains(a)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
              loc.inTLAB = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
              loc.tlabThread = t;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
              loc.tlab = tlab;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
              break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
            }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
        return loc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
      if (heap.isIn(a)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
        loc.heap = heap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
        return loc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
    Interpreter interp = VM.getVM().getInterpreter();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
    if (interp.contains(a)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
      loc.inInterpreter = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
      loc.interpreterCodelet = interp.getCodeletContaining(a);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
      return loc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
    if (!VM.getVM().isCore()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
      CodeCache c = VM.getVM().getCodeCache();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
      if (c.contains(a)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
        loc.inCodeCache = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
        loc.blob = c.findBlobUnsafe(a);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
        if (Assert.ASSERTS_ENABLED) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
          Assert.that(loc.blob != null, "Should have found CodeBlob");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
        }
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 5702
diff changeset
    94
        loc.inBlobCode = loc.blob.codeContains(a);
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 5702
diff changeset
    95
        loc.inBlobData = loc.blob.dataContains(a);
5686
5435e77aa3df 6951083: oops and relocations should part of nmethod not CodeBlob
twisti
parents: 1
diff changeset
    96
5435e77aa3df 6951083: oops and relocations should part of nmethod not CodeBlob
twisti
parents: 1
diff changeset
    97
        if (loc.blob.isNMethod()) {
5435e77aa3df 6951083: oops and relocations should part of nmethod not CodeBlob
twisti
parents: 1
diff changeset
    98
            NMethod nm = (NMethod) loc.blob;
5435e77aa3df 6951083: oops and relocations should part of nmethod not CodeBlob
twisti
parents: 1
diff changeset
    99
            loc.inBlobOops = nm.oopsContains(a);
5435e77aa3df 6951083: oops and relocations should part of nmethod not CodeBlob
twisti
parents: 1
diff changeset
   100
        }
5435e77aa3df 6951083: oops and relocations should part of nmethod not CodeBlob
twisti
parents: 1
diff changeset
   101
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 5702
diff changeset
   102
        loc.inBlobUnknownLocation = (!(loc.inBlobCode ||
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
                                       loc.inBlobData ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
                                       loc.inBlobOops));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
        return loc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
    // Check JNIHandles; both local and global
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
    JNIHandles handles = VM.getVM().getJNIHandles();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
    JNIHandleBlock handleBlock = handles.globalHandles();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
    if (handleBlock != null) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
      handleBlock = handleBlock.blockContainingHandle(a);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
    if (handleBlock != null) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
      loc.inStrongGlobalJNIHandleBlock = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
      loc.handleBlock = handleBlock;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
      return loc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
      handleBlock = handles.weakGlobalHandles();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
      if (handleBlock != null) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
        handleBlock = handleBlock.blockContainingHandle(a);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
        if (handleBlock != null) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
          loc.inWeakGlobalJNIHandleBlock = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
          loc.handleBlock = handleBlock;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
          return loc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
        } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
          // Look in thread-local handles
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
          for (JavaThread t = VM.getVM().getThreads().first(); t != null; t = t.next()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
            handleBlock = t.activeHandles();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
            if (handleBlock != null) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
              handleBlock = handleBlock.blockContainingHandle(a);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
              if (handleBlock != null) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
                loc.inLocalJNIHandleBlock = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
                loc.handleBlock = handleBlock;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
                loc.handleThread = t;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
                return loc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
              }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
            }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
      }
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
    // Fall through; have to return it anyway.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
    return loc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
}