public class sun.jvm.hotspot.CommandProcessor
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: sun.jvm.hotspot.CommandProcessor
  super_class: java.lang.Object
{
  volatile boolean quit;
    descriptor: Z
    flags: (0x0040) ACC_VOLATILE

  private final sun.jvm.hotspot.CommandProcessor$Command[] commandList;
    descriptor: [Lsun/jvm/hotspot/CommandProcessor$Command;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

  private java.util.ArrayList<java.lang.String> history;
    descriptor: Ljava/util/ArrayList;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/ArrayList<Ljava/lang/String;>;

  private java.util.HashMap<java.lang.String, sun.jvm.hotspot.CommandProcessor$Command> commands;
    descriptor: Ljava/util/HashMap;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/HashMap<Ljava/lang/String;Lsun/jvm/hotspot/CommandProcessor$Command;>;

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

  private sun.jvm.hotspot.CommandProcessor$DebuggerInterface debugger;
    descriptor: Lsun/jvm/hotspot/CommandProcessor$DebuggerInterface;
    flags: (0x0002) ACC_PRIVATE

  private sun.jvm.hotspot.HotSpotAgent agent;
    descriptor: Lsun/jvm/hotspot/HotSpotAgent;
    flags: (0x0002) ACC_PRIVATE

  private java.io.BufferedReader in;
    descriptor: Ljava/io/BufferedReader;
    flags: (0x0002) ACC_PRIVATE

  private java.io.PrintStream out;
    descriptor: Ljava/io/PrintStream;
    flags: (0x0002) ACC_PRIVATE

  private java.io.PrintStream err;
    descriptor: Ljava/io/PrintStream;
    flags: (0x0002) ACC_PRIVATE

  static java.util.regex.Pattern historyPattern;
    descriptor: Ljava/util/regex/Pattern;
    flags: (0x0008) ACC_STATIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 1953
            ldc "([\\\\]?)((!\\*)|(!\\$)|(!!-?)|(!-?[0-9][0-9]*)|(![a-zA-Z][^ ]*))"
            invokestatic java.util.regex.Pattern.compile:(Ljava/lang/String;)Ljava/util/regex/Pattern;
            putstatic sun.jvm.hotspot.CommandProcessor.historyPattern:Ljava/util/regex/Pattern;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  void quote(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.jvm.hotspot.CommandProcessor this
        start local 1 // java.lang.String s
         0: .line 287
            aload 1 /* s */
            ldc " "
            invokevirtual java.lang.String.indexOf:(Ljava/lang/String;)I
            iconst_m1
            if_icmpne 3
         1: .line 288
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.out:Ljava/io/PrintStream;
            aload 1 /* s */
            invokevirtual java.io.PrintStream.print:(Ljava/lang/String;)V
         2: .line 289
            goto 6
         3: .line 290
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.out:Ljava/io/PrintStream;
            ldc "\""
            invokevirtual java.io.PrintStream.print:(Ljava/lang/String;)V
         4: .line 291
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.out:Ljava/io/PrintStream;
            aload 1 /* s */
            invokevirtual java.io.PrintStream.print:(Ljava/lang/String;)V
         5: .line 292
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.out:Ljava/io/PrintStream;
            ldc "\""
            invokevirtual java.io.PrintStream.print:(Ljava/lang/String;)V
         6: .line 294
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.String s
        end local 0 // sun.jvm.hotspot.CommandProcessor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lsun/jvm/hotspot/CommandProcessor;
            0    7     1     s  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      s     

  void dumpType(sun.jvm.hotspot.types.Type);
    descriptor: (Lsun/jvm/hotspot/types/Type;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // sun.jvm.hotspot.CommandProcessor this
        start local 1 // sun.jvm.hotspot.types.Type type
         0: .line 297
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.out:Ljava/io/PrintStream;
            ldc "type "
            invokevirtual java.io.PrintStream.print:(Ljava/lang/String;)V
         1: .line 298
            aload 0 /* this */
            aload 1 /* type */
            invokeinterface sun.jvm.hotspot.types.Type.getName:()Ljava/lang/String;
            invokevirtual sun.jvm.hotspot.CommandProcessor.quote:(Ljava/lang/String;)V
         2: .line 299
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.out:Ljava/io/PrintStream;
            ldc " "
            invokevirtual java.io.PrintStream.print:(Ljava/lang/String;)V
         3: .line 300
            aload 1 /* type */
            invokeinterface sun.jvm.hotspot.types.Type.getSuperclass:()Lsun/jvm/hotspot/types/Type;
            ifnull 7
         4: .line 301
            aload 0 /* this */
            aload 1 /* type */
            invokeinterface sun.jvm.hotspot.types.Type.getSuperclass:()Lsun/jvm/hotspot/types/Type;
            invokeinterface sun.jvm.hotspot.types.Type.getName:()Ljava/lang/String;
            invokevirtual sun.jvm.hotspot.CommandProcessor.quote:(Ljava/lang/String;)V
         5: .line 302
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.out:Ljava/io/PrintStream;
            ldc " "
            invokevirtual java.io.PrintStream.print:(Ljava/lang/String;)V
         6: .line 303
            goto 8
         7: .line 304
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.out:Ljava/io/PrintStream;
            ldc "null "
            invokevirtual java.io.PrintStream.print:(Ljava/lang/String;)V
         8: .line 306
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.out:Ljava/io/PrintStream;
            aload 1 /* type */
            invokeinterface sun.jvm.hotspot.types.Type.isOopType:()Z
            invokevirtual java.io.PrintStream.print:(Z)V
         9: .line 307
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.out:Ljava/io/PrintStream;
            ldc " "
            invokevirtual java.io.PrintStream.print:(Ljava/lang/String;)V
        10: .line 308
            aload 1 /* type */
            invokeinterface sun.jvm.hotspot.types.Type.isCIntegerType:()Z
            ifeq 15
        11: .line 309
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.out:Ljava/io/PrintStream;
            ldc "true "
            invokevirtual java.io.PrintStream.print:(Ljava/lang/String;)V
        12: .line 310
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.out:Ljava/io/PrintStream;
            aload 1 /* type */
            checkcast sun.jvm.hotspot.types.CIntegerType
            invokeinterface sun.jvm.hotspot.types.CIntegerType.isUnsigned:()Z
            invokevirtual java.io.PrintStream.print:(Z)V
        13: .line 311
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.out:Ljava/io/PrintStream;
            ldc " "
            invokevirtual java.io.PrintStream.print:(Ljava/lang/String;)V
        14: .line 312
            goto 16
        15: .line 313
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.out:Ljava/io/PrintStream;
            ldc "false false "
            invokevirtual java.io.PrintStream.print:(Ljava/lang/String;)V
        16: .line 315
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.out:Ljava/io/PrintStream;
            aload 1 /* type */
            invokeinterface sun.jvm.hotspot.types.Type.getSize:()J
            invokevirtual java.io.PrintStream.print:(J)V
        17: .line 316
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.out:Ljava/io/PrintStream;
            invokevirtual java.io.PrintStream.println:()V
        18: .line 317
            return
        end local 1 // sun.jvm.hotspot.types.Type type
        end local 0 // sun.jvm.hotspot.CommandProcessor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   19     0  this  Lsun/jvm/hotspot/CommandProcessor;
            0   19     1  type  Lsun/jvm/hotspot/types/Type;
    MethodParameters:
      Name  Flags
      type  

  void dumpFields(sun.jvm.hotspot.types.Type);
    descriptor: (Lsun/jvm/hotspot/types/Type;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // sun.jvm.hotspot.CommandProcessor this
        start local 1 // sun.jvm.hotspot.types.Type type
         0: .line 320
            aload 0 /* this */
            aload 1 /* type */
            iconst_1
            invokevirtual sun.jvm.hotspot.CommandProcessor.dumpFields:(Lsun/jvm/hotspot/types/Type;Z)V
         1: .line 321
            return
        end local 1 // sun.jvm.hotspot.types.Type type
        end local 0 // sun.jvm.hotspot.CommandProcessor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/jvm/hotspot/CommandProcessor;
            0    2     1  type  Lsun/jvm/hotspot/types/Type;
    MethodParameters:
      Name  Flags
      type  

  void dumpFields(sun.jvm.hotspot.types.Type, boolean);
    descriptor: (Lsun/jvm/hotspot/types/Type;Z)V
    flags: (0x0000) 
    Code:
      stack=3, locals=5, args_size=3
        start local 0 // sun.jvm.hotspot.CommandProcessor this
        start local 1 // sun.jvm.hotspot.types.Type type
        start local 2 // boolean allowStatic
         0: .line 324
            aload 1 /* type */
            invokeinterface sun.jvm.hotspot.types.Type.getFields:()Ljava/util/Iterator;
            astore 3 /* i */
        start local 3 // java.util.Iterator i
         1: .line 325
            goto 20
         2: .line 326
      StackMap locals: java.util.Iterator
      StackMap stack:
            aload 3 /* i */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast sun.jvm.hotspot.types.Field
            astore 4 /* f */
        start local 4 // sun.jvm.hotspot.types.Field f
         3: .line 327
            iload 2 /* allowStatic */
            ifne 4
            aload 4 /* f */
            invokeinterface sun.jvm.hotspot.types.Field.isStatic:()Z
            ifeq 4
            goto 20
         4: .line 328
      StackMap locals: sun.jvm.hotspot.types.Field
      StackMap stack:
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.out:Ljava/io/PrintStream;
            ldc "field "
            invokevirtual java.io.PrintStream.print:(Ljava/lang/String;)V
         5: .line 329
            aload 0 /* this */
            aload 1 /* type */
            invokeinterface sun.jvm.hotspot.types.Type.getName:()Ljava/lang/String;
            invokevirtual sun.jvm.hotspot.CommandProcessor.quote:(Ljava/lang/String;)V
         6: .line 330
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.out:Ljava/io/PrintStream;
            ldc " "
            invokevirtual java.io.PrintStream.print:(Ljava/lang/String;)V
         7: .line 331
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.out:Ljava/io/PrintStream;
            aload 4 /* f */
            invokeinterface sun.jvm.hotspot.types.Field.getName:()Ljava/lang/String;
            invokevirtual java.io.PrintStream.print:(Ljava/lang/String;)V
         8: .line 332
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.out:Ljava/io/PrintStream;
            ldc " "
            invokevirtual java.io.PrintStream.print:(Ljava/lang/String;)V
         9: .line 333
            aload 0 /* this */
            aload 4 /* f */
            invokeinterface sun.jvm.hotspot.types.Field.getType:()Lsun/jvm/hotspot/types/Type;
            invokeinterface sun.jvm.hotspot.types.Type.getName:()Ljava/lang/String;
            invokevirtual sun.jvm.hotspot.CommandProcessor.quote:(Ljava/lang/String;)V
        10: .line 334
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.out:Ljava/io/PrintStream;
            ldc " "
            invokevirtual java.io.PrintStream.print:(Ljava/lang/String;)V
        11: .line 335
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.out:Ljava/io/PrintStream;
            aload 4 /* f */
            invokeinterface sun.jvm.hotspot.types.Field.isStatic:()Z
            invokevirtual java.io.PrintStream.print:(Z)V
        12: .line 336
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.out:Ljava/io/PrintStream;
            ldc " "
            invokevirtual java.io.PrintStream.print:(Ljava/lang/String;)V
        13: .line 337
            aload 4 /* f */
            invokeinterface sun.jvm.hotspot.types.Field.isStatic:()Z
            ifeq 17
        14: .line 338
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.out:Ljava/io/PrintStream;
            ldc "0 "
            invokevirtual java.io.PrintStream.print:(Ljava/lang/String;)V
        15: .line 339
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.out:Ljava/io/PrintStream;
            aload 4 /* f */
            invokeinterface sun.jvm.hotspot.types.Field.getStaticFieldAddress:()Lsun/jvm/hotspot/debugger/Address;
            invokevirtual java.io.PrintStream.print:(Ljava/lang/Object;)V
        16: .line 340
            goto 19
        17: .line 341
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.out:Ljava/io/PrintStream;
            aload 4 /* f */
            invokeinterface sun.jvm.hotspot.types.Field.getOffset:()J
            invokevirtual java.io.PrintStream.print:(J)V
        18: .line 342
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.out:Ljava/io/PrintStream;
            ldc " 0x0"
            invokevirtual java.io.PrintStream.print:(Ljava/lang/String;)V
        19: .line 344
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.out:Ljava/io/PrintStream;
            invokevirtual java.io.PrintStream.println:()V
        end local 4 // sun.jvm.hotspot.types.Field f
        20: .line 325
      StackMap locals:
      StackMap stack:
            aload 3 /* i */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
        21: .line 346
            return
        end local 3 // java.util.Iterator i
        end local 2 // boolean allowStatic
        end local 1 // sun.jvm.hotspot.types.Type type
        end local 0 // sun.jvm.hotspot.CommandProcessor this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   22     0         this  Lsun/jvm/hotspot/CommandProcessor;
            0   22     1         type  Lsun/jvm/hotspot/types/Type;
            0   22     2  allowStatic  Z
            1   22     3            i  Ljava/util/Iterator;
            3   20     4            f  Lsun/jvm/hotspot/types/Field;
    MethodParameters:
             Name  Flags
      type         
      allowStatic  

  sun.jvm.hotspot.debugger.Address lookup(java.lang.String);
    descriptor: (Ljava/lang/String;)Lsun/jvm/hotspot/debugger/Address;
    flags: (0x0000) 
    Code:
      stack=4, locals=6, args_size=2
        start local 0 // sun.jvm.hotspot.CommandProcessor this
        start local 1 // java.lang.String symbol
         0: .line 350
            aload 1 /* symbol */
            ldc "::"
            invokevirtual java.lang.String.indexOf:(Ljava/lang/String;)I
            iconst_m1
            if_icmpeq 15
         1: .line 351
            aload 1 /* symbol */
            ldc "::"
            invokevirtual java.lang.String.split:(Ljava/lang/String;)[Ljava/lang/String;
            astore 2 /* parts */
        start local 2 // java.lang.String[] parts
         2: .line 352
            new java.lang.StringBuffer
            dup
            ldc "__1c"
            invokespecial java.lang.StringBuffer.<init>:(Ljava/lang/String;)V
            astore 3 /* mangled */
        start local 3 // java.lang.StringBuffer mangled
         3: .line 353
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         4: goto 12
         5: .line 354
      StackMap locals: java.lang.String[] java.lang.StringBuffer int
      StackMap stack:
            aload 2 /* parts */
            iload 4 /* i */
            aaload
            invokevirtual java.lang.String.length:()I
            istore 5 /* len */
        start local 5 // int len
         6: .line 355
            iload 5 /* len */
            bipush 26
            if_icmplt 9
         7: .line 356
            aload 3 /* mangled */
            bipush 97
            iload 5 /* len */
            bipush 26
            idiv
            iadd
            i2c
            invokevirtual java.lang.StringBuffer.append:(C)Ljava/lang/StringBuffer;
            pop
         8: .line 357
            iload 5 /* len */
            bipush 26
            irem
            istore 5 /* len */
         9: .line 359
      StackMap locals: int
      StackMap stack:
            aload 3 /* mangled */
            bipush 65
            iload 5 /* len */
            iadd
            i2c
            invokevirtual java.lang.StringBuffer.append:(C)Ljava/lang/StringBuffer;
            pop
        10: .line 360
            aload 3 /* mangled */
            aload 2 /* parts */
            iload 4 /* i */
            aaload
            invokevirtual java.lang.StringBuffer.append:(Ljava/lang/String;)Ljava/lang/StringBuffer;
            pop
        end local 5 // int len
        11: .line 353
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        12: iload 4 /* i */
            aload 2 /* parts */
            arraylength
            if_icmplt 5
        end local 4 // int i
        13: .line 362
            aload 3 /* mangled */
            ldc "_"
            invokevirtual java.lang.StringBuffer.append:(Ljava/lang/String;)Ljava/lang/StringBuffer;
            pop
        14: .line 363
            aload 3 /* mangled */
            invokevirtual java.lang.StringBuffer.toString:()Ljava/lang/String;
            astore 1 /* symbol */
        end local 3 // java.lang.StringBuffer mangled
        end local 2 // java.lang.String[] parts
        15: .line 365
      StackMap locals:
      StackMap stack:
            invokestatic sun.jvm.hotspot.runtime.VM.getVM:()Lsun/jvm/hotspot/runtime/VM;
            invokevirtual sun.jvm.hotspot.runtime.VM.getDebugger:()Lsun/jvm/hotspot/debugger/JVMDebugger;
            aconst_null
            aload 1 /* symbol */
            invokeinterface sun.jvm.hotspot.debugger.JVMDebugger.lookup:(Ljava/lang/String;Ljava/lang/String;)Lsun/jvm/hotspot/debugger/Address;
            areturn
        end local 1 // java.lang.String symbol
        end local 0 // sun.jvm.hotspot.CommandProcessor this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   16     0     this  Lsun/jvm/hotspot/CommandProcessor;
            0   16     1   symbol  Ljava/lang/String;
            2   15     2    parts  [Ljava/lang/String;
            3   15     3  mangled  Ljava/lang/StringBuffer;
            4   13     4        i  I
            6   11     5      len  I
    MethodParameters:
        Name  Flags
      symbol  

  sun.jvm.hotspot.debugger.Address parseAddress(java.lang.String);
    descriptor: (Ljava/lang/String;)Lsun/jvm/hotspot/debugger/Address;
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.jvm.hotspot.CommandProcessor this
        start local 1 // java.lang.String addr
         0: .line 369
            invokestatic sun.jvm.hotspot.runtime.VM.getVM:()Lsun/jvm/hotspot/runtime/VM;
            invokevirtual sun.jvm.hotspot.runtime.VM.getDebugger:()Lsun/jvm/hotspot/debugger/JVMDebugger;
            aload 1 /* addr */
            invokeinterface sun.jvm.hotspot.debugger.JVMDebugger.parseAddress:(Ljava/lang/String;)Lsun/jvm/hotspot/debugger/Address;
            areturn
        end local 1 // java.lang.String addr
        end local 0 // sun.jvm.hotspot.CommandProcessor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/jvm/hotspot/CommandProcessor;
            0    1     1  addr  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      addr  

  private sun.jvm.hotspot.CommandProcessor$Command findCommand(java.lang.String);
    descriptor: (Ljava/lang/String;)Lsun/jvm/hotspot/CommandProcessor$Command;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.jvm.hotspot.CommandProcessor this
        start local 1 // java.lang.String key
         0: .line 1885
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.commands:Ljava/util/HashMap;
            aload 1 /* key */
            invokevirtual java.util.HashMap.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast sun.jvm.hotspot.CommandProcessor$Command
            areturn
        end local 1 // java.lang.String key
        end local 0 // sun.jvm.hotspot.CommandProcessor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/jvm/hotspot/CommandProcessor;
            0    1     1   key  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      key   

  public void printPrompt();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.jvm.hotspot.CommandProcessor this
         0: .line 1889
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.out:Ljava/io/PrintStream;
            ldc "hsdb> "
            invokevirtual java.io.PrintStream.print:(Ljava/lang/String;)V
         1: .line 1890
            return
        end local 0 // sun.jvm.hotspot.CommandProcessor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/jvm/hotspot/CommandProcessor;

  private void preAttach();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // sun.jvm.hotspot.CommandProcessor this
         0: .line 1901
            return
        end local 0 // sun.jvm.hotspot.CommandProcessor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/jvm/hotspot/CommandProcessor;

  private void postAttach();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // sun.jvm.hotspot.CommandProcessor this
         0: .line 1906
            return
        end local 0 // sun.jvm.hotspot.CommandProcessor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/jvm/hotspot/CommandProcessor;

  public void setOutput(java.io.PrintStream);
    descriptor: (Ljava/io/PrintStream;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.jvm.hotspot.CommandProcessor this
        start local 1 // java.io.PrintStream o
         0: .line 1909
            aload 0 /* this */
            aload 1 /* o */
            putfield sun.jvm.hotspot.CommandProcessor.out:Ljava/io/PrintStream;
         1: .line 1910
            return
        end local 1 // java.io.PrintStream o
        end local 0 // sun.jvm.hotspot.CommandProcessor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/jvm/hotspot/CommandProcessor;
            0    2     1     o  Ljava/io/PrintStream;
    MethodParameters:
      Name  Flags
      o     

  public void setErr(java.io.PrintStream);
    descriptor: (Ljava/io/PrintStream;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.jvm.hotspot.CommandProcessor this
        start local 1 // java.io.PrintStream e
         0: .line 1913
            aload 0 /* this */
            aload 1 /* e */
            putfield sun.jvm.hotspot.CommandProcessor.err:Ljava/io/PrintStream;
         1: .line 1914
            return
        end local 1 // java.io.PrintStream e
        end local 0 // sun.jvm.hotspot.CommandProcessor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/jvm/hotspot/CommandProcessor;
            0    2     1     e  Ljava/io/PrintStream;
    MethodParameters:
      Name  Flags
      e     

  public void <init>(sun.jvm.hotspot.CommandProcessor$DebuggerInterface, java.io.BufferedReader, java.io.PrintStream, java.io.PrintStream);
    descriptor: (Lsun/jvm/hotspot/CommandProcessor$DebuggerInterface;Ljava/io/BufferedReader;Ljava/io/PrintStream;Ljava/io/PrintStream;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=11, locals=7, args_size=5
        start local 0 // sun.jvm.hotspot.CommandProcessor this
        start local 1 // sun.jvm.hotspot.CommandProcessor$DebuggerInterface debugger
        start local 2 // java.io.BufferedReader in
        start local 3 // java.io.PrintStream out
        start local 4 // java.io.PrintStream err
         0: .line 1916
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 372
            aload 0 /* this */
            bipush 55
            anewarray sun.jvm.hotspot.CommandProcessor$Command
            dup
            iconst_0
         2: .line 373
            new sun.jvm.hotspot.CommandProcessor$1
            dup
            aload 0 /* this */
            aload 0 /* this */
            ldc "reattach"
            iconst_1
            invokespecial sun.jvm.hotspot.CommandProcessor$1.<init>:(Lsun/jvm/hotspot/CommandProcessor;Lsun/jvm/hotspot/CommandProcessor;Ljava/lang/String;Z)V
            aastore
            dup
            iconst_1
         3: .line 385
            new sun.jvm.hotspot.CommandProcessor$2
            dup
            aload 0 /* this */
            aload 0 /* this */
            ldc "attach"
            ldc "attach pid | exec core"
            iconst_1
            invokespecial sun.jvm.hotspot.CommandProcessor$2.<init>:(Lsun/jvm/hotspot/CommandProcessor;Lsun/jvm/hotspot/CommandProcessor;Ljava/lang/String;Ljava/lang/String;Z)V
            aastore
            dup
            iconst_2
         4: .line 401
            new sun.jvm.hotspot.CommandProcessor$3
            dup
            aload 0 /* this */
            aload 0 /* this */
            ldc "detach"
            iconst_0
            invokespecial sun.jvm.hotspot.CommandProcessor$3.<init>:(Lsun/jvm/hotspot/CommandProcessor;Lsun/jvm/hotspot/CommandProcessor;Ljava/lang/String;Z)V
            aastore
            dup
            iconst_3
         5: .line 410
            new sun.jvm.hotspot.CommandProcessor$4
            dup
            aload 0 /* this */
            aload 0 /* this */
            ldc "examine"
            ldc "examine [ address/count ] | [ address,address]"
            iconst_0
            invokespecial sun.jvm.hotspot.CommandProcessor$4.<init>:(Lsun/jvm/hotspot/CommandProcessor;Lsun/jvm/hotspot/CommandProcessor;Ljava/lang/String;Ljava/lang/String;Z)V
            aastore
            dup
            iconst_4
         6: .line 484
            new sun.jvm.hotspot.CommandProcessor$5
            dup
            aload 0 /* this */
            aload 0 /* this */
            ldc "dumpreplaydata"
            ldc "dumpreplaydata { <address > | -a | <thread_id> }"
            iconst_0
            invokespecial sun.jvm.hotspot.CommandProcessor$5.<init>:(Lsun/jvm/hotspot/CommandProcessor;Lsun/jvm/hotspot/CommandProcessor;Ljava/lang/String;Ljava/lang/String;Z)V
            aastore
            dup
            iconst_5
         7: .line 535
            new sun.jvm.hotspot.CommandProcessor$6
            dup
            aload 0 /* this */
            aload 0 /* this */
            ldc "buildreplayjars"
            ldc "buildreplayjars [ all | app | boot ]  | [ prefix ]"
            iconst_0
            invokespecial sun.jvm.hotspot.CommandProcessor$6.<init>:(Lsun/jvm/hotspot/CommandProcessor;Lsun/jvm/hotspot/CommandProcessor;Ljava/lang/String;Ljava/lang/String;Z)V
            aastore
            dup
            bipush 6
         8: .line 589
            new sun.jvm.hotspot.CommandProcessor$7
            dup
            aload 0 /* this */
            aload 0 /* this */
            ldc "findsym"
            ldc "findsym name"
            iconst_0
            invokespecial sun.jvm.hotspot.CommandProcessor$7.<init>:(Lsun/jvm/hotspot/CommandProcessor;Lsun/jvm/hotspot/CommandProcessor;Ljava/lang/String;Ljava/lang/String;Z)V
            aastore
            dup
            bipush 7
         9: .line 623
            new sun.jvm.hotspot.CommandProcessor$8
            dup
            aload 0 /* this */
            aload 0 /* this */
            ldc "findpc"
            ldc "findpc address"
            iconst_0
            invokespecial sun.jvm.hotspot.CommandProcessor$8.<init>:(Lsun/jvm/hotspot/CommandProcessor;Lsun/jvm/hotspot/CommandProcessor;Ljava/lang/String;Ljava/lang/String;Z)V
            aastore
            dup
            bipush 8
        10: .line 634
            new sun.jvm.hotspot.CommandProcessor$9
            dup
            aload 0 /* this */
            aload 0 /* this */
            ldc "symbol"
            ldc "symbol address"
            iconst_0
            invokespecial sun.jvm.hotspot.CommandProcessor$9.<init>:(Lsun/jvm/hotspot/CommandProcessor;Lsun/jvm/hotspot/CommandProcessor;Ljava/lang/String;Ljava/lang/String;Z)V
            aastore
            dup
            bipush 9
        11: .line 645
            new sun.jvm.hotspot.CommandProcessor$10
            dup
            aload 0 /* this */
            aload 0 /* this */
            ldc "flags"
            ldc "flags [ flag | -nd ]"
            iconst_0
            invokespecial sun.jvm.hotspot.CommandProcessor$10.<init>:(Lsun/jvm/hotspot/CommandProcessor;Lsun/jvm/hotspot/CommandProcessor;Ljava/lang/String;Ljava/lang/String;Z)V
            aastore
            dup
            bipush 10
        12: .line 682
            new sun.jvm.hotspot.CommandProcessor$11
            dup
            aload 0 /* this */
            aload 0 /* this */
            ldc "help"
            ldc "help [ command ]"
            iconst_1
            invokespecial sun.jvm.hotspot.CommandProcessor$11.<init>:(Lsun/jvm/hotspot/CommandProcessor;Lsun/jvm/hotspot/CommandProcessor;Ljava/lang/String;Ljava/lang/String;Z)V
            aastore
            dup
            bipush 11
        13: .line 707
            new sun.jvm.hotspot.CommandProcessor$12
            dup
            aload 0 /* this */
            aload 0 /* this */
            ldc "history"
            ldc "history"
            iconst_1
            invokespecial sun.jvm.hotspot.CommandProcessor$12.<init>:(Lsun/jvm/hotspot/CommandProcessor;Lsun/jvm/hotspot/CommandProcessor;Ljava/lang/String;Ljava/lang/String;Z)V
            aastore
            dup
            bipush 12
        14: .line 722
            new sun.jvm.hotspot.CommandProcessor$13
            dup
            aload 0 /* this */
            aload 0 /* this */
            ldc "dis"
            ldc "dis address [length]"
            iconst_0
            invokespecial sun.jvm.hotspot.CommandProcessor$13.<init>:(Lsun/jvm/hotspot/CommandProcessor;Lsun/jvm/hotspot/CommandProcessor;Ljava/lang/String;Ljava/lang/String;Z)V
            aastore
            dup
            bipush 13
        15: .line 752
            new sun.jvm.hotspot.CommandProcessor$14
            dup
            aload 0 /* this */
            aload 0 /* this */
            ldc "disassemble"
            ldc "disassemble address"
            iconst_0
            invokespecial sun.jvm.hotspot.CommandProcessor$14.<init>:(Lsun/jvm/hotspot/CommandProcessor;Lsun/jvm/hotspot/CommandProcessor;Ljava/lang/String;Ljava/lang/String;Z)V
            aastore
            dup
            bipush 14
        16: .line 773
            new sun.jvm.hotspot.CommandProcessor$15
            dup
            aload 0 /* this */
            aload 0 /* this */
            ldc "jdis"
            ldc "jdis address"
            iconst_0
            invokespecial sun.jvm.hotspot.CommandProcessor$15.<init>:(Lsun/jvm/hotspot/CommandProcessor;Lsun/jvm/hotspot/CommandProcessor;Ljava/lang/String;Ljava/lang/String;Z)V
            aastore
            dup
            bipush 15
        17: .line 786
            new sun.jvm.hotspot.CommandProcessor$16
            dup
            aload 0 /* this */
            aload 0 /* this */
            ldc "revptrs"
            ldc "revptrs address"
            iconst_0
            invokespecial sun.jvm.hotspot.CommandProcessor$16.<init>:(Lsun/jvm/hotspot/CommandProcessor;Lsun/jvm/hotspot/CommandProcessor;Ljava/lang/String;Ljava/lang/String;Z)V
            aastore
            dup
            bipush 16
        18: .line 848
            new sun.jvm.hotspot.CommandProcessor$17
            dup
            aload 0 /* this */
            aload 0 /* this */
            ldc "printmdo"
            ldc "printmdo [ -a | expression ]"
            iconst_0
            invokespecial sun.jvm.hotspot.CommandProcessor$17.<init>:(Lsun/jvm/hotspot/CommandProcessor;Lsun/jvm/hotspot/CommandProcessor;Ljava/lang/String;Ljava/lang/String;Z)V
            aastore
            dup
            bipush 17
        19: .line 884
            new sun.jvm.hotspot.CommandProcessor$18
            dup
            aload 0 /* this */
            aload 0 /* this */
            ldc "printall"
            ldc "printall"
            iconst_0
            invokespecial sun.jvm.hotspot.CommandProcessor$18.<init>:(Lsun/jvm/hotspot/CommandProcessor;Lsun/jvm/hotspot/CommandProcessor;Ljava/lang/String;Ljava/lang/String;Z)V
            aastore
            dup
            bipush 18
        20: .line 907
            new sun.jvm.hotspot.CommandProcessor$19
            dup
            aload 0 /* this */
            aload 0 /* this */
            ldc "dumpideal"
            ldc "dumpideal { -a | id }"
            iconst_0
            invokespecial sun.jvm.hotspot.CommandProcessor$19.<init>:(Lsun/jvm/hotspot/CommandProcessor;Lsun/jvm/hotspot/CommandProcessor;Ljava/lang/String;Ljava/lang/String;Z)V
            aastore
            dup
            bipush 19
        21: .line 937
            new sun.jvm.hotspot.CommandProcessor$20
            dup
            aload 0 /* this */
            aload 0 /* this */
            ldc "dumpcfg"
            ldc "dumpcfg { -a | id }"
            iconst_0
            invokespecial sun.jvm.hotspot.CommandProcessor$20.<init>:(Lsun/jvm/hotspot/CommandProcessor;Lsun/jvm/hotspot/CommandProcessor;Ljava/lang/String;Ljava/lang/String;Z)V
            aastore
            dup
            bipush 20
        22: .line 965
            new sun.jvm.hotspot.CommandProcessor$21
            dup
            aload 0 /* this */
            aload 0 /* this */
            ldc "dumpilt"
            ldc "dumpilt { -a | id }"
            iconst_0
            invokespecial sun.jvm.hotspot.CommandProcessor$21.<init>:(Lsun/jvm/hotspot/CommandProcessor;Lsun/jvm/hotspot/CommandProcessor;Ljava/lang/String;Ljava/lang/String;Z)V
            aastore
            dup
            bipush 21
        23: .line 995
            new sun.jvm.hotspot.CommandProcessor$22
            dup
            aload 0 /* this */
            aload 0 /* this */
            ldc "vmstructsdump"
            ldc "vmstructsdump"
            iconst_0
            invokespecial sun.jvm.hotspot.CommandProcessor$22.<init>:(Lsun/jvm/hotspot/CommandProcessor;Lsun/jvm/hotspot/CommandProcessor;Ljava/lang/String;Ljava/lang/String;Z)V
            aastore
            dup
            bipush 22
        24: .line 1031
            new sun.jvm.hotspot.CommandProcessor$23
            dup
            aload 0 /* this */
            aload 0 /* this */
            ldc "inspect"
            ldc "inspect expression"
            iconst_0
            invokespecial sun.jvm.hotspot.CommandProcessor$23.<init>:(Lsun/jvm/hotspot/CommandProcessor;Lsun/jvm/hotspot/CommandProcessor;Ljava/lang/String;Ljava/lang/String;Z)V
            aastore
            dup
            bipush 23
        25: .line 1071
            new sun.jvm.hotspot.CommandProcessor$24
            dup
            aload 0 /* this */
            aload 0 /* this */
            ldc "jhisto"
            ldc "jhisto"
            iconst_0
            invokespecial sun.jvm.hotspot.CommandProcessor$24.<init>:(Lsun/jvm/hotspot/CommandProcessor;Lsun/jvm/hotspot/CommandProcessor;Ljava/lang/String;Ljava/lang/String;Z)V
            aastore
            dup
            bipush 24
        26: .line 1077
            new sun.jvm.hotspot.CommandProcessor$25
            dup
            aload 0 /* this */
            aload 0 /* this */
            ldc "jstack"
            ldc "jstack [-v]"
            iconst_0
            invokespecial sun.jvm.hotspot.CommandProcessor$25.<init>:(Lsun/jvm/hotspot/CommandProcessor;Lsun/jvm/hotspot/CommandProcessor;Ljava/lang/String;Ljava/lang/String;Z)V
            aastore
            dup
            bipush 25
        27: .line 1087
            new sun.jvm.hotspot.CommandProcessor$26
            dup
            aload 0 /* this */
            aload 0 /* this */
            ldc "print"
            ldc "print expression"
            iconst_0
            invokespecial sun.jvm.hotspot.CommandProcessor$26.<init>:(Lsun/jvm/hotspot/CommandProcessor;Lsun/jvm/hotspot/CommandProcessor;Ljava/lang/String;Ljava/lang/String;Z)V
            aastore
            dup
            bipush 26
        28: .line 1098
            new sun.jvm.hotspot.CommandProcessor$27
            dup
            aload 0 /* this */
            aload 0 /* this */
            ldc "printas"
            ldc "printas type expression"
            iconst_0
            invokespecial sun.jvm.hotspot.CommandProcessor$27.<init>:(Lsun/jvm/hotspot/CommandProcessor;Lsun/jvm/hotspot/CommandProcessor;Ljava/lang/String;Ljava/lang/String;Z)V
            aastore
            dup
            bipush 27
        29: .line 1113
            new sun.jvm.hotspot.CommandProcessor$28
            dup
            aload 0 /* this */
            aload 0 /* this */
            ldc "printstatics"
            ldc "printstatics [ type ]"
            iconst_0
            invokespecial sun.jvm.hotspot.CommandProcessor$28.<init>:(Lsun/jvm/hotspot/CommandProcessor;Lsun/jvm/hotspot/CommandProcessor;Ljava/lang/String;Ljava/lang/String;Z)V
            aastore
            dup
            bipush 28
        30: .line 1129
            new sun.jvm.hotspot.CommandProcessor$29
            dup
            aload 0 /* this */
            aload 0 /* this */
            ldc "pmap"
            ldc "pmap"
            iconst_0
            invokespecial sun.jvm.hotspot.CommandProcessor$29.<init>:(Lsun/jvm/hotspot/CommandProcessor;Lsun/jvm/hotspot/CommandProcessor;Ljava/lang/String;Ljava/lang/String;Z)V
            aastore
            dup
            bipush 29
        31: .line 1135
            new sun.jvm.hotspot.CommandProcessor$30
            dup
            aload 0 /* this */
            aload 0 /* this */
            ldc "pstack"
            ldc "pstack [-v]"
            iconst_0
            invokespecial sun.jvm.hotspot.CommandProcessor$30.<init>:(Lsun/jvm/hotspot/CommandProcessor;Lsun/jvm/hotspot/CommandProcessor;Ljava/lang/String;Ljava/lang/String;Z)V
            aastore
            dup
            bipush 30
        32: .line 1145
            new sun.jvm.hotspot.CommandProcessor$31
            dup
            aload 0 /* this */
            aload 0 /* this */
            ldc "quit"
            iconst_1
            invokespecial sun.jvm.hotspot.CommandProcessor$31.<init>:(Lsun/jvm/hotspot/CommandProcessor;Lsun/jvm/hotspot/CommandProcessor;Ljava/lang/String;Z)V
            aastore
            dup
            bipush 31
        33: .line 1155
            new sun.jvm.hotspot.CommandProcessor$32
            dup
            aload 0 /* this */
            aload 0 /* this */
            ldc "echo"
            ldc "echo [ true | false ]"
            iconst_1
            invokespecial sun.jvm.hotspot.CommandProcessor$32.<init>:(Lsun/jvm/hotspot/CommandProcessor;Lsun/jvm/hotspot/CommandProcessor;Ljava/lang/String;Ljava/lang/String;Z)V
            aastore
            dup
            bipush 32
        34: .line 1166
            new sun.jvm.hotspot.CommandProcessor$33
            dup
            aload 0 /* this */
            aload 0 /* this */
            ldc "versioncheck"
            ldc "versioncheck [ true | false ]"
            iconst_1
            invokespecial sun.jvm.hotspot.CommandProcessor$33.<init>:(Lsun/jvm/hotspot/CommandProcessor;Lsun/jvm/hotspot/CommandProcessor;Ljava/lang/String;Ljava/lang/String;Z)V
            aastore
            dup
            bipush 33
        35: .line 1182
            new sun.jvm.hotspot.CommandProcessor$34
            dup
            aload 0 /* this */
            aload 0 /* this */
            ldc "scanoops"
            ldc "scanoops start end [ type ]"
            iconst_0
            invokespecial sun.jvm.hotspot.CommandProcessor$34.<init>:(Lsun/jvm/hotspot/CommandProcessor;Lsun/jvm/hotspot/CommandProcessor;Ljava/lang/String;Ljava/lang/String;Z)V
            aastore
            dup
            bipush 34
        36: .line 1218
            new sun.jvm.hotspot.CommandProcessor$35
            dup
            aload 0 /* this */
            aload 0 /* this */
            ldc "intConstant"
            ldc "intConstant [ name [ value ] ]"
            iconst_0
            invokespecial sun.jvm.hotspot.CommandProcessor$35.<init>:(Lsun/jvm/hotspot/CommandProcessor;Lsun/jvm/hotspot/CommandProcessor;Ljava/lang/String;Ljava/lang/String;Z)V
            aastore
            dup
            bipush 35
        37: .line 1241
            new sun.jvm.hotspot.CommandProcessor$36
            dup
            aload 0 /* this */
            aload 0 /* this */
            ldc "longConstant"
            ldc "longConstant [ name [ value ] ]"
            iconst_0
            invokespecial sun.jvm.hotspot.CommandProcessor$36.<init>:(Lsun/jvm/hotspot/CommandProcessor;Lsun/jvm/hotspot/CommandProcessor;Ljava/lang/String;Ljava/lang/String;Z)V
            aastore
            dup
            bipush 36
        38: .line 1264
            new sun.jvm.hotspot.CommandProcessor$37
            dup
            aload 0 /* this */
            aload 0 /* this */
            ldc "field"
            ldc "field [ type [ name fieldtype isStatic offset address ] ]"
            iconst_0
            invokespecial sun.jvm.hotspot.CommandProcessor$37.<init>:(Lsun/jvm/hotspot/CommandProcessor;Lsun/jvm/hotspot/CommandProcessor;Ljava/lang/String;Ljava/lang/String;Z)V
            aastore
            dup
            bipush 37
        39: .line 1329
            new sun.jvm.hotspot.CommandProcessor$38
            dup
            aload 0 /* this */
            aload 0 /* this */
            ldc "tokenize"
            ldc "tokenize ..."
            iconst_1
            invokespecial sun.jvm.hotspot.CommandProcessor$38.<init>:(Lsun/jvm/hotspot/CommandProcessor;Lsun/jvm/hotspot/CommandProcessor;Ljava/lang/String;Ljava/lang/String;Z)V
            aastore
            dup
            bipush 38
        40: .line 1336
            new sun.jvm.hotspot.CommandProcessor$39
            dup
            aload 0 /* this */
            aload 0 /* this */
            ldc "type"
            ldc "type [ type [ name super isOop isInteger isUnsigned size ] ]"
            iconst_0
            invokespecial sun.jvm.hotspot.CommandProcessor$39.<init>:(Lsun/jvm/hotspot/CommandProcessor;Lsun/jvm/hotspot/CommandProcessor;Ljava/lang/String;Ljava/lang/String;Z)V
            aastore
            dup
            bipush 39
        41: .line 1424
            new sun.jvm.hotspot.CommandProcessor$40
            dup
            aload 0 /* this */
            aload 0 /* this */
            ldc "source"
            ldc "source filename"
            iconst_1
            invokespecial sun.jvm.hotspot.CommandProcessor$40.<init>:(Lsun/jvm/hotspot/CommandProcessor;Lsun/jvm/hotspot/CommandProcessor;Ljava/lang/String;Ljava/lang/String;Z)V
            aastore
            dup
            bipush 40
        42: .line 1447
            new sun.jvm.hotspot.CommandProcessor$41
            dup
            aload 0 /* this */
            aload 0 /* this */
            ldc "search"
            ldc "search [ heap | perm | rawheap | codecache | threads ] value"
            iconst_0
            invokespecial sun.jvm.hotspot.CommandProcessor$41.<init>:(Lsun/jvm/hotspot/CommandProcessor;Lsun/jvm/hotspot/CommandProcessor;Ljava/lang/String;Ljava/lang/String;Z)V
            aastore
            dup
            bipush 41
        43: .line 1553
            new sun.jvm.hotspot.CommandProcessor$42
            dup
            aload 0 /* this */
            aload 0 /* this */
            ldc "dumpcodecache"
            ldc "dumpcodecache"
            iconst_0
            invokespecial sun.jvm.hotspot.CommandProcessor$42.<init>:(Lsun/jvm/hotspot/CommandProcessor;Lsun/jvm/hotspot/CommandProcessor;Ljava/lang/String;Ljava/lang/String;Z)V
            aastore
            dup
            bipush 42
        44: .line 1575
            new sun.jvm.hotspot.CommandProcessor$43
            dup
            aload 0 /* this */
            aload 0 /* this */
            ldc "where"
            ldc "where { -a | id }"
            iconst_0
            invokespecial sun.jvm.hotspot.CommandProcessor$43.<init>:(Lsun/jvm/hotspot/CommandProcessor;Lsun/jvm/hotspot/CommandProcessor;Ljava/lang/String;Ljava/lang/String;Z)V
            aastore
            dup
            bipush 43
        45: .line 1605
            new sun.jvm.hotspot.CommandProcessor$44
            dup
            aload 0 /* this */
            aload 0 /* this */
            ldc "thread"
            ldc "thread { -a | id }"
            iconst_0
            invokespecial sun.jvm.hotspot.CommandProcessor$44.<init>:(Lsun/jvm/hotspot/CommandProcessor;Lsun/jvm/hotspot/CommandProcessor;Ljava/lang/String;Ljava/lang/String;Z)V
            aastore
            dup
            bipush 44
        46: .line 1631
            new sun.jvm.hotspot.CommandProcessor$45
            dup
            aload 0 /* this */
            aload 0 /* this */
            ldc "threads"
            iconst_0
            invokespecial sun.jvm.hotspot.CommandProcessor$45.<init>:(Lsun/jvm/hotspot/CommandProcessor;Lsun/jvm/hotspot/CommandProcessor;Ljava/lang/String;Z)V
            aastore
            dup
            bipush 45
        47: .line 1648
            new sun.jvm.hotspot.CommandProcessor$46
            dup
            aload 0 /* this */
            aload 0 /* this */
            ldc "livenmethods"
            iconst_0
            invokespecial sun.jvm.hotspot.CommandProcessor$46.<init>:(Lsun/jvm/hotspot/CommandProcessor;Lsun/jvm/hotspot/CommandProcessor;Ljava/lang/String;Z)V
            aastore
            dup
            bipush 46
        48: .line 1675
            new sun.jvm.hotspot.CommandProcessor$47
            dup
            aload 0 /* this */
            aload 0 /* this */
            ldc "g1regiondetails"
            iconst_0
            invokespecial sun.jvm.hotspot.CommandProcessor$47.<init>:(Lsun/jvm/hotspot/CommandProcessor;Lsun/jvm/hotspot/CommandProcessor;Ljava/lang/String;Z)V
            aastore
            dup
            bipush 47
        49: .line 1690
            new sun.jvm.hotspot.CommandProcessor$48
            dup
            aload 0 /* this */
            aload 0 /* this */
            ldc "universe"
            iconst_0
            invokespecial sun.jvm.hotspot.CommandProcessor$48.<init>:(Lsun/jvm/hotspot/CommandProcessor;Lsun/jvm/hotspot/CommandProcessor;Ljava/lang/String;Z)V
            aastore
            dup
            bipush 48
        50: .line 1701
            new sun.jvm.hotspot.CommandProcessor$49
            dup
            aload 0 /* this */
            aload 0 /* this */
            ldc "verbose"
            ldc "verbose true | false"
            iconst_1
            invokespecial sun.jvm.hotspot.CommandProcessor$49.<init>:(Lsun/jvm/hotspot/CommandProcessor;Lsun/jvm/hotspot/CommandProcessor;Ljava/lang/String;Ljava/lang/String;Z)V
            aastore
            dup
            bipush 49
        51: .line 1710
            new sun.jvm.hotspot.CommandProcessor$50
            dup
            aload 0 /* this */
            aload 0 /* this */
            ldc "assert"
            ldc "assert true | false"
            iconst_1
            invokespecial sun.jvm.hotspot.CommandProcessor$50.<init>:(Lsun/jvm/hotspot/CommandProcessor;Lsun/jvm/hotspot/CommandProcessor;Ljava/lang/String;Ljava/lang/String;Z)V
            aastore
            dup
            bipush 50
        52: .line 1719
            new sun.jvm.hotspot.CommandProcessor$51
            dup
            aload 0 /* this */
            aload 0 /* this */
            ldc "dumpclass"
            ldc "dumpclass {address | name} [directory]"
            iconst_0
            invokespecial sun.jvm.hotspot.CommandProcessor$51.<init>:(Lsun/jvm/hotspot/CommandProcessor;Lsun/jvm/hotspot/CommandProcessor;Ljava/lang/String;Ljava/lang/String;Z)V
            aastore
            dup
            bipush 51
        53: .line 1779
            new sun.jvm.hotspot.CommandProcessor$52
            dup
            aload 0 /* this */
            aload 0 /* this */
            ldc "sysprops"
            ldc "sysprops"
            iconst_0
            invokespecial sun.jvm.hotspot.CommandProcessor$52.<init>:(Lsun/jvm/hotspot/CommandProcessor;Lsun/jvm/hotspot/CommandProcessor;Ljava/lang/String;Ljava/lang/String;Z)V
            aastore
            dup
            bipush 52
        54: .line 1789
            new sun.jvm.hotspot.CommandProcessor$53
            dup
            aload 0 /* this */
            aload 0 /* this */
            ldc "dumpheap"
            ldc "dumpheap [gz=<1-9>] [filename]"
            iconst_0
            invokespecial sun.jvm.hotspot.CommandProcessor$53.<init>:(Lsun/jvm/hotspot/CommandProcessor;Lsun/jvm/hotspot/CommandProcessor;Ljava/lang/String;Ljava/lang/String;Z)V
            aastore
            dup
            bipush 53
        55: .line 1847
            new sun.jvm.hotspot.CommandProcessor$54
            dup
            aload 0 /* this */
            aload 0 /* this */
            ldc "class"
            ldc "class name"
            iconst_0
            invokespecial sun.jvm.hotspot.CommandProcessor$54.<init>:(Lsun/jvm/hotspot/CommandProcessor;Lsun/jvm/hotspot/CommandProcessor;Ljava/lang/String;Ljava/lang/String;Z)V
            aastore
            dup
            bipush 54
        56: .line 1862
            new sun.jvm.hotspot.CommandProcessor$55
            dup
            aload 0 /* this */
            aload 0 /* this */
            ldc "classes"
            ldc "classes"
            iconst_0
            invokespecial sun.jvm.hotspot.CommandProcessor$55.<init>:(Lsun/jvm/hotspot/CommandProcessor;Lsun/jvm/hotspot/CommandProcessor;Ljava/lang/String;Ljava/lang/String;Z)V
            aastore
            putfield sun.jvm.hotspot.CommandProcessor.commandList:[Lsun/jvm/hotspot/CommandProcessor$Command;
        57: .line 1879
            aload 0 /* this */
            iconst_0
            putfield sun.jvm.hotspot.CommandProcessor.verboseExceptions:Z
        58: .line 1880
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield sun.jvm.hotspot.CommandProcessor.history:Ljava/util/ArrayList;
        59: .line 1881
            aload 0 /* this */
            new java.util.HashMap
            dup
            invokespecial java.util.HashMap.<init>:()V
            putfield sun.jvm.hotspot.CommandProcessor.commands:Ljava/util/HashMap;
        60: .line 1882
            aload 0 /* this */
            iconst_0
            putfield sun.jvm.hotspot.CommandProcessor.doEcho:Z
        61: .line 1917
            aload 0 /* this */
            aload 1 /* debugger */
            putfield sun.jvm.hotspot.CommandProcessor.debugger:Lsun/jvm/hotspot/CommandProcessor$DebuggerInterface;
        62: .line 1918
            aload 0 /* this */
            aload 1 /* debugger */
            invokevirtual sun.jvm.hotspot.CommandProcessor$DebuggerInterface.getAgent:()Lsun/jvm/hotspot/HotSpotAgent;
            putfield sun.jvm.hotspot.CommandProcessor.agent:Lsun/jvm/hotspot/HotSpotAgent;
        63: .line 1919
            aload 0 /* this */
            aload 2 /* in */
            putfield sun.jvm.hotspot.CommandProcessor.in:Ljava/io/BufferedReader;
        64: .line 1920
            aload 0 /* this */
            aload 3 /* out */
            putfield sun.jvm.hotspot.CommandProcessor.out:Ljava/io/PrintStream;
        65: .line 1921
            aload 0 /* this */
            aload 4 /* err */
            putfield sun.jvm.hotspot.CommandProcessor.err:Ljava/io/PrintStream;
        66: .line 1922
            iconst_0
            istore 5 /* i */
        start local 5 // int i
        67: goto 73
        68: .line 1923
      StackMap locals: sun.jvm.hotspot.CommandProcessor sun.jvm.hotspot.CommandProcessor$DebuggerInterface java.io.BufferedReader java.io.PrintStream java.io.PrintStream int
      StackMap stack:
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.commandList:[Lsun/jvm/hotspot/CommandProcessor$Command;
            iload 5 /* i */
            aaload
            astore 6 /* c */
        start local 6 // sun.jvm.hotspot.CommandProcessor$Command c
        69: .line 1924
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.commands:Ljava/util/HashMap;
            aload 6 /* c */
            getfield sun.jvm.hotspot.CommandProcessor$Command.name:Ljava/lang/String;
            invokevirtual java.util.HashMap.get:(Ljava/lang/Object;)Ljava/lang/Object;
            ifnull 71
        70: .line 1925
            new java.lang.InternalError
            dup
            new java.lang.StringBuilder
            dup
            aload 6 /* c */
            getfield sun.jvm.hotspot.CommandProcessor$Command.name:Ljava/lang/String;
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc " has multiple definitions"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.InternalError.<init>:(Ljava/lang/String;)V
            athrow
        71: .line 1927
      StackMap locals: sun.jvm.hotspot.CommandProcessor$Command
      StackMap stack:
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.commands:Ljava/util/HashMap;
            aload 6 /* c */
            getfield sun.jvm.hotspot.CommandProcessor$Command.name:Ljava/lang/String;
            aload 6 /* c */
            invokevirtual java.util.HashMap.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
        end local 6 // sun.jvm.hotspot.CommandProcessor$Command c
        72: .line 1922
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
        73: iload 5 /* i */
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.commandList:[Lsun/jvm/hotspot/CommandProcessor$Command;
            arraylength
            if_icmplt 68
        end local 5 // int i
        74: .line 1929
            aload 1 /* debugger */
            invokevirtual sun.jvm.hotspot.CommandProcessor$DebuggerInterface.isAttached:()Z
            ifeq 76
        75: .line 1930
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.CommandProcessor.postAttach:()V
        76: .line 1932
      StackMap locals:
      StackMap stack:
            return
        end local 4 // java.io.PrintStream err
        end local 3 // java.io.PrintStream out
        end local 2 // java.io.BufferedReader in
        end local 1 // sun.jvm.hotspot.CommandProcessor$DebuggerInterface debugger
        end local 0 // sun.jvm.hotspot.CommandProcessor this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   77     0      this  Lsun/jvm/hotspot/CommandProcessor;
            0   77     1  debugger  Lsun/jvm/hotspot/CommandProcessor$DebuggerInterface;
            0   77     2        in  Ljava/io/BufferedReader;
            0   77     3       out  Ljava/io/PrintStream;
            0   77     4       err  Ljava/io/PrintStream;
           67   74     5         i  I
           69   72     6         c  Lsun/jvm/hotspot/CommandProcessor$Command;
    MethodParameters:
          Name  Flags
      debugger  
      in        
      out       
      err       

  public void run(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // sun.jvm.hotspot.CommandProcessor this
        start local 1 // boolean prompt
         0: .line 1937
            goto 10
         1: .line 1938
      StackMap locals:
      StackMap stack:
            iload 1 /* prompt */
            ifeq 2
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.CommandProcessor.printPrompt:()V
         2: .line 1939
      StackMap locals:
      StackMap stack:
            aconst_null
            astore 2 /* ln */
        start local 2 // java.lang.String ln
         3: .line 1941
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.in:Ljava/io/BufferedReader;
            invokevirtual java.io.BufferedReader.readLine:()Ljava/lang/String;
            astore 2 /* ln */
         4: .line 1942
            goto 6
      StackMap locals: sun.jvm.hotspot.CommandProcessor int java.lang.String
      StackMap stack: java.io.IOException
         5: pop
         6: .line 1944
      StackMap locals:
      StackMap stack:
            aload 2 /* ln */
            ifnonnull 9
         7: .line 1945
            iload 1 /* prompt */
            ifeq 8
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.err:Ljava/io/PrintStream;
            ldc "Input stream closed."
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
         8: .line 1946
      StackMap locals:
      StackMap stack:
            return
         9: .line 1949
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 2 /* ln */
            iload 1 /* prompt */
            invokevirtual sun.jvm.hotspot.CommandProcessor.executeCommand:(Ljava/lang/String;Z)V
        end local 2 // java.lang.String ln
        10: .line 1937
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.quit:Z
            ifeq 1
        11: .line 1951
            return
        end local 1 // boolean prompt
        end local 0 // sun.jvm.hotspot.CommandProcessor this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   12     0    this  Lsun/jvm/hotspot/CommandProcessor;
            0   12     1  prompt  Z
            3   10     2      ln  Ljava/lang/String;
      Exception table:
        from    to  target  type
           3     4       5  Class java.io.IOException
    MethodParameters:
        Name  Flags
      prompt  

  public void executeCommand(java.lang.String, boolean);
    descriptor: (Ljava/lang/String;Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=8, locals=11, args_size=3
        start local 0 // sun.jvm.hotspot.CommandProcessor this
        start local 1 // java.lang.String ln
        start local 2 // boolean putInHistory
         0: .line 1956
            aload 1 /* ln */
            bipush 33
            invokevirtual java.lang.String.indexOf:(I)I
            iconst_m1
            if_icmpeq 62
         1: .line 1957
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.history:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            istore 3 /* size */
        start local 3 // int size
         2: .line 1958
            iload 3 /* size */
            ifne 6
         3: .line 1959
            ldc ""
            astore 1 /* ln */
         4: .line 1960
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.err:Ljava/io/PrintStream;
            ldc "History is empty"
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
         5: .line 1961
            goto 62
         6: .line 1962
      StackMap locals: int
      StackMap stack:
            new java.lang.StringBuffer
            dup
            invokespecial java.lang.StringBuffer.<init>:()V
            astore 4 /* result */
        start local 4 // java.lang.StringBuffer result
         7: .line 1963
            getstatic sun.jvm.hotspot.CommandProcessor.historyPattern:Ljava/util/regex/Pattern;
            aload 1 /* ln */
            invokevirtual java.util.regex.Pattern.matcher:(Ljava/lang/CharSequence;)Ljava/util/regex/Matcher;
            astore 5 /* m */
        start local 5 // java.util.regex.Matcher m
         8: .line 1964
            iconst_0
            istore 6 /* start */
        start local 6 // int start
         9: .line 1965
            goto 52
        10: .line 1967
      StackMap locals: java.lang.StringBuffer java.util.regex.Matcher int
      StackMap stack:
            aload 5 /* m */
            invokevirtual java.util.regex.Matcher.start:()I
            iload 6 /* start */
            if_icmple 12
        11: .line 1968
            aload 4 /* result */
            aload 1 /* ln */
            iload 6 /* start */
            aload 5 /* m */
            invokevirtual java.util.regex.Matcher.start:()I
            invokevirtual java.lang.String.substring:(II)Ljava/lang/String;
            invokevirtual java.lang.StringBuffer.append:(Ljava/lang/String;)Ljava/lang/StringBuffer;
            pop
        12: .line 1970
      StackMap locals:
      StackMap stack:
            aload 5 /* m */
            invokevirtual java.util.regex.Matcher.end:()I
            istore 6 /* start */
        13: .line 1972
            aload 5 /* m */
            iconst_1
            invokevirtual java.util.regex.Matcher.group:(I)Ljava/lang/String;
            invokevirtual java.lang.String.length:()I
            ifeq 16
        14: .line 1975
            aload 4 /* result */
            aload 5 /* m */
            iconst_2
            invokevirtual java.util.regex.Matcher.group:(I)Ljava/lang/String;
            invokevirtual java.lang.StringBuffer.append:(Ljava/lang/String;)Ljava/lang/StringBuffer;
            pop
        15: .line 1976
            goto 52
        16: .line 1979
      StackMap locals:
      StackMap stack:
            aload 5 /* m */
            iconst_2
            invokevirtual java.util.regex.Matcher.group:(I)Ljava/lang/String;
            astore 7 /* cmd */
        start local 7 // java.lang.String cmd
        17: .line 1980
            aload 7 /* cmd */
            ldc "!!"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 20
        18: .line 1981
            aload 4 /* result */
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.history:Ljava/util/ArrayList;
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.history:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            iconst_1
            isub
            invokevirtual java.util.ArrayList.get:(I)Ljava/lang/Object;
            checkcast java.lang.String
            invokevirtual java.lang.StringBuffer.append:(Ljava/lang/String;)Ljava/lang/StringBuffer;
            pop
        19: .line 1982
            goto 52
      StackMap locals: java.lang.String
      StackMap stack:
        20: aload 7 /* cmd */
            ldc "!!-"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 25
        21: .line 1983
            new sun.jvm.hotspot.CommandProcessor$Tokens
            dup
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.history:Ljava/util/ArrayList;
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.history:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            iconst_1
            isub
            invokevirtual java.util.ArrayList.get:(I)Ljava/lang/Object;
            checkcast java.lang.String
            invokespecial sun.jvm.hotspot.CommandProcessor$Tokens.<init>:(Ljava/lang/String;)V
            astore 8 /* item */
        start local 8 // sun.jvm.hotspot.CommandProcessor$Tokens item
        22: .line 1984
            aload 8 /* item */
            iconst_1
            invokevirtual sun.jvm.hotspot.CommandProcessor$Tokens.trim:(I)V
        23: .line 1985
            aload 4 /* result */
            aload 8 /* item */
            ldc " "
            invokevirtual sun.jvm.hotspot.CommandProcessor$Tokens.join:(Ljava/lang/String;)Ljava/lang/String;
            invokevirtual java.lang.StringBuffer.append:(Ljava/lang/String;)Ljava/lang/StringBuffer;
            pop
        end local 8 // sun.jvm.hotspot.CommandProcessor$Tokens item
        24: .line 1986
            goto 52
      StackMap locals:
      StackMap stack:
        25: aload 7 /* cmd */
            ldc "!*"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 30
        26: .line 1987
            new sun.jvm.hotspot.CommandProcessor$Tokens
            dup
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.history:Ljava/util/ArrayList;
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.history:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            iconst_1
            isub
            invokevirtual java.util.ArrayList.get:(I)Ljava/lang/Object;
            checkcast java.lang.String
            invokespecial sun.jvm.hotspot.CommandProcessor$Tokens.<init>:(Ljava/lang/String;)V
            astore 8 /* item */
        start local 8 // sun.jvm.hotspot.CommandProcessor$Tokens item
        27: .line 1988
            aload 8 /* item */
            invokevirtual sun.jvm.hotspot.CommandProcessor$Tokens.nextToken:()Ljava/lang/String;
            pop
        28: .line 1989
            aload 4 /* result */
            aload 8 /* item */
            ldc " "
            invokevirtual sun.jvm.hotspot.CommandProcessor$Tokens.join:(Ljava/lang/String;)Ljava/lang/String;
            invokevirtual java.lang.StringBuffer.append:(Ljava/lang/String;)Ljava/lang/StringBuffer;
            pop
        end local 8 // sun.jvm.hotspot.CommandProcessor$Tokens item
        29: .line 1990
            goto 52
      StackMap locals:
      StackMap stack:
        30: aload 7 /* cmd */
            ldc "!$"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 34
        31: .line 1991
            new sun.jvm.hotspot.CommandProcessor$Tokens
            dup
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.history:Ljava/util/ArrayList;
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.history:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            iconst_1
            isub
            invokevirtual java.util.ArrayList.get:(I)Ljava/lang/Object;
            checkcast java.lang.String
            invokespecial sun.jvm.hotspot.CommandProcessor$Tokens.<init>:(Ljava/lang/String;)V
            astore 8 /* item */
        start local 8 // sun.jvm.hotspot.CommandProcessor$Tokens item
        32: .line 1992
            aload 4 /* result */
            aload 8 /* item */
            aload 8 /* item */
            invokevirtual sun.jvm.hotspot.CommandProcessor$Tokens.countTokens:()I
            iconst_1
            isub
            invokevirtual sun.jvm.hotspot.CommandProcessor$Tokens.at:(I)Ljava/lang/String;
            invokevirtual java.lang.StringBuffer.append:(Ljava/lang/String;)Ljava/lang/StringBuffer;
            pop
        end local 8 // sun.jvm.hotspot.CommandProcessor$Tokens item
        33: .line 1993
            goto 52
        34: .line 1994
      StackMap locals:
      StackMap stack:
            aload 7 /* cmd */
            iconst_1
            invokevirtual java.lang.String.substring:(I)Ljava/lang/String;
            astore 8 /* tail */
        start local 8 // java.lang.String tail
        35: .line 1995
            aload 8 /* tail */
            iconst_0
            invokevirtual java.lang.String.charAt:(I)C
            tableswitch { // 45 - 57
                   45: 36
                   46: 44
                   47: 44
                   48: 36
                   49: 36
                   50: 36
                   51: 36
                   52: 36
                   53: 36
                   54: 36
                   55: 36
                   56: 36
                   57: 36
              default: 44
          }
        36: .line 2007
      StackMap locals: java.lang.String
      StackMap stack:
            aload 8 /* tail */
            invokestatic java.lang.Integer.parseInt:(Ljava/lang/String;)I
            istore 9 /* index */
        start local 9 // int index
        37: .line 2008
            iload 9 /* index */
            ifge 39
        38: .line 2009
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.history:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            iload 9 /* index */
            iadd
            istore 9 /* index */
        39: .line 2011
      StackMap locals: int
      StackMap stack:
            iload 9 /* index */
            iload 3 /* size */
            if_icmple 42
        40: .line 2012
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.err:Ljava/io/PrintStream;
            ldc "No such history item"
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
        41: .line 2013
            goto 52
        42: .line 2014
      StackMap locals:
      StackMap stack:
            aload 4 /* result */
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.history:Ljava/util/ArrayList;
            iload 9 /* index */
            invokevirtual java.util.ArrayList.get:(I)Ljava/lang/Object;
            checkcast java.lang.String
            invokevirtual java.lang.StringBuffer.append:(Ljava/lang/String;)Ljava/lang/StringBuffer;
            pop
        43: .line 2016
            goto 52
        end local 9 // int index
        44: .line 2019
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.history:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            iconst_1
            isub
            istore 9 /* i */
        start local 9 // int i
        45: goto 51
        46: .line 2020
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.history:Ljava/util/ArrayList;
            iload 9 /* i */
            invokevirtual java.util.ArrayList.get:(I)Ljava/lang/Object;
            checkcast java.lang.String
            astore 10 /* s */
        start local 10 // java.lang.String s
        47: .line 2021
            aload 10 /* s */
            aload 8 /* tail */
            invokevirtual java.lang.String.startsWith:(Ljava/lang/String;)Z
            ifeq 50
        48: .line 2022
            aload 4 /* result */
            aload 10 /* s */
            invokevirtual java.lang.StringBuffer.append:(Ljava/lang/String;)Ljava/lang/StringBuffer;
            pop
        49: .line 2023
            goto 52
        end local 10 // java.lang.String s
        50: .line 2019
      StackMap locals:
      StackMap stack:
            iinc 9 /* i */ -1
      StackMap locals:
      StackMap stack:
        51: iload 9 /* i */
            ifge 46
        end local 9 // int i
        end local 8 // java.lang.String tail
        end local 7 // java.lang.String cmd
        52: .line 1965
      StackMap locals:
      StackMap stack:
            aload 5 /* m */
            invokevirtual java.util.regex.Matcher.find:()Z
            ifne 10
        53: .line 2030
            aload 4 /* result */
            invokevirtual java.lang.StringBuffer.length:()I
            ifne 57
        54: .line 2031
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.err:Ljava/io/PrintStream;
            ldc "malformed history reference"
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
        55: .line 2032
            ldc ""
            astore 1 /* ln */
        56: .line 2033
            goto 62
        57: .line 2034
      StackMap locals:
      StackMap stack:
            iload 6 /* start */
            aload 1 /* ln */
            invokevirtual java.lang.String.length:()I
            if_icmpge 59
        58: .line 2035
            aload 4 /* result */
            aload 1 /* ln */
            iload 6 /* start */
            invokevirtual java.lang.String.substring:(I)Ljava/lang/String;
            invokevirtual java.lang.StringBuffer.append:(Ljava/lang/String;)Ljava/lang/StringBuffer;
            pop
        59: .line 2037
      StackMap locals:
      StackMap stack:
            aload 4 /* result */
            invokevirtual java.lang.StringBuffer.toString:()Ljava/lang/String;
            astore 1 /* ln */
        60: .line 2038
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.doEcho:Z
            ifne 62
        61: .line 2039
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.out:Ljava/io/PrintStream;
            aload 1 /* ln */
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
        end local 6 // int start
        end local 5 // java.util.regex.Matcher m
        end local 4 // java.lang.StringBuffer result
        end local 3 // int size
        62: .line 2045
      StackMap locals: sun.jvm.hotspot.CommandProcessor java.lang.String int
      StackMap stack:
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.doEcho:Z
            ifeq 64
        63: .line 2046
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.out:Ljava/io/PrintStream;
            new java.lang.StringBuilder
            dup
            ldc "+ "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* ln */
            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
        64: .line 2049
      StackMap locals:
      StackMap stack:
            aconst_null
            astore 3 /* redirect */
        start local 3 // java.io.PrintStream redirect
        65: .line 2050
            new sun.jvm.hotspot.CommandProcessor$Tokens
            dup
            aload 1 /* ln */
            invokespecial sun.jvm.hotspot.CommandProcessor$Tokens.<init>:(Ljava/lang/String;)V
            astore 4 /* t */
        start local 4 // sun.jvm.hotspot.CommandProcessor$Tokens t
        66: .line 2051
            aload 4 /* t */
            invokevirtual sun.jvm.hotspot.CommandProcessor$Tokens.hasMoreTokens:()Z
            ifeq 106
        67: .line 2052
            iconst_0
            istore 5 /* error */
        start local 5 // boolean error
        68: .line 2053
            iload 2 /* putInHistory */
            ifeq 69
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.history:Ljava/util/ArrayList;
            aload 1 /* ln */
            invokevirtual java.util.ArrayList.add:(Ljava/lang/Object;)Z
            pop
        69: .line 2054
      StackMap locals: java.io.PrintStream sun.jvm.hotspot.CommandProcessor$Tokens int
      StackMap stack:
            aload 4 /* t */
            invokevirtual sun.jvm.hotspot.CommandProcessor$Tokens.countTokens:()I
            istore 6 /* len */
        start local 6 // int len
        70: .line 2055
            iload 6 /* len */
            iconst_2
            if_icmple 85
        71: .line 2056
            aload 4 /* t */
            iload 6 /* len */
            iconst_2
            isub
            invokevirtual sun.jvm.hotspot.CommandProcessor$Tokens.at:(I)Ljava/lang/String;
            astore 7 /* r */
        start local 7 // java.lang.String r
        72: .line 2057
            aload 7 /* r */
            ldc ">"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifne 73
            aload 7 /* r */
            ldc ">>"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 85
        73: .line 2058
      StackMap locals: int java.lang.String
      StackMap stack:
            aload 7 /* r */
            invokevirtual java.lang.String.length:()I
            iconst_2
            if_icmpne 74
            iconst_1
            goto 75
      StackMap locals:
      StackMap stack:
        74: iconst_0
      StackMap locals:
      StackMap stack: int
        75: istore 8 /* append */
        start local 8 // boolean append
        76: .line 2059
            aload 4 /* t */
            iload 6 /* len */
            iconst_1
            isub
            invokevirtual sun.jvm.hotspot.CommandProcessor$Tokens.at:(I)Ljava/lang/String;
            astore 9 /* file */
        start local 9 // java.lang.String file
        77: .line 2061
            new java.io.PrintStream
            dup
            new java.io.BufferedOutputStream
            dup
            new java.io.FileOutputStream
            dup
            aload 9 /* file */
            iload 8 /* append */
            invokespecial java.io.FileOutputStream.<init>:(Ljava/lang/String;Z)V
            invokespecial java.io.BufferedOutputStream.<init>:(Ljava/io/OutputStream;)V
            invokespecial java.io.PrintStream.<init>:(Ljava/io/OutputStream;)V
            astore 3 /* redirect */
        78: .line 2062
            aload 4 /* t */
            iconst_2
            invokevirtual sun.jvm.hotspot.CommandProcessor$Tokens.trim:(I)V
        79: .line 2063
            goto 85
      StackMap locals: sun.jvm.hotspot.CommandProcessor java.lang.String int java.io.PrintStream sun.jvm.hotspot.CommandProcessor$Tokens int int java.lang.String int java.lang.String
      StackMap stack: java.lang.Exception
        80: astore 10 /* e */
        start local 10 // java.lang.Exception e
        81: .line 2064
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.out:Ljava/io/PrintStream;
            new java.lang.StringBuilder
            dup
            ldc "Error: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 10 /* e */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
        82: .line 2065
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.verboseExceptions:Z
            ifeq 84
        83: .line 2066
            aload 10 /* e */
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.out:Ljava/io/PrintStream;
            invokevirtual java.lang.Exception.printStackTrace:(Ljava/io/PrintStream;)V
        84: .line 2068
      StackMap locals: java.lang.Exception
      StackMap stack:
            iconst_1
            istore 5 /* error */
        end local 10 // java.lang.Exception e
        end local 9 // java.lang.String file
        end local 8 // boolean append
        end local 7 // java.lang.String r
        85: .line 2072
      StackMap locals: sun.jvm.hotspot.CommandProcessor java.lang.String int java.io.PrintStream sun.jvm.hotspot.CommandProcessor$Tokens int int
      StackMap stack:
            iload 5 /* error */
            ifne 106
        86: .line 2073
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.out:Ljava/io/PrintStream;
            astore 7 /* savedout */
        start local 7 // java.io.PrintStream savedout
        87: .line 2074
            aload 3 /* redirect */
            ifnull 89
        88: .line 2075
            aload 0 /* this */
            aload 3 /* redirect */
            putfield sun.jvm.hotspot.CommandProcessor.out:Ljava/io/PrintStream;
        89: .line 2078
      StackMap locals: java.io.PrintStream
      StackMap stack:
            aload 0 /* this */
            aload 4 /* t */
            invokevirtual sun.jvm.hotspot.CommandProcessor.executeCommand:(Lsun/jvm/hotspot/CommandProcessor$Tokens;)V
        90: .line 2079
            goto 103
      StackMap locals:
      StackMap stack: java.lang.Exception
        91: astore 8 /* e */
        start local 8 // java.lang.Exception e
        92: .line 2080
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.err:Ljava/io/PrintStream;
            new java.lang.StringBuilder
            dup
            ldc "Error: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 8 /* e */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
        93: .line 2081
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.verboseExceptions:Z
            ifeq 95
        94: .line 2082
            aload 8 /* e */
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.err:Ljava/io/PrintStream;
            invokevirtual java.lang.Exception.printStackTrace:(Ljava/io/PrintStream;)V
        end local 8 // java.lang.Exception e
        95: .line 2085
      StackMap locals:
      StackMap stack:
            aload 3 /* redirect */
            ifnull 106
        96: .line 2086
            aload 0 /* this */
            aload 7 /* savedout */
            putfield sun.jvm.hotspot.CommandProcessor.out:Ljava/io/PrintStream;
        97: .line 2087
            aload 3 /* redirect */
            invokevirtual java.io.PrintStream.close:()V
            goto 106
        98: .line 2084
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 9
        99: .line 2085
            aload 3 /* redirect */
            ifnull 102
       100: .line 2086
            aload 0 /* this */
            aload 7 /* savedout */
            putfield sun.jvm.hotspot.CommandProcessor.out:Ljava/io/PrintStream;
       101: .line 2087
            aload 3 /* redirect */
            invokevirtual java.io.PrintStream.close:()V
       102: .line 2089
      StackMap locals: sun.jvm.hotspot.CommandProcessor java.lang.String int java.io.PrintStream sun.jvm.hotspot.CommandProcessor$Tokens int int java.io.PrintStream top java.lang.Throwable
      StackMap stack:
            aload 9
            athrow
       103: .line 2085
      StackMap locals: sun.jvm.hotspot.CommandProcessor java.lang.String int java.io.PrintStream sun.jvm.hotspot.CommandProcessor$Tokens int int java.io.PrintStream
      StackMap stack:
            aload 3 /* redirect */
            ifnull 106
       104: .line 2086
            aload 0 /* this */
            aload 7 /* savedout */
            putfield sun.jvm.hotspot.CommandProcessor.out:Ljava/io/PrintStream;
       105: .line 2087
            aload 3 /* redirect */
            invokevirtual java.io.PrintStream.close:()V
        end local 7 // java.io.PrintStream savedout
        end local 6 // int len
        end local 5 // boolean error
       106: .line 2092
      StackMap locals:
      StackMap stack:
            return
        end local 4 // sun.jvm.hotspot.CommandProcessor$Tokens t
        end local 3 // java.io.PrintStream redirect
        end local 2 // boolean putInHistory
        end local 1 // java.lang.String ln
        end local 0 // sun.jvm.hotspot.CommandProcessor this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0  107     0          this  Lsun/jvm/hotspot/CommandProcessor;
            0  107     1            ln  Ljava/lang/String;
            0  107     2  putInHistory  Z
            2   62     3          size  I
            7   62     4        result  Ljava/lang/StringBuffer;
            8   62     5             m  Ljava/util/regex/Matcher;
            9   62     6         start  I
           17   52     7           cmd  Ljava/lang/String;
           22   24     8          item  Lsun/jvm/hotspot/CommandProcessor$Tokens;
           27   29     8          item  Lsun/jvm/hotspot/CommandProcessor$Tokens;
           32   33     8          item  Lsun/jvm/hotspot/CommandProcessor$Tokens;
           35   52     8          tail  Ljava/lang/String;
           37   44     9         index  I
           45   52     9             i  I
           47   50    10             s  Ljava/lang/String;
           65  107     3      redirect  Ljava/io/PrintStream;
           66  107     4             t  Lsun/jvm/hotspot/CommandProcessor$Tokens;
           68  106     5         error  Z
           70  106     6           len  I
           72   85     7             r  Ljava/lang/String;
           76   85     8        append  Z
           77   85     9          file  Ljava/lang/String;
           81   85    10             e  Ljava/lang/Exception;
           87  106     7      savedout  Ljava/io/PrintStream;
           92   95     8             e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
          77    79      80  Class java.lang.Exception
          89    90      91  Class java.lang.Exception
          89    95      98  any
    MethodParameters:
              Name  Flags
      ln            
      putInHistory  

  void executeCommand(sun.jvm.hotspot.CommandProcessor$Tokens);
    descriptor: (Lsun/jvm/hotspot/CommandProcessor$Tokens;)V
    flags: (0x0000) 
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // sun.jvm.hotspot.CommandProcessor this
        start local 1 // sun.jvm.hotspot.CommandProcessor$Tokens args
         0: .line 2095
            aload 1 /* args */
            invokevirtual sun.jvm.hotspot.CommandProcessor$Tokens.nextToken:()Ljava/lang/String;
            astore 2 /* cmd */
        start local 2 // java.lang.String cmd
         1: .line 2097
            aload 0 /* this */
            aload 2 /* cmd */
            invokevirtual sun.jvm.hotspot.CommandProcessor.findCommand:(Ljava/lang/String;)Lsun/jvm/hotspot/CommandProcessor$Command;
            astore 3 /* doit */
        start local 3 // sun.jvm.hotspot.CommandProcessor$Command doit
         2: .line 2102
            aload 3 /* doit */
            ifnonnull 5
         3: .line 2103
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.out:Ljava/io/PrintStream;
            ldc "Unrecognized command.  Try help..."
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
         4: .line 2104
            goto 14
      StackMap locals: java.lang.String sun.jvm.hotspot.CommandProcessor$Command
      StackMap stack:
         5: aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.debugger:Lsun/jvm/hotspot/CommandProcessor$DebuggerInterface;
            invokevirtual sun.jvm.hotspot.CommandProcessor$DebuggerInterface.isAttached:()Z
            ifne 8
            aload 3 /* doit */
            getfield sun.jvm.hotspot.CommandProcessor$Command.okIfDisconnected:Z
            ifne 8
         6: .line 2105
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.out:Ljava/io/PrintStream;
            ldc "Command not valid until attached to a VM"
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
         7: .line 2106
            goto 14
         8: .line 2108
      StackMap locals:
      StackMap stack:
            aload 3 /* doit */
            aload 1 /* args */
            invokevirtual sun.jvm.hotspot.CommandProcessor$Command.doit:(Lsun/jvm/hotspot/CommandProcessor$Tokens;)V
         9: .line 2109
            goto 14
      StackMap locals:
      StackMap stack: java.lang.Exception
        10: astore 4 /* e */
        start local 4 // java.lang.Exception e
        11: .line 2110
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.out:Ljava/io/PrintStream;
            new java.lang.StringBuilder
            dup
            ldc "Error: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 4 /* e */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
        12: .line 2111
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.verboseExceptions:Z
            ifeq 14
        13: .line 2112
            aload 4 /* e */
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.out:Ljava/io/PrintStream;
            invokevirtual java.lang.Exception.printStackTrace:(Ljava/io/PrintStream;)V
        end local 4 // java.lang.Exception e
        14: .line 2116
      StackMap locals:
      StackMap stack:
            return
        end local 3 // sun.jvm.hotspot.CommandProcessor$Command doit
        end local 2 // java.lang.String cmd
        end local 1 // sun.jvm.hotspot.CommandProcessor$Tokens args
        end local 0 // sun.jvm.hotspot.CommandProcessor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   15     0  this  Lsun/jvm/hotspot/CommandProcessor;
            0   15     1  args  Lsun/jvm/hotspot/CommandProcessor$Tokens;
            1   15     2   cmd  Ljava/lang/String;
            2   15     3  doit  Lsun/jvm/hotspot/CommandProcessor$Command;
           11   14     4     e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           8     9      10  Class java.lang.Exception
    MethodParameters:
      Name  Flags
      args  

  private int parseHeapDumpCompressionLevel(java.lang.String);
    descriptor: (Ljava/lang/String;)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // sun.jvm.hotspot.CommandProcessor this
        start local 1 // java.lang.String option
         0: .line 2124
            aload 1 /* option */
            ldc "="
            invokevirtual java.lang.String.split:(Ljava/lang/String;)[Ljava/lang/String;
            astore 2 /* keyValue */
        start local 2 // java.lang.String[] keyValue
         1: .line 2125
            aload 2 /* keyValue */
            iconst_0
            aaload
            ldc "gz"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifne 4
         2: .line 2126
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.err:Ljava/io/PrintStream;
            ldc "Expected option is \"gz=\""
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
         3: .line 2127
            iconst_0
            ireturn
         4: .line 2129
      StackMap locals: java.lang.String[]
      StackMap stack:
            aload 2 /* keyValue */
            arraylength
            iconst_2
            if_icmpeq 7
         5: .line 2130
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.err:Ljava/io/PrintStream;
            ldc "Exactly one argument is expected for option \"gz\""
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
         6: .line 2131
            iconst_0
            ireturn
         7: .line 2133
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* gzl */
        start local 3 // int gzl
         8: .line 2134
            aload 2 /* keyValue */
            iconst_1
            aaload
            astore 4 /* level */
        start local 4 // java.lang.String level
         9: .line 2136
            aload 4 /* level */
            invokestatic java.lang.Integer.parseInt:(Ljava/lang/String;)I
            istore 3 /* gzl */
        10: .line 2137
            goto 14
      StackMap locals: sun.jvm.hotspot.CommandProcessor java.lang.String java.lang.String[] int java.lang.String
      StackMap stack: java.lang.NumberFormatException
        11: pop
        12: .line 2138
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.err:Ljava/io/PrintStream;
            new java.lang.StringBuilder
            dup
            ldc "gz option value not an integer ("
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 4 /* level */
            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;
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
        13: .line 2139
            iconst_0
            ireturn
        14: .line 2141
      StackMap locals:
      StackMap stack:
            iload 3 /* gzl */
            iconst_1
            if_icmplt 15
            iload 3 /* gzl */
            bipush 9
            if_icmple 17
        15: .line 2142
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.jvm.hotspot.CommandProcessor.err:Ljava/io/PrintStream;
            new java.lang.StringBuilder
            dup
            ldc "Compression level out of range (1-9): "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 4 /* level */
            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
        16: .line 2143
            iconst_0
            ireturn
        17: .line 2145
      StackMap locals:
      StackMap stack:
            iload 3 /* gzl */
            ireturn
        end local 4 // java.lang.String level
        end local 3 // int gzl
        end local 2 // java.lang.String[] keyValue
        end local 1 // java.lang.String option
        end local 0 // sun.jvm.hotspot.CommandProcessor this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   18     0      this  Lsun/jvm/hotspot/CommandProcessor;
            0   18     1    option  Ljava/lang/String;
            1   18     2  keyValue  [Ljava/lang/String;
            8   18     3       gzl  I
            9   18     4     level  Ljava/lang/String;
      Exception table:
        from    to  target  type
           9    10      11  Class java.lang.NumberFormatException
    MethodParameters:
        Name  Flags
      option  
}
SourceFile: "CommandProcessor.java"
NestMembers:
  sun.jvm.hotspot.CommandProcessor$1  sun.jvm.hotspot.CommandProcessor$10  sun.jvm.hotspot.CommandProcessor$11  sun.jvm.hotspot.CommandProcessor$11$1  sun.jvm.hotspot.CommandProcessor$12  sun.jvm.hotspot.CommandProcessor$13  sun.jvm.hotspot.CommandProcessor$14  sun.jvm.hotspot.CommandProcessor$15  sun.jvm.hotspot.CommandProcessor$16  sun.jvm.hotspot.CommandProcessor$16$1  sun.jvm.hotspot.CommandProcessor$17  sun.jvm.hotspot.CommandProcessor$17$1  sun.jvm.hotspot.CommandProcessor$18  sun.jvm.hotspot.CommandProcessor$18$1  sun.jvm.hotspot.CommandProcessor$19  sun.jvm.hotspot.CommandProcessor$2  sun.jvm.hotspot.CommandProcessor$20  sun.jvm.hotspot.CommandProcessor$21  sun.jvm.hotspot.CommandProcessor$22  sun.jvm.hotspot.CommandProcessor$23  sun.jvm.hotspot.CommandProcessor$24  sun.jvm.hotspot.CommandProcessor$25  sun.jvm.hotspot.CommandProcessor$26  sun.jvm.hotspot.CommandProcessor$27  sun.jvm.hotspot.CommandProcessor$28  sun.jvm.hotspot.CommandProcessor$29  sun.jvm.hotspot.CommandProcessor$3  sun.jvm.hotspot.CommandProcessor$30  sun.jvm.hotspot.CommandProcessor$31  sun.jvm.hotspot.CommandProcessor$32  sun.jvm.hotspot.CommandProcessor$33  sun.jvm.hotspot.CommandProcessor$34  sun.jvm.hotspot.CommandProcessor$35  sun.jvm.hotspot.CommandProcessor$36  sun.jvm.hotspot.CommandProcessor$37  sun.jvm.hotspot.CommandProcessor$38  sun.jvm.hotspot.CommandProcessor$39  sun.jvm.hotspot.CommandProcessor$4  sun.jvm.hotspot.CommandProcessor$40  sun.jvm.hotspot.CommandProcessor$41  sun.jvm.hotspot.CommandProcessor$41$1  sun.jvm.hotspot.CommandProcessor$41$2  sun.jvm.hotspot.CommandProcessor$41$3  sun.jvm.hotspot.CommandProcessor$42  sun.jvm.hotspot.CommandProcessor$42$1  sun.jvm.hotspot.CommandProcessor$43  sun.jvm.hotspot.CommandProcessor$44  sun.jvm.hotspot.CommandProcessor$45  sun.jvm.hotspot.CommandProcessor$46  sun.jvm.hotspot.CommandProcessor$47  sun.jvm.hotspot.CommandProcessor$48  sun.jvm.hotspot.CommandProcessor$49  sun.jvm.hotspot.CommandProcessor$5  sun.jvm.hotspot.CommandProcessor$50  sun.jvm.hotspot.CommandProcessor$51  sun.jvm.hotspot.CommandProcessor$52  sun.jvm.hotspot.CommandProcessor$53  sun.jvm.hotspot.CommandProcessor$54  sun.jvm.hotspot.CommandProcessor$55  sun.jvm.hotspot.CommandProcessor$55$1  sun.jvm.hotspot.CommandProcessor$6  sun.jvm.hotspot.CommandProcessor$7  sun.jvm.hotspot.CommandProcessor$8  sun.jvm.hotspot.CommandProcessor$9  sun.jvm.hotspot.CommandProcessor$BootFilter  sun.jvm.hotspot.CommandProcessor$Command  sun.jvm.hotspot.CommandProcessor$DebuggerInterface  sun.jvm.hotspot.CommandProcessor$NonBootFilter  sun.jvm.hotspot.CommandProcessor$Tokens
InnerClasses:
  sun.jvm.hotspot.CommandProcessor$1
  sun.jvm.hotspot.CommandProcessor$10
  sun.jvm.hotspot.CommandProcessor$11
  sun.jvm.hotspot.CommandProcessor$12
  sun.jvm.hotspot.CommandProcessor$13
  sun.jvm.hotspot.CommandProcessor$14
  sun.jvm.hotspot.CommandProcessor$15
  sun.jvm.hotspot.CommandProcessor$16
  sun.jvm.hotspot.CommandProcessor$17
  sun.jvm.hotspot.CommandProcessor$18
  sun.jvm.hotspot.CommandProcessor$19
  sun.jvm.hotspot.CommandProcessor$2
  sun.jvm.hotspot.CommandProcessor$20
  sun.jvm.hotspot.CommandProcessor$21
  sun.jvm.hotspot.CommandProcessor$22
  sun.jvm.hotspot.CommandProcessor$23
  sun.jvm.hotspot.CommandProcessor$24
  sun.jvm.hotspot.CommandProcessor$25
  sun.jvm.hotspot.CommandProcessor$26
  sun.jvm.hotspot.CommandProcessor$27
  sun.jvm.hotspot.CommandProcessor$28
  sun.jvm.hotspot.CommandProcessor$29
  sun.jvm.hotspot.CommandProcessor$3
  sun.jvm.hotspot.CommandProcessor$30
  sun.jvm.hotspot.CommandProcessor$31
  sun.jvm.hotspot.CommandProcessor$32
  sun.jvm.hotspot.CommandProcessor$33
  sun.jvm.hotspot.CommandProcessor$34
  sun.jvm.hotspot.CommandProcessor$35
  sun.jvm.hotspot.CommandProcessor$36
  sun.jvm.hotspot.CommandProcessor$37
  sun.jvm.hotspot.CommandProcessor$38
  sun.jvm.hotspot.CommandProcessor$39
  sun.jvm.hotspot.CommandProcessor$4
  sun.jvm.hotspot.CommandProcessor$40
  sun.jvm.hotspot.CommandProcessor$41
  sun.jvm.hotspot.CommandProcessor$42
  sun.jvm.hotspot.CommandProcessor$43
  sun.jvm.hotspot.CommandProcessor$44
  sun.jvm.hotspot.CommandProcessor$45
  sun.jvm.hotspot.CommandProcessor$46
  sun.jvm.hotspot.CommandProcessor$47
  sun.jvm.hotspot.CommandProcessor$48
  sun.jvm.hotspot.CommandProcessor$49
  sun.jvm.hotspot.CommandProcessor$5
  sun.jvm.hotspot.CommandProcessor$50
  sun.jvm.hotspot.CommandProcessor$51
  sun.jvm.hotspot.CommandProcessor$52
  sun.jvm.hotspot.CommandProcessor$53
  sun.jvm.hotspot.CommandProcessor$54
  sun.jvm.hotspot.CommandProcessor$55
  sun.jvm.hotspot.CommandProcessor$6
  sun.jvm.hotspot.CommandProcessor$7
  sun.jvm.hotspot.CommandProcessor$8
  sun.jvm.hotspot.CommandProcessor$9
  public BootFilter = sun.jvm.hotspot.CommandProcessor$BootFilter of sun.jvm.hotspot.CommandProcessor
  abstract Command = sun.jvm.hotspot.CommandProcessor$Command of sun.jvm.hotspot.CommandProcessor
  public abstract DebuggerInterface = sun.jvm.hotspot.CommandProcessor$DebuggerInterface of sun.jvm.hotspot.CommandProcessor
  public NonBootFilter = sun.jvm.hotspot.CommandProcessor$NonBootFilter of sun.jvm.hotspot.CommandProcessor
  Tokens = sun.jvm.hotspot.CommandProcessor$Tokens of sun.jvm.hotspot.CommandProcessor