src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/utilities/AbstractHeapGraphWriter.java
author kbarrett
Tue, 21 Nov 2017 09:47:55 -0500
changeset 48787 7638bf98a312
parent 47216 71c04702a3d5
child 50929 ef57cfcd22ff
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) 2004, 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: 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 {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
        SymbolTable symTbl = VM.getVM().getSymbolTable();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
        javaLangClass = symTbl.probe("java/lang/Class");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
        javaLangString = symTbl.probe("java/lang/String");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
        javaLangThread = symTbl.probe("java/lang/Thread");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
        ObjectHeap heap = VM.getVM().getObjectHeap();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
        try {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
            heap.iterate(new DefaultHeapVisitor() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
                    public void prologue(long usedSize) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
                        try {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
                            writeHeapHeader();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
                        } catch (IOException exp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
                            throw new RuntimeException(exp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
                        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
                    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
                    public boolean doObj(Oop oop) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
                        try {
20388
2cf7b26682dc 6313383: SA: Update jmap to support HPROF binary format "JAVA PROFILE 1.0.2"
sla
parents: 13728
diff changeset
    63
                            writeHeapRecordPrologue();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
                            if (oop instanceof TypeArray) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
                                writePrimitiveArray((TypeArray)oop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
                            } else if (oop instanceof ObjArray) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
                                Klass klass = oop.getKlass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
                                ObjArrayKlass oak = (ObjArrayKlass) klass;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
                                Klass bottomType = oak.getBottomKlass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
                                if (bottomType instanceof InstanceKlass ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
                                    bottomType instanceof TypeArrayKlass) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
                                    writeObjectArray((ObjArray)oop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
                                } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
                                    writeInternalObject(oop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
                                }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
                            } else if (oop instanceof Instance) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
                                Instance instance = (Instance) oop;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
                                Klass klass = instance.getKlass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
                                Symbol name = klass.getName();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
                                if (name.equals(javaLangString)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
                                    writeString(instance);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
                                } else if (name.equals(javaLangClass)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
                                    writeClass(instance);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
                                } else if (name.equals(javaLangThread)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
                                    writeThread(instance);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
                                } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
                                    klass = klass.getSuper();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
                                    while (klass != null) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
                                        name = klass.getName();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
                                        if (name.equals(javaLangThread)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
                                            writeThread(instance);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
                                            return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
                                        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
                                        klass = klass.getSuper();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
                                    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
                                    writeInstance(instance);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
                                }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
                            } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
                                // not-a-Java-visible oop
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
                                writeInternalObject(oop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
                            }
20388
2cf7b26682dc 6313383: SA: Update jmap to support HPROF binary format "JAVA PROFILE 1.0.2"
sla
parents: 13728
diff changeset
   102
                            writeHeapRecordEpilogue();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
                        } catch (IOException exp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
                            throw new RuntimeException(exp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
                        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
                        return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
                    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
                    public void epilogue() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
                        try {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
                            writeHeapFooter();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
                        } catch (IOException exp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
                            throw new RuntimeException(exp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
                        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
                    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
                });
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
43671
a152f2d3320e 8171084: heapdump/JMapHeapCore fails with java.lang.RuntimeException: Heap segment size overflow
jgeorge
parents: 35217
diff changeset
   118
                writeHeapRecordPrologue();
a152f2d3320e 8171084: heapdump/JMapHeapCore fails with java.lang.RuntimeException: Heap segment size overflow
jgeorge
parents: 35217
diff changeset
   119
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
                // write JavaThreads
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
                writeJavaThreads();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
                // write JNI global handles
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
                writeGlobalJNIHandles();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
        } catch (RuntimeException re) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
            handleRuntimeException(re);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
    protected void writeJavaThreads() throws IOException {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
        Threads threads = VM.getVM().getThreads();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
        JavaThread jt = threads.first();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
        int index = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
        while (jt != null) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
            if (jt.getThreadObj() != null) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
                // Note that the thread serial number range is 1-to-N
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
                writeJavaThread(jt, index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
                index++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
            }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
            jt = jt.next();
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
    protected void writeJavaThread(JavaThread jt, int index)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
                            throws IOException {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
    protected void writeGlobalJNIHandles() throws IOException {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
        JNIHandles handles = VM.getVM().getJNIHandles();
48787
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 47216
diff changeset
   151
        OopStorage blk = handles.globalHandles();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
        if (blk != null) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
            try {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
                blk.oopsDo(new AddressVisitor() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
                          public void visitAddress(Address handleAddr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
                              try {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
                                  if (handleAddr != null) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
                                      writeGlobalJNIHandle(handleAddr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
                                  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
                              } catch (IOException exp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
                                  throw new RuntimeException(exp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
                              }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
                          }
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   164
                              public void visitCompOopAddress(Address handleAddr) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   165
                             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
   166
                          }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
                       });
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
            } catch (RuntimeException re) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
                handleRuntimeException(re);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
            }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
    protected void writeGlobalJNIHandle(Address handleAddr) throws IOException {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
    protected void writeHeapHeader() 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 non-Java-visible (hotspot internal) object
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
    protected void writeInternalObject(Oop oop) throws IOException {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
    // write Java primitive array
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
    protected void writePrimitiveArray(TypeArray array) throws IOException {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
        writeObject(array);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
    // write Java object array
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
    protected void writeObjectArray(ObjArray array) throws IOException {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
        writeObject(array);
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 writeInstance(Instance instance) throws IOException {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
        writeObject(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 writeString(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 writeClass(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 writeThread(Instance instance) throws IOException {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
        writeInstance(instance);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
    protected void writeObject(Oop oop) throws IOException {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
        writeObjectHeader(oop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
        writeObjectFields(oop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
        writeObjectFooter(oop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
    protected void writeObjectHeader(Oop oop) throws IOException {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
    // write instance fields of given object
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
    protected void writeObjectFields(final Oop oop) throws IOException {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
        try {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
            oop.iterate(new DefaultOopVisitor() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
                    public void doOop(OopField field, boolean isVMField) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
                        try {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
                                writeReferenceField(oop, field);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
                        } catch (IOException exp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
                            throw new RuntimeException(exp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
                        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
                    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
                    public void doByte(ByteField field, boolean isVMField) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
                        try {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
                            writeByteField(oop, field);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
                        } catch (IOException exp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
                            throw new RuntimeException(exp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
                        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
                    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
                    public void doChar(CharField field, boolean isVMField) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
                        try {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
                            writeCharField(oop, field);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
                        } catch (IOException exp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
                            throw new RuntimeException(exp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
                        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
                    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
                    public void doBoolean(BooleanField field, boolean vField) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
                        try {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
                            writeBooleanField(oop, field);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
                        } catch (IOException exp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
                            throw new RuntimeException(exp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
                        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
                    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
                    public void doShort(ShortField field, boolean isVMField) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
                        try {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
                            writeShortField(oop, field);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
                        } catch (IOException exp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
                            throw new RuntimeException(exp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
                        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
                    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
                    public void doInt(IntField field, boolean isVMField) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
                        try {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
                            writeIntField(oop, field);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
                        } catch (IOException exp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
                            throw new RuntimeException(exp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
                        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
                    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
                    public void doLong(LongField field, boolean isVMField) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
                        try {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
                            writeLongField(oop, field);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
                        } catch (IOException exp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
                            throw new RuntimeException(exp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
                        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
                    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
                    public void doFloat(FloatField field, boolean isVMField) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
                        try {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
                            writeFloatField(oop, field);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
                        } catch (IOException exp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
                            throw new RuntimeException(exp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
                        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
                    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
                    public void doDouble(DoubleField field, boolean vField) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
                        try {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
                            writeDoubleField(oop, field);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
                        } catch (IOException exp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
                            throw new RuntimeException(exp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
                        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
                    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
                }, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
        } catch (RuntimeException re) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
            handleRuntimeException(re);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   300
    // write instance fields of given object
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   301
    protected void writeObjectFields(final InstanceKlass oop) throws IOException {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   302
        try {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   303
            oop.iterateStaticFields(new DefaultOopVisitor() {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   304
                    public void doOop(OopField field, boolean isVMField) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   305
                        try {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   306
                            writeReferenceField(null, field);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   307
                        } catch (IOException exp) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   308
                            throw new RuntimeException(exp);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   309
                        }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   312
                    public void doByte(ByteField field, boolean isVMField) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   313
                        try {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   314
                            writeByteField(null, field);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   315
                        } catch (IOException exp) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   316
                            throw new RuntimeException(exp);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   317
                        }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   318
                    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   319
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   320
                    public void doChar(CharField field, boolean isVMField) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   321
                        try {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   322
                            writeCharField(null, field);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   323
                        } catch (IOException exp) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   324
                            throw new RuntimeException(exp);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   325
                        }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   326
                    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   327
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   328
                    public void doBoolean(BooleanField field, boolean vField) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   329
                        try {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   330
                            writeBooleanField(null, field);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   331
                        } catch (IOException exp) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   332
                            throw new RuntimeException(exp);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   333
                        }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   334
                    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   335
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   336
                    public void doShort(ShortField field, boolean isVMField) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   337
                        try {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   338
                            writeShortField(null, field);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   339
                        } catch (IOException exp) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   340
                            throw new RuntimeException(exp);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   341
                        }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   342
                    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   343
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   344
                    public void doInt(IntField field, boolean isVMField) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   345
                        try {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   346
                            writeIntField(null, field);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   347
                        } catch (IOException exp) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   348
                            throw new RuntimeException(exp);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   349
                        }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   350
                    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   351
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   352
                    public void doLong(LongField field, boolean isVMField) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   353
                        try {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   354
                            writeLongField(null, field);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   355
                        } catch (IOException exp) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   356
                            throw new RuntimeException(exp);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   357
                        }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   358
                    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   359
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   360
                    public void doFloat(FloatField field, boolean isVMField) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   361
                        try {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   362
                            writeFloatField(null, field);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   363
                        } catch (IOException exp) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   364
                            throw new RuntimeException(exp);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   365
                        }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   366
                    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   367
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   368
                    public void doDouble(DoubleField field, boolean vField) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   369
                        try {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   370
                            writeDoubleField(null, field);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   371
                        } catch (IOException exp) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   372
                            throw new RuntimeException(exp);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   373
                        }
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
        } catch (RuntimeException re) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   377
            handleRuntimeException(re);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   378
        }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   379
    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   380
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   381
    // object field writers
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
    protected void writeReferenceField(Oop oop, OopField 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 writeByteField(Oop oop, ByteField 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 writeCharField(Oop oop, CharField 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 writeBooleanField(Oop oop, BooleanField 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 writeShortField(Oop oop, ShortField 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 writeIntField(Oop oop, IntField 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 writeLongField(Oop oop, LongField 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 writeFloatField(Oop oop, FloatField 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 writeDoubleField(Oop oop, DoubleField field)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
        throws IOException {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
    protected void writeObjectFooter(Oop oop) throws IOException {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
    protected void writeHeapFooter() throws IOException {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
20388
2cf7b26682dc 6313383: SA: Update jmap to support HPROF binary format "JAVA PROFILE 1.0.2"
sla
parents: 13728
diff changeset
   424
    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
   425
    }
2cf7b26682dc 6313383: SA: Update jmap to support HPROF binary format "JAVA PROFILE 1.0.2"
sla
parents: 13728
diff changeset
   426
2cf7b26682dc 6313383: SA: Update jmap to support HPROF binary format "JAVA PROFILE 1.0.2"
sla
parents: 13728
diff changeset
   427
    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
   428
    }
2cf7b26682dc 6313383: SA: Update jmap to support HPROF binary format "JAVA PROFILE 1.0.2"
sla
parents: 13728
diff changeset
   429
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
    // HeapVisitor, OopVisitor methods can't throw any non-runtime
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
    // exception. But, derived class write methods (which are called
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
    // from visitor callbacks) may throw IOException. Hence, we throw
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
    // RuntimeException with origianal IOException as cause from the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
    // visitor methods. This method gets back the original IOException
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
    // (if any) and re-throws the same.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
    protected void handleRuntimeException(RuntimeException re)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
        throws IOException {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
        Throwable cause = re.getCause();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
        if (cause != null && cause instanceof IOException) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
            throw (IOException) cause;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
        } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
            // some other RuntimeException, just re-throw
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
            throw re;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
    // whether a given oop is Java visible or hotspot internal?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
    protected boolean isJavaVisible(Oop oop) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
        if (oop instanceof Instance || oop instanceof TypeArray) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
            return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
        } else if (oop instanceof ObjArray) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
            ObjArrayKlass oak = (ObjArrayKlass) oop.getKlass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
            Klass bottomKlass = oak.getBottomKlass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
            return bottomKlass instanceof InstanceKlass ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
                   bottomKlass instanceof TypeArrayKlass;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
        } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
            return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
    protected Symbol javaLangClass;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
    protected Symbol javaLangString;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
    protected Symbol javaLangThread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
}