public class sun.jvm.hotspot.oops.TypeArray extends sun.jvm.hotspot.oops.Array
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: sun.jvm.hotspot.oops.TypeArray
  super_class: sun.jvm.hotspot.oops.Array
{
  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 38
            new sun.jvm.hotspot.oops.TypeArray$1
            dup
            invokespecial sun.jvm.hotspot.oops.TypeArray$1.<init>:()V
            invokestatic sun.jvm.hotspot.runtime.VM.registerVMInitializedObserver:(Ljava/util/Observer;)V
         1: .line 43
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  private static synchronized void initialize(sun.jvm.hotspot.types.TypeDataBase);
    descriptor: (Lsun/jvm/hotspot/types/TypeDataBase;)V
    flags: (0x002a) ACC_PRIVATE, ACC_STATIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.jvm.hotspot.types.TypeDataBase db
         0: .line 46
            aload 0 /* db */
            ldc "typeArrayOop"
            invokeinterface sun.jvm.hotspot.types.TypeDataBase.lookupType:(Ljava/lang/String;)Lsun/jvm/hotspot/types/Type;
            pop
         1: .line 47
            return
        end local 0 // sun.jvm.hotspot.types.TypeDataBase db
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0    db  Lsun/jvm/hotspot/types/TypeDataBase;
    Exceptions:
      throws sun.jvm.hotspot.types.WrongTypeException
    MethodParameters:
      Name  Flags
      db    

  void <init>(sun.jvm.hotspot.debugger.OopHandle, sun.jvm.hotspot.oops.ObjectHeap);
    descriptor: (Lsun/jvm/hotspot/debugger/OopHandle;Lsun/jvm/hotspot/oops/ObjectHeap;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // sun.jvm.hotspot.oops.TypeArray this
        start local 1 // sun.jvm.hotspot.debugger.OopHandle handle
        start local 2 // sun.jvm.hotspot.oops.ObjectHeap heap
         0: .line 50
            aload 0 /* this */
            aload 1 /* handle */
            aload 2 /* heap */
            invokespecial sun.jvm.hotspot.oops.Array.<init>:(Lsun/jvm/hotspot/debugger/OopHandle;Lsun/jvm/hotspot/oops/ObjectHeap;)V
         1: .line 51
            return
        end local 2 // sun.jvm.hotspot.oops.ObjectHeap heap
        end local 1 // sun.jvm.hotspot.debugger.OopHandle handle
        end local 0 // sun.jvm.hotspot.oops.TypeArray this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lsun/jvm/hotspot/oops/TypeArray;
            0    2     1  handle  Lsun/jvm/hotspot/debugger/OopHandle;
            0    2     2    heap  Lsun/jvm/hotspot/oops/ObjectHeap;
    MethodParameters:
        Name  Flags
      handle  
      heap    

  public boolean isTypeArray();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.jvm.hotspot.oops.TypeArray this
         0: .line 53
            iconst_1
            ireturn
        end local 0 // sun.jvm.hotspot.oops.TypeArray this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/jvm/hotspot/oops/TypeArray;

  public byte getByteAt(long);
    descriptor: (J)B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=5, args_size=2
        start local 0 // sun.jvm.hotspot.oops.TypeArray this
        start local 1 // long index
         0: .line 56
            lload 1 /* index */
            lconst_0
            lcmp
            iflt 1
            lload 1 /* index */
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.oops.TypeArray.getLength:()J
            lcmp
            iflt 2
         1: .line 57
      StackMap locals:
      StackMap stack:
            new java.lang.ArrayIndexOutOfBoundsException
            dup
            new java.lang.StringBuilder
            dup
            lload 1 /* index */
            invokestatic java.lang.String.valueOf:(J)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc " "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.oops.TypeArray.getLength:()J
            invokevirtual java.lang.StringBuilder.append:(J)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.ArrayIndexOutOfBoundsException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 59
      StackMap locals:
      StackMap stack:
            getstatic sun.jvm.hotspot.runtime.BasicType.T_BYTE:Lsun/jvm/hotspot/runtime/BasicType;
            invokestatic sun.jvm.hotspot.oops.TypeArray.baseOffsetInBytes:(Lsun/jvm/hotspot/runtime/BasicType;)J
            lload 1 /* index */
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.oops.TypeArray.getHeap:()Lsun/jvm/hotspot/oops/ObjectHeap;
            invokevirtual sun.jvm.hotspot.oops.ObjectHeap.getByteSize:()J
            lmul
            ladd
            lstore 3 /* offset */
        start local 3 // long offset
         3: .line 60
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.oops.TypeArray.getHandle:()Lsun/jvm/hotspot/debugger/OopHandle;
            lload 3 /* offset */
            invokeinterface sun.jvm.hotspot.debugger.OopHandle.getJByteAt:(J)B
            ireturn
        end local 3 // long offset
        end local 1 // long index
        end local 0 // sun.jvm.hotspot.oops.TypeArray this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lsun/jvm/hotspot/oops/TypeArray;
            0    4     1   index  J
            3    4     3  offset  J
    MethodParameters:
       Name  Flags
      index  

  public boolean getBooleanAt(long);
    descriptor: (J)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=5, args_size=2
        start local 0 // sun.jvm.hotspot.oops.TypeArray this
        start local 1 // long index
         0: .line 64
            getstatic sun.jvm.hotspot.runtime.BasicType.T_BOOLEAN:Lsun/jvm/hotspot/runtime/BasicType;
            invokestatic sun.jvm.hotspot.oops.TypeArray.baseOffsetInBytes:(Lsun/jvm/hotspot/runtime/BasicType;)J
            lload 1 /* index */
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.oops.TypeArray.getHeap:()Lsun/jvm/hotspot/oops/ObjectHeap;
            invokevirtual sun.jvm.hotspot.oops.ObjectHeap.getBooleanSize:()J
            lmul
            ladd
            lstore 3 /* offset */
        start local 3 // long offset
         1: .line 65
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.oops.TypeArray.getHandle:()Lsun/jvm/hotspot/debugger/OopHandle;
            lload 3 /* offset */
            invokeinterface sun.jvm.hotspot.debugger.OopHandle.getJBooleanAt:(J)Z
            ireturn
        end local 3 // long offset
        end local 1 // long index
        end local 0 // sun.jvm.hotspot.oops.TypeArray this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lsun/jvm/hotspot/oops/TypeArray;
            0    2     1   index  J
            1    2     3  offset  J
    MethodParameters:
       Name  Flags
      index  

  public char getCharAt(long);
    descriptor: (J)C
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=5, args_size=2
        start local 0 // sun.jvm.hotspot.oops.TypeArray this
        start local 1 // long index
         0: .line 69
            getstatic sun.jvm.hotspot.runtime.BasicType.T_CHAR:Lsun/jvm/hotspot/runtime/BasicType;
            invokestatic sun.jvm.hotspot.oops.TypeArray.baseOffsetInBytes:(Lsun/jvm/hotspot/runtime/BasicType;)J
            lload 1 /* index */
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.oops.TypeArray.getHeap:()Lsun/jvm/hotspot/oops/ObjectHeap;
            invokevirtual sun.jvm.hotspot.oops.ObjectHeap.getCharSize:()J
            lmul
            ladd
            lstore 3 /* offset */
        start local 3 // long offset
         1: .line 70
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.oops.TypeArray.getHandle:()Lsun/jvm/hotspot/debugger/OopHandle;
            lload 3 /* offset */
            invokeinterface sun.jvm.hotspot.debugger.OopHandle.getJCharAt:(J)C
            ireturn
        end local 3 // long offset
        end local 1 // long index
        end local 0 // sun.jvm.hotspot.oops.TypeArray this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lsun/jvm/hotspot/oops/TypeArray;
            0    2     1   index  J
            1    2     3  offset  J
    MethodParameters:
       Name  Flags
      index  

  public int getIntAt(long);
    descriptor: (J)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=5, args_size=2
        start local 0 // sun.jvm.hotspot.oops.TypeArray this
        start local 1 // long index
         0: .line 74
            getstatic sun.jvm.hotspot.runtime.BasicType.T_INT:Lsun/jvm/hotspot/runtime/BasicType;
            invokestatic sun.jvm.hotspot.oops.TypeArray.baseOffsetInBytes:(Lsun/jvm/hotspot/runtime/BasicType;)J
            lload 1 /* index */
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.oops.TypeArray.getHeap:()Lsun/jvm/hotspot/oops/ObjectHeap;
            invokevirtual sun.jvm.hotspot.oops.ObjectHeap.getIntSize:()J
            lmul
            ladd
            lstore 3 /* offset */
        start local 3 // long offset
         1: .line 75
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.oops.TypeArray.getHandle:()Lsun/jvm/hotspot/debugger/OopHandle;
            lload 3 /* offset */
            invokeinterface sun.jvm.hotspot.debugger.OopHandle.getJIntAt:(J)I
            ireturn
        end local 3 // long offset
        end local 1 // long index
        end local 0 // sun.jvm.hotspot.oops.TypeArray this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lsun/jvm/hotspot/oops/TypeArray;
            0    2     1   index  J
            1    2     3  offset  J
    MethodParameters:
       Name  Flags
      index  

  public short getShortAt(long);
    descriptor: (J)S
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=5, args_size=2
        start local 0 // sun.jvm.hotspot.oops.TypeArray this
        start local 1 // long index
         0: .line 79
            getstatic sun.jvm.hotspot.runtime.BasicType.T_SHORT:Lsun/jvm/hotspot/runtime/BasicType;
            invokestatic sun.jvm.hotspot.oops.TypeArray.baseOffsetInBytes:(Lsun/jvm/hotspot/runtime/BasicType;)J
            lload 1 /* index */
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.oops.TypeArray.getHeap:()Lsun/jvm/hotspot/oops/ObjectHeap;
            invokevirtual sun.jvm.hotspot.oops.ObjectHeap.getShortSize:()J
            lmul
            ladd
            lstore 3 /* offset */
        start local 3 // long offset
         1: .line 80
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.oops.TypeArray.getHandle:()Lsun/jvm/hotspot/debugger/OopHandle;
            lload 3 /* offset */
            invokeinterface sun.jvm.hotspot.debugger.OopHandle.getJShortAt:(J)S
            ireturn
        end local 3 // long offset
        end local 1 // long index
        end local 0 // sun.jvm.hotspot.oops.TypeArray this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lsun/jvm/hotspot/oops/TypeArray;
            0    2     1   index  J
            1    2     3  offset  J
    MethodParameters:
       Name  Flags
      index  

  public long getLongAt(long);
    descriptor: (J)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=5, args_size=2
        start local 0 // sun.jvm.hotspot.oops.TypeArray this
        start local 1 // long index
         0: .line 84
            getstatic sun.jvm.hotspot.runtime.BasicType.T_LONG:Lsun/jvm/hotspot/runtime/BasicType;
            invokestatic sun.jvm.hotspot.oops.TypeArray.baseOffsetInBytes:(Lsun/jvm/hotspot/runtime/BasicType;)J
            lload 1 /* index */
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.oops.TypeArray.getHeap:()Lsun/jvm/hotspot/oops/ObjectHeap;
            invokevirtual sun.jvm.hotspot.oops.ObjectHeap.getLongSize:()J
            lmul
            ladd
            lstore 3 /* offset */
        start local 3 // long offset
         1: .line 85
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.oops.TypeArray.getHandle:()Lsun/jvm/hotspot/debugger/OopHandle;
            lload 3 /* offset */
            invokeinterface sun.jvm.hotspot.debugger.OopHandle.getJLongAt:(J)J
            lreturn
        end local 3 // long offset
        end local 1 // long index
        end local 0 // sun.jvm.hotspot.oops.TypeArray this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lsun/jvm/hotspot/oops/TypeArray;
            0    2     1   index  J
            1    2     3  offset  J
    MethodParameters:
       Name  Flags
      index  

  public float getFloatAt(long);
    descriptor: (J)F
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=5, args_size=2
        start local 0 // sun.jvm.hotspot.oops.TypeArray this
        start local 1 // long index
         0: .line 89
            getstatic sun.jvm.hotspot.runtime.BasicType.T_FLOAT:Lsun/jvm/hotspot/runtime/BasicType;
            invokestatic sun.jvm.hotspot.oops.TypeArray.baseOffsetInBytes:(Lsun/jvm/hotspot/runtime/BasicType;)J
            lload 1 /* index */
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.oops.TypeArray.getHeap:()Lsun/jvm/hotspot/oops/ObjectHeap;
            invokevirtual sun.jvm.hotspot.oops.ObjectHeap.getFloatSize:()J
            lmul
            ladd
            lstore 3 /* offset */
        start local 3 // long offset
         1: .line 90
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.oops.TypeArray.getHandle:()Lsun/jvm/hotspot/debugger/OopHandle;
            lload 3 /* offset */
            invokeinterface sun.jvm.hotspot.debugger.OopHandle.getJFloatAt:(J)F
            freturn
        end local 3 // long offset
        end local 1 // long index
        end local 0 // sun.jvm.hotspot.oops.TypeArray this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lsun/jvm/hotspot/oops/TypeArray;
            0    2     1   index  J
            1    2     3  offset  J
    MethodParameters:
       Name  Flags
      index  

  public double getDoubleAt(long);
    descriptor: (J)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=5, args_size=2
        start local 0 // sun.jvm.hotspot.oops.TypeArray this
        start local 1 // long index
         0: .line 94
            getstatic sun.jvm.hotspot.runtime.BasicType.T_DOUBLE:Lsun/jvm/hotspot/runtime/BasicType;
            invokestatic sun.jvm.hotspot.oops.TypeArray.baseOffsetInBytes:(Lsun/jvm/hotspot/runtime/BasicType;)J
            lload 1 /* index */
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.oops.TypeArray.getHeap:()Lsun/jvm/hotspot/oops/ObjectHeap;
            invokevirtual sun.jvm.hotspot.oops.ObjectHeap.getDoubleSize:()J
            lmul
            ladd
            lstore 3 /* offset */
        start local 3 // long offset
         1: .line 95
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.oops.TypeArray.getHandle:()Lsun/jvm/hotspot/debugger/OopHandle;
            lload 3 /* offset */
            invokeinterface sun.jvm.hotspot.debugger.OopHandle.getJDoubleAt:(J)D
            dreturn
        end local 3 // long offset
        end local 1 // long index
        end local 0 // sun.jvm.hotspot.oops.TypeArray this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lsun/jvm/hotspot/oops/TypeArray;
            0    2     1   index  J
            1    2     3  offset  J
    MethodParameters:
       Name  Flags
      index  

  public void printValueOn(java.io.PrintStream);
    descriptor: (Ljava/io/PrintStream;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // sun.jvm.hotspot.oops.TypeArray this
        start local 1 // java.io.PrintStream tty
         0: .line 99
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.oops.TypeArray.getKlass:()Lsun/jvm/hotspot/oops/Klass;
            checkcast sun.jvm.hotspot.oops.TypeArrayKlass
            astore 2 /* klass */
        start local 2 // sun.jvm.hotspot.oops.TypeArrayKlass klass
         1: .line 100
            aload 1 /* tty */
            aload 2 /* klass */
            invokevirtual sun.jvm.hotspot.oops.TypeArrayKlass.getTypeName:()Ljava/lang/String;
            invokevirtual java.io.PrintStream.print:(Ljava/lang/String;)V
         2: .line 101
            return
        end local 2 // sun.jvm.hotspot.oops.TypeArrayKlass klass
        end local 1 // java.io.PrintStream tty
        end local 0 // sun.jvm.hotspot.oops.TypeArray this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lsun/jvm/hotspot/oops/TypeArray;
            0    3     1    tty  Ljava/io/PrintStream;
            1    3     2  klass  Lsun/jvm/hotspot/oops/TypeArrayKlass;
    MethodParameters:
      Name  Flags
      tty   

  public void iterateFields(sun.jvm.hotspot.oops.OopVisitor, boolean);
    descriptor: (Lsun/jvm/hotspot/oops/OopVisitor;Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=10, args_size=3
        start local 0 // sun.jvm.hotspot.oops.TypeArray this
        start local 1 // sun.jvm.hotspot.oops.OopVisitor visitor
        start local 2 // boolean doVMFields
         0: .line 104
            aload 0 /* this */
            aload 1 /* visitor */
            iload 2 /* doVMFields */
            invokespecial sun.jvm.hotspot.oops.Array.iterateFields:(Lsun/jvm/hotspot/oops/OopVisitor;Z)V
         1: .line 105
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.oops.TypeArray.getKlass:()Lsun/jvm/hotspot/oops/Klass;
            checkcast sun.jvm.hotspot.oops.TypeArrayKlass
            astore 3 /* klass */
        start local 3 // sun.jvm.hotspot.oops.TypeArrayKlass klass
         2: .line 106
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.oops.TypeArray.getLength:()J
            l2i
            istore 4 /* length */
        start local 4 // int length
         3: .line 107
            aload 3 /* klass */
            invokevirtual sun.jvm.hotspot.oops.TypeArrayKlass.getElementType:()I
            istore 5 /* type */
        start local 5 // int type
         4: .line 108
            iconst_0
            istore 6 /* index */
        start local 6 // int index
         5: goto 32
         6: .line 109
      StackMap locals: sun.jvm.hotspot.oops.TypeArray sun.jvm.hotspot.oops.OopVisitor int sun.jvm.hotspot.oops.TypeArrayKlass int int int
      StackMap stack:
            new sun.jvm.hotspot.oops.IndexableFieldIdentifier
            dup
            iload 6 /* index */
            invokespecial sun.jvm.hotspot.oops.IndexableFieldIdentifier.<init>:(I)V
            astore 7 /* id */
        start local 7 // sun.jvm.hotspot.oops.FieldIdentifier id
         7: .line 110
            iload 5 /* type */
            tableswitch { // 4 - 11
                    4: 8
                    5: 11
                    6: 14
                    7: 17
                    8: 20
                    9: 23
                   10: 26
                   11: 29
              default: 31
          }
         8: .line 112
      StackMap locals: sun.jvm.hotspot.oops.FieldIdentifier
      StackMap stack:
            getstatic sun.jvm.hotspot.runtime.BasicType.T_BOOLEAN:Lsun/jvm/hotspot/runtime/BasicType;
            invokestatic sun.jvm.hotspot.oops.TypeArray.baseOffsetInBytes:(Lsun/jvm/hotspot/runtime/BasicType;)J
            iload 6 /* index */
            i2l
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.oops.TypeArray.getHeap:()Lsun/jvm/hotspot/oops/ObjectHeap;
            invokevirtual sun.jvm.hotspot.oops.ObjectHeap.getBooleanSize:()J
            lmul
            ladd
            lstore 8 /* offset */
        start local 8 // long offset
         9: .line 113
            aload 1 /* visitor */
            new sun.jvm.hotspot.oops.BooleanField
            dup
            aload 7 /* id */
            lload 8 /* offset */
            iconst_0
            invokespecial sun.jvm.hotspot.oops.BooleanField.<init>:(Lsun/jvm/hotspot/oops/FieldIdentifier;JZ)V
            iconst_0
            invokeinterface sun.jvm.hotspot.oops.OopVisitor.doBoolean:(Lsun/jvm/hotspot/oops/BooleanField;Z)V
        10: .line 114
            goto 31
        end local 8 // long offset
        11: .line 117
      StackMap locals:
      StackMap stack:
            getstatic sun.jvm.hotspot.runtime.BasicType.T_CHAR:Lsun/jvm/hotspot/runtime/BasicType;
            invokestatic sun.jvm.hotspot.oops.TypeArray.baseOffsetInBytes:(Lsun/jvm/hotspot/runtime/BasicType;)J
            iload 6 /* index */
            i2l
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.oops.TypeArray.getHeap:()Lsun/jvm/hotspot/oops/ObjectHeap;
            invokevirtual sun.jvm.hotspot.oops.ObjectHeap.getCharSize:()J
            lmul
            ladd
            lstore 8 /* offset */
        start local 8 // long offset
        12: .line 118
            aload 1 /* visitor */
            new sun.jvm.hotspot.oops.CharField
            dup
            aload 7 /* id */
            lload 8 /* offset */
            iconst_0
            invokespecial sun.jvm.hotspot.oops.CharField.<init>:(Lsun/jvm/hotspot/oops/FieldIdentifier;JZ)V
            iconst_0
            invokeinterface sun.jvm.hotspot.oops.OopVisitor.doChar:(Lsun/jvm/hotspot/oops/CharField;Z)V
        13: .line 119
            goto 31
        end local 8 // long offset
        14: .line 122
      StackMap locals:
      StackMap stack:
            getstatic sun.jvm.hotspot.runtime.BasicType.T_FLOAT:Lsun/jvm/hotspot/runtime/BasicType;
            invokestatic sun.jvm.hotspot.oops.TypeArray.baseOffsetInBytes:(Lsun/jvm/hotspot/runtime/BasicType;)J
            iload 6 /* index */
            i2l
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.oops.TypeArray.getHeap:()Lsun/jvm/hotspot/oops/ObjectHeap;
            invokevirtual sun.jvm.hotspot.oops.ObjectHeap.getFloatSize:()J
            lmul
            ladd
            lstore 8 /* offset */
        start local 8 // long offset
        15: .line 123
            aload 1 /* visitor */
            new sun.jvm.hotspot.oops.FloatField
            dup
            aload 7 /* id */
            lload 8 /* offset */
            iconst_0
            invokespecial sun.jvm.hotspot.oops.FloatField.<init>:(Lsun/jvm/hotspot/oops/FieldIdentifier;JZ)V
            iconst_0
            invokeinterface sun.jvm.hotspot.oops.OopVisitor.doFloat:(Lsun/jvm/hotspot/oops/FloatField;Z)V
        16: .line 124
            goto 31
        end local 8 // long offset
        17: .line 127
      StackMap locals:
      StackMap stack:
            getstatic sun.jvm.hotspot.runtime.BasicType.T_DOUBLE:Lsun/jvm/hotspot/runtime/BasicType;
            invokestatic sun.jvm.hotspot.oops.TypeArray.baseOffsetInBytes:(Lsun/jvm/hotspot/runtime/BasicType;)J
            iload 6 /* index */
            i2l
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.oops.TypeArray.getHeap:()Lsun/jvm/hotspot/oops/ObjectHeap;
            invokevirtual sun.jvm.hotspot.oops.ObjectHeap.getDoubleSize:()J
            lmul
            ladd
            lstore 8 /* offset */
        start local 8 // long offset
        18: .line 128
            aload 1 /* visitor */
            new sun.jvm.hotspot.oops.DoubleField
            dup
            aload 7 /* id */
            lload 8 /* offset */
            iconst_0
            invokespecial sun.jvm.hotspot.oops.DoubleField.<init>:(Lsun/jvm/hotspot/oops/FieldIdentifier;JZ)V
            iconst_0
            invokeinterface sun.jvm.hotspot.oops.OopVisitor.doDouble:(Lsun/jvm/hotspot/oops/DoubleField;Z)V
        19: .line 129
            goto 31
        end local 8 // long offset
        20: .line 132
      StackMap locals:
      StackMap stack:
            getstatic sun.jvm.hotspot.runtime.BasicType.T_BYTE:Lsun/jvm/hotspot/runtime/BasicType;
            invokestatic sun.jvm.hotspot.oops.TypeArray.baseOffsetInBytes:(Lsun/jvm/hotspot/runtime/BasicType;)J
            iload 6 /* index */
            i2l
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.oops.TypeArray.getHeap:()Lsun/jvm/hotspot/oops/ObjectHeap;
            invokevirtual sun.jvm.hotspot.oops.ObjectHeap.getByteSize:()J
            lmul
            ladd
            lstore 8 /* offset */
        start local 8 // long offset
        21: .line 133
            aload 1 /* visitor */
            new sun.jvm.hotspot.oops.ByteField
            dup
            aload 7 /* id */
            lload 8 /* offset */
            iconst_0
            invokespecial sun.jvm.hotspot.oops.ByteField.<init>:(Lsun/jvm/hotspot/oops/FieldIdentifier;JZ)V
            iconst_0
            invokeinterface sun.jvm.hotspot.oops.OopVisitor.doByte:(Lsun/jvm/hotspot/oops/ByteField;Z)V
        22: .line 134
            goto 31
        end local 8 // long offset
        23: .line 137
      StackMap locals:
      StackMap stack:
            getstatic sun.jvm.hotspot.runtime.BasicType.T_SHORT:Lsun/jvm/hotspot/runtime/BasicType;
            invokestatic sun.jvm.hotspot.oops.TypeArray.baseOffsetInBytes:(Lsun/jvm/hotspot/runtime/BasicType;)J
            iload 6 /* index */
            i2l
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.oops.TypeArray.getHeap:()Lsun/jvm/hotspot/oops/ObjectHeap;
            invokevirtual sun.jvm.hotspot.oops.ObjectHeap.getShortSize:()J
            lmul
            ladd
            lstore 8 /* offset */
        start local 8 // long offset
        24: .line 138
            aload 1 /* visitor */
            new sun.jvm.hotspot.oops.ShortField
            dup
            aload 7 /* id */
            lload 8 /* offset */
            iconst_0
            invokespecial sun.jvm.hotspot.oops.ShortField.<init>:(Lsun/jvm/hotspot/oops/FieldIdentifier;JZ)V
            iconst_0
            invokeinterface sun.jvm.hotspot.oops.OopVisitor.doShort:(Lsun/jvm/hotspot/oops/ShortField;Z)V
        25: .line 139
            goto 31
        end local 8 // long offset
        26: .line 142
      StackMap locals:
      StackMap stack:
            getstatic sun.jvm.hotspot.runtime.BasicType.T_INT:Lsun/jvm/hotspot/runtime/BasicType;
            invokestatic sun.jvm.hotspot.oops.TypeArray.baseOffsetInBytes:(Lsun/jvm/hotspot/runtime/BasicType;)J
            iload 6 /* index */
            i2l
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.oops.TypeArray.getHeap:()Lsun/jvm/hotspot/oops/ObjectHeap;
            invokevirtual sun.jvm.hotspot.oops.ObjectHeap.getIntSize:()J
            lmul
            ladd
            lstore 8 /* offset */
        start local 8 // long offset
        27: .line 143
            aload 1 /* visitor */
            new sun.jvm.hotspot.oops.IntField
            dup
            aload 7 /* id */
            lload 8 /* offset */
            iconst_0
            invokespecial sun.jvm.hotspot.oops.IntField.<init>:(Lsun/jvm/hotspot/oops/FieldIdentifier;JZ)V
            iconst_0
            invokeinterface sun.jvm.hotspot.oops.OopVisitor.doInt:(Lsun/jvm/hotspot/oops/IntField;Z)V
        28: .line 144
            goto 31
        end local 8 // long offset
        29: .line 147
      StackMap locals:
      StackMap stack:
            getstatic sun.jvm.hotspot.runtime.BasicType.T_LONG:Lsun/jvm/hotspot/runtime/BasicType;
            invokestatic sun.jvm.hotspot.oops.TypeArray.baseOffsetInBytes:(Lsun/jvm/hotspot/runtime/BasicType;)J
            iload 6 /* index */
            i2l
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.oops.TypeArray.getHeap:()Lsun/jvm/hotspot/oops/ObjectHeap;
            invokevirtual sun.jvm.hotspot.oops.ObjectHeap.getLongSize:()J
            lmul
            ladd
            lstore 8 /* offset */
        start local 8 // long offset
        30: .line 148
            aload 1 /* visitor */
            new sun.jvm.hotspot.oops.LongField
            dup
            aload 7 /* id */
            lload 8 /* offset */
            iconst_0
            invokespecial sun.jvm.hotspot.oops.LongField.<init>:(Lsun/jvm/hotspot/oops/FieldIdentifier;JZ)V
            iconst_0
            invokeinterface sun.jvm.hotspot.oops.OopVisitor.doLong:(Lsun/jvm/hotspot/oops/LongField;Z)V
        end local 8 // long offset
        end local 7 // sun.jvm.hotspot.oops.FieldIdentifier id
        31: .line 108
      StackMap locals:
      StackMap stack:
            iinc 6 /* index */ 1
      StackMap locals:
      StackMap stack:
        32: iload 6 /* index */
            iload 4 /* length */
            if_icmplt 6
        end local 6 // int index
        33: .line 153
            return
        end local 5 // int type
        end local 4 // int length
        end local 3 // sun.jvm.hotspot.oops.TypeArrayKlass klass
        end local 2 // boolean doVMFields
        end local 1 // sun.jvm.hotspot.oops.OopVisitor visitor
        end local 0 // sun.jvm.hotspot.oops.TypeArray this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   34     0        this  Lsun/jvm/hotspot/oops/TypeArray;
            0   34     1     visitor  Lsun/jvm/hotspot/oops/OopVisitor;
            0   34     2  doVMFields  Z
            2   34     3       klass  Lsun/jvm/hotspot/oops/TypeArrayKlass;
            3   34     4      length  I
            4   34     5        type  I
            5   33     6       index  I
            7   31     7          id  Lsun/jvm/hotspot/oops/FieldIdentifier;
            9   11     8      offset  J
           12   14     8      offset  J
           15   17     8      offset  J
           18   20     8      offset  J
           21   23     8      offset  J
           24   26     8      offset  J
           27   29     8      offset  J
           30   31     8      offset  J
    MethodParameters:
            Name  Flags
      visitor     
      doVMFields  
}
SourceFile: "TypeArray.java"
NestMembers:
  sun.jvm.hotspot.oops.TypeArray$1
InnerClasses:
  sun.jvm.hotspot.oops.TypeArray$1