public class sun.jvm.hotspot.tools.SysPropsDumper extends sun.jvm.hotspot.tools.Tool
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: sun.jvm.hotspot.tools.SysPropsDumper
  super_class: sun.jvm.hotspot.tools.Tool
{
  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.jvm.hotspot.tools.SysPropsDumper this
         0: .line 36
            aload 0 /* this */
            invokespecial sun.jvm.hotspot.tools.Tool.<init>:()V
         1: .line 37
            return
        end local 0 // sun.jvm.hotspot.tools.SysPropsDumper this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/jvm/hotspot/tools/SysPropsDumper;

  public void <init>(sun.jvm.hotspot.debugger.JVMDebugger);
    descriptor: (Lsun/jvm/hotspot/debugger/JVMDebugger;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.jvm.hotspot.tools.SysPropsDumper this
        start local 1 // sun.jvm.hotspot.debugger.JVMDebugger d
         0: .line 40
            aload 0 /* this */
            aload 1 /* d */
            invokespecial sun.jvm.hotspot.tools.Tool.<init>:(Lsun/jvm/hotspot/debugger/JVMDebugger;)V
         1: .line 41
            return
        end local 1 // sun.jvm.hotspot.debugger.JVMDebugger d
        end local 0 // sun.jvm.hotspot.tools.SysPropsDumper this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/jvm/hotspot/tools/SysPropsDumper;
            0    2     1     d  Lsun/jvm/hotspot/debugger/JVMDebugger;
    MethodParameters:
      Name  Flags
      d     

  public void run();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=1
        start local 0 // sun.jvm.hotspot.tools.SysPropsDumper this
         0: .line 44
            invokestatic sun.jvm.hotspot.runtime.VM.getVM:()Lsun/jvm/hotspot/runtime/VM;
            invokevirtual sun.jvm.hotspot.runtime.VM.getSystemProperties:()Ljava/util/Properties;
            astore 1 /* sysProps */
        start local 1 // java.util.Properties sysProps
         1: .line 45
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            astore 2 /* out */
        start local 2 // java.io.PrintStream out
         2: .line 46
            aload 1 /* sysProps */
            ifnull 11
         3: .line 47
            aload 1 /* sysProps */
            invokevirtual java.util.Properties.keys:()Ljava/util/Enumeration;
            astore 3 /* keys */
        start local 3 // java.util.Enumeration keys
         4: .line 48
            goto 9
         5: .line 49
      StackMap locals: java.util.Properties java.io.PrintStream java.util.Enumeration
      StackMap stack:
            aload 3 /* keys */
            invokeinterface java.util.Enumeration.nextElement:()Ljava/lang/Object;
            astore 4 /* key */
        start local 4 // java.lang.Object key
         6: .line 50
            aload 2 /* out */
            aload 4 /* key */
            invokevirtual java.io.PrintStream.print:(Ljava/lang/Object;)V
         7: .line 51
            aload 2 /* out */
            ldc " = "
            invokevirtual java.io.PrintStream.print:(Ljava/lang/String;)V
         8: .line 52
            aload 2 /* out */
            aload 1 /* sysProps */
            aload 4 /* key */
            invokevirtual java.util.Properties.get:(Ljava/lang/Object;)Ljava/lang/Object;
            invokevirtual java.io.PrintStream.println:(Ljava/lang/Object;)V
        end local 4 // java.lang.Object key
         9: .line 48
      StackMap locals:
      StackMap stack:
            aload 3 /* keys */
            invokeinterface java.util.Enumeration.hasMoreElements:()Z
            ifne 5
        end local 3 // java.util.Enumeration keys
        10: .line 54
            goto 12
        11: .line 55
      StackMap locals:
      StackMap stack:
            aload 2 /* out */
            ldc "System Properties info not available!"
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
        12: .line 57
      StackMap locals:
      StackMap stack:
            return
        end local 2 // java.io.PrintStream out
        end local 1 // java.util.Properties sysProps
        end local 0 // sun.jvm.hotspot.tools.SysPropsDumper this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   13     0      this  Lsun/jvm/hotspot/tools/SysPropsDumper;
            1   13     1  sysProps  Ljava/util/Properties;
            2   13     2       out  Ljava/io/PrintStream;
            4   10     3      keys  Ljava/util/Enumeration;
            6    9     4       key  Ljava/lang/Object;

  public static void main(java.lang.String[]);
    descriptor: ([Ljava/lang/String;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // java.lang.String[] args
         0: .line 60
            new sun.jvm.hotspot.tools.SysPropsDumper
            dup
            invokespecial sun.jvm.hotspot.tools.SysPropsDumper.<init>:()V
            astore 1 /* pd */
        start local 1 // sun.jvm.hotspot.tools.SysPropsDumper pd
         1: .line 61
            aload 1 /* pd */
            aload 0 /* args */
            invokevirtual sun.jvm.hotspot.tools.SysPropsDumper.execute:([Ljava/lang/String;)V
         2: .line 62
            return
        end local 1 // sun.jvm.hotspot.tools.SysPropsDumper pd
        end local 0 // java.lang.String[] args
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  args  [Ljava/lang/String;
            1    3     1    pd  Lsun/jvm/hotspot/tools/SysPropsDumper;
    MethodParameters:
      Name  Flags
      args  
}
SourceFile: "SysPropsDumper.java"