< prev index next >

test/lib/jdk/test/lib/hprof/parser/HprofReader.java

Print this page
*** 94,10 ***
--- 94,16 ---
      static final int HPROF_CPU_SAMPLES   = 0x0d;
      static final int HPROF_CONTROL_SETTINGS = 0x0e;
      static final int HPROF_LOCKSTATS_WAIT_TIME = 0x10;
      static final int HPROF_LOCKSTATS_HOLD_TIME = 0x11;
  
+     static final int HPROF_FLAT_ARRAYS          = 0x12;
+     static final int HPROF_INLINED_FIELDS       = 0x13;
+ 
+     static final int HPROF_FLAT_ARRAY           = 0x01;
+     static final int HPROF_CLASS_WITH_INLINED_FIELDS = 0x01;
+ 
      static final int HPROF_GC_ROOT_UNKNOWN       = 0xff;
      static final int HPROF_GC_ROOT_JNI_GLOBAL    = 0x01;
      static final int HPROF_GC_ROOT_JNI_LOCAL     = 0x02;
      static final int HPROF_GC_ROOT_JAVA_FRAME    = 0x03;
      static final int HPROF_GC_ROOT_NATIVE_STACK  = 0x04;

*** 240,32 ***
                      }
                      break;
                  }
  
                  case HPROF_HEAP_DUMP: {
!                     if (dumpsToSkip <= 0) {
                          try {
                              readHeapDump(length, currPos);
                          } catch (EOFException exp) {
                              handleEOF(exp, snapshot);
                          }
                          if (debugLevel > 0) {
                              System.out.println("    Finished processing instances in heap dump.");
                          }
-                         return snapshot;
                      } else {
                          dumpsToSkip--;
                          skipBytes(length);
                      }
                      break;
                  }
  
                  case HPROF_HEAP_DUMP_END: {
                      if (version >= VERSION_JDK6) {
!                         if (dumpsToSkip <= 0) {
!                             skipBytes(length);  // should be no-op
!                             return snapshot;
                          } else {
                              // skip this dump (of the end record for a sequence of dump segments)
                              dumpsToSkip--;
                          }
                      } else {
--- 246,31 ---
                      }
                      break;
                  }
  
                  case HPROF_HEAP_DUMP: {
!                     if (dumpsToSkip == 0) {
                          try {
                              readHeapDump(length, currPos);
                          } catch (EOFException exp) {
                              handleEOF(exp, snapshot);
                          }
                          if (debugLevel > 0) {
                              System.out.println("    Finished processing instances in heap dump.");
                          }
                      } else {
                          dumpsToSkip--;
                          skipBytes(length);
                      }
                      break;
                  }
  
                  case HPROF_HEAP_DUMP_END: {
                      if (version >= VERSION_JDK6) {
!                         if (dumpsToSkip == 0) {
!                             // update dumpsToSkip to skip other dumps
!                             dumpsToSkip--;
                          } else {
                              // skip this dump (of the end record for a sequence of dump segments)
                              dumpsToSkip--;
                          }
                      } else {

*** 276,11 ***
                      break;
                  }
  
                  case HPROF_HEAP_DUMP_SEGMENT: {
                      if (version >= VERSION_JDK6) {
!                         if (dumpsToSkip <= 0) {
                              try {
                                  // read the dump segment
                                  readHeapDump(length, currPos);
                              } catch (EOFException exp) {
                                  handleEOF(exp, snapshot);
--- 281,11 ---
                      break;
                  }
  
                  case HPROF_HEAP_DUMP_SEGMENT: {
                      if (version >= VERSION_JDK6) {
!                         if (dumpsToSkip == 0) {
                              try {
                                  // read the dump segment
                                  readHeapDump(length, currPos);
                              } catch (EOFException exp) {
                                  handleEOF(exp, snapshot);

*** 350,10 ***
--- 355,19 ---
                  {
                      // Ignore these record types
                      skipBytes(length);
                      break;
                  }
+                 case HPROF_FLAT_ARRAYS: {
+                     readFlatArrays(length);
+                     break;
+                 }
+                 case HPROF_INLINED_FIELDS: {
+                     readInlinedFields(length);
+                     break;
+                 }
+ 
                  default: {
                      skipBytes(length);
                      warn("Ignoring unrecognized record type " + type);
                  }
              }

*** 850,11 ***
              }
          }
          if (primitiveSignature != 0x00) {
              long size = elSize * (long)num;
              bytesRead += size;
!             JavaValueArray va = new JavaValueArray(primitiveSignature, start);
              skipBytes(size);
              snapshot.addHeapObject(id, va);
              snapshot.setSiteTrace(va, stackTrace);
          } else {
              long sz = (long)num * identifierSize;
--- 864,11 ---
              }
          }
          if (primitiveSignature != 0x00) {
              long size = elSize * (long)num;
              bytesRead += size;
!             JavaValueArray va = new JavaValueArray(id, primitiveSignature, start);
              skipBytes(size);
              snapshot.addHeapObject(id, va);
              snapshot.setSiteTrace(va, stackTrace);
          } else {
              long sz = (long)num * identifierSize;

*** 900,10 ***
--- 914,62 ---
                  throw new IOException("Invalid type id of " + typeId);
              }
          }
      }
  
+     private void readFlatArrays(long length) throws IOException {
+         while (length > 0) {
+             byte tag = in.readByte();
+             length--;
+             switch (tag) {
+                 case HPROF_FLAT_ARRAY: {
+                     long objId = readID();
+                     length -= identifierSize;
+                     long elementClassId = readID();
+                     length -= identifierSize;
+                     snapshot.addFlatArray(objId, elementClassId);
+                     break;
+                 }
+                 default: {
+                     throw new IOException("Invalid tag " + tag);
+                 }
+             }
+         }
+     }
+ 
+     private void readInlinedFields(long length) throws IOException {
+         while (length > 0) {
+             byte tag = in.readByte();
+             length--;
+             switch (tag) {
+                 case HPROF_CLASS_WITH_INLINED_FIELDS: {
+                     long classID = readID();
+                     length -= identifierSize;
+                     int fieldNum = in.readUnsignedShort();
+                     length -= 2;
+                     Snapshot.ClassInlinedFields[] fields = new Snapshot.ClassInlinedFields[fieldNum];
+                     for (int i = 0; i < fieldNum; i++) {
+                         int fieldIndex = in.readUnsignedShort();
+                         length -= 2;
+                         int synthFieldCount = in.readUnsignedShort();
+                         length -= 2;
+                         String fieldName = getNameFromID(readID());
+                         length -= identifierSize;
+                         long fieldClassId = readID();
+                         length -= identifierSize;
+                         fields[i] = new Snapshot.ClassInlinedFields(fieldIndex, synthFieldCount, fieldName, fieldClassId);
+                     }
+                     snapshot.addClassInlinedFields(classID, fields);
+                     break;
+                 }
+                 default: {
+                     throw new IOException("Invalid tag " + tag);
+                 }
+             }
+         }
+     }
+ 
      private void handleEOF(EOFException exp, Snapshot snapshot) {
          if (debugLevel > 0) {
              exp.printStackTrace();
          }
          warn("Unexpected EOF. Will miss information...");
< prev index next >