src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/utilities/PointerFinder.java
author kbarrett
Tue, 21 Nov 2017 09:47:55 -0500
changeset 48787 7638bf98a312
parent 47216 71c04702a3d5
child 54955 46409371a691
permissions -rw-r--r--
8194312: Support parallel and concurrent JNI global handle processing Summary: Add OopStorage, change JNI gloabl/weak to use OopStorage. Reviewed-by: coleenp, sspitsyn, eosterlund
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
48787
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 47216
diff changeset
     2
 * Copyright (c) 2000, 2018, 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.*;
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 13728
diff changeset
    29
import sun.jvm.hotspot.gc.shared.*;
1
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();
48787
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 47216
diff changeset
   111
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 47216
diff changeset
   112
    // --- looking in oopstorage should model OopStorage::allocation_status?
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 47216
diff changeset
   113
    // --- that is, if in a block but not allocated, then not valid.
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 47216
diff changeset
   114
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 47216
diff changeset
   115
    // Look in global handles
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 47216
diff changeset
   116
    OopStorage storage = handles.globalHandles();
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 47216
diff changeset
   117
    if ((storage != null) && storage.findOop(a)) {
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 47216
diff changeset
   118
      loc.inStrongGlobalJNIHandles = true;
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 47216
diff changeset
   119
      return loc;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
    }
48787
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 47216
diff changeset
   121
    // Look in weak global handles
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 47216
diff changeset
   122
    storage = handles.weakGlobalHandles();
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 47216
diff changeset
   123
    if ((storage != null) && storage.findOop(a)) {
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 47216
diff changeset
   124
      loc.inWeakGlobalJNIHandles = true;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
      return loc;
48787
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 47216
diff changeset
   126
    }
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 47216
diff changeset
   127
    // Look in thread-local handles
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 47216
diff changeset
   128
    for (JavaThread t = VM.getVM().getThreads().first(); t != null; t = t.next()) {
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 47216
diff changeset
   129
      JNIHandleBlock handleBlock = t.activeHandles();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
      if (handleBlock != null) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
        handleBlock = handleBlock.blockContainingHandle(a);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
        if (handleBlock != null) {
48787
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 47216
diff changeset
   133
          loc.inLocalJNIHandleBlock = true;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
          loc.handleBlock = handleBlock;
48787
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 47216
diff changeset
   135
          loc.handleThread = t;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
          return loc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
        }
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
    // Fall through; have to return it anyway.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
    return loc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
}