public class sun.jvm.hotspot.HotSpotAgent
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: sun.jvm.hotspot.HotSpotAgent
  super_class: java.lang.Object
{
  private sun.jvm.hotspot.debugger.JVMDebugger debugger;
    descriptor: Lsun/jvm/hotspot/debugger/JVMDebugger;
    flags: (0x0002) ACC_PRIVATE

  private sun.jvm.hotspot.debugger.MachineDescription machDesc;
    descriptor: Lsun/jvm/hotspot/debugger/MachineDescription;
    flags: (0x0002) ACC_PRIVATE

  private sun.jvm.hotspot.types.TypeDataBase db;
    descriptor: Lsun/jvm/hotspot/types/TypeDataBase;
    flags: (0x0002) ACC_PRIVATE

  private java.lang.String os;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  private java.lang.String cpu;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

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

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

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

  private int startupMode;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private boolean isServer;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private int pid;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private java.lang.String javaExecutableName;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  private java.lang.String coreFileName;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  private java.lang.String debugServerID;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  private int rmiPort;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private java.lang.String serverID;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  private java.lang.String[] jvmLibNames;
    descriptor: [Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  static void showUsage();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=0, locals=0, args_size=0
         0: .line 96
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=1, args_size=1
        start local 0 // sun.jvm.hotspot.HotSpotAgent this
         0: .line 98
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 102
            invokestatic java.lang.Runtime.getRuntime:()Ljava/lang/Runtime;
            new java.lang.Thread
            dup
         2: .line 103
            new sun.jvm.hotspot.HotSpotAgent$1
            dup
            aload 0 /* this */
            invokespecial sun.jvm.hotspot.HotSpotAgent$1.<init>:(Lsun/jvm/hotspot/HotSpotAgent;)V
            invokespecial java.lang.Thread.<init>:(Ljava/lang/Runnable;)V
         3: .line 102
            invokevirtual java.lang.Runtime.addShutdownHook:(Ljava/lang/Thread;)V
         4: .line 112
            return
        end local 0 // sun.jvm.hotspot.HotSpotAgent this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lsun/jvm/hotspot/HotSpotAgent;

  public synchronized sun.jvm.hotspot.debugger.Debugger getDebugger();
    descriptor: ()Lsun/jvm/hotspot/debugger/Debugger;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.jvm.hotspot.HotSpotAgent this
         0: .line 119
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.debugger:Lsun/jvm/hotspot/debugger/JVMDebugger;
            areturn
        end local 0 // sun.jvm.hotspot.HotSpotAgent this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/jvm/hotspot/HotSpotAgent;

  public synchronized sun.jvm.hotspot.types.TypeDataBase getTypeDataBase();
    descriptor: ()Lsun/jvm/hotspot/types/TypeDataBase;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.jvm.hotspot.HotSpotAgent this
         0: .line 123
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.db:Lsun/jvm/hotspot/types/TypeDataBase;
            areturn
        end local 0 // sun.jvm.hotspot.HotSpotAgent this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/jvm/hotspot/HotSpotAgent;

  public synchronized void attach(int);
    descriptor: (I)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // sun.jvm.hotspot.HotSpotAgent this
        start local 1 // int processID
         0: .line 133
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.debugger:Lsun/jvm/hotspot/debugger/JVMDebugger;
            ifnull 2
         1: .line 134
            new sun.jvm.hotspot.debugger.DebuggerException
            dup
            ldc "Already attached"
            invokespecial sun.jvm.hotspot.debugger.DebuggerException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 136
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* processID */
            putfield sun.jvm.hotspot.HotSpotAgent.pid:I
         3: .line 137
            aload 0 /* this */
            iconst_0
            putfield sun.jvm.hotspot.HotSpotAgent.startupMode:I
         4: .line 138
            aload 0 /* this */
            iconst_0
            putfield sun.jvm.hotspot.HotSpotAgent.isServer:Z
         5: .line 139
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.HotSpotAgent.go:()V
         6: .line 140
            return
        end local 1 // int processID
        end local 0 // sun.jvm.hotspot.HotSpotAgent this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    7     0       this  Lsun/jvm/hotspot/HotSpotAgent;
            0    7     1  processID  I
    Exceptions:
      throws sun.jvm.hotspot.debugger.DebuggerException
    MethodParameters:
           Name  Flags
      processID  

  public synchronized void attach(java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // sun.jvm.hotspot.HotSpotAgent this
        start local 1 // java.lang.String javaExecutableName
        start local 2 // java.lang.String coreFileName
         0: .line 145
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.debugger:Lsun/jvm/hotspot/debugger/JVMDebugger;
            ifnull 2
         1: .line 146
            new sun.jvm.hotspot.debugger.DebuggerException
            dup
            ldc "Already attached"
            invokespecial sun.jvm.hotspot.debugger.DebuggerException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 148
      StackMap locals:
      StackMap stack:
            aload 1 /* javaExecutableName */
            ifnull 3
            aload 2 /* coreFileName */
            ifnonnull 4
         3: .line 149
      StackMap locals:
      StackMap stack:
            new sun.jvm.hotspot.debugger.DebuggerException
            dup
            ldc "Both the core file name and Java executable name must be specified"
            invokespecial sun.jvm.hotspot.debugger.DebuggerException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 151
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* javaExecutableName */
            putfield sun.jvm.hotspot.HotSpotAgent.javaExecutableName:Ljava/lang/String;
         5: .line 152
            aload 0 /* this */
            aload 2 /* coreFileName */
            putfield sun.jvm.hotspot.HotSpotAgent.coreFileName:Ljava/lang/String;
         6: .line 153
            aload 0 /* this */
            iconst_1
            putfield sun.jvm.hotspot.HotSpotAgent.startupMode:I
         7: .line 154
            aload 0 /* this */
            iconst_0
            putfield sun.jvm.hotspot.HotSpotAgent.isServer:Z
         8: .line 155
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.HotSpotAgent.go:()V
         9: .line 156
            return
        end local 2 // java.lang.String coreFileName
        end local 1 // java.lang.String javaExecutableName
        end local 0 // sun.jvm.hotspot.HotSpotAgent this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0   10     0                this  Lsun/jvm/hotspot/HotSpotAgent;
            0   10     1  javaExecutableName  Ljava/lang/String;
            0   10     2        coreFileName  Ljava/lang/String;
    Exceptions:
      throws sun.jvm.hotspot.debugger.DebuggerException
    MethodParameters:
                    Name  Flags
      javaExecutableName  
      coreFileName        

  public synchronized void attach(sun.jvm.hotspot.debugger.JVMDebugger);
    descriptor: (Lsun/jvm/hotspot/debugger/JVMDebugger;)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.jvm.hotspot.HotSpotAgent this
        start local 1 // sun.jvm.hotspot.debugger.JVMDebugger d
         0: .line 161
            aload 0 /* this */
            aload 1 /* d */
            putfield sun.jvm.hotspot.HotSpotAgent.debugger:Lsun/jvm/hotspot/debugger/JVMDebugger;
         1: .line 162
            aload 0 /* this */
            iconst_0
            putfield sun.jvm.hotspot.HotSpotAgent.isServer:Z
         2: .line 163
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.HotSpotAgent.go:()V
         3: .line 164
            return
        end local 1 // sun.jvm.hotspot.debugger.JVMDebugger d
        end local 0 // sun.jvm.hotspot.HotSpotAgent this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lsun/jvm/hotspot/HotSpotAgent;
            0    4     1     d  Lsun/jvm/hotspot/debugger/JVMDebugger;
    Exceptions:
      throws sun.jvm.hotspot.debugger.DebuggerException
    MethodParameters:
      Name  Flags
      d     

  public synchronized void attach(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // sun.jvm.hotspot.HotSpotAgent this
        start local 1 // java.lang.String remoteServerID
         0: .line 172
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.debugger:Lsun/jvm/hotspot/debugger/JVMDebugger;
            ifnull 2
         1: .line 173
            new sun.jvm.hotspot.debugger.DebuggerException
            dup
            ldc "Already attached to a process"
            invokespecial sun.jvm.hotspot.debugger.DebuggerException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 175
      StackMap locals:
      StackMap stack:
            aload 1 /* remoteServerID */
            ifnonnull 4
         3: .line 176
            new sun.jvm.hotspot.debugger.DebuggerException
            dup
            ldc "Debug server id must be specified"
            invokespecial sun.jvm.hotspot.debugger.DebuggerException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 179
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* remoteServerID */
            putfield sun.jvm.hotspot.HotSpotAgent.debugServerID:Ljava/lang/String;
         5: .line 180
            aload 0 /* this */
            iconst_2
            putfield sun.jvm.hotspot.HotSpotAgent.startupMode:I
         6: .line 181
            aload 0 /* this */
            iconst_0
            putfield sun.jvm.hotspot.HotSpotAgent.isServer:Z
         7: .line 182
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.HotSpotAgent.go:()V
         8: .line 183
            return
        end local 1 // java.lang.String remoteServerID
        end local 0 // sun.jvm.hotspot.HotSpotAgent this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    9     0            this  Lsun/jvm/hotspot/HotSpotAgent;
            0    9     1  remoteServerID  Ljava/lang/String;
    Exceptions:
      throws sun.jvm.hotspot.debugger.DebuggerException
    MethodParameters:
                Name  Flags
      remoteServerID  

  public synchronized boolean detach();
    descriptor: ()Z
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // sun.jvm.hotspot.HotSpotAgent this
         0: .line 188
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.isServer:Z
            ifeq 2
         1: .line 189
            new sun.jvm.hotspot.debugger.DebuggerException
            dup
            ldc "Should not call detach() for server configuration"
            invokespecial sun.jvm.hotspot.debugger.DebuggerException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 191
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.HotSpotAgent.detachInternal:()Z
            ireturn
        end local 0 // sun.jvm.hotspot.HotSpotAgent this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/jvm/hotspot/HotSpotAgent;
    Exceptions:
      throws sun.jvm.hotspot.debugger.DebuggerException

  public synchronized void startServer(int, java.lang.String, int);
    descriptor: (ILjava/lang/String;I)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // sun.jvm.hotspot.HotSpotAgent this
        start local 1 // int processID
        start local 2 // java.lang.String uniqueID
        start local 3 // int rmiPort
         0: .line 207
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.debugger:Lsun/jvm/hotspot/debugger/JVMDebugger;
            ifnull 2
         1: .line 208
            new sun.jvm.hotspot.debugger.DebuggerException
            dup
            ldc "Already attached"
            invokespecial sun.jvm.hotspot.debugger.DebuggerException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 210
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* processID */
            putfield sun.jvm.hotspot.HotSpotAgent.pid:I
         3: .line 211
            aload 0 /* this */
            iconst_0
            putfield sun.jvm.hotspot.HotSpotAgent.startupMode:I
         4: .line 212
            aload 0 /* this */
            iconst_1
            putfield sun.jvm.hotspot.HotSpotAgent.isServer:Z
         5: .line 213
            aload 0 /* this */
            aload 2 /* uniqueID */
            putfield sun.jvm.hotspot.HotSpotAgent.serverID:Ljava/lang/String;
         6: .line 214
            aload 0 /* this */
            iload 3 /* rmiPort */
            putfield sun.jvm.hotspot.HotSpotAgent.rmiPort:I
         7: .line 215
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.HotSpotAgent.go:()V
         8: .line 216
            return
        end local 3 // int rmiPort
        end local 2 // java.lang.String uniqueID
        end local 1 // int processID
        end local 0 // sun.jvm.hotspot.HotSpotAgent this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    9     0       this  Lsun/jvm/hotspot/HotSpotAgent;
            0    9     1  processID  I
            0    9     2   uniqueID  Ljava/lang/String;
            0    9     3    rmiPort  I
    MethodParameters:
           Name  Flags
      processID  
      uniqueID   
      rmiPort    

  public synchronized void startServer(int, java.lang.String);
    descriptor: (ILjava/lang/String;)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // sun.jvm.hotspot.HotSpotAgent this
        start local 1 // int processID
        start local 2 // java.lang.String uniqueID
         0: .line 223
            aload 0 /* this */
            iload 1 /* processID */
            aload 2 /* uniqueID */
            iconst_0
            invokevirtual sun.jvm.hotspot.HotSpotAgent.startServer:(ILjava/lang/String;I)V
         1: .line 224
            return
        end local 2 // java.lang.String uniqueID
        end local 1 // int processID
        end local 0 // sun.jvm.hotspot.HotSpotAgent this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lsun/jvm/hotspot/HotSpotAgent;
            0    2     1  processID  I
            0    2     2   uniqueID  Ljava/lang/String;
    MethodParameters:
           Name  Flags
      processID  
      uniqueID   

  public synchronized void startServer(int);
    descriptor: (I)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // sun.jvm.hotspot.HotSpotAgent this
        start local 1 // int processID
         0: .line 231
            aload 0 /* this */
            iload 1 /* processID */
            aconst_null
            invokevirtual sun.jvm.hotspot.HotSpotAgent.startServer:(ILjava/lang/String;)V
         1: .line 232
            return
        end local 1 // int processID
        end local 0 // sun.jvm.hotspot.HotSpotAgent this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lsun/jvm/hotspot/HotSpotAgent;
            0    2     1  processID  I
    Exceptions:
      throws sun.jvm.hotspot.debugger.DebuggerException
    MethodParameters:
           Name  Flags
      processID  

  public synchronized void startServer(java.lang.String, java.lang.String, java.lang.String, int);
    descriptor: (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;I)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=5, args_size=5
        start local 0 // sun.jvm.hotspot.HotSpotAgent this
        start local 1 // java.lang.String javaExecutableName
        start local 2 // java.lang.String coreFileName
        start local 3 // java.lang.String uniqueID
        start local 4 // int rmiPort
         0: .line 243
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.debugger:Lsun/jvm/hotspot/debugger/JVMDebugger;
            ifnull 2
         1: .line 244
            new sun.jvm.hotspot.debugger.DebuggerException
            dup
            ldc "Already attached"
            invokespecial sun.jvm.hotspot.debugger.DebuggerException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 246
      StackMap locals:
      StackMap stack:
            aload 1 /* javaExecutableName */
            ifnull 3
            aload 2 /* coreFileName */
            ifnonnull 4
         3: .line 247
      StackMap locals:
      StackMap stack:
            new sun.jvm.hotspot.debugger.DebuggerException
            dup
            ldc "Both the core file name and Java executable name must be specified"
            invokespecial sun.jvm.hotspot.debugger.DebuggerException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 249
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* javaExecutableName */
            putfield sun.jvm.hotspot.HotSpotAgent.javaExecutableName:Ljava/lang/String;
         5: .line 250
            aload 0 /* this */
            aload 2 /* coreFileName */
            putfield sun.jvm.hotspot.HotSpotAgent.coreFileName:Ljava/lang/String;
         6: .line 251
            aload 0 /* this */
            iconst_1
            putfield sun.jvm.hotspot.HotSpotAgent.startupMode:I
         7: .line 252
            aload 0 /* this */
            iconst_1
            putfield sun.jvm.hotspot.HotSpotAgent.isServer:Z
         8: .line 253
            aload 0 /* this */
            aload 3 /* uniqueID */
            putfield sun.jvm.hotspot.HotSpotAgent.serverID:Ljava/lang/String;
         9: .line 254
            aload 0 /* this */
            iload 4 /* rmiPort */
            putfield sun.jvm.hotspot.HotSpotAgent.rmiPort:I
        10: .line 255
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.HotSpotAgent.go:()V
        11: .line 256
            return
        end local 4 // int rmiPort
        end local 3 // java.lang.String uniqueID
        end local 2 // java.lang.String coreFileName
        end local 1 // java.lang.String javaExecutableName
        end local 0 // sun.jvm.hotspot.HotSpotAgent this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0   12     0                this  Lsun/jvm/hotspot/HotSpotAgent;
            0   12     1  javaExecutableName  Ljava/lang/String;
            0   12     2        coreFileName  Ljava/lang/String;
            0   12     3            uniqueID  Ljava/lang/String;
            0   12     4             rmiPort  I
    MethodParameters:
                    Name  Flags
      javaExecutableName  
      coreFileName        
      uniqueID            
      rmiPort             

  public synchronized void startServer(java.lang.String, java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // sun.jvm.hotspot.HotSpotAgent this
        start local 1 // java.lang.String javaExecutableName
        start local 2 // java.lang.String coreFileName
        start local 3 // java.lang.String uniqueID
         0: .line 265
            aload 0 /* this */
            aload 1 /* javaExecutableName */
            aload 2 /* coreFileName */
            aload 3 /* uniqueID */
            iconst_0
            invokevirtual sun.jvm.hotspot.HotSpotAgent.startServer:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;I)V
         1: .line 266
            return
        end local 3 // java.lang.String uniqueID
        end local 2 // java.lang.String coreFileName
        end local 1 // java.lang.String javaExecutableName
        end local 0 // sun.jvm.hotspot.HotSpotAgent this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    2     0                this  Lsun/jvm/hotspot/HotSpotAgent;
            0    2     1  javaExecutableName  Ljava/lang/String;
            0    2     2        coreFileName  Ljava/lang/String;
            0    2     3            uniqueID  Ljava/lang/String;
    MethodParameters:
                    Name  Flags
      javaExecutableName  
      coreFileName        
      uniqueID            

  public synchronized void startServer(java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // sun.jvm.hotspot.HotSpotAgent this
        start local 1 // java.lang.String javaExecutableName
        start local 2 // java.lang.String coreFileName
         0: .line 273
            aload 0 /* this */
            aload 1 /* javaExecutableName */
            aload 2 /* coreFileName */
            aconst_null
            invokevirtual sun.jvm.hotspot.HotSpotAgent.startServer:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
         1: .line 274
            return
        end local 2 // java.lang.String coreFileName
        end local 1 // java.lang.String javaExecutableName
        end local 0 // sun.jvm.hotspot.HotSpotAgent this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    2     0                this  Lsun/jvm/hotspot/HotSpotAgent;
            0    2     1  javaExecutableName  Ljava/lang/String;
            0    2     2        coreFileName  Ljava/lang/String;
    Exceptions:
      throws sun.jvm.hotspot.debugger.DebuggerException
    MethodParameters:
                    Name  Flags
      javaExecutableName  
      coreFileName        

  public synchronized boolean shutdownServer();
    descriptor: ()Z
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // sun.jvm.hotspot.HotSpotAgent this
         0: .line 279
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.isServer:Z
            ifne 2
         1: .line 280
            new sun.jvm.hotspot.debugger.DebuggerException
            dup
            ldc "Should not call shutdownServer() for client configuration"
            invokespecial sun.jvm.hotspot.debugger.DebuggerException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 282
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.HotSpotAgent.detachInternal:()Z
            ireturn
        end local 0 // sun.jvm.hotspot.HotSpotAgent this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/jvm/hotspot/HotSpotAgent;
    Exceptions:
      throws sun.jvm.hotspot.debugger.DebuggerException

  private boolean detachInternal();
    descriptor: ()Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=5, args_size=1
        start local 0 // sun.jvm.hotspot.HotSpotAgent this
         0: .line 291
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.debugger:Lsun/jvm/hotspot/debugger/JVMDebugger;
            ifnonnull 2
         1: .line 292
            iconst_0
            ireturn
         2: .line 294
      StackMap locals:
      StackMap stack:
            iconst_1
            istore 1 /* retval */
        start local 1 // boolean retval
         3: .line 295
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.isServer:Z
            ifne 5
         4: .line 296
            invokestatic sun.jvm.hotspot.runtime.VM.shutdown:()V
         5: .line 300
      StackMap locals: int
      StackMap stack:
            aconst_null
            astore 2 /* dbg */
        start local 2 // sun.jvm.hotspot.debugger.Debugger dbg
         6: .line 301
            aconst_null
            astore 3 /* ex */
        start local 3 // sun.jvm.hotspot.debugger.DebuggerException ex
         7: .line 302
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.isServer:Z
            ifeq 14
         8: .line 304
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.serverID:Ljava/lang/String;
            invokestatic sun.jvm.hotspot.RMIHelper.unbind:(Ljava/lang/String;)V
         9: .line 305
            goto 12
        10: .line 306
      StackMap locals: sun.jvm.hotspot.HotSpotAgent int sun.jvm.hotspot.debugger.Debugger sun.jvm.hotspot.debugger.DebuggerException
      StackMap stack: sun.jvm.hotspot.debugger.DebuggerException
            astore 4 /* de */
        start local 4 // sun.jvm.hotspot.debugger.DebuggerException de
        11: .line 307
            aload 4 /* de */
            astore 3 /* ex */
        end local 4 // sun.jvm.hotspot.debugger.DebuggerException de
        12: .line 309
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.debugger:Lsun/jvm/hotspot/debugger/JVMDebugger;
            astore 2 /* dbg */
        13: .line 310
            goto 16
        14: .line 311
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.startupMode:I
            iconst_2
            if_icmpeq 16
        15: .line 312
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.debugger:Lsun/jvm/hotspot/debugger/JVMDebugger;
            astore 2 /* dbg */
        16: .line 315
      StackMap locals:
      StackMap stack:
            aload 2 /* dbg */
            ifnull 18
        17: .line 316
            aload 2 /* dbg */
            invokeinterface sun.jvm.hotspot.debugger.Debugger.detach:()Z
            istore 1 /* retval */
        18: .line 319
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aconst_null
            putfield sun.jvm.hotspot.HotSpotAgent.debugger:Lsun/jvm/hotspot/debugger/JVMDebugger;
        19: .line 320
            aload 0 /* this */
            aconst_null
            putfield sun.jvm.hotspot.HotSpotAgent.machDesc:Lsun/jvm/hotspot/debugger/MachineDescription;
        20: .line 321
            aload 0 /* this */
            aconst_null
            putfield sun.jvm.hotspot.HotSpotAgent.db:Lsun/jvm/hotspot/types/TypeDataBase;
        21: .line 322
            aload 3 /* ex */
            ifnull 23
        22: .line 323
            aload 3 /* ex */
            athrow
        23: .line 325
      StackMap locals:
      StackMap stack:
            iload 1 /* retval */
            ireturn
        end local 3 // sun.jvm.hotspot.debugger.DebuggerException ex
        end local 2 // sun.jvm.hotspot.debugger.Debugger dbg
        end local 1 // boolean retval
        end local 0 // sun.jvm.hotspot.HotSpotAgent this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   24     0    this  Lsun/jvm/hotspot/HotSpotAgent;
            3   24     1  retval  Z
            6   24     2     dbg  Lsun/jvm/hotspot/debugger/Debugger;
            7   24     3      ex  Lsun/jvm/hotspot/debugger/DebuggerException;
           11   12     4      de  Lsun/jvm/hotspot/debugger/DebuggerException;
      Exception table:
        from    to  target  type
           8     9      10  Class sun.jvm.hotspot.debugger.DebuggerException

  private void go();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.jvm.hotspot.HotSpotAgent this
         0: .line 329
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.HotSpotAgent.setupDebugger:()V
         1: .line 330
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.HotSpotAgent.setupVM:()V
         2: .line 331
            return
        end local 0 // sun.jvm.hotspot.HotSpotAgent this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/jvm/hotspot/HotSpotAgent;

  private void setupDebugger();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=4, args_size=1
        start local 0 // sun.jvm.hotspot.HotSpotAgent this
         0: .line 334
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.startupMode:I
            iconst_2
            if_icmpeq 34
         1: .line 342
            ldc "sa.altDebugger"
            invokestatic java.lang.System.getProperty:(Ljava/lang/String;)Ljava/lang/String;
            astore 1 /* alternateDebugger */
        start local 1 // java.lang.String alternateDebugger
         2: .line 343
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.debugger:Lsun/jvm/hotspot/debugger/JVMDebugger;
            ifnull 5
         3: .line 344
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.HotSpotAgent.setupDebuggerExisting:()V
         4: .line 346
            goto 26
      StackMap locals: java.lang.String
      StackMap stack:
         5: aload 1 /* alternateDebugger */
            ifnull 8
         6: .line 347
            aload 0 /* this */
            aload 1 /* alternateDebugger */
            invokevirtual sun.jvm.hotspot.HotSpotAgent.setupDebuggerAlternate:(Ljava/lang/String;)V
         7: .line 349
            goto 26
         8: .line 352
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokestatic sun.jvm.hotspot.utilities.PlatformInfo.getOS:()Ljava/lang/String;
            putfield sun.jvm.hotspot.HotSpotAgent.os:Ljava/lang/String;
         9: .line 353
            aload 0 /* this */
            invokestatic sun.jvm.hotspot.utilities.PlatformInfo.getCPU:()Ljava/lang/String;
            putfield sun.jvm.hotspot.HotSpotAgent.cpu:Ljava/lang/String;
        10: .line 354
            goto 13
      StackMap locals:
      StackMap stack: sun.jvm.hotspot.utilities.UnsupportedPlatformException
        11: astore 2 /* e */
        start local 2 // sun.jvm.hotspot.utilities.UnsupportedPlatformException e
        12: .line 355
            new sun.jvm.hotspot.debugger.DebuggerException
            dup
            aload 2 /* e */
            invokespecial sun.jvm.hotspot.debugger.DebuggerException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 2 // sun.jvm.hotspot.utilities.UnsupportedPlatformException e
        13: .line 357
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.os:Ljava/lang/String;
            ldc "win32"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 16
        14: .line 358
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.HotSpotAgent.setupDebuggerWin32:()V
        15: .line 359
            goto 26
      StackMap locals:
      StackMap stack:
        16: aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.os:Ljava/lang/String;
            ldc "linux"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 19
        17: .line 360
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.HotSpotAgent.setupDebuggerLinux:()V
        18: .line 361
            goto 26
      StackMap locals:
      StackMap stack:
        19: aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.os:Ljava/lang/String;
            ldc "bsd"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 22
        20: .line 362
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.HotSpotAgent.setupDebuggerBsd:()V
        21: .line 363
            goto 26
      StackMap locals:
      StackMap stack:
        22: aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.os:Ljava/lang/String;
            ldc "darwin"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 25
        23: .line 364
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.HotSpotAgent.setupDebuggerDarwin:()V
        24: .line 365
            goto 26
        25: .line 367
      StackMap locals:
      StackMap stack:
            new sun.jvm.hotspot.debugger.DebuggerException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Operating system "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.os:Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc " not yet supported"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial sun.jvm.hotspot.debugger.DebuggerException.<init>:(Ljava/lang/String;)V
            athrow
        26: .line 371
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.isServer:Z
            ifeq 35
        27: .line 372
            aconst_null
            astore 2 /* remote */
        start local 2 // sun.jvm.hotspot.debugger.remote.RemoteDebuggerServer remote
        28: .line 374
            new sun.jvm.hotspot.debugger.remote.RemoteDebuggerServer
            dup
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.debugger:Lsun/jvm/hotspot/debugger/JVMDebugger;
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.rmiPort:I
            invokespecial sun.jvm.hotspot.debugger.remote.RemoteDebuggerServer.<init>:(Lsun/jvm/hotspot/debugger/Debugger;I)V
            astore 2 /* remote */
        29: .line 375
            goto 32
        30: .line 376
      StackMap locals: sun.jvm.hotspot.HotSpotAgent java.lang.String sun.jvm.hotspot.debugger.remote.RemoteDebuggerServer
      StackMap stack: java.rmi.RemoteException
            astore 3 /* rem */
        start local 3 // java.rmi.RemoteException rem
        31: .line 377
            new sun.jvm.hotspot.debugger.DebuggerException
            dup
            aload 3 /* rem */
            invokespecial sun.jvm.hotspot.debugger.DebuggerException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 3 // java.rmi.RemoteException rem
        32: .line 379
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.serverID:Ljava/lang/String;
            aload 2 /* remote */
            invokestatic sun.jvm.hotspot.RMIHelper.rebind:(Ljava/lang/String;Ljava/rmi/Remote;)V
        end local 2 // sun.jvm.hotspot.debugger.remote.RemoteDebuggerServer remote
        end local 1 // java.lang.String alternateDebugger
        33: .line 381
            goto 35
        34: .line 397
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.HotSpotAgent.connectRemoteDebugger:()V
        35: .line 399
      StackMap locals:
      StackMap stack:
            return
        end local 0 // sun.jvm.hotspot.HotSpotAgent this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0   36     0               this  Lsun/jvm/hotspot/HotSpotAgent;
            2   33     1  alternateDebugger  Ljava/lang/String;
           12   13     2                  e  Lsun/jvm/hotspot/utilities/UnsupportedPlatformException;
           28   33     2             remote  Lsun/jvm/hotspot/debugger/remote/RemoteDebuggerServer;
           31   32     3                rem  Ljava/rmi/RemoteException;
      Exception table:
        from    to  target  type
           8    10      11  Class sun.jvm.hotspot.utilities.UnsupportedPlatformException
          28    29      30  Class java.rmi.RemoteException

  private void setupVM();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=17, locals=2, args_size=1
        start local 0 // sun.jvm.hotspot.HotSpotAgent this
         0: .line 409
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.os:Ljava/lang/String;
            ldc "win32"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 6
         1: .line 410
            aload 0 /* this */
            new sun.jvm.hotspot.HotSpotTypeDataBase
            dup
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.machDesc:Lsun/jvm/hotspot/debugger/MachineDescription;
         2: .line 411
            new sun.jvm.hotspot.Win32VtblAccess
            dup
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.debugger:Lsun/jvm/hotspot/debugger/JVMDebugger;
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.jvmLibNames:[Ljava/lang/String;
            invokespecial sun.jvm.hotspot.Win32VtblAccess.<init>:(Lsun/jvm/hotspot/debugger/SymbolLookup;[Ljava/lang/String;)V
         3: .line 412
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.debugger:Lsun/jvm/hotspot/debugger/JVMDebugger;
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.jvmLibNames:[Ljava/lang/String;
            invokespecial sun.jvm.hotspot.HotSpotTypeDataBase.<init>:(Lsun/jvm/hotspot/debugger/MachineDescription;Lsun/jvm/hotspot/types/basic/VtblAccess;Lsun/jvm/hotspot/debugger/Debugger;[Ljava/lang/String;)V
         4: .line 410
            putfield sun.jvm.hotspot.HotSpotAgent.db:Lsun/jvm/hotspot/types/TypeDataBase;
         5: .line 413
            goto 29
      StackMap locals:
      StackMap stack:
         6: aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.os:Ljava/lang/String;
            ldc "linux"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 12
         7: .line 414
            aload 0 /* this */
            new sun.jvm.hotspot.HotSpotTypeDataBase
            dup
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.machDesc:Lsun/jvm/hotspot/debugger/MachineDescription;
         8: .line 415
            new sun.jvm.hotspot.LinuxVtblAccess
            dup
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.debugger:Lsun/jvm/hotspot/debugger/JVMDebugger;
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.jvmLibNames:[Ljava/lang/String;
            invokespecial sun.jvm.hotspot.LinuxVtblAccess.<init>:(Lsun/jvm/hotspot/debugger/SymbolLookup;[Ljava/lang/String;)V
         9: .line 416
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.debugger:Lsun/jvm/hotspot/debugger/JVMDebugger;
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.jvmLibNames:[Ljava/lang/String;
            invokespecial sun.jvm.hotspot.HotSpotTypeDataBase.<init>:(Lsun/jvm/hotspot/debugger/MachineDescription;Lsun/jvm/hotspot/types/basic/VtblAccess;Lsun/jvm/hotspot/debugger/Debugger;[Ljava/lang/String;)V
        10: .line 414
            putfield sun.jvm.hotspot.HotSpotAgent.db:Lsun/jvm/hotspot/types/TypeDataBase;
        11: .line 417
            goto 29
      StackMap locals:
      StackMap stack:
        12: aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.os:Ljava/lang/String;
            ldc "bsd"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 18
        13: .line 418
            aload 0 /* this */
            new sun.jvm.hotspot.HotSpotTypeDataBase
            dup
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.machDesc:Lsun/jvm/hotspot/debugger/MachineDescription;
        14: .line 419
            new sun.jvm.hotspot.BsdVtblAccess
            dup
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.debugger:Lsun/jvm/hotspot/debugger/JVMDebugger;
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.jvmLibNames:[Ljava/lang/String;
            invokespecial sun.jvm.hotspot.BsdVtblAccess.<init>:(Lsun/jvm/hotspot/debugger/SymbolLookup;[Ljava/lang/String;)V
        15: .line 420
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.debugger:Lsun/jvm/hotspot/debugger/JVMDebugger;
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.jvmLibNames:[Ljava/lang/String;
            invokespecial sun.jvm.hotspot.HotSpotTypeDataBase.<init>:(Lsun/jvm/hotspot/debugger/MachineDescription;Lsun/jvm/hotspot/types/basic/VtblAccess;Lsun/jvm/hotspot/debugger/Debugger;[Ljava/lang/String;)V
        16: .line 418
            putfield sun.jvm.hotspot.HotSpotAgent.db:Lsun/jvm/hotspot/types/TypeDataBase;
        17: .line 421
            goto 29
      StackMap locals:
      StackMap stack:
        18: aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.os:Ljava/lang/String;
            ldc "darwin"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 24
        19: .line 422
            aload 0 /* this */
            new sun.jvm.hotspot.HotSpotTypeDataBase
            dup
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.machDesc:Lsun/jvm/hotspot/debugger/MachineDescription;
        20: .line 423
            new sun.jvm.hotspot.BsdVtblAccess
            dup
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.debugger:Lsun/jvm/hotspot/debugger/JVMDebugger;
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.jvmLibNames:[Ljava/lang/String;
            invokespecial sun.jvm.hotspot.BsdVtblAccess.<init>:(Lsun/jvm/hotspot/debugger/SymbolLookup;[Ljava/lang/String;)V
        21: .line 424
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.debugger:Lsun/jvm/hotspot/debugger/JVMDebugger;
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.jvmLibNames:[Ljava/lang/String;
            invokespecial sun.jvm.hotspot.HotSpotTypeDataBase.<init>:(Lsun/jvm/hotspot/debugger/MachineDescription;Lsun/jvm/hotspot/types/basic/VtblAccess;Lsun/jvm/hotspot/debugger/Debugger;[Ljava/lang/String;)V
        22: .line 422
            putfield sun.jvm.hotspot.HotSpotAgent.db:Lsun/jvm/hotspot/types/TypeDataBase;
        23: .line 425
            goto 29
        24: .line 426
      StackMap locals:
      StackMap stack:
            new sun.jvm.hotspot.debugger.DebuggerException
            dup
            new java.lang.StringBuilder
            dup
            ldc "OS \""
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.os:Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc "\" not yet supported (no VtblAccess yet)"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial sun.jvm.hotspot.debugger.DebuggerException.<init>:(Ljava/lang/String;)V
            athrow
        25: .line 429
      StackMap locals:
      StackMap stack: sun.jvm.hotspot.debugger.NoSuchSymbolException
            astore 1 /* e */
        start local 1 // sun.jvm.hotspot.debugger.NoSuchSymbolException e
        26: .line 430
            new sun.jvm.hotspot.debugger.DebuggerException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Doesn't appear to be a HotSpot VM (could not find symbol \""
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
        27: .line 431
            aload 1 /* e */
            invokevirtual sun.jvm.hotspot.debugger.NoSuchSymbolException.getSymbol:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc "\" in remote process)"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        28: .line 430
            invokespecial sun.jvm.hotspot.debugger.DebuggerException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // sun.jvm.hotspot.debugger.NoSuchSymbolException e
        29: .line 434
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.startupMode:I
            iconst_2
            if_icmpeq 39
        30: .line 436
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.debugger:Lsun/jvm/hotspot/debugger/JVMDebugger;
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.db:Lsun/jvm/hotspot/types/TypeDataBase;
            invokeinterface sun.jvm.hotspot.types.TypeDataBase.getJBooleanType:()Lsun/jvm/hotspot/types/Type;
            invokeinterface sun.jvm.hotspot.types.Type.getSize:()J
        31: .line 437
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.db:Lsun/jvm/hotspot/types/TypeDataBase;
            invokeinterface sun.jvm.hotspot.types.TypeDataBase.getJByteType:()Lsun/jvm/hotspot/types/Type;
            invokeinterface sun.jvm.hotspot.types.Type.getSize:()J
        32: .line 438
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.db:Lsun/jvm/hotspot/types/TypeDataBase;
            invokeinterface sun.jvm.hotspot.types.TypeDataBase.getJCharType:()Lsun/jvm/hotspot/types/Type;
            invokeinterface sun.jvm.hotspot.types.Type.getSize:()J
        33: .line 439
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.db:Lsun/jvm/hotspot/types/TypeDataBase;
            invokeinterface sun.jvm.hotspot.types.TypeDataBase.getJDoubleType:()Lsun/jvm/hotspot/types/Type;
            invokeinterface sun.jvm.hotspot.types.Type.getSize:()J
        34: .line 440
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.db:Lsun/jvm/hotspot/types/TypeDataBase;
            invokeinterface sun.jvm.hotspot.types.TypeDataBase.getJFloatType:()Lsun/jvm/hotspot/types/Type;
            invokeinterface sun.jvm.hotspot.types.Type.getSize:()J
        35: .line 441
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.db:Lsun/jvm/hotspot/types/TypeDataBase;
            invokeinterface sun.jvm.hotspot.types.TypeDataBase.getJIntType:()Lsun/jvm/hotspot/types/Type;
            invokeinterface sun.jvm.hotspot.types.Type.getSize:()J
        36: .line 442
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.db:Lsun/jvm/hotspot/types/TypeDataBase;
            invokeinterface sun.jvm.hotspot.types.TypeDataBase.getJLongType:()Lsun/jvm/hotspot/types/Type;
            invokeinterface sun.jvm.hotspot.types.Type.getSize:()J
        37: .line 443
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.db:Lsun/jvm/hotspot/types/TypeDataBase;
            invokeinterface sun.jvm.hotspot.types.TypeDataBase.getJShortType:()Lsun/jvm/hotspot/types/Type;
            invokeinterface sun.jvm.hotspot.types.Type.getSize:()J
        38: .line 436
            invokeinterface sun.jvm.hotspot.debugger.JVMDebugger.configureJavaPrimitiveTypeSizes:(JJJJJJJJ)V
        39: .line 446
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.isServer:Z
            ifne 46
        40: .line 450
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.db:Lsun/jvm/hotspot/types/TypeDataBase;
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.debugger:Lsun/jvm/hotspot/debugger/JVMDebugger;
            invokestatic sun.jvm.hotspot.runtime.VM.initialize:(Lsun/jvm/hotspot/types/TypeDataBase;Lsun/jvm/hotspot/debugger/JVMDebugger;)V
        41: .line 451
            goto 46
      StackMap locals:
      StackMap stack: sun.jvm.hotspot.debugger.DebuggerException
        42: astore 1 /* e */
        start local 1 // sun.jvm.hotspot.debugger.DebuggerException e
        43: .line 452
            aload 1 /* e */
            athrow
        end local 1 // sun.jvm.hotspot.debugger.DebuggerException e
        44: .line 453
      StackMap locals:
      StackMap stack: java.lang.Exception
            astore 1 /* e */
        start local 1 // java.lang.Exception e
        45: .line 454
            new sun.jvm.hotspot.debugger.DebuggerException
            dup
            aload 1 /* e */
            invokespecial sun.jvm.hotspot.debugger.DebuggerException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 1 // java.lang.Exception e
        46: .line 457
      StackMap locals:
      StackMap stack:
            return
        end local 0 // sun.jvm.hotspot.HotSpotAgent this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   47     0  this  Lsun/jvm/hotspot/HotSpotAgent;
           26   29     1     e  Lsun/jvm/hotspot/debugger/NoSuchSymbolException;
           43   44     1     e  Lsun/jvm/hotspot/debugger/DebuggerException;
           45   46     1     e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           0    25      25  Class sun.jvm.hotspot.debugger.NoSuchSymbolException
          40    41      42  Class sun.jvm.hotspot.debugger.DebuggerException
          40    41      44  Class java.lang.Exception

  private void setupDebuggerExisting();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.jvm.hotspot.HotSpotAgent this
         0: .line 467
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.debugger:Lsun/jvm/hotspot/debugger/JVMDebugger;
            invokeinterface sun.jvm.hotspot.debugger.JVMDebugger.getOS:()Ljava/lang/String;
            putfield sun.jvm.hotspot.HotSpotAgent.os:Ljava/lang/String;
         1: .line 468
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.debugger:Lsun/jvm/hotspot/debugger/JVMDebugger;
            invokeinterface sun.jvm.hotspot.debugger.JVMDebugger.getCPU:()Ljava/lang/String;
            putfield sun.jvm.hotspot.HotSpotAgent.cpu:Ljava/lang/String;
         2: .line 469
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.os:Ljava/lang/String;
            invokevirtual sun.jvm.hotspot.HotSpotAgent.setupJVMLibNames:(Ljava/lang/String;)V
         3: .line 470
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.debugger:Lsun/jvm/hotspot/debugger/JVMDebugger;
            invokeinterface sun.jvm.hotspot.debugger.JVMDebugger.getMachineDescription:()Lsun/jvm/hotspot/debugger/MachineDescription;
            putfield sun.jvm.hotspot.HotSpotAgent.machDesc:Lsun/jvm/hotspot/debugger/MachineDescription;
         4: .line 471
            return
        end local 0 // sun.jvm.hotspot.HotSpotAgent this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lsun/jvm/hotspot/HotSpotAgent;

  private void setupDebuggerAlternate(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // sun.jvm.hotspot.HotSpotAgent this
        start local 1 // java.lang.String alternateName
         0: .line 477
            aload 1 /* alternateName */
            invokestatic java.lang.Class.forName:(Ljava/lang/String;)Ljava/lang/Class;
            astore 2 /* c */
        start local 2 // java.lang.Class c
         1: .line 478
            aload 2 /* c */
            iconst_0
            anewarray java.lang.Class
            invokevirtual java.lang.Class.getConstructor:([Ljava/lang/Class;)Ljava/lang/reflect/Constructor;
            astore 3 /* cons */
        start local 3 // java.lang.reflect.Constructor cons
         2: .line 479
            aload 0 /* this */
            aload 3 /* cons */
            iconst_0
            anewarray java.lang.Object
            invokevirtual java.lang.reflect.Constructor.newInstance:([Ljava/lang/Object;)Ljava/lang/Object;
            checkcast sun.jvm.hotspot.debugger.JVMDebugger
            putfield sun.jvm.hotspot.HotSpotAgent.debugger:Lsun/jvm/hotspot/debugger/JVMDebugger;
         3: .line 480
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.HotSpotAgent.attachDebugger:()V
         4: .line 481
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.HotSpotAgent.setupDebuggerExisting:()V
        end local 3 // java.lang.reflect.Constructor cons
        end local 2 // java.lang.Class c
         5: .line 483
            goto 16
      StackMap locals:
      StackMap stack: java.lang.ClassNotFoundException
         6: pop
         7: .line 484
            new sun.jvm.hotspot.debugger.DebuggerException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Cannot find alternate SA Debugger: '"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* alternateName */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc "'"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial sun.jvm.hotspot.debugger.DebuggerException.<init>:(Ljava/lang/String;)V
            athrow
         8: .line 485
      StackMap locals:
      StackMap stack: java.lang.NoSuchMethodException
            pop
         9: .line 486
            new sun.jvm.hotspot.debugger.DebuggerException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Alternate SA Debugger: '"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* alternateName */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc "' has missing constructor."
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial sun.jvm.hotspot.debugger.DebuggerException.<init>:(Ljava/lang/String;)V
            athrow
        10: .line 487
      StackMap locals:
      StackMap stack: java.lang.InstantiationException
            astore 2 /* ie */
        start local 2 // java.lang.InstantiationException ie
        11: .line 488
            new sun.jvm.hotspot.debugger.DebuggerException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Alternate SA Debugger: '"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* alternateName */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc "' fails to initialise: "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            aload 2 /* ie */
            invokespecial sun.jvm.hotspot.debugger.DebuggerException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 2 // java.lang.InstantiationException ie
        12: .line 489
      StackMap locals:
      StackMap stack: java.lang.IllegalAccessException
            astore 2 /* iae */
        start local 2 // java.lang.IllegalAccessException iae
        13: .line 490
            new sun.jvm.hotspot.debugger.DebuggerException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Alternate SA Debugger: '"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* alternateName */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc "' fails to initialise: "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            aload 2 /* iae */
            invokespecial sun.jvm.hotspot.debugger.DebuggerException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 2 // java.lang.IllegalAccessException iae
        14: .line 491
      StackMap locals:
      StackMap stack: java.lang.reflect.InvocationTargetException
            astore 2 /* iae */
        start local 2 // java.lang.reflect.InvocationTargetException iae
        15: .line 492
            new sun.jvm.hotspot.debugger.DebuggerException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Alternate SA Debugger: '"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* alternateName */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc "' fails to initialise: "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            aload 2 /* iae */
            invokespecial sun.jvm.hotspot.debugger.DebuggerException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 2 // java.lang.reflect.InvocationTargetException iae
        16: .line 495
      StackMap locals:
      StackMap stack:
            getstatic java.lang.System.err:Ljava/io/PrintStream;
            new java.lang.StringBuilder
            dup
            ldc "Loaded alternate HotSpot SA Debugger: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* alternateName */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
        17: .line 496
            return
        end local 1 // java.lang.String alternateName
        end local 0 // sun.jvm.hotspot.HotSpotAgent this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   18     0           this  Lsun/jvm/hotspot/HotSpotAgent;
            0   18     1  alternateName  Ljava/lang/String;
            1    5     2              c  Ljava/lang/Class<*>;
            2    5     3           cons  Ljava/lang/reflect/Constructor;
           11   12     2             ie  Ljava/lang/InstantiationException;
           13   14     2            iae  Ljava/lang/IllegalAccessException;
           15   16     2            iae  Ljava/lang/reflect/InvocationTargetException;
      Exception table:
        from    to  target  type
           0     5       6  Class java.lang.ClassNotFoundException
           0     5       8  Class java.lang.NoSuchMethodException
           0     5      10  Class java.lang.InstantiationException
           0     5      12  Class java.lang.IllegalAccessException
           0     5      14  Class java.lang.reflect.InvocationTargetException
    MethodParameters:
               Name  Flags
      alternateName  

  private void connectRemoteDebugger();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // sun.jvm.hotspot.HotSpotAgent this
         0: .line 500
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.debugServerID:Ljava/lang/String;
            invokestatic sun.jvm.hotspot.RMIHelper.lookup:(Ljava/lang/String;)Ljava/rmi/Remote;
            checkcast sun.jvm.hotspot.debugger.remote.RemoteDebugger
         1: .line 499
            astore 1 /* remote */
        start local 1 // sun.jvm.hotspot.debugger.remote.RemoteDebugger remote
         2: .line 501
            aload 0 /* this */
            new sun.jvm.hotspot.debugger.remote.RemoteDebuggerClient
            dup
            aload 1 /* remote */
            invokespecial sun.jvm.hotspot.debugger.remote.RemoteDebuggerClient.<init>:(Lsun/jvm/hotspot/debugger/remote/RemoteDebugger;)V
            putfield sun.jvm.hotspot.HotSpotAgent.debugger:Lsun/jvm/hotspot/debugger/JVMDebugger;
         3: .line 502
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.debugger:Lsun/jvm/hotspot/debugger/JVMDebugger;
            checkcast sun.jvm.hotspot.debugger.remote.RemoteDebuggerClient
            invokevirtual sun.jvm.hotspot.debugger.remote.RemoteDebuggerClient.getMachineDescription:()Lsun/jvm/hotspot/debugger/MachineDescription;
            putfield sun.jvm.hotspot.HotSpotAgent.machDesc:Lsun/jvm/hotspot/debugger/MachineDescription;
         4: .line 503
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.debugger:Lsun/jvm/hotspot/debugger/JVMDebugger;
            invokeinterface sun.jvm.hotspot.debugger.JVMDebugger.getOS:()Ljava/lang/String;
            putfield sun.jvm.hotspot.HotSpotAgent.os:Ljava/lang/String;
         5: .line 504
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.os:Ljava/lang/String;
            invokevirtual sun.jvm.hotspot.HotSpotAgent.setupJVMLibNames:(Ljava/lang/String;)V
         6: .line 505
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.debugger:Lsun/jvm/hotspot/debugger/JVMDebugger;
            invokeinterface sun.jvm.hotspot.debugger.JVMDebugger.getCPU:()Ljava/lang/String;
            putfield sun.jvm.hotspot.HotSpotAgent.cpu:Ljava/lang/String;
         7: .line 506
            return
        end local 1 // sun.jvm.hotspot.debugger.remote.RemoteDebugger remote
        end local 0 // sun.jvm.hotspot.HotSpotAgent this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Lsun/jvm/hotspot/HotSpotAgent;
            2    8     1  remote  Lsun/jvm/hotspot/debugger/remote/RemoteDebugger;
    Exceptions:
      throws sun.jvm.hotspot.debugger.DebuggerException

  private void setupJVMLibNames(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // sun.jvm.hotspot.HotSpotAgent this
        start local 1 // java.lang.String os
         0: .line 509
            aload 1 /* os */
            ldc "win32"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 3
         1: .line 510
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.HotSpotAgent.setupJVMLibNamesWin32:()V
         2: .line 511
            goto 13
      StackMap locals:
      StackMap stack:
         3: aload 1 /* os */
            ldc "linux"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 6
         4: .line 512
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.HotSpotAgent.setupJVMLibNamesLinux:()V
         5: .line 513
            goto 13
      StackMap locals:
      StackMap stack:
         6: aload 1 /* os */
            ldc "bsd"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 9
         7: .line 514
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.HotSpotAgent.setupJVMLibNamesBsd:()V
         8: .line 515
            goto 13
      StackMap locals:
      StackMap stack:
         9: aload 1 /* os */
            ldc "darwin"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 12
        10: .line 516
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.HotSpotAgent.setupJVMLibNamesDarwin:()V
        11: .line 517
            goto 13
        12: .line 518
      StackMap locals:
      StackMap stack:
            new java.lang.RuntimeException
            dup
            ldc "Unknown OS type"
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/String;)V
            athrow
        13: .line 520
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.String os
        end local 0 // sun.jvm.hotspot.HotSpotAgent this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   14     0  this  Lsun/jvm/hotspot/HotSpotAgent;
            0   14     1    os  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      os    

  private void setupDebuggerWin32();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // sun.jvm.hotspot.HotSpotAgent this
         0: .line 527
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.HotSpotAgent.setupJVMLibNamesWin32:()V
         1: .line 529
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.cpu:Ljava/lang/String;
            ldc "x86"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 4
         2: .line 530
            aload 0 /* this */
            new sun.jvm.hotspot.debugger.MachineDescriptionIntelX86
            dup
            invokespecial sun.jvm.hotspot.debugger.MachineDescriptionIntelX86.<init>:()V
            putfield sun.jvm.hotspot.HotSpotAgent.machDesc:Lsun/jvm/hotspot/debugger/MachineDescription;
         3: .line 531
            goto 8
      StackMap locals:
      StackMap stack:
         4: aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.cpu:Ljava/lang/String;
            ldc "amd64"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 7
         5: .line 532
            aload 0 /* this */
            new sun.jvm.hotspot.debugger.MachineDescriptionAMD64
            dup
            invokespecial sun.jvm.hotspot.debugger.MachineDescriptionAMD64.<init>:()V
            putfield sun.jvm.hotspot.HotSpotAgent.machDesc:Lsun/jvm/hotspot/debugger/MachineDescription;
         6: .line 533
            goto 8
         7: .line 534
      StackMap locals:
      StackMap stack:
            new sun.jvm.hotspot.debugger.DebuggerException
            dup
            ldc "Win32 supported under x86 and amd64 only"
            invokespecial sun.jvm.hotspot.debugger.DebuggerException.<init>:(Ljava/lang/String;)V
            athrow
         8: .line 541
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
         9: new sun.jvm.hotspot.debugger.windbg.WindbgDebuggerLocal
            dup
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.machDesc:Lsun/jvm/hotspot/debugger/MachineDescription;
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.isServer:Z
            ifeq 10
            iconst_0
            goto 11
      StackMap locals: sun.jvm.hotspot.HotSpotAgent
      StackMap stack: sun.jvm.hotspot.HotSpotAgent new 9 new 9 sun.jvm.hotspot.debugger.MachineDescription
        10: iconst_1
      StackMap locals: sun.jvm.hotspot.HotSpotAgent
      StackMap stack: sun.jvm.hotspot.HotSpotAgent new 9 new 9 sun.jvm.hotspot.debugger.MachineDescription int
        11: invokespecial sun.jvm.hotspot.debugger.windbg.WindbgDebuggerLocal.<init>:(Lsun/jvm/hotspot/debugger/MachineDescription;Z)V
            putfield sun.jvm.hotspot.HotSpotAgent.debugger:Lsun/jvm/hotspot/debugger/JVMDebugger;
        12: .line 543
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.HotSpotAgent.attachDebugger:()V
        13: .line 546
            return
        end local 0 // sun.jvm.hotspot.HotSpotAgent this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   14     0  this  Lsun/jvm/hotspot/HotSpotAgent;

  private void setupJVMLibNamesWin32();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // sun.jvm.hotspot.HotSpotAgent this
         0: .line 549
            aload 0 /* this */
            iconst_1
            anewarray java.lang.String
            dup
            iconst_0
            ldc "jvm.dll"
            aastore
            putfield sun.jvm.hotspot.HotSpotAgent.jvmLibNames:[Ljava/lang/String;
         1: .line 550
            return
        end local 0 // sun.jvm.hotspot.HotSpotAgent this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/jvm/hotspot/HotSpotAgent;

  private void setupDebuggerLinux();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // sun.jvm.hotspot.HotSpotAgent this
         0: .line 557
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.HotSpotAgent.setupJVMLibNamesLinux:()V
         1: .line 559
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.cpu:Ljava/lang/String;
            ldc "x86"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 4
         2: .line 560
            aload 0 /* this */
            new sun.jvm.hotspot.debugger.MachineDescriptionIntelX86
            dup
            invokespecial sun.jvm.hotspot.debugger.MachineDescriptionIntelX86.<init>:()V
            putfield sun.jvm.hotspot.HotSpotAgent.machDesc:Lsun/jvm/hotspot/debugger/MachineDescription;
         3: .line 561
            goto 22
      StackMap locals:
      StackMap stack:
         4: aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.cpu:Ljava/lang/String;
            ldc "amd64"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 7
         5: .line 562
            aload 0 /* this */
            new sun.jvm.hotspot.debugger.MachineDescriptionAMD64
            dup
            invokespecial sun.jvm.hotspot.debugger.MachineDescriptionAMD64.<init>:()V
            putfield sun.jvm.hotspot.HotSpotAgent.machDesc:Lsun/jvm/hotspot/debugger/MachineDescription;
         6: .line 563
            goto 22
      StackMap locals:
      StackMap stack:
         7: aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.cpu:Ljava/lang/String;
            ldc "ppc64"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 10
         8: .line 564
            aload 0 /* this */
            new sun.jvm.hotspot.debugger.MachineDescriptionPPC64
            dup
            invokespecial sun.jvm.hotspot.debugger.MachineDescriptionPPC64.<init>:()V
            putfield sun.jvm.hotspot.HotSpotAgent.machDesc:Lsun/jvm/hotspot/debugger/MachineDescription;
         9: .line 565
            goto 22
      StackMap locals:
      StackMap stack:
        10: aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.cpu:Ljava/lang/String;
            ldc "aarch64"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 13
        11: .line 566
            aload 0 /* this */
            new sun.jvm.hotspot.debugger.MachineDescriptionAArch64
            dup
            invokespecial sun.jvm.hotspot.debugger.MachineDescriptionAArch64.<init>:()V
            putfield sun.jvm.hotspot.HotSpotAgent.machDesc:Lsun/jvm/hotspot/debugger/MachineDescription;
        12: .line 567
            goto 22
        13: .line 569
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
        14: .line 570
            new java.lang.StringBuilder
            dup
            ldc "sun.jvm.hotspot.debugger.MachineDescription"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
        15: .line 571
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.cpu:Ljava/lang/String;
            invokevirtual java.lang.String.toUpperCase:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
        16: .line 570
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokestatic java.lang.Class.forName:(Ljava/lang/String;)Ljava/lang/Class;
            iconst_0
            anewarray java.lang.Class
        17: .line 571
            invokevirtual java.lang.Class.getDeclaredConstructor:([Ljava/lang/Class;)Ljava/lang/reflect/Constructor;
            iconst_0
            anewarray java.lang.Object
            invokevirtual java.lang.reflect.Constructor.newInstance:([Ljava/lang/Object;)Ljava/lang/Object;
            checkcast sun.jvm.hotspot.debugger.MachineDescription
        18: .line 569
            putfield sun.jvm.hotspot.HotSpotAgent.machDesc:Lsun/jvm/hotspot/debugger/MachineDescription;
        19: .line 572
            goto 22
      StackMap locals:
      StackMap stack: java.lang.Exception
        20: pop
        21: .line 573
            new sun.jvm.hotspot.debugger.DebuggerException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Linux not supported on machine type "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.cpu:Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial sun.jvm.hotspot.debugger.DebuggerException.<init>:(Ljava/lang/String;)V
            athrow
        22: .line 578
      StackMap locals:
      StackMap stack:
            new sun.jvm.hotspot.debugger.linux.LinuxDebuggerLocal
            dup
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.machDesc:Lsun/jvm/hotspot/debugger/MachineDescription;
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.isServer:Z
            ifeq 23
            iconst_0
            goto 24
      StackMap locals: sun.jvm.hotspot.HotSpotAgent
      StackMap stack: new 22 new 22 sun.jvm.hotspot.debugger.MachineDescription
        23: iconst_1
      StackMap locals: sun.jvm.hotspot.HotSpotAgent
      StackMap stack: new 22 new 22 sun.jvm.hotspot.debugger.MachineDescription int
        24: invokespecial sun.jvm.hotspot.debugger.linux.LinuxDebuggerLocal.<init>:(Lsun/jvm/hotspot/debugger/MachineDescription;Z)V
        25: .line 577
            astore 1 /* dbg */
        start local 1 // sun.jvm.hotspot.debugger.linux.LinuxDebuggerLocal dbg
        26: .line 579
            aload 0 /* this */
            aload 1 /* dbg */
            putfield sun.jvm.hotspot.HotSpotAgent.debugger:Lsun/jvm/hotspot/debugger/JVMDebugger;
        27: .line 581
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.HotSpotAgent.attachDebugger:()V
        28: .line 582
            return
        end local 1 // sun.jvm.hotspot.debugger.linux.LinuxDebuggerLocal dbg
        end local 0 // sun.jvm.hotspot.HotSpotAgent this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   29     0  this  Lsun/jvm/hotspot/HotSpotAgent;
           26   29     1   dbg  Lsun/jvm/hotspot/debugger/linux/LinuxDebuggerLocal;
      Exception table:
        from    to  target  type
          13    19      20  Class java.lang.Exception

  private void setupJVMLibNamesLinux();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // sun.jvm.hotspot.HotSpotAgent this
         0: .line 585
            aload 0 /* this */
            iconst_1
            anewarray java.lang.String
            dup
            iconst_0
            ldc "libjvm.so"
            aastore
            putfield sun.jvm.hotspot.HotSpotAgent.jvmLibNames:[Ljava/lang/String;
         1: .line 586
            return
        end local 0 // sun.jvm.hotspot.HotSpotAgent this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/jvm/hotspot/HotSpotAgent;

  private void setupDebuggerBsd();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // sun.jvm.hotspot.HotSpotAgent this
         0: .line 593
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.HotSpotAgent.setupJVMLibNamesBsd:()V
         1: .line 595
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.cpu:Ljava/lang/String;
            ldc "x86"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 4
         2: .line 596
            aload 0 /* this */
            new sun.jvm.hotspot.debugger.MachineDescriptionIntelX86
            dup
            invokespecial sun.jvm.hotspot.debugger.MachineDescriptionIntelX86.<init>:()V
            putfield sun.jvm.hotspot.HotSpotAgent.machDesc:Lsun/jvm/hotspot/debugger/MachineDescription;
         3: .line 597
            goto 8
      StackMap locals:
      StackMap stack:
         4: aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.cpu:Ljava/lang/String;
            ldc "amd64"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifne 5
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.cpu:Ljava/lang/String;
            ldc "x86_64"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 7
         5: .line 598
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            new sun.jvm.hotspot.debugger.MachineDescriptionAMD64
            dup
            invokespecial sun.jvm.hotspot.debugger.MachineDescriptionAMD64.<init>:()V
            putfield sun.jvm.hotspot.HotSpotAgent.machDesc:Lsun/jvm/hotspot/debugger/MachineDescription;
         6: .line 599
            goto 8
         7: .line 600
      StackMap locals:
      StackMap stack:
            new sun.jvm.hotspot.debugger.DebuggerException
            dup
            new java.lang.StringBuilder
            dup
            ldc "BSD only supported on x86/x86_64. Current arch: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.cpu:Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial sun.jvm.hotspot.debugger.DebuggerException.<init>:(Ljava/lang/String;)V
            athrow
         8: .line 603
      StackMap locals:
      StackMap stack:
            new sun.jvm.hotspot.debugger.bsd.BsdDebuggerLocal
            dup
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.machDesc:Lsun/jvm/hotspot/debugger/MachineDescription;
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.isServer:Z
            ifeq 9
            iconst_0
            goto 10
      StackMap locals: sun.jvm.hotspot.HotSpotAgent
      StackMap stack: new 8 new 8 sun.jvm.hotspot.debugger.MachineDescription
         9: iconst_1
      StackMap locals: sun.jvm.hotspot.HotSpotAgent
      StackMap stack: new 8 new 8 sun.jvm.hotspot.debugger.MachineDescription int
        10: invokespecial sun.jvm.hotspot.debugger.bsd.BsdDebuggerLocal.<init>:(Lsun/jvm/hotspot/debugger/MachineDescription;Z)V
            astore 1 /* dbg */
        start local 1 // sun.jvm.hotspot.debugger.bsd.BsdDebuggerLocal dbg
        11: .line 604
            aload 0 /* this */
            aload 1 /* dbg */
            putfield sun.jvm.hotspot.HotSpotAgent.debugger:Lsun/jvm/hotspot/debugger/JVMDebugger;
        12: .line 606
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.HotSpotAgent.attachDebugger:()V
        13: .line 607
            return
        end local 1 // sun.jvm.hotspot.debugger.bsd.BsdDebuggerLocal dbg
        end local 0 // sun.jvm.hotspot.HotSpotAgent this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   14     0  this  Lsun/jvm/hotspot/HotSpotAgent;
           11   14     1   dbg  Lsun/jvm/hotspot/debugger/bsd/BsdDebuggerLocal;

  private void setupJVMLibNamesBsd();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // sun.jvm.hotspot.HotSpotAgent this
         0: .line 610
            aload 0 /* this */
            iconst_1
            anewarray java.lang.String
            dup
            iconst_0
            ldc "libjvm.so"
            aastore
            putfield sun.jvm.hotspot.HotSpotAgent.jvmLibNames:[Ljava/lang/String;
         1: .line 611
            return
        end local 0 // sun.jvm.hotspot.HotSpotAgent this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/jvm/hotspot/HotSpotAgent;

  private void setupDebuggerDarwin();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // sun.jvm.hotspot.HotSpotAgent this
         0: .line 618
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.HotSpotAgent.setupJVMLibNamesDarwin:()V
         1: .line 620
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.cpu:Ljava/lang/String;
            ldc "amd64"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifne 2
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.cpu:Ljava/lang/String;
            ldc "x86_64"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 4
         2: .line 621
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            new sun.jvm.hotspot.debugger.MachineDescriptionAMD64
            dup
            invokespecial sun.jvm.hotspot.debugger.MachineDescriptionAMD64.<init>:()V
            putfield sun.jvm.hotspot.HotSpotAgent.machDesc:Lsun/jvm/hotspot/debugger/MachineDescription;
         3: .line 622
            goto 5
         4: .line 623
      StackMap locals:
      StackMap stack:
            new sun.jvm.hotspot.debugger.DebuggerException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Darwin only supported on x86_64. Current arch: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.cpu:Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial sun.jvm.hotspot.debugger.DebuggerException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 626
      StackMap locals:
      StackMap stack:
            new sun.jvm.hotspot.debugger.bsd.BsdDebuggerLocal
            dup
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.machDesc:Lsun/jvm/hotspot/debugger/MachineDescription;
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.isServer:Z
            ifeq 6
            iconst_0
            goto 7
      StackMap locals: sun.jvm.hotspot.HotSpotAgent
      StackMap stack: new 5 new 5 sun.jvm.hotspot.debugger.MachineDescription
         6: iconst_1
      StackMap locals: sun.jvm.hotspot.HotSpotAgent
      StackMap stack: new 5 new 5 sun.jvm.hotspot.debugger.MachineDescription int
         7: invokespecial sun.jvm.hotspot.debugger.bsd.BsdDebuggerLocal.<init>:(Lsun/jvm/hotspot/debugger/MachineDescription;Z)V
            astore 1 /* dbg */
        start local 1 // sun.jvm.hotspot.debugger.bsd.BsdDebuggerLocal dbg
         8: .line 627
            aload 0 /* this */
            aload 1 /* dbg */
            putfield sun.jvm.hotspot.HotSpotAgent.debugger:Lsun/jvm/hotspot/debugger/JVMDebugger;
         9: .line 629
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.HotSpotAgent.attachDebugger:()V
        10: .line 630
            return
        end local 1 // sun.jvm.hotspot.debugger.bsd.BsdDebuggerLocal dbg
        end local 0 // sun.jvm.hotspot.HotSpotAgent this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lsun/jvm/hotspot/HotSpotAgent;
            8   11     1   dbg  Lsun/jvm/hotspot/debugger/bsd/BsdDebuggerLocal;

  private void setupJVMLibNamesDarwin();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // sun.jvm.hotspot.HotSpotAgent this
         0: .line 633
            aload 0 /* this */
            iconst_1
            anewarray java.lang.String
            dup
            iconst_0
            ldc "libjvm.dylib"
            aastore
            putfield sun.jvm.hotspot.HotSpotAgent.jvmLibNames:[Ljava/lang/String;
         1: .line 634
            return
        end local 0 // sun.jvm.hotspot.HotSpotAgent this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/jvm/hotspot/HotSpotAgent;

  private void attachDebugger();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // sun.jvm.hotspot.HotSpotAgent this
         0: .line 640
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.startupMode:I
            ifne 3
         1: .line 641
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.debugger:Lsun/jvm/hotspot/debugger/JVMDebugger;
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.pid:I
            invokeinterface sun.jvm.hotspot.debugger.JVMDebugger.attach:(I)V
         2: .line 642
            goto 7
      StackMap locals:
      StackMap stack:
         3: aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.startupMode:I
            iconst_1
            if_icmpne 6
         4: .line 643
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.debugger:Lsun/jvm/hotspot/debugger/JVMDebugger;
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.javaExecutableName:Ljava/lang/String;
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.coreFileName:Ljava/lang/String;
            invokeinterface sun.jvm.hotspot.debugger.JVMDebugger.attach:(Ljava/lang/String;Ljava/lang/String;)V
         5: .line 644
            goto 7
         6: .line 645
      StackMap locals:
      StackMap stack:
            new sun.jvm.hotspot.debugger.DebuggerException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Should not call attach() for startupMode == "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield sun.jvm.hotspot.HotSpotAgent.startupMode:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial sun.jvm.hotspot.debugger.DebuggerException.<init>:(Ljava/lang/String;)V
            athrow
         7: .line 647
      StackMap locals:
      StackMap stack:
            return
        end local 0 // sun.jvm.hotspot.HotSpotAgent this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lsun/jvm/hotspot/HotSpotAgent;
}
SourceFile: "HotSpotAgent.java"
NestMembers:
  sun.jvm.hotspot.HotSpotAgent$1
InnerClasses:
  sun.jvm.hotspot.HotSpotAgent$1