src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/utilities/AbstractHeapGraphWriter.java
author rehn
Tue, 21 May 2019 10:34:57 +0200
changeset 54955 46409371a691
parent 50929 ef57cfcd22ff
permissions -rw-r--r--
8223306: Remove threads linked list (use ThreadsList's array in SA) Reviewed-by: coleenp, dholmes, dcubed
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
54955
46409371a691 8223306: Remove threads linked list (use ThreadsList's array in SA)
rehn
parents: 50929
diff changeset
     2
 * Copyright (c) 2004, 2019, 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: 670
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 670
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: 670
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 java.io.*;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
import sun.jvm.hotspot.debugger.*;
48787
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 47216
diff changeset
    29
import sun.jvm.hotspot.gc.shared.OopStorage;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
import sun.jvm.hotspot.memory.*;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
import sun.jvm.hotspot.oops.*;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
import sun.jvm.hotspot.runtime.*;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
/**
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
 * This is abstract base class for heap graph writers. This class does
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
 * not assume any file format for the heap graph. It hides heap
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
 * iteration, object (fields) iteration mechanism from derived
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
 * classes. This class does not even accept OutputStream etc. so that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
 * derived class can construct specific writer/filter from input
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
 * stream.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
public abstract class AbstractHeapGraphWriter implements HeapGraphWriter {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
    // the function iterates heap and calls Oop type specific writers
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
    protected void write() throws IOException {
50929
ef57cfcd22ff 8205534: Remove SymbolTable dependency from serviceability agent
coleenp
parents: 48787
diff changeset
    46
        javaLangClass = "java/lang/Class";
ef57cfcd22ff 8205534: Remove SymbolTable dependency from serviceability agent
coleenp
parents: 48787
diff changeset
    47
        javaLangString = "java/lang/String";
ef57cfcd22ff 8205534: Remove SymbolTable dependency from serviceability agent
coleenp
parents: 48787
diff changeset
    48
        javaLangThread = "java/lang/Thread";
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
        ObjectHeap heap = VM.getVM().getObjectHeap();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
        try {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
            heap.iterate(new DefaultHeapVisitor() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
                    public void prologue(long usedSize) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
                        try {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
                            writeHeapHeader();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
                        } catch (IOException exp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
                            throw new RuntimeException(exp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
                        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
                    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
                    public boolean doObj(Oop oop) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
                        try {
20388
2cf7b26682dc 6313383: SA: Update jmap to support HPROF binary format "JAVA PROFILE 1.0.2"
sla
parents: 13728
diff changeset
    62
                            writeHeapRecordPrologue();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
                            if (oop instanceof TypeArray) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
                                writePrimitiveArray((TypeArray)oop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
                            } else if (oop instanceof ObjArray) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
                                Klass klass = oop.getKlass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
                                ObjArrayKlass oak = (ObjArrayKlass) klass;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
                                Klass bottomType = oak.getBottomKlass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
                                if (bottomType instanceof InstanceKlass ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
                                    bottomType instanceof TypeArrayKlass) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
                                    writeObjectArray((ObjArray)oop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
                                } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
                                    writeInternalObject(oop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
                                }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
                            } else if (oop instanceof Instance) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
                                Instance instance = (Instance) oop;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
                                Klass klass = instance.getKlass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
                                Symbol name = klass.getName();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
                                if (name.equals(javaLangString)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
                                    writeString(instance);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
                                } else if (name.equals(javaLangClass)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
                                    writeClass(instance);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
                                } else if (name.equals(javaLangThread)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
                                    writeThread(instance);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
                                } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
                                    klass = klass.getSuper();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
                                    while (klass != null) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
                                        name = klass.getName();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
                                        if (name.equals(javaLangThread)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
                                            writeThread(instance);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
                                            return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
                                        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
                                        klass = klass.getSuper();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
                                    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
                                    writeInstance(instance);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
                                }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
                            } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
                                // not-a-Java-visible oop
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
                                writeInternalObject(oop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
                            }
20388
2cf7b26682dc 6313383: SA: Update jmap to support HPROF binary format "JAVA PROFILE 1.0.2"
sla
parents: 13728
diff changeset
   101
                            writeHeapRecordEpilogue();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
                        } catch (IOException exp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
                            throw new RuntimeException(exp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
                        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
                        return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
                    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
                    public void epilogue() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
                        try {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
                            writeHeapFooter();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
                        } catch (IOException exp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
                            throw new RuntimeException(exp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
                        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
                    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
                });
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
43671
a152f2d3320e 8171084: heapdump/JMapHeapCore fails with java.lang.RuntimeException: Heap segment size overflow
jgeorge
parents: 35217
diff changeset
   117
                writeHeapRecordPrologue();
a152f2d3320e 8171084: heapdump/JMapHeapCore fails with java.lang.RuntimeException: Heap segment size overflow
jgeorge
parents: 35217
diff changeset
   118
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
                // write JavaThreads
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
                writeJavaThreads();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
                // write JNI global handles
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
                writeGlobalJNIHandles();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
        } catch (RuntimeException re) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
            handleRuntimeException(re);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
    protected void writeJavaThreads() throws IOException {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
        Threads threads = VM.getVM().getThreads();
54955
46409371a691 8223306: Remove threads linked list (use ThreadsList's array in SA)
rehn
parents: 50929
diff changeset
   132
        for (int i = 0; i < threads.getNumberOfThreads(); i++) {
46409371a691 8223306: Remove threads linked list (use ThreadsList's array in SA)
rehn
parents: 50929
diff changeset
   133
            JavaThread jt = threads.getJavaThreadAt(i);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
            if (jt.getThreadObj() != null) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
                // Note that the thread serial number range is 1-to-N
54955
46409371a691 8223306: Remove threads linked list (use ThreadsList's array in SA)
rehn
parents: 50929
diff changeset
   136
                writeJavaThread(jt, i + 1);
1
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
    protected void writeJavaThread(JavaThread jt, int index)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
                            throws IOException {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
    protected void writeGlobalJNIHandles() throws IOException {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
        JNIHandles handles = VM.getVM().getJNIHandles();
48787
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 47216
diff changeset
   147
        OopStorage blk = handles.globalHandles();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
        if (blk != null) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
            try {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
                blk.oopsDo(new AddressVisitor() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
                          public void visitAddress(Address handleAddr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
                              try {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
                                  if (handleAddr != null) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
                                      writeGlobalJNIHandle(handleAddr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
                                  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
                              } catch (IOException exp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
                                  throw new RuntimeException(exp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
                              }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
                          }
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   160
                              public void visitCompOopAddress(Address handleAddr) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   161
                             throw new RuntimeException("Should not reach here. JNIHandles are not compressed");
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   162
                          }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
                       });
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
            } catch (RuntimeException re) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
                handleRuntimeException(re);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
            }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
    protected void writeGlobalJNIHandle(Address handleAddr) throws IOException {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
    protected void writeHeapHeader() throws IOException {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
    // write non-Java-visible (hotspot internal) object
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
    protected void writeInternalObject(Oop oop) throws IOException {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
    // write Java primitive array
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
    protected void writePrimitiveArray(TypeArray array) throws IOException {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
        writeObject(array);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
    // write Java object array
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
    protected void writeObjectArray(ObjArray array) throws IOException {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
        writeObject(array);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
    protected void writeInstance(Instance instance) throws IOException {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
        writeObject(instance);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
    protected void writeString(Instance instance) throws IOException {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
        writeInstance(instance);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
    protected void writeClass(Instance instance) throws IOException {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
        writeInstance(instance);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
    protected void writeThread(Instance instance) throws IOException {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
        writeInstance(instance);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
    protected void writeObject(Oop oop) throws IOException {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
        writeObjectHeader(oop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
        writeObjectFields(oop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
        writeObjectFooter(oop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
    protected void writeObjectHeader(Oop oop) throws IOException {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
    // write instance fields of given object
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
    protected void writeObjectFields(final Oop oop) throws IOException {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
        try {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
            oop.iterate(new DefaultOopVisitor() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
                    public void doOop(OopField field, boolean isVMField) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
                        try {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
                                writeReferenceField(oop, field);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
                        } catch (IOException exp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
                            throw new RuntimeException(exp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
                        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
                    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
                    public void doByte(ByteField field, boolean isVMField) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
                        try {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
                            writeByteField(oop, field);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
                        } catch (IOException exp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
                            throw new RuntimeException(exp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
                        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
                    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
                    public void doChar(CharField field, boolean isVMField) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
                        try {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
                            writeCharField(oop, field);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
                        } catch (IOException exp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
                            throw new RuntimeException(exp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
                        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
                    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
                    public void doBoolean(BooleanField field, boolean vField) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
                        try {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
                            writeBooleanField(oop, field);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
                        } catch (IOException exp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
                            throw new RuntimeException(exp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
                        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
                    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
                    public void doShort(ShortField field, boolean isVMField) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
                        try {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
                            writeShortField(oop, field);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
                        } catch (IOException exp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
                            throw new RuntimeException(exp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
                        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
                    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
                    public void doInt(IntField field, boolean isVMField) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
                        try {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
                            writeIntField(oop, field);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
                        } catch (IOException exp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
                            throw new RuntimeException(exp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
                        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
                    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
                    public void doLong(LongField field, boolean isVMField) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
                        try {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
                            writeLongField(oop, field);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
                        } catch (IOException exp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
                            throw new RuntimeException(exp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
                        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
                    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
                    public void doFloat(FloatField field, boolean isVMField) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
                        try {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
                            writeFloatField(oop, field);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
                        } catch (IOException exp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
                            throw new RuntimeException(exp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
                        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
                    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
                    public void doDouble(DoubleField field, boolean vField) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
                        try {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
                            writeDoubleField(oop, field);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
                        } catch (IOException exp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
                            throw new RuntimeException(exp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
                        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
                    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
                }, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
        } catch (RuntimeException re) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
            handleRuntimeException(re);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   296
    // write instance fields of given object
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   297
    protected void writeObjectFields(final InstanceKlass oop) throws IOException {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   298
        try {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   299
            oop.iterateStaticFields(new DefaultOopVisitor() {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   300
                    public void doOop(OopField field, boolean isVMField) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   301
                        try {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   302
                            writeReferenceField(null, field);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   303
                        } catch (IOException exp) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   304
                            throw new RuntimeException(exp);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   305
                        }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   308
                    public void doByte(ByteField field, boolean isVMField) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   309
                        try {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   310
                            writeByteField(null, field);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   311
                        } catch (IOException exp) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   312
                            throw new RuntimeException(exp);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   313
                        }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   314
                    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   315
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   316
                    public void doChar(CharField field, boolean isVMField) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   317
                        try {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   318
                            writeCharField(null, field);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   319
                        } catch (IOException exp) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   320
                            throw new RuntimeException(exp);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   321
                        }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   322
                    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   323
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   324
                    public void doBoolean(BooleanField field, boolean vField) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   325
                        try {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   326
                            writeBooleanField(null, field);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   327
                        } catch (IOException exp) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   328
                            throw new RuntimeException(exp);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   329
                        }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   330
                    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   331
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   332
                    public void doShort(ShortField field, boolean isVMField) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   333
                        try {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   334
                            writeShortField(null, field);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   335
                        } catch (IOException exp) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   336
                            throw new RuntimeException(exp);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   337
                        }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   338
                    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   339
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   340
                    public void doInt(IntField field, boolean isVMField) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   341
                        try {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   342
                            writeIntField(null, field);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   343
                        } catch (IOException exp) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   344
                            throw new RuntimeException(exp);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   345
                        }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   346
                    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   347
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   348
                    public void doLong(LongField field, boolean isVMField) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   349
                        try {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   350
                            writeLongField(null, field);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   351
                        } catch (IOException exp) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   352
                            throw new RuntimeException(exp);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   353
                        }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   354
                    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   355
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   356
                    public void doFloat(FloatField field, boolean isVMField) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   357
                        try {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   358
                            writeFloatField(null, field);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   359
                        } catch (IOException exp) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   360
                            throw new RuntimeException(exp);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   361
                        }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   362
                    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   363
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   364
                    public void doDouble(DoubleField field, boolean vField) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   365
                        try {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   366
                            writeDoubleField(null, field);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   367
                        } catch (IOException exp) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   368
                            throw new RuntimeException(exp);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   369
                        }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   370
                    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   371
                });
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   372
        } catch (RuntimeException re) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   373
            handleRuntimeException(re);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   374
        }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   375
    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   376
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   377
    // object field writers
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
    protected void writeReferenceField(Oop oop, OopField field)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
        throws IOException {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
    protected void writeByteField(Oop oop, ByteField field)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
        throws IOException {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
    protected void writeCharField(Oop oop, CharField field)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
        throws IOException {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
    protected void writeBooleanField(Oop oop, BooleanField field)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
        throws IOException {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
    protected void writeShortField(Oop oop, ShortField field)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
        throws IOException {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
    protected void writeIntField(Oop oop, IntField field)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
        throws IOException {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
    protected void writeLongField(Oop oop, LongField field)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
        throws IOException {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
    protected void writeFloatField(Oop oop, FloatField field)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
        throws IOException {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
    protected void writeDoubleField(Oop oop, DoubleField field)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
        throws IOException {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
    protected void writeObjectFooter(Oop oop) throws IOException {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
    protected void writeHeapFooter() throws IOException {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
20388
2cf7b26682dc 6313383: SA: Update jmap to support HPROF binary format "JAVA PROFILE 1.0.2"
sla
parents: 13728
diff changeset
   420
    protected void writeHeapRecordPrologue() throws IOException {
2cf7b26682dc 6313383: SA: Update jmap to support HPROF binary format "JAVA PROFILE 1.0.2"
sla
parents: 13728
diff changeset
   421
    }
2cf7b26682dc 6313383: SA: Update jmap to support HPROF binary format "JAVA PROFILE 1.0.2"
sla
parents: 13728
diff changeset
   422
2cf7b26682dc 6313383: SA: Update jmap to support HPROF binary format "JAVA PROFILE 1.0.2"
sla
parents: 13728
diff changeset
   423
    protected void writeHeapRecordEpilogue() throws IOException {
2cf7b26682dc 6313383: SA: Update jmap to support HPROF binary format "JAVA PROFILE 1.0.2"
sla
parents: 13728
diff changeset
   424
    }
2cf7b26682dc 6313383: SA: Update jmap to support HPROF binary format "JAVA PROFILE 1.0.2"
sla
parents: 13728
diff changeset
   425
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
    // HeapVisitor, OopVisitor methods can't throw any non-runtime
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
    // exception. But, derived class write methods (which are called
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
    // from visitor callbacks) may throw IOException. Hence, we throw
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
    // RuntimeException with origianal IOException as cause from the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
    // visitor methods. This method gets back the original IOException
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
    // (if any) and re-throws the same.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
    protected void handleRuntimeException(RuntimeException re)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
        throws IOException {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
        Throwable cause = re.getCause();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
        if (cause != null && cause instanceof IOException) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
            throw (IOException) cause;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
        } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
            // some other RuntimeException, just re-throw
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
            throw re;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
    // whether a given oop is Java visible or hotspot internal?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
    protected boolean isJavaVisible(Oop oop) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
        if (oop instanceof Instance || oop instanceof TypeArray) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
            return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
        } else if (oop instanceof ObjArray) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
            ObjArrayKlass oak = (ObjArrayKlass) oop.getKlass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
            Klass bottomKlass = oak.getBottomKlass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
            return bottomKlass instanceof InstanceKlass ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
                   bottomKlass instanceof TypeArrayKlass;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
        } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
            return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
50929
ef57cfcd22ff 8205534: Remove SymbolTable dependency from serviceability agent
coleenp
parents: 48787
diff changeset
   457
    protected String javaLangClass;
ef57cfcd22ff 8205534: Remove SymbolTable dependency from serviceability agent
coleenp
parents: 48787
diff changeset
   458
    protected String javaLangString;
ef57cfcd22ff 8205534: Remove SymbolTable dependency from serviceability agent
coleenp
parents: 48787
diff changeset
   459
    protected String javaLangThread;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
}