public abstract class sun.tools.attach.HotSpotVirtualMachine extends com.sun.tools.attach.VirtualMachine
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: sun.tools.attach.HotSpotVirtualMachine
  super_class: com.sun.tools.attach.VirtualMachine
{
  private static final int JNI_ENOMEM;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: -4

  private static final int ATTACH_ERROR_BADJAR;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 100

  private static final int ATTACH_ERROR_NOTONCP;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 101

  private static final int ATTACH_ERROR_STARTFAIL;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 102

  private static long defaultAttachTimeout;
    descriptor: J
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC

  private volatile long attachTimeout;
    descriptor: J
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 262
            ldc 5000
            putstatic sun.tools.attach.HotSpotVirtualMachine.defaultAttachTimeout:J
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  void <init>(com.sun.tools.attach.spi.AttachProvider, java.lang.String);
    descriptor: (Lcom/sun/tools/attach/spi/AttachProvider;Ljava/lang/String;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // sun.tools.attach.HotSpotVirtualMachine this
        start local 1 // com.sun.tools.attach.spi.AttachProvider provider
        start local 2 // java.lang.String id
         0: .line 45
            aload 0 /* this */
            aload 1 /* provider */
            aload 2 /* id */
            invokespecial com.sun.tools.attach.VirtualMachine.<init>:(Lcom/sun/tools/attach/spi/AttachProvider;Ljava/lang/String;)V
         1: .line 46
            return
        end local 2 // java.lang.String id
        end local 1 // com.sun.tools.attach.spi.AttachProvider provider
        end local 0 // sun.tools.attach.HotSpotVirtualMachine this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lsun/tools/attach/HotSpotVirtualMachine;
            0    2     1  provider  Lcom/sun/tools/attach/spi/AttachProvider;
            0    2     2        id  Ljava/lang/String;
    MethodParameters:
          Name  Flags
      provider  
      id        

  private void loadAgentLibrary(java.lang.String, boolean, java.lang.String);
    descriptor: (Ljava/lang/String;ZLjava/lang/String;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=7, args_size=4
        start local 0 // sun.tools.attach.HotSpotVirtualMachine this
        start local 1 // java.lang.String agentLibrary
        start local 2 // boolean isAbsolute
        start local 3 // java.lang.String options
         0: .line 58
            aload 0 /* this */
            ldc "load"
            iconst_3
            anewarray java.lang.Object
            dup
            iconst_0
         1: .line 59
            aload 1 /* agentLibrary */
            aastore
            dup
            iconst_1
         2: .line 60
            iload 2 /* isAbsolute */
            ifeq 3
            ldc "true"
            goto 4
      StackMap locals: sun.tools.attach.HotSpotVirtualMachine java.lang.String int java.lang.String
      StackMap stack: sun.tools.attach.HotSpotVirtualMachine java.lang.String java.lang.Object[] java.lang.Object[] int
         3: ldc "false"
      StackMap locals: sun.tools.attach.HotSpotVirtualMachine java.lang.String int java.lang.String
      StackMap stack: sun.tools.attach.HotSpotVirtualMachine java.lang.String java.lang.Object[] java.lang.Object[] int java.lang.String
         4: aastore
            dup
            iconst_2
         5: .line 61
            aload 3 /* options */
            aastore
         6: .line 58
            invokevirtual sun.tools.attach.HotSpotVirtualMachine.execute:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/io/InputStream;
            astore 4 /* in */
        start local 4 // java.io.InputStream in
         7: .line 63
            aload 0 /* this */
            aload 4 /* in */
            invokevirtual sun.tools.attach.HotSpotVirtualMachine.readInt:(Ljava/io/InputStream;)I
            istore 5 /* result */
        start local 5 // int result
         8: .line 64
            iload 5 /* result */
            ifeq 13
         9: .line 65
            new com.sun.tools.attach.AgentInitializationException
            dup
            ldc "Agent_OnAttach failed"
            iload 5 /* result */
            invokespecial com.sun.tools.attach.AgentInitializationException.<init>:(Ljava/lang/String;I)V
            athrow
        end local 5 // int result
        10: .line 67
      StackMap locals: sun.tools.attach.HotSpotVirtualMachine java.lang.String int java.lang.String java.io.InputStream
      StackMap stack: java.lang.Throwable
            astore 6
        11: .line 68
            aload 4 /* in */
            invokevirtual java.io.InputStream.close:()V
        12: .line 70
            aload 6
            athrow
        13: .line 68
      StackMap locals:
      StackMap stack:
            aload 4 /* in */
            invokevirtual java.io.InputStream.close:()V
        14: .line 71
            return
        end local 4 // java.io.InputStream in
        end local 3 // java.lang.String options
        end local 2 // boolean isAbsolute
        end local 1 // java.lang.String agentLibrary
        end local 0 // sun.tools.attach.HotSpotVirtualMachine this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   15     0          this  Lsun/tools/attach/HotSpotVirtualMachine;
            0   15     1  agentLibrary  Ljava/lang/String;
            0   15     2    isAbsolute  Z
            0   15     3       options  Ljava/lang/String;
            7   15     4            in  Ljava/io/InputStream;
            8   10     5        result  I
      Exception table:
        from    to  target  type
           7    10      10  any
    Exceptions:
      throws com.sun.tools.attach.AgentLoadException, com.sun.tools.attach.AgentInitializationException, java.io.IOException
    MethodParameters:
              Name  Flags
      agentLibrary  
      isAbsolute    
      options       

  public void loadAgentLibrary(java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // sun.tools.attach.HotSpotVirtualMachine this
        start local 1 // java.lang.String agentLibrary
        start local 2 // java.lang.String options
         0: .line 79
            aload 0 /* this */
            aload 1 /* agentLibrary */
            iconst_0
            aload 2 /* options */
            invokevirtual sun.tools.attach.HotSpotVirtualMachine.loadAgentLibrary:(Ljava/lang/String;ZLjava/lang/String;)V
         1: .line 80
            return
        end local 2 // java.lang.String options
        end local 1 // java.lang.String agentLibrary
        end local 0 // sun.tools.attach.HotSpotVirtualMachine this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    2     0          this  Lsun/tools/attach/HotSpotVirtualMachine;
            0    2     1  agentLibrary  Ljava/lang/String;
            0    2     2       options  Ljava/lang/String;
    Exceptions:
      throws com.sun.tools.attach.AgentLoadException, com.sun.tools.attach.AgentInitializationException, java.io.IOException
    MethodParameters:
              Name  Flags
      agentLibrary  
      options       

  public void loadAgentPath(java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // sun.tools.attach.HotSpotVirtualMachine this
        start local 1 // java.lang.String agentLibrary
        start local 2 // java.lang.String options
         0: .line 88
            aload 0 /* this */
            aload 1 /* agentLibrary */
            iconst_1
            aload 2 /* options */
            invokevirtual sun.tools.attach.HotSpotVirtualMachine.loadAgentLibrary:(Ljava/lang/String;ZLjava/lang/String;)V
         1: .line 89
            return
        end local 2 // java.lang.String options
        end local 1 // java.lang.String agentLibrary
        end local 0 // sun.tools.attach.HotSpotVirtualMachine this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    2     0          this  Lsun/tools/attach/HotSpotVirtualMachine;
            0    2     1  agentLibrary  Ljava/lang/String;
            0    2     2       options  Ljava/lang/String;
    Exceptions:
      throws com.sun.tools.attach.AgentLoadException, com.sun.tools.attach.AgentInitializationException, java.io.IOException
    MethodParameters:
              Name  Flags
      agentLibrary  
      options       

  public void loadAgent(java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=3
        start local 0 // sun.tools.attach.HotSpotVirtualMachine this
        start local 1 // java.lang.String agent
        start local 2 // java.lang.String options
         0: .line 98
            aload 1 /* agent */
            astore 3 /* args */
        start local 3 // java.lang.String args
         1: .line 99
            aload 2 /* options */
            ifnull 3
         2: .line 100
            new java.lang.StringBuilder
            dup
            aload 3 /* args */
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)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 2 /* options */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            astore 3 /* args */
         3: .line 103
      StackMap locals: java.lang.String
      StackMap stack:
            aload 0 /* this */
            ldc "instrument"
            aload 3 /* args */
            invokevirtual sun.tools.attach.HotSpotVirtualMachine.loadAgentLibrary:(Ljava/lang/String;Ljava/lang/String;)V
         4: .line 104
            goto 15
      StackMap locals:
      StackMap stack: com.sun.tools.attach.AgentLoadException
         5: pop
         6: .line 105
            new java.lang.InternalError
            dup
            ldc "instrument library is missing in target VM"
            invokespecial java.lang.InternalError.<init>:(Ljava/lang/String;)V
            athrow
         7: .line 106
      StackMap locals:
      StackMap stack: com.sun.tools.attach.AgentInitializationException
            astore 4 /* x */
        start local 4 // com.sun.tools.attach.AgentInitializationException x
         8: .line 112
            aload 4 /* x */
            invokevirtual com.sun.tools.attach.AgentInitializationException.returnValue:()I
            istore 5 /* rc */
        start local 5 // int rc
         9: .line 113
            iload 5 /* rc */
            lookupswitch { // 4
                   -4: 10
                  100: 11
                  101: 12
                  102: 13
              default: 14
          }
        10: .line 115
      StackMap locals: com.sun.tools.attach.AgentInitializationException int
      StackMap stack:
            new com.sun.tools.attach.AgentLoadException
            dup
            ldc "Insuffient memory"
            invokespecial com.sun.tools.attach.AgentLoadException.<init>:(Ljava/lang/String;)V
            athrow
        11: .line 117
      StackMap locals:
      StackMap stack:
            new com.sun.tools.attach.AgentLoadException
            dup
            ldc "Agent JAR not found or no Agent-Class attribute"
            invokespecial com.sun.tools.attach.AgentLoadException.<init>:(Ljava/lang/String;)V
            athrow
        12: .line 119
      StackMap locals:
      StackMap stack:
            new com.sun.tools.attach.AgentLoadException
            dup
            ldc "Unable to add JAR file to system class path"
            invokespecial com.sun.tools.attach.AgentLoadException.<init>:(Ljava/lang/String;)V
            athrow
        13: .line 121
      StackMap locals:
      StackMap stack:
            new com.sun.tools.attach.AgentInitializationException
            dup
            ldc "Agent JAR loaded but agent failed to initialize"
            invokespecial com.sun.tools.attach.AgentInitializationException.<init>:(Ljava/lang/String;)V
            athrow
        14: .line 123
      StackMap locals:
      StackMap stack:
            new com.sun.tools.attach.AgentLoadException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Failed to load agent - unknown reason: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 5 /* rc */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial com.sun.tools.attach.AgentLoadException.<init>:(Ljava/lang/String;)V
            athrow
        end local 5 // int rc
        end local 4 // com.sun.tools.attach.AgentInitializationException x
        15: .line 126
      StackMap locals:
      StackMap stack:
            return
        end local 3 // java.lang.String args
        end local 2 // java.lang.String options
        end local 1 // java.lang.String agent
        end local 0 // sun.tools.attach.HotSpotVirtualMachine this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   16     0     this  Lsun/tools/attach/HotSpotVirtualMachine;
            0   16     1    agent  Ljava/lang/String;
            0   16     2  options  Ljava/lang/String;
            1   16     3     args  Ljava/lang/String;
            8   15     4        x  Lcom/sun/tools/attach/AgentInitializationException;
            9   15     5       rc  I
      Exception table:
        from    to  target  type
           3     4       5  Class com.sun.tools.attach.AgentLoadException
           3     4       7  Class com.sun.tools.attach.AgentInitializationException
    Exceptions:
      throws com.sun.tools.attach.AgentLoadException, com.sun.tools.attach.AgentInitializationException, java.io.IOException
    MethodParameters:
         Name  Flags
      agent    
      options  

  public java.util.Properties getSystemProperties();
    descriptor: ()Ljava/util/Properties;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=1
        start local 0 // sun.tools.attach.HotSpotVirtualMachine this
         0: .line 141
            aconst_null
            astore 1 /* in */
        start local 1 // java.io.InputStream in
         1: .line 142
            new java.util.Properties
            dup
            invokespecial java.util.Properties.<init>:()V
            astore 2 /* props */
        start local 2 // java.util.Properties props
         2: .line 144
            aload 0 /* this */
            ldc "properties"
            iconst_0
            anewarray java.lang.Object
            invokevirtual sun.tools.attach.HotSpotVirtualMachine.executeCommand:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/io/InputStream;
            astore 1 /* in */
         3: .line 145
            aload 2 /* props */
            aload 1 /* in */
            invokevirtual java.util.Properties.load:(Ljava/io/InputStream;)V
         4: .line 146
            goto 8
      StackMap locals: sun.tools.attach.HotSpotVirtualMachine java.io.InputStream java.util.Properties
      StackMap stack: java.lang.Throwable
         5: astore 3
         6: .line 147
            aload 1 /* in */
            ifnull 7
            aload 1 /* in */
            invokevirtual java.io.InputStream.close:()V
         7: .line 148
      StackMap locals: java.lang.Throwable
      StackMap stack:
            aload 3
            athrow
         8: .line 147
      StackMap locals:
      StackMap stack:
            aload 1 /* in */
            ifnull 9
            aload 1 /* in */
            invokevirtual java.io.InputStream.close:()V
         9: .line 149
      StackMap locals:
      StackMap stack:
            aload 2 /* props */
            areturn
        end local 2 // java.util.Properties props
        end local 1 // java.io.InputStream in
        end local 0 // sun.tools.attach.HotSpotVirtualMachine this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   10     0   this  Lsun/tools/attach/HotSpotVirtualMachine;
            1   10     1     in  Ljava/io/InputStream;
            2   10     2  props  Ljava/util/Properties;
      Exception table:
        from    to  target  type
           2     5       5  any
    Exceptions:
      throws java.io.IOException

  public java.util.Properties getAgentProperties();
    descriptor: ()Ljava/util/Properties;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=1
        start local 0 // sun.tools.attach.HotSpotVirtualMachine this
         0: .line 153
            aconst_null
            astore 1 /* in */
        start local 1 // java.io.InputStream in
         1: .line 154
            new java.util.Properties
            dup
            invokespecial java.util.Properties.<init>:()V
            astore 2 /* props */
        start local 2 // java.util.Properties props
         2: .line 156
            aload 0 /* this */
            ldc "agentProperties"
            iconst_0
            anewarray java.lang.Object
            invokevirtual sun.tools.attach.HotSpotVirtualMachine.executeCommand:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/io/InputStream;
            astore 1 /* in */
         3: .line 157
            aload 2 /* props */
            aload 1 /* in */
            invokevirtual java.util.Properties.load:(Ljava/io/InputStream;)V
         4: .line 158
            goto 8
      StackMap locals: sun.tools.attach.HotSpotVirtualMachine java.io.InputStream java.util.Properties
      StackMap stack: java.lang.Throwable
         5: astore 3
         6: .line 159
            aload 1 /* in */
            ifnull 7
            aload 1 /* in */
            invokevirtual java.io.InputStream.close:()V
         7: .line 160
      StackMap locals: java.lang.Throwable
      StackMap stack:
            aload 3
            athrow
         8: .line 159
      StackMap locals:
      StackMap stack:
            aload 1 /* in */
            ifnull 9
            aload 1 /* in */
            invokevirtual java.io.InputStream.close:()V
         9: .line 161
      StackMap locals:
      StackMap stack:
            aload 2 /* props */
            areturn
        end local 2 // java.util.Properties props
        end local 1 // java.io.InputStream in
        end local 0 // sun.tools.attach.HotSpotVirtualMachine this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   10     0   this  Lsun/tools/attach/HotSpotVirtualMachine;
            1   10     1     in  Ljava/io/InputStream;
            2   10     2  props  Ljava/util/Properties;
      Exception table:
        from    to  target  type
           2     5       5  any
    Exceptions:
      throws java.io.IOException

  public void localDataDump();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // sun.tools.attach.HotSpotVirtualMachine this
         0: .line 168
            aload 0 /* this */
            ldc "datadump"
            iconst_0
            anewarray java.lang.Object
            invokevirtual sun.tools.attach.HotSpotVirtualMachine.executeCommand:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/io/InputStream;
            invokevirtual java.io.InputStream.close:()V
         1: .line 169
            return
        end local 0 // sun.tools.attach.HotSpotVirtualMachine this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/tools/attach/HotSpotVirtualMachine;
    Exceptions:
      throws java.io.IOException

  public java.io.InputStream remoteDataDump(java.lang.Object[]);
    descriptor: ([Ljava/lang/Object;)Ljava/io/InputStream;
    flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // sun.tools.attach.HotSpotVirtualMachine this
        start local 1 // java.lang.Object[] args
         0: .line 174
            aload 0 /* this */
            ldc "threaddump"
            aload 1 /* args */
            invokevirtual sun.tools.attach.HotSpotVirtualMachine.executeCommand:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/io/InputStream;
            areturn
        end local 1 // java.lang.Object[] args
        end local 0 // sun.tools.attach.HotSpotVirtualMachine this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/tools/attach/HotSpotVirtualMachine;
            0    1     1  args  [Ljava/lang/Object;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      args  

  public java.io.InputStream dumpHeap(java.lang.Object[]);
    descriptor: ([Ljava/lang/Object;)Ljava/io/InputStream;
    flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // sun.tools.attach.HotSpotVirtualMachine this
        start local 1 // java.lang.Object[] args
         0: .line 180
            aload 0 /* this */
            ldc "dumpheap"
            aload 1 /* args */
            invokevirtual sun.tools.attach.HotSpotVirtualMachine.executeCommand:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/io/InputStream;
            areturn
        end local 1 // java.lang.Object[] args
        end local 0 // sun.tools.attach.HotSpotVirtualMachine this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/tools/attach/HotSpotVirtualMachine;
            0    1     1  args  [Ljava/lang/Object;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      args  

  public java.io.InputStream heapHisto(java.lang.Object[]);
    descriptor: ([Ljava/lang/Object;)Ljava/io/InputStream;
    flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // sun.tools.attach.HotSpotVirtualMachine this
        start local 1 // java.lang.Object[] args
         0: .line 185
            aload 0 /* this */
            ldc "inspectheap"
            aload 1 /* args */
            invokevirtual sun.tools.attach.HotSpotVirtualMachine.executeCommand:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/io/InputStream;
            areturn
        end local 1 // java.lang.Object[] args
        end local 0 // sun.tools.attach.HotSpotVirtualMachine this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/tools/attach/HotSpotVirtualMachine;
            0    1     1  args  [Ljava/lang/Object;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      args  

  public java.io.InputStream setFlag(java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;)Ljava/io/InputStream;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=3
        start local 0 // sun.tools.attach.HotSpotVirtualMachine this
        start local 1 // java.lang.String name
        start local 2 // java.lang.String value
         0: .line 190
            aload 0 /* this */
            ldc "setflag"
            iconst_2
            anewarray java.lang.Object
            dup
            iconst_0
            aload 1 /* name */
            aastore
            dup
            iconst_1
            aload 2 /* value */
            aastore
            invokevirtual sun.tools.attach.HotSpotVirtualMachine.executeCommand:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/io/InputStream;
            areturn
        end local 2 // java.lang.String value
        end local 1 // java.lang.String name
        end local 0 // sun.tools.attach.HotSpotVirtualMachine this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lsun/tools/attach/HotSpotVirtualMachine;
            0    1     1   name  Ljava/lang/String;
            0    1     2  value  Ljava/lang/String;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
       Name  Flags
      name   
      value  

  public java.io.InputStream printFlag(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/io/InputStream;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=2, args_size=2
        start local 0 // sun.tools.attach.HotSpotVirtualMachine this
        start local 1 // java.lang.String name
         0: .line 195
            aload 0 /* this */
            ldc "printflag"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 1 /* name */
            aastore
            invokevirtual sun.tools.attach.HotSpotVirtualMachine.executeCommand:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/io/InputStream;
            areturn
        end local 1 // java.lang.String name
        end local 0 // sun.tools.attach.HotSpotVirtualMachine this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/tools/attach/HotSpotVirtualMachine;
            0    1     1  name  Ljava/lang/String;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      name  

  public java.io.InputStream executeJCmd(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/io/InputStream;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=2, args_size=2
        start local 0 // sun.tools.attach.HotSpotVirtualMachine this
        start local 1 // java.lang.String command
         0: .line 199
            aload 0 /* this */
            ldc "jcmd"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 1 /* command */
            aastore
            invokevirtual sun.tools.attach.HotSpotVirtualMachine.executeCommand:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/io/InputStream;
            areturn
        end local 1 // java.lang.String command
        end local 0 // sun.tools.attach.HotSpotVirtualMachine this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lsun/tools/attach/HotSpotVirtualMachine;
            0    1     1  command  Ljava/lang/String;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
         Name  Flags
      command  

  abstract java.io.InputStream execute(java.lang.String, java.lang.Object[]);
    descriptor: (Ljava/lang/String;[Ljava/lang/Object;)Ljava/io/InputStream;
    flags: (0x0480) ACC_VARARGS, ACC_ABSTRACT
    Exceptions:
      throws com.sun.tools.attach.AgentLoadException, java.io.IOException
    MethodParameters:
      Name  Flags
      cmd   
      args  

  private java.io.InputStream executeCommand(java.lang.String, java.lang.Object[]);
    descriptor: (Ljava/lang/String;[Ljava/lang/Object;)Ljava/io/InputStream;
    flags: (0x0082) ACC_PRIVATE, ACC_VARARGS
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // sun.tools.attach.HotSpotVirtualMachine this
        start local 1 // java.lang.String cmd
        start local 2 // java.lang.Object[] args
         0: .line 217
            aload 0 /* this */
            aload 1 /* cmd */
            aload 2 /* args */
            invokevirtual sun.tools.attach.HotSpotVirtualMachine.execute:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/io/InputStream;
         1: areturn
         2: .line 218
      StackMap locals:
      StackMap stack: com.sun.tools.attach.AgentLoadException
            pop
         3: .line 219
            new java.lang.InternalError
            dup
            ldc "Should not get here"
            invokespecial java.lang.InternalError.<init>:(Ljava/lang/String;)V
            athrow
        end local 2 // java.lang.Object[] args
        end local 1 // java.lang.String cmd
        end local 0 // sun.tools.attach.HotSpotVirtualMachine this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lsun/tools/attach/HotSpotVirtualMachine;
            0    4     1   cmd  Ljava/lang/String;
            0    4     2  args  [Ljava/lang/Object;
      Exception table:
        from    to  target  type
           0     1       2  Class com.sun.tools.attach.AgentLoadException
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      cmd   
      args  

  int readInt(java.io.InputStream);
    descriptor: (Ljava/io/InputStream;)I
    flags: (0x0000) 
    Code:
      stack=4, locals=6, args_size=2
        start local 0 // sun.tools.attach.HotSpotVirtualMachine this
        start local 1 // java.io.InputStream in
         0: .line 230
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            astore 2 /* sb */
        start local 2 // java.lang.StringBuilder sb
         1: .line 234
            iconst_1
            newarray 8
            astore 4 /* buf */
        start local 4 // byte[] buf
         2: .line 236
      StackMap locals: sun.tools.attach.HotSpotVirtualMachine java.io.InputStream java.lang.StringBuilder top byte[]
      StackMap stack:
            aload 1 /* in */
            aload 4 /* buf */
            iconst_0
            iconst_1
            invokevirtual java.io.InputStream.read:([BII)I
            istore 3 /* n */
        start local 3 // int n
         3: .line 237
            iload 3 /* n */
            ifle 8
         4: .line 238
            aload 4 /* buf */
            iconst_0
            baload
            i2c
            istore 5 /* c */
        start local 5 // char c
         5: .line 239
            iload 5 /* c */
            bipush 10
            if_icmpne 7
         6: .line 240
            goto 10
         7: .line 242
      StackMap locals: sun.tools.attach.HotSpotVirtualMachine java.io.InputStream java.lang.StringBuilder int byte[] int
      StackMap stack:
            aload 2 /* sb */
            iload 5 /* c */
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
        end local 5 // char c
         8: .line 245
      StackMap locals:
      StackMap stack:
            iload 3 /* n */
         9: .line 235
            ifgt 2
        10: .line 247
      StackMap locals:
      StackMap stack:
            aload 2 /* sb */
            invokevirtual java.lang.StringBuilder.length:()I
            ifne 12
        11: .line 248
            new java.io.IOException
            dup
            ldc "Premature EOF"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        12: .line 253
      StackMap locals:
      StackMap stack:
            aload 2 /* sb */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokestatic java.lang.Integer.parseInt:(Ljava/lang/String;)I
            istore 5 /* value */
        start local 5 // int value
        13: .line 254
            goto 16
        end local 5 // int value
      StackMap locals:
      StackMap stack: java.lang.NumberFormatException
        14: pop
        15: .line 255
            new java.io.IOException
            dup
            ldc "Non-numeric value found - int expected"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        start local 5 // int value
        16: .line 257
      StackMap locals: int
      StackMap stack:
            iload 5 /* value */
            ireturn
        end local 5 // int value
        end local 4 // byte[] buf
        end local 3 // int n
        end local 2 // java.lang.StringBuilder sb
        end local 1 // java.io.InputStream in
        end local 0 // sun.tools.attach.HotSpotVirtualMachine this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   17     0   this  Lsun/tools/attach/HotSpotVirtualMachine;
            0   17     1     in  Ljava/io/InputStream;
            1   17     2     sb  Ljava/lang/StringBuilder;
            3   17     3      n  I
            2   17     4    buf  [B
            5    8     5      c  C
           13   14     5  value  I
           16   17     5  value  I
      Exception table:
        from    to  target  type
          12    13      14  Class java.lang.NumberFormatException
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      in    

  long attachTimeout();
    descriptor: ()J
    flags: (0x0000) 
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // sun.tools.attach.HotSpotVirtualMachine this
         0: .line 271
            aload 0 /* this */
            getfield sun.tools.attach.HotSpotVirtualMachine.attachTimeout:J
            lconst_0
            lcmp
            ifne 15
         1: .line 272
            aload 0 /* this */
            dup
            astore 1
            monitorenter
         2: .line 273
            aload 0 /* this */
            getfield sun.tools.attach.HotSpotVirtualMachine.attachTimeout:J
            lconst_0
            lcmp
            ifne 11
         3: .line 276
            ldc "sun.tools.attach.attachTimeout"
            invokestatic java.lang.System.getProperty:(Ljava/lang/String;)Ljava/lang/String;
         4: .line 275
            astore 2 /* s */
        start local 2 // java.lang.String s
         5: .line 277
            aload 0 /* this */
            aload 2 /* s */
            invokestatic java.lang.Long.parseLong:(Ljava/lang/String;)J
            putfield sun.tools.attach.HotSpotVirtualMachine.attachTimeout:J
        end local 2 // java.lang.String s
         6: .line 278
            goto 9
      StackMap locals: sun.tools.attach.HotSpotVirtualMachine sun.tools.attach.HotSpotVirtualMachine
      StackMap stack: java.lang.SecurityException
         7: pop
            goto 9
         8: .line 279
      StackMap locals:
      StackMap stack: java.lang.NumberFormatException
            pop
         9: .line 281
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.tools.attach.HotSpotVirtualMachine.attachTimeout:J
            lconst_0
            lcmp
            ifgt 11
        10: .line 282
            aload 0 /* this */
            getstatic sun.tools.attach.HotSpotVirtualMachine.defaultAttachTimeout:J
            putfield sun.tools.attach.HotSpotVirtualMachine.attachTimeout:J
        11: .line 272
      StackMap locals:
      StackMap stack:
            aload 1
            monitorexit
        12: goto 15
      StackMap locals:
      StackMap stack: java.lang.Throwable
        13: aload 1
            monitorexit
        14: athrow
        15: .line 287
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.tools.attach.HotSpotVirtualMachine.attachTimeout:J
            lreturn
        end local 0 // sun.tools.attach.HotSpotVirtualMachine this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   16     0  this  Lsun/tools/attach/HotSpotVirtualMachine;
            5    6     2     s  Ljava/lang/String;
      Exception table:
        from    to  target  type
           3     6       7  Class java.lang.SecurityException
           3     6       8  Class java.lang.NumberFormatException
           2    12      13  any
          13    14      13  any
}
SourceFile: "HotSpotVirtualMachine.java"