final class org.graalvm.compiler.debug.DebugConfigImpl implements org.graalvm.compiler.debug.DebugConfig
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: org.graalvm.compiler.debug.DebugConfigImpl
  super_class: java.lang.Object
{
  private final org.graalvm.compiler.options.OptionValues options;
    descriptor: Lorg/graalvm/compiler/options/OptionValues;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.graalvm.compiler.debug.DebugFilter countFilter;
    descriptor: Lorg/graalvm/compiler/debug/DebugFilter;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.graalvm.compiler.debug.DebugFilter logFilter;
    descriptor: Lorg/graalvm/compiler/debug/DebugFilter;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.graalvm.compiler.debug.DebugFilter trackMemUseFilter;
    descriptor: Lorg/graalvm/compiler/debug/DebugFilter;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.graalvm.compiler.debug.DebugFilter timerFilter;
    descriptor: Lorg/graalvm/compiler/debug/DebugFilter;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.graalvm.compiler.debug.DebugFilter dumpFilter;
    descriptor: Lorg/graalvm/compiler/debug/DebugFilter;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.graalvm.compiler.debug.DebugFilter verifyFilter;
    descriptor: Lorg/graalvm/compiler/debug/DebugFilter;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.graalvm.compiler.debug.MethodFilter[] methodFilter;
    descriptor: [Lorg/graalvm/compiler/debug/MethodFilter;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.util.List<org.graalvm.compiler.debug.DebugDumpHandler> dumpHandlers;
    descriptor: Ljava/util/List;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/List<Lorg/graalvm/compiler/debug/DebugDumpHandler;>;

  private final java.util.List<org.graalvm.compiler.debug.DebugVerifyHandler> verifyHandlers;
    descriptor: Ljava/util/List;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/List<Lorg/graalvm/compiler/debug/DebugVerifyHandler;>;

  private final java.io.PrintStream output;
    descriptor: Ljava/io/PrintStream;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  void <init>(org.graalvm.compiler.options.OptionValues);
    descriptor: (Lorg/graalvm/compiler/options/OptionValues;)V
    flags: (0x0000) 
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.graalvm.compiler.debug.DebugConfigImpl this
        start local 1 // org.graalvm.compiler.options.OptionValues options
         0: .line 59
            aload 0 /* this */
            aload 1 /* options */
            getstatic org.graalvm.compiler.debug.TTY.out:Ljava/io/PrintStream;
            invokestatic java.util.Collections.emptyList:()Ljava/util/List;
            invokestatic java.util.Collections.emptyList:()Ljava/util/List;
            invokespecial org.graalvm.compiler.debug.DebugConfigImpl.<init>:(Lorg/graalvm/compiler/options/OptionValues;Ljava/io/PrintStream;Ljava/util/List;Ljava/util/List;)V
         1: .line 60
            return
        end local 1 // org.graalvm.compiler.options.OptionValues options
        end local 0 // org.graalvm.compiler.debug.DebugConfigImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/graalvm/compiler/debug/DebugConfigImpl;
            0    2     1  options  Lorg/graalvm/compiler/options/OptionValues;
    MethodParameters:
         Name  Flags
      options  

  void <init>(org.graalvm.compiler.options.OptionValues, java.io.PrintStream, java.util.List<org.graalvm.compiler.debug.DebugDumpHandler>, java.util.List<org.graalvm.compiler.debug.DebugVerifyHandler>);
    descriptor: (Lorg/graalvm/compiler/options/OptionValues;Ljava/io/PrintStream;Ljava/util/List;Ljava/util/List;)V
    flags: (0x0000) 
    Code:
      stack=12, locals=5, args_size=5
        start local 0 // org.graalvm.compiler.debug.DebugConfigImpl this
        start local 1 // org.graalvm.compiler.options.OptionValues options
        start local 2 // java.io.PrintStream output
        start local 3 // java.util.List dumpHandlers
        start local 4 // java.util.List verifyHandlers
         0: .line 65
            aload 0 /* this */
            aload 1 /* options */
            getstatic org.graalvm.compiler.debug.DebugOptions.Log:Lorg/graalvm/compiler/options/OptionKey;
            aload 1 /* options */
            invokevirtual org.graalvm.compiler.options.OptionKey.getValue:(Lorg/graalvm/compiler/options/OptionValues;)Ljava/lang/Object;
            checkcast java.lang.String
         1: .line 66
            getstatic org.graalvm.compiler.debug.DebugOptions.Count:Lorg/graalvm/compiler/options/OptionKey;
            aload 1 /* options */
            invokevirtual org.graalvm.compiler.options.OptionKey.getValue:(Lorg/graalvm/compiler/options/OptionValues;)Ljava/lang/Object;
            checkcast java.lang.String
         2: .line 67
            getstatic org.graalvm.compiler.debug.DebugOptions.TrackMemUse:Lorg/graalvm/compiler/options/OptionKey;
            aload 1 /* options */
            invokevirtual org.graalvm.compiler.options.OptionKey.getValue:(Lorg/graalvm/compiler/options/OptionValues;)Ljava/lang/Object;
            checkcast java.lang.String
         3: .line 68
            getstatic org.graalvm.compiler.debug.DebugOptions.Time:Lorg/graalvm/compiler/options/OptionKey;
            aload 1 /* options */
            invokevirtual org.graalvm.compiler.options.OptionKey.getValue:(Lorg/graalvm/compiler/options/OptionValues;)Ljava/lang/Object;
            checkcast java.lang.String
         4: .line 69
            getstatic org.graalvm.compiler.debug.DebugOptions.Dump:Lorg/graalvm/compiler/options/OptionKey;
            aload 1 /* options */
            invokevirtual org.graalvm.compiler.options.OptionKey.getValue:(Lorg/graalvm/compiler/options/OptionValues;)Ljava/lang/Object;
            checkcast java.lang.String
         5: .line 70
            aload 1 /* options */
            invokestatic org.graalvm.compiler.debug.DebugConfigImpl.getVerifyOptionValue:(Lorg/graalvm/compiler/options/OptionValues;)Ljava/lang/String;
         6: .line 71
            getstatic org.graalvm.compiler.debug.DebugOptions.MethodFilter:Lorg/graalvm/compiler/options/OptionKey;
            aload 1 /* options */
            invokevirtual org.graalvm.compiler.options.OptionKey.getValue:(Lorg/graalvm/compiler/options/OptionValues;)Ljava/lang/Object;
            checkcast java.lang.String
         7: .line 72
            aload 2 /* output */
            aload 3 /* dumpHandlers */
            aload 4 /* verifyHandlers */
            invokespecial org.graalvm.compiler.debug.DebugConfigImpl.<init>:(Lorg/graalvm/compiler/options/OptionValues;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/io/PrintStream;Ljava/util/List;Ljava/util/List;)V
         8: .line 73
            return
        end local 4 // java.util.List verifyHandlers
        end local 3 // java.util.List dumpHandlers
        end local 2 // java.io.PrintStream output
        end local 1 // org.graalvm.compiler.options.OptionValues options
        end local 0 // org.graalvm.compiler.debug.DebugConfigImpl this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    9     0            this  Lorg/graalvm/compiler/debug/DebugConfigImpl;
            0    9     1         options  Lorg/graalvm/compiler/options/OptionValues;
            0    9     2          output  Ljava/io/PrintStream;
            0    9     3    dumpHandlers  Ljava/util/List<Lorg/graalvm/compiler/debug/DebugDumpHandler;>;
            0    9     4  verifyHandlers  Ljava/util/List<Lorg/graalvm/compiler/debug/DebugVerifyHandler;>;
    Signature: (Lorg/graalvm/compiler/options/OptionValues;Ljava/io/PrintStream;Ljava/util/List<Lorg/graalvm/compiler/debug/DebugDumpHandler;>;Ljava/util/List<Lorg/graalvm/compiler/debug/DebugVerifyHandler;>;)V
    MethodParameters:
                Name  Flags
      options         
      output          
      dumpHandlers    
      verifyHandlers  

  void <init>(org.graalvm.compiler.options.OptionValues, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.io.PrintStream, java.util.List<org.graalvm.compiler.debug.DebugDumpHandler>, java.util.List<org.graalvm.compiler.debug.DebugVerifyHandler>);
    descriptor: (Lorg/graalvm/compiler/options/OptionValues;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/io/PrintStream;Ljava/util/List;Ljava/util/List;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=12, args_size=12
        start local 0 // org.graalvm.compiler.debug.DebugConfigImpl this
        start local 1 // org.graalvm.compiler.options.OptionValues options
        start local 2 // java.lang.String logFilter
        start local 3 // java.lang.String countFilter
        start local 4 // java.lang.String trackMemUseFilter
        start local 5 // java.lang.String timerFilter
        start local 6 // java.lang.String dumpFilter
        start local 7 // java.lang.String verifyFilter
        start local 8 // java.lang.String methodFilter
        start local 9 // java.io.PrintStream output
        start local 10 // java.util.List dumpHandlers
        start local 11 // java.util.List verifyHandlers
         0: .line 75
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 86
            aload 0 /* this */
            aload 1 /* options */
            putfield org.graalvm.compiler.debug.DebugConfigImpl.options:Lorg/graalvm/compiler/options/OptionValues;
         2: .line 87
            aload 0 /* this */
            aload 2 /* logFilter */
            invokestatic org.graalvm.compiler.debug.DebugFilter.parse:(Ljava/lang/String;)Lorg/graalvm/compiler/debug/DebugFilter;
            putfield org.graalvm.compiler.debug.DebugConfigImpl.logFilter:Lorg/graalvm/compiler/debug/DebugFilter;
         3: .line 88
            aload 0 /* this */
            aload 3 /* countFilter */
            invokestatic org.graalvm.compiler.debug.DebugFilter.parse:(Ljava/lang/String;)Lorg/graalvm/compiler/debug/DebugFilter;
            putfield org.graalvm.compiler.debug.DebugConfigImpl.countFilter:Lorg/graalvm/compiler/debug/DebugFilter;
         4: .line 89
            aload 0 /* this */
            aload 4 /* trackMemUseFilter */
            invokestatic org.graalvm.compiler.debug.DebugFilter.parse:(Ljava/lang/String;)Lorg/graalvm/compiler/debug/DebugFilter;
            putfield org.graalvm.compiler.debug.DebugConfigImpl.trackMemUseFilter:Lorg/graalvm/compiler/debug/DebugFilter;
         5: .line 90
            aload 0 /* this */
            aload 5 /* timerFilter */
            invokestatic org.graalvm.compiler.debug.DebugFilter.parse:(Ljava/lang/String;)Lorg/graalvm/compiler/debug/DebugFilter;
            putfield org.graalvm.compiler.debug.DebugConfigImpl.timerFilter:Lorg/graalvm/compiler/debug/DebugFilter;
         6: .line 91
            aload 0 /* this */
            aload 6 /* dumpFilter */
            invokestatic org.graalvm.compiler.debug.DebugFilter.parse:(Ljava/lang/String;)Lorg/graalvm/compiler/debug/DebugFilter;
            putfield org.graalvm.compiler.debug.DebugConfigImpl.dumpFilter:Lorg/graalvm/compiler/debug/DebugFilter;
         7: .line 92
            aload 0 /* this */
            aload 7 /* verifyFilter */
            invokestatic org.graalvm.compiler.debug.DebugFilter.parse:(Ljava/lang/String;)Lorg/graalvm/compiler/debug/DebugFilter;
            putfield org.graalvm.compiler.debug.DebugConfigImpl.verifyFilter:Lorg/graalvm/compiler/debug/DebugFilter;
         8: .line 93
            aload 8 /* methodFilter */
            ifnull 9
            aload 8 /* methodFilter */
            invokevirtual java.lang.String.isEmpty:()Z
            ifeq 11
         9: .line 94
      StackMap locals: org.graalvm.compiler.debug.DebugConfigImpl org.graalvm.compiler.options.OptionValues java.lang.String java.lang.String java.lang.String java.lang.String java.lang.String java.lang.String java.lang.String java.io.PrintStream java.util.List java.util.List
      StackMap stack:
            aload 0 /* this */
            aconst_null
            putfield org.graalvm.compiler.debug.DebugConfigImpl.methodFilter:[Lorg/graalvm/compiler/debug/MethodFilter;
        10: .line 95
            goto 12
        11: .line 96
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 8 /* methodFilter */
            invokestatic org.graalvm.compiler.debug.MethodFilter.parse:(Ljava/lang/String;)[Lorg/graalvm/compiler/debug/MethodFilter;
            putfield org.graalvm.compiler.debug.DebugConfigImpl.methodFilter:[Lorg/graalvm/compiler/debug/MethodFilter;
        12: .line 99
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 10 /* dumpHandlers */
            invokestatic java.util.Collections.unmodifiableList:(Ljava/util/List;)Ljava/util/List;
            putfield org.graalvm.compiler.debug.DebugConfigImpl.dumpHandlers:Ljava/util/List;
        13: .line 100
            aload 0 /* this */
            aload 11 /* verifyHandlers */
            invokestatic java.util.Collections.unmodifiableList:(Ljava/util/List;)Ljava/util/List;
            putfield org.graalvm.compiler.debug.DebugConfigImpl.verifyHandlers:Ljava/util/List;
        14: .line 101
            aload 0 /* this */
            aload 9 /* output */
            putfield org.graalvm.compiler.debug.DebugConfigImpl.output:Ljava/io/PrintStream;
        15: .line 102
            return
        end local 11 // java.util.List verifyHandlers
        end local 10 // java.util.List dumpHandlers
        end local 9 // java.io.PrintStream output
        end local 8 // java.lang.String methodFilter
        end local 7 // java.lang.String verifyFilter
        end local 6 // java.lang.String dumpFilter
        end local 5 // java.lang.String timerFilter
        end local 4 // java.lang.String trackMemUseFilter
        end local 3 // java.lang.String countFilter
        end local 2 // java.lang.String logFilter
        end local 1 // org.graalvm.compiler.options.OptionValues options
        end local 0 // org.graalvm.compiler.debug.DebugConfigImpl this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0   16     0               this  Lorg/graalvm/compiler/debug/DebugConfigImpl;
            0   16     1            options  Lorg/graalvm/compiler/options/OptionValues;
            0   16     2          logFilter  Ljava/lang/String;
            0   16     3        countFilter  Ljava/lang/String;
            0   16     4  trackMemUseFilter  Ljava/lang/String;
            0   16     5        timerFilter  Ljava/lang/String;
            0   16     6         dumpFilter  Ljava/lang/String;
            0   16     7       verifyFilter  Ljava/lang/String;
            0   16     8       methodFilter  Ljava/lang/String;
            0   16     9             output  Ljava/io/PrintStream;
            0   16    10       dumpHandlers  Ljava/util/List<Lorg/graalvm/compiler/debug/DebugDumpHandler;>;
            0   16    11     verifyHandlers  Ljava/util/List<Lorg/graalvm/compiler/debug/DebugVerifyHandler;>;
    Signature: (Lorg/graalvm/compiler/options/OptionValues;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/io/PrintStream;Ljava/util/List<Lorg/graalvm/compiler/debug/DebugDumpHandler;>;Ljava/util/List<Lorg/graalvm/compiler/debug/DebugVerifyHandler;>;)V
    MethodParameters:
                   Name  Flags
      options            
      logFilter          
      countFilter        
      trackMemUseFilter  
      timerFilter        
      dumpFilter         
      verifyFilter       
      methodFilter       
      output             
      dumpHandlers       
      verifyHandlers     

  private static java.lang.String getVerifyOptionValue(org.graalvm.compiler.options.OptionValues);
    descriptor: (Lorg/graalvm/compiler/options/OptionValues;)Ljava/lang/String;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.options.OptionValues values
         0: .line 105
            getstatic org.graalvm.compiler.debug.DebugOptions.Verify:Lorg/graalvm/compiler/options/OptionKey;
            aload 0 /* values */
            invokevirtual org.graalvm.compiler.options.OptionKey.hasBeenSet:(Lorg/graalvm/compiler/options/OptionValues;)Z
            ifne 1
            invokestatic org.graalvm.compiler.debug.Assertions.assertionsEnabled:()Z
            ifeq 1
            ldc ""
            goto 2
      StackMap locals:
      StackMap stack:
         1: getstatic org.graalvm.compiler.debug.DebugOptions.Verify:Lorg/graalvm/compiler/options/OptionKey;
            aload 0 /* values */
            invokevirtual org.graalvm.compiler.options.OptionKey.getValue:(Lorg/graalvm/compiler/options/OptionValues;)Ljava/lang/Object;
            checkcast java.lang.String
      StackMap locals:
      StackMap stack: java.lang.String
         2: areturn
        end local 0 // org.graalvm.compiler.options.OptionValues values
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0  values  Lorg/graalvm/compiler/options/OptionValues;
    MethodParameters:
        Name  Flags
      values  

  public org.graalvm.compiler.options.OptionValues getOptions();
    descriptor: ()Lorg/graalvm/compiler/options/OptionValues;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.debug.DebugConfigImpl this
         0: .line 110
            aload 0 /* this */
            getfield org.graalvm.compiler.debug.DebugConfigImpl.options:Lorg/graalvm/compiler/options/OptionValues;
            areturn
        end local 0 // org.graalvm.compiler.debug.DebugConfigImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/debug/DebugConfigImpl;

  public int getLogLevel(org.graalvm.compiler.debug.DebugContext$Scope);
    descriptor: (Lorg/graalvm/compiler/debug/DebugContext$Scope;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.graalvm.compiler.debug.DebugConfigImpl this
        start local 1 // org.graalvm.compiler.debug.DebugContext$Scope scope
         0: .line 115
            aload 0 /* this */
            aload 1 /* scope */
            aload 0 /* this */
            getfield org.graalvm.compiler.debug.DebugConfigImpl.logFilter:Lorg/graalvm/compiler/debug/DebugFilter;
            invokevirtual org.graalvm.compiler.debug.DebugConfigImpl.getLevel:(Lorg/graalvm/compiler/debug/DebugContext$Scope;Lorg/graalvm/compiler/debug/DebugFilter;)I
            ireturn
        end local 1 // org.graalvm.compiler.debug.DebugContext$Scope scope
        end local 0 // org.graalvm.compiler.debug.DebugConfigImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/graalvm/compiler/debug/DebugConfigImpl;
            0    1     1  scope  Lorg/graalvm/compiler/debug/DebugContext$Scope;
    MethodParameters:
       Name  Flags
      scope  

  public boolean isLogEnabledForMethod(org.graalvm.compiler.debug.DebugContext$Scope);
    descriptor: (Lorg/graalvm/compiler/debug/DebugContext$Scope;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.graalvm.compiler.debug.DebugConfigImpl this
        start local 1 // org.graalvm.compiler.debug.DebugContext$Scope scope
         0: .line 120
            aload 0 /* this */
            aload 1 /* scope */
            aload 0 /* this */
            getfield org.graalvm.compiler.debug.DebugConfigImpl.logFilter:Lorg/graalvm/compiler/debug/DebugFilter;
            invokevirtual org.graalvm.compiler.debug.DebugConfigImpl.isEnabledForMethod:(Lorg/graalvm/compiler/debug/DebugContext$Scope;Lorg/graalvm/compiler/debug/DebugFilter;)Z
            ireturn
        end local 1 // org.graalvm.compiler.debug.DebugContext$Scope scope
        end local 0 // org.graalvm.compiler.debug.DebugConfigImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/graalvm/compiler/debug/DebugConfigImpl;
            0    1     1  scope  Lorg/graalvm/compiler/debug/DebugContext$Scope;
    MethodParameters:
       Name  Flags
      scope  

  public boolean isCountEnabled(org.graalvm.compiler.debug.DebugContext$Scope);
    descriptor: (Lorg/graalvm/compiler/debug/DebugContext$Scope;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.graalvm.compiler.debug.DebugConfigImpl this
        start local 1 // org.graalvm.compiler.debug.DebugContext$Scope scope
         0: .line 125
            aload 0 /* this */
            aload 1 /* scope */
            aload 0 /* this */
            getfield org.graalvm.compiler.debug.DebugConfigImpl.countFilter:Lorg/graalvm/compiler/debug/DebugFilter;
            invokevirtual org.graalvm.compiler.debug.DebugConfigImpl.isEnabled:(Lorg/graalvm/compiler/debug/DebugContext$Scope;Lorg/graalvm/compiler/debug/DebugFilter;)Z
            ireturn
        end local 1 // org.graalvm.compiler.debug.DebugContext$Scope scope
        end local 0 // org.graalvm.compiler.debug.DebugConfigImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/graalvm/compiler/debug/DebugConfigImpl;
            0    1     1  scope  Lorg/graalvm/compiler/debug/DebugContext$Scope;
    MethodParameters:
       Name  Flags
      scope  

  public boolean isMemUseTrackingEnabled(org.graalvm.compiler.debug.DebugContext$Scope);
    descriptor: (Lorg/graalvm/compiler/debug/DebugContext$Scope;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.graalvm.compiler.debug.DebugConfigImpl this
        start local 1 // org.graalvm.compiler.debug.DebugContext$Scope scope
         0: .line 130
            aload 0 /* this */
            aload 1 /* scope */
            aload 0 /* this */
            getfield org.graalvm.compiler.debug.DebugConfigImpl.trackMemUseFilter:Lorg/graalvm/compiler/debug/DebugFilter;
            invokevirtual org.graalvm.compiler.debug.DebugConfigImpl.isEnabled:(Lorg/graalvm/compiler/debug/DebugContext$Scope;Lorg/graalvm/compiler/debug/DebugFilter;)Z
            ireturn
        end local 1 // org.graalvm.compiler.debug.DebugContext$Scope scope
        end local 0 // org.graalvm.compiler.debug.DebugConfigImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/graalvm/compiler/debug/DebugConfigImpl;
            0    1     1  scope  Lorg/graalvm/compiler/debug/DebugContext$Scope;
    MethodParameters:
       Name  Flags
      scope  

  public int getDumpLevel(org.graalvm.compiler.debug.DebugContext$Scope);
    descriptor: (Lorg/graalvm/compiler/debug/DebugContext$Scope;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.graalvm.compiler.debug.DebugConfigImpl this
        start local 1 // org.graalvm.compiler.debug.DebugContext$Scope scope
         0: .line 135
            aload 0 /* this */
            aload 1 /* scope */
            aload 0 /* this */
            getfield org.graalvm.compiler.debug.DebugConfigImpl.dumpFilter:Lorg/graalvm/compiler/debug/DebugFilter;
            invokevirtual org.graalvm.compiler.debug.DebugConfigImpl.getLevel:(Lorg/graalvm/compiler/debug/DebugContext$Scope;Lorg/graalvm/compiler/debug/DebugFilter;)I
            ireturn
        end local 1 // org.graalvm.compiler.debug.DebugContext$Scope scope
        end local 0 // org.graalvm.compiler.debug.DebugConfigImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/graalvm/compiler/debug/DebugConfigImpl;
            0    1     1  scope  Lorg/graalvm/compiler/debug/DebugContext$Scope;
    MethodParameters:
       Name  Flags
      scope  

  public boolean isDumpEnabledForMethod(org.graalvm.compiler.debug.DebugContext$Scope);
    descriptor: (Lorg/graalvm/compiler/debug/DebugContext$Scope;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.graalvm.compiler.debug.DebugConfigImpl this
        start local 1 // org.graalvm.compiler.debug.DebugContext$Scope scope
         0: .line 140
            aload 0 /* this */
            aload 1 /* scope */
            aload 0 /* this */
            getfield org.graalvm.compiler.debug.DebugConfigImpl.dumpFilter:Lorg/graalvm/compiler/debug/DebugFilter;
            invokevirtual org.graalvm.compiler.debug.DebugConfigImpl.isEnabledForMethod:(Lorg/graalvm/compiler/debug/DebugContext$Scope;Lorg/graalvm/compiler/debug/DebugFilter;)Z
            ireturn
        end local 1 // org.graalvm.compiler.debug.DebugContext$Scope scope
        end local 0 // org.graalvm.compiler.debug.DebugConfigImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/graalvm/compiler/debug/DebugConfigImpl;
            0    1     1  scope  Lorg/graalvm/compiler/debug/DebugContext$Scope;
    MethodParameters:
       Name  Flags
      scope  

  public boolean isVerifyEnabled(org.graalvm.compiler.debug.DebugContext$Scope);
    descriptor: (Lorg/graalvm/compiler/debug/DebugContext$Scope;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.graalvm.compiler.debug.DebugConfigImpl this
        start local 1 // org.graalvm.compiler.debug.DebugContext$Scope scope
         0: .line 145
            aload 0 /* this */
            aload 1 /* scope */
            aload 0 /* this */
            getfield org.graalvm.compiler.debug.DebugConfigImpl.verifyFilter:Lorg/graalvm/compiler/debug/DebugFilter;
            invokevirtual org.graalvm.compiler.debug.DebugConfigImpl.isEnabled:(Lorg/graalvm/compiler/debug/DebugContext$Scope;Lorg/graalvm/compiler/debug/DebugFilter;)Z
            ireturn
        end local 1 // org.graalvm.compiler.debug.DebugContext$Scope scope
        end local 0 // org.graalvm.compiler.debug.DebugConfigImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/graalvm/compiler/debug/DebugConfigImpl;
            0    1     1  scope  Lorg/graalvm/compiler/debug/DebugContext$Scope;
    MethodParameters:
       Name  Flags
      scope  

  public boolean isVerifyEnabledForMethod(org.graalvm.compiler.debug.DebugContext$Scope);
    descriptor: (Lorg/graalvm/compiler/debug/DebugContext$Scope;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.graalvm.compiler.debug.DebugConfigImpl this
        start local 1 // org.graalvm.compiler.debug.DebugContext$Scope scope
         0: .line 150
            aload 0 /* this */
            aload 1 /* scope */
            aload 0 /* this */
            getfield org.graalvm.compiler.debug.DebugConfigImpl.verifyFilter:Lorg/graalvm/compiler/debug/DebugFilter;
            invokevirtual org.graalvm.compiler.debug.DebugConfigImpl.isEnabledForMethod:(Lorg/graalvm/compiler/debug/DebugContext$Scope;Lorg/graalvm/compiler/debug/DebugFilter;)Z
            ireturn
        end local 1 // org.graalvm.compiler.debug.DebugContext$Scope scope
        end local 0 // org.graalvm.compiler.debug.DebugConfigImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/graalvm/compiler/debug/DebugConfigImpl;
            0    1     1  scope  Lorg/graalvm/compiler/debug/DebugContext$Scope;
    MethodParameters:
       Name  Flags
      scope  

  public boolean isTimeEnabled(org.graalvm.compiler.debug.DebugContext$Scope);
    descriptor: (Lorg/graalvm/compiler/debug/DebugContext$Scope;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.graalvm.compiler.debug.DebugConfigImpl this
        start local 1 // org.graalvm.compiler.debug.DebugContext$Scope scope
         0: .line 155
            aload 0 /* this */
            aload 1 /* scope */
            aload 0 /* this */
            getfield org.graalvm.compiler.debug.DebugConfigImpl.timerFilter:Lorg/graalvm/compiler/debug/DebugFilter;
            invokevirtual org.graalvm.compiler.debug.DebugConfigImpl.isEnabled:(Lorg/graalvm/compiler/debug/DebugContext$Scope;Lorg/graalvm/compiler/debug/DebugFilter;)Z
            ireturn
        end local 1 // org.graalvm.compiler.debug.DebugContext$Scope scope
        end local 0 // org.graalvm.compiler.debug.DebugConfigImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/graalvm/compiler/debug/DebugConfigImpl;
            0    1     1  scope  Lorg/graalvm/compiler/debug/DebugContext$Scope;
    MethodParameters:
       Name  Flags
      scope  

  public java.io.PrintStream output();
    descriptor: ()Ljava/io/PrintStream;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.debug.DebugConfigImpl this
         0: .line 160
            aload 0 /* this */
            getfield org.graalvm.compiler.debug.DebugConfigImpl.output:Ljava/io/PrintStream;
            areturn
        end local 0 // org.graalvm.compiler.debug.DebugConfigImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/debug/DebugConfigImpl;

  private boolean isEnabled(org.graalvm.compiler.debug.DebugContext$Scope, org.graalvm.compiler.debug.DebugFilter);
    descriptor: (Lorg/graalvm/compiler/debug/DebugContext$Scope;Lorg/graalvm/compiler/debug/DebugFilter;)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.graalvm.compiler.debug.DebugConfigImpl this
        start local 1 // org.graalvm.compiler.debug.DebugContext$Scope scope
        start local 2 // org.graalvm.compiler.debug.DebugFilter filter
         0: .line 164
            aload 0 /* this */
            aload 1 /* scope */
            aload 2 /* filter */
            invokevirtual org.graalvm.compiler.debug.DebugConfigImpl.getLevel:(Lorg/graalvm/compiler/debug/DebugContext$Scope;Lorg/graalvm/compiler/debug/DebugFilter;)I
            ifle 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 2 // org.graalvm.compiler.debug.DebugFilter filter
        end local 1 // org.graalvm.compiler.debug.DebugContext$Scope scope
        end local 0 // org.graalvm.compiler.debug.DebugConfigImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/graalvm/compiler/debug/DebugConfigImpl;
            0    2     1   scope  Lorg/graalvm/compiler/debug/DebugContext$Scope;
            0    2     2  filter  Lorg/graalvm/compiler/debug/DebugFilter;
    MethodParameters:
        Name  Flags
      scope   
      filter  

  private int getLevel(org.graalvm.compiler.debug.DebugContext$Scope, org.graalvm.compiler.debug.DebugFilter);
    descriptor: (Lorg/graalvm/compiler/debug/DebugContext$Scope;Lorg/graalvm/compiler/debug/DebugFilter;)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=5, args_size=3
        start local 0 // org.graalvm.compiler.debug.DebugConfigImpl this
        start local 1 // org.graalvm.compiler.debug.DebugContext$Scope scope
        start local 2 // org.graalvm.compiler.debug.DebugFilter filter
         0: .line 169
            aload 2 /* filter */
            ifnonnull 3
         1: .line 170
            iconst_0
            istore 3 /* level */
        start local 3 // int level
         2: .line 171
            goto 5
        end local 3 // int level
         3: .line 172
      StackMap locals:
      StackMap stack:
            aload 1 /* scope */
            invokeinterface org.graalvm.compiler.debug.DebugContext$Scope.getQualifiedName:()Ljava/lang/String;
            astore 4 /* currentScope */
        start local 4 // java.lang.String currentScope
         4: .line 173
            aload 2 /* filter */
            aload 4 /* currentScope */
            invokevirtual org.graalvm.compiler.debug.DebugFilter.matchLevel:(Ljava/lang/String;)I
            istore 3 /* level */
        end local 4 // java.lang.String currentScope
        start local 3 // int level
         5: .line 175
      StackMap locals: int
      StackMap stack:
            iload 3 /* level */
            iflt 7
            aload 0 /* this */
            aload 1 /* scope */
            invokevirtual org.graalvm.compiler.debug.DebugConfigImpl.checkMethodFilter:(Lorg/graalvm/compiler/debug/DebugContext$Scope;)Z
            ifne 7
         6: .line 176
            iconst_m1
            istore 3 /* level */
         7: .line 178
      StackMap locals:
      StackMap stack:
            iload 3 /* level */
            ireturn
        end local 3 // int level
        end local 2 // org.graalvm.compiler.debug.DebugFilter filter
        end local 1 // org.graalvm.compiler.debug.DebugContext$Scope scope
        end local 0 // org.graalvm.compiler.debug.DebugConfigImpl this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    8     0          this  Lorg/graalvm/compiler/debug/DebugConfigImpl;
            0    8     1         scope  Lorg/graalvm/compiler/debug/DebugContext$Scope;
            0    8     2        filter  Lorg/graalvm/compiler/debug/DebugFilter;
            2    3     3         level  I
            5    8     3         level  I
            4    5     4  currentScope  Ljava/lang/String;
    MethodParameters:
        Name  Flags
      scope   
      filter  

  private boolean isEnabledForMethod(org.graalvm.compiler.debug.DebugContext$Scope, org.graalvm.compiler.debug.DebugFilter);
    descriptor: (Lorg/graalvm/compiler/debug/DebugContext$Scope;Lorg/graalvm/compiler/debug/DebugFilter;)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.graalvm.compiler.debug.DebugConfigImpl this
        start local 1 // org.graalvm.compiler.debug.DebugContext$Scope scope
        start local 2 // org.graalvm.compiler.debug.DebugFilter filter
         0: .line 182
            aload 2 /* filter */
            ifnull 1
            aload 0 /* this */
            aload 1 /* scope */
            invokevirtual org.graalvm.compiler.debug.DebugConfigImpl.checkMethodFilter:(Lorg/graalvm/compiler/debug/DebugContext$Scope;)Z
            ifeq 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 2 // org.graalvm.compiler.debug.DebugFilter filter
        end local 1 // org.graalvm.compiler.debug.DebugContext$Scope scope
        end local 0 // org.graalvm.compiler.debug.DebugConfigImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/graalvm/compiler/debug/DebugConfigImpl;
            0    2     1   scope  Lorg/graalvm/compiler/debug/DebugContext$Scope;
            0    2     2  filter  Lorg/graalvm/compiler/debug/DebugFilter;
    MethodParameters:
        Name  Flags
      scope   
      filter  

  private boolean checkMethodFilter(org.graalvm.compiler.debug.DebugContext$Scope);
    descriptor: (Lorg/graalvm/compiler/debug/DebugContext$Scope;)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=7, args_size=2
        start local 0 // org.graalvm.compiler.debug.DebugConfigImpl this
        start local 1 // org.graalvm.compiler.debug.DebugContext$Scope scope
         0: .line 186
            aload 0 /* this */
            getfield org.graalvm.compiler.debug.DebugConfigImpl.methodFilter:[Lorg/graalvm/compiler/debug/MethodFilter;
            ifnonnull 2
         1: .line 187
            iconst_1
            ireturn
         2: .line 189
      StackMap locals:
      StackMap stack:
            aconst_null
            astore 2 /* lastMethod */
        start local 2 // jdk.vm.ci.meta.JavaMethod lastMethod
         3: .line 190
            aload 1 /* scope */
            invokeinterface org.graalvm.compiler.debug.DebugContext$Scope.getCurrentContext:()Ljava/lang/Iterable;
            astore 3 /* context */
        start local 3 // java.lang.Iterable context
         4: .line 191
            aload 3 /* context */
            invokeinterface java.lang.Iterable.iterator:()Ljava/util/Iterator;
            astore 5
            goto 13
      StackMap locals: org.graalvm.compiler.debug.DebugConfigImpl org.graalvm.compiler.debug.DebugContext$Scope jdk.vm.ci.meta.JavaMethod java.lang.Iterable top java.util.Iterator
      StackMap stack:
         5: aload 5
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            astore 4 /* o */
        start local 4 // java.lang.Object o
         6: .line 192
            aload 0 /* this */
            getfield org.graalvm.compiler.debug.DebugConfigImpl.methodFilter:[Lorg/graalvm/compiler/debug/MethodFilter;
            ifnull 13
         7: .line 193
            aload 4 /* o */
            invokestatic org.graalvm.compiler.debug.DebugConfig.asJavaMethod:(Ljava/lang/Object;)Ljdk/vm/ci/meta/JavaMethod;
            astore 6 /* method */
        start local 6 // jdk.vm.ci.meta.JavaMethod method
         8: .line 194
            aload 6 /* method */
            ifnull 13
         9: .line 195
            getstatic org.graalvm.compiler.debug.DebugOptions.MethodFilterRootOnly:Lorg/graalvm/compiler/options/OptionKey;
            aload 0 /* this */
            getfield org.graalvm.compiler.debug.DebugConfigImpl.options:Lorg/graalvm/compiler/options/OptionValues;
            invokevirtual org.graalvm.compiler.options.OptionKey.getValue:(Lorg/graalvm/compiler/options/OptionValues;)Ljava/lang/Object;
            checkcast java.lang.Boolean
            invokevirtual java.lang.Boolean.booleanValue:()Z
            ifne 12
        10: .line 196
            aload 0 /* this */
            getfield org.graalvm.compiler.debug.DebugConfigImpl.methodFilter:[Lorg/graalvm/compiler/debug/MethodFilter;
            aload 6 /* method */
            invokestatic org.graalvm.compiler.debug.MethodFilter.matches:([Lorg/graalvm/compiler/debug/MethodFilter;Ljdk/vm/ci/meta/JavaMethod;)Z
            ifeq 13
        11: .line 197
            iconst_1
            ireturn
        12: .line 205
      StackMap locals: org.graalvm.compiler.debug.DebugConfigImpl org.graalvm.compiler.debug.DebugContext$Scope jdk.vm.ci.meta.JavaMethod java.lang.Iterable java.lang.Object java.util.Iterator jdk.vm.ci.meta.JavaMethod
      StackMap stack:
            aload 6 /* method */
            astore 2 /* lastMethod */
        end local 6 // jdk.vm.ci.meta.JavaMethod method
        end local 4 // java.lang.Object o
        13: .line 191
      StackMap locals: org.graalvm.compiler.debug.DebugConfigImpl org.graalvm.compiler.debug.DebugContext$Scope jdk.vm.ci.meta.JavaMethod java.lang.Iterable top java.util.Iterator
      StackMap stack:
            aload 5
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 5
        14: .line 210
            aload 2 /* lastMethod */
            ifnull 16
            aload 0 /* this */
            getfield org.graalvm.compiler.debug.DebugConfigImpl.methodFilter:[Lorg/graalvm/compiler/debug/MethodFilter;
            aload 2 /* lastMethod */
            invokestatic org.graalvm.compiler.debug.MethodFilter.matches:([Lorg/graalvm/compiler/debug/MethodFilter;Ljdk/vm/ci/meta/JavaMethod;)Z
            ifeq 16
        15: .line 211
            iconst_1
            ireturn
        16: .line 213
      StackMap locals: org.graalvm.compiler.debug.DebugConfigImpl org.graalvm.compiler.debug.DebugContext$Scope jdk.vm.ci.meta.JavaMethod java.lang.Iterable
      StackMap stack:
            iconst_0
            ireturn
        end local 3 // java.lang.Iterable context
        end local 2 // jdk.vm.ci.meta.JavaMethod lastMethod
        end local 1 // org.graalvm.compiler.debug.DebugContext$Scope scope
        end local 0 // org.graalvm.compiler.debug.DebugConfigImpl this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   17     0        this  Lorg/graalvm/compiler/debug/DebugConfigImpl;
            0   17     1       scope  Lorg/graalvm/compiler/debug/DebugContext$Scope;
            3   17     2  lastMethod  Ljdk/vm/ci/meta/JavaMethod;
            4   17     3     context  Ljava/lang/Iterable<Ljava/lang/Object;>;
            6   13     4           o  Ljava/lang/Object;
            8   13     6      method  Ljdk/vm/ci/meta/JavaMethod;
    MethodParameters:
       Name  Flags
      scope  

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.graalvm.compiler.debug.DebugConfigImpl this
         0: .line 219
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            astore 1 /* sb */
        start local 1 // java.lang.StringBuilder sb
         1: .line 220
            aload 1 /* sb */
            ldc "Debug config:"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         2: .line 221
            aload 1 /* sb */
            ldc "Log"
            aload 0 /* this */
            getfield org.graalvm.compiler.debug.DebugConfigImpl.logFilter:Lorg/graalvm/compiler/debug/DebugFilter;
            invokestatic org.graalvm.compiler.debug.DebugConfigImpl.add:(Ljava/lang/StringBuilder;Ljava/lang/String;Ljava/lang/Object;)V
         3: .line 222
            aload 1 /* sb */
            ldc "Count"
            aload 0 /* this */
            getfield org.graalvm.compiler.debug.DebugConfigImpl.countFilter:Lorg/graalvm/compiler/debug/DebugFilter;
            invokestatic org.graalvm.compiler.debug.DebugConfigImpl.add:(Ljava/lang/StringBuilder;Ljava/lang/String;Ljava/lang/Object;)V
         4: .line 223
            aload 1 /* sb */
            ldc "Time"
            aload 0 /* this */
            getfield org.graalvm.compiler.debug.DebugConfigImpl.timerFilter:Lorg/graalvm/compiler/debug/DebugFilter;
            invokestatic org.graalvm.compiler.debug.DebugConfigImpl.add:(Ljava/lang/StringBuilder;Ljava/lang/String;Ljava/lang/Object;)V
         5: .line 224
            aload 1 /* sb */
            ldc "Dump"
            aload 0 /* this */
            getfield org.graalvm.compiler.debug.DebugConfigImpl.dumpFilter:Lorg/graalvm/compiler/debug/DebugFilter;
            invokestatic org.graalvm.compiler.debug.DebugConfigImpl.add:(Ljava/lang/StringBuilder;Ljava/lang/String;Ljava/lang/Object;)V
         6: .line 225
            aload 1 /* sb */
            ldc "MethodFilter"
            aload 0 /* this */
            getfield org.graalvm.compiler.debug.DebugConfigImpl.methodFilter:[Lorg/graalvm/compiler/debug/MethodFilter;
            invokestatic org.graalvm.compiler.debug.DebugConfigImpl.add:(Ljava/lang/StringBuilder;Ljava/lang/String;Ljava/lang/Object;)V
         7: .line 226
            aload 1 /* sb */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 1 // java.lang.StringBuilder sb
        end local 0 // org.graalvm.compiler.debug.DebugConfigImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lorg/graalvm/compiler/debug/DebugConfigImpl;
            1    8     1    sb  Ljava/lang/StringBuilder;

  private static void add(java.lang.StringBuilder, java.lang.String, java.lang.Object);
    descriptor: (Ljava/lang/StringBuilder;Ljava/lang/String;Ljava/lang/Object;)V
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // java.lang.StringBuilder sb
        start local 1 // java.lang.String name
        start local 2 // java.lang.Object filter
         0: .line 230
            aload 2 /* filter */
            ifnull 8
         1: .line 231
            aload 0 /* sb */
            bipush 32
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
         2: .line 232
            aload 0 /* sb */
            aload 1 /* name */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         3: .line 233
            aload 0 /* sb */
            bipush 61
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
         4: .line 234
            aload 2 /* filter */
            instanceof java.lang.Object[]
            ifeq 7
         5: .line 235
            aload 0 /* sb */
            aload 2 /* filter */
            checkcast java.lang.Object[]
            invokestatic java.util.Arrays.toString:([Ljava/lang/Object;)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         6: .line 236
            goto 8
         7: .line 237
      StackMap locals:
      StackMap stack:
            aload 0 /* sb */
            aload 2 /* filter */
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         8: .line 240
      StackMap locals:
      StackMap stack:
            return
        end local 2 // java.lang.Object filter
        end local 1 // java.lang.String name
        end local 0 // java.lang.StringBuilder sb
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    9     0      sb  Ljava/lang/StringBuilder;
            0    9     1    name  Ljava/lang/String;
            0    9     2  filter  Ljava/lang/Object;
    MethodParameters:
        Name  Flags
      sb      
      name    
      filter  

  public java.lang.RuntimeException interceptException(org.graalvm.compiler.debug.DebugContext, java.lang.Throwable);
    descriptor: (Lorg/graalvm/compiler/debug/DebugContext;Ljava/lang/Throwable;)Ljava/lang/RuntimeException;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=9, locals=11, args_size=3
        start local 0 // org.graalvm.compiler.debug.DebugConfigImpl this
        start local 1 // org.graalvm.compiler.debug.DebugContext debug
        start local 2 // java.lang.Throwable e
         0: .line 244
            aload 2 /* e */
            instanceof jdk.vm.ci.code.BailoutException
            ifeq 6
         1: .line 245
            aload 2 /* e */
            instanceof org.graalvm.compiler.debug.CausableByCompilerAssert
            ifeq 2
            aload 2 /* e */
            checkcast org.graalvm.compiler.debug.CausableByCompilerAssert
            invokeinterface org.graalvm.compiler.debug.CausableByCompilerAssert.isCausedByCompilerAssert:()Z
            ifeq 2
            iconst_1
            goto 3
      StackMap locals:
      StackMap stack:
         2: iconst_0
      StackMap locals:
      StackMap stack: int
         3: istore 3 /* causedByCompilerAssert */
        start local 3 // boolean causedByCompilerAssert
         4: .line 246
            getstatic org.graalvm.compiler.debug.DebugOptions.InterceptBailout:Lorg/graalvm/compiler/options/OptionKey;
            aload 0 /* this */
            getfield org.graalvm.compiler.debug.DebugConfigImpl.options:Lorg/graalvm/compiler/options/OptionValues;
            invokevirtual org.graalvm.compiler.options.OptionKey.getValue:(Lorg/graalvm/compiler/options/OptionValues;)Ljava/lang/Object;
            checkcast java.lang.Boolean
            invokevirtual java.lang.Boolean.booleanValue:()Z
            ifne 6
            iload 3 /* causedByCompilerAssert */
            ifne 6
         5: .line 247
            aconst_null
            areturn
        end local 3 // boolean causedByCompilerAssert
         6: .line 251
      StackMap locals:
      StackMap stack:
            new org.graalvm.compiler.options.OptionValues
            dup
            aload 0 /* this */
            getfield org.graalvm.compiler.debug.DebugConfigImpl.options:Lorg/graalvm/compiler/options/OptionValues;
         7: .line 252
            getstatic org.graalvm.compiler.debug.DebugOptions.Count:Lorg/graalvm/compiler/options/OptionKey;
            aconst_null
            bipush 10
            anewarray java.lang.Object
            dup
            iconst_0
         8: .line 253
            getstatic org.graalvm.compiler.debug.DebugOptions.Time:Lorg/graalvm/compiler/options/OptionKey;
            aastore
            dup
            iconst_1
            aconst_null
            aastore
            dup
            iconst_2
         9: .line 254
            getstatic org.graalvm.compiler.debug.DebugOptions.TrackMemUse:Lorg/graalvm/compiler/options/OptionKey;
            aastore
            dup
            iconst_3
            aconst_null
            aastore
            dup
            iconst_4
        10: .line 255
            getstatic org.graalvm.compiler.debug.DebugOptions.Verify:Lorg/graalvm/compiler/options/OptionKey;
            aastore
            dup
            iconst_5
            aconst_null
            aastore
            dup
            bipush 6
        11: .line 256
            getstatic org.graalvm.compiler.debug.DebugOptions.Dump:Lorg/graalvm/compiler/options/OptionKey;
            aastore
            dup
            bipush 7
            ldc ":1"
            aastore
            dup
            bipush 8
        12: .line 257
            getstatic org.graalvm.compiler.debug.DebugOptions.Log:Lorg/graalvm/compiler/options/OptionKey;
            aastore
            dup
            bipush 9
            ldc ":1"
        13: .line 251
            aastore
            invokespecial org.graalvm.compiler.options.OptionValues.<init>:(Lorg/graalvm/compiler/options/OptionValues;Lorg/graalvm/compiler/options/OptionKey;Ljava/lang/Object;[Ljava/lang/Object;)V
            astore 3 /* interceptOptions */
        start local 3 // org.graalvm.compiler.options.OptionValues interceptOptions
        14: .line 258
            new org.graalvm.compiler.debug.DebugConfigImpl
            dup
            aload 3 /* interceptOptions */
            aload 0 /* this */
            getfield org.graalvm.compiler.debug.DebugConfigImpl.output:Ljava/io/PrintStream;
            aload 0 /* this */
            getfield org.graalvm.compiler.debug.DebugConfigImpl.dumpHandlers:Ljava/util/List;
            aload 0 /* this */
            getfield org.graalvm.compiler.debug.DebugConfigImpl.verifyHandlers:Ljava/util/List;
            invokespecial org.graalvm.compiler.debug.DebugConfigImpl.<init>:(Lorg/graalvm/compiler/options/OptionValues;Ljava/io/PrintStream;Ljava/util/List;Ljava/util/List;)V
            astore 4 /* config */
        start local 4 // org.graalvm.compiler.debug.DebugConfigImpl config
        15: .line 259
            aload 1 /* debug */
            getfield org.graalvm.compiler.debug.DebugContext.currentScope:Lorg/graalvm/compiler/debug/ScopeImpl;
            astore 5 /* scope */
        start local 5 // org.graalvm.compiler.debug.ScopeImpl scope
        16: .line 260
            aload 5 /* scope */
            aload 4 /* config */
            invokevirtual org.graalvm.compiler.debug.ScopeImpl.updateFlags:(Lorg/graalvm/compiler/debug/DebugConfigImpl;)V
        17: .line 262
            new java.io.ByteArrayOutputStream
            dup
            invokespecial java.io.ByteArrayOutputStream.<init>:()V
            astore 6 /* baos */
        start local 6 // java.io.ByteArrayOutputStream baos
        18: .line 263
            aload 2 /* e */
            new java.io.PrintStream
            dup
            aload 6 /* baos */
            invokespecial java.io.PrintStream.<init>:(Ljava/io/OutputStream;)V
            invokevirtual java.lang.Throwable.printStackTrace:(Ljava/io/PrintStream;)V
        19: .line 264
            aload 1 /* debug */
            ldc "Exception raised in scope %s: %s"
            aload 1 /* debug */
            invokevirtual org.graalvm.compiler.debug.DebugContext.getCurrentScopeName:()Ljava/lang/String;
            aload 6 /* baos */
            invokevirtual org.graalvm.compiler.debug.DebugContext.log:(Ljava/lang/String;Ljava/lang/Object;Ljava/lang/Object;)V
        20: .line 265
            new java.util.IdentityHashMap
            dup
            invokespecial java.util.IdentityHashMap.<init>:()V
            astore 7 /* firstSeen */
        start local 7 // java.util.Map firstSeen
        21: .line 266
            aload 1 /* debug */
            invokevirtual org.graalvm.compiler.debug.DebugContext.context:()Ljava/lang/Iterable;
            invokeinterface java.lang.Iterable.iterator:()Ljava/util/Iterator;
            astore 9
            goto 28
      StackMap locals: org.graalvm.compiler.debug.DebugConfigImpl org.graalvm.compiler.debug.DebugContext java.lang.Throwable org.graalvm.compiler.options.OptionValues org.graalvm.compiler.debug.DebugConfigImpl org.graalvm.compiler.debug.ScopeImpl java.io.ByteArrayOutputStream java.util.Map top java.util.Iterator
      StackMap stack:
        22: aload 9
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            astore 8 /* o */
        start local 8 // java.lang.Object o
        23: .line 268
            aload 7 /* firstSeen */
            aload 8 /* o */
            invokeinterface java.util.Map.containsKey:(Ljava/lang/Object;)Z
            ifne 28
        24: .line 269
            aload 7 /* firstSeen */
            aload 8 /* o */
            aload 8 /* o */
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
        25: .line 270
            getstatic org.graalvm.compiler.debug.DebugOptions.DumpOnError:Lorg/graalvm/compiler/options/OptionKey;
            aload 0 /* this */
            getfield org.graalvm.compiler.debug.DebugConfigImpl.options:Lorg/graalvm/compiler/options/OptionValues;
            invokevirtual org.graalvm.compiler.options.OptionKey.getValue:(Lorg/graalvm/compiler/options/OptionValues;)Ljava/lang/Object;
            checkcast java.lang.Boolean
            invokevirtual java.lang.Boolean.booleanValue:()Z
            ifne 26
            getstatic org.graalvm.compiler.debug.DebugOptions.Dump:Lorg/graalvm/compiler/options/OptionKey;
            aload 0 /* this */
            getfield org.graalvm.compiler.debug.DebugConfigImpl.options:Lorg/graalvm/compiler/options/OptionValues;
            invokevirtual org.graalvm.compiler.options.OptionKey.getValue:(Lorg/graalvm/compiler/options/OptionValues;)Ljava/lang/Object;
            ifnull 27
        26: .line 271
      StackMap locals: org.graalvm.compiler.debug.DebugConfigImpl org.graalvm.compiler.debug.DebugContext java.lang.Throwable org.graalvm.compiler.options.OptionValues org.graalvm.compiler.debug.DebugConfigImpl org.graalvm.compiler.debug.ScopeImpl java.io.ByteArrayOutputStream java.util.Map java.lang.Object java.util.Iterator
      StackMap stack:
            aload 1 /* debug */
            iconst_1
            aload 8 /* o */
            ldc "Exception: %s"
            aload 2 /* e */
            invokevirtual org.graalvm.compiler.debug.DebugContext.dump:(ILjava/lang/Object;Ljava/lang/String;Ljava/lang/Object;)V
        27: .line 273
      StackMap locals:
      StackMap stack:
            aload 1 /* debug */
            ldc "Context obj %s"
            aload 8 /* o */
            invokevirtual org.graalvm.compiler.debug.DebugContext.log:(Ljava/lang/String;Ljava/lang/Object;)V
        end local 8 // java.lang.Object o
        28: .line 266
      StackMap locals: org.graalvm.compiler.debug.DebugConfigImpl org.graalvm.compiler.debug.DebugContext java.lang.Throwable org.graalvm.compiler.options.OptionValues org.graalvm.compiler.debug.DebugConfigImpl org.graalvm.compiler.debug.ScopeImpl java.io.ByteArrayOutputStream java.util.Map top java.util.Iterator
      StackMap stack:
            aload 9
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 22
        end local 7 // java.util.Map firstSeen
        end local 6 // java.io.ByteArrayOutputStream baos
        29: .line 276
            goto 33
      StackMap locals: org.graalvm.compiler.debug.DebugConfigImpl org.graalvm.compiler.debug.DebugContext java.lang.Throwable org.graalvm.compiler.options.OptionValues org.graalvm.compiler.debug.DebugConfigImpl org.graalvm.compiler.debug.ScopeImpl
      StackMap stack: java.lang.Throwable
        30: astore 10
        31: .line 277
            aload 5 /* scope */
            aload 0 /* this */
            invokevirtual org.graalvm.compiler.debug.ScopeImpl.updateFlags:(Lorg/graalvm/compiler/debug/DebugConfigImpl;)V
        32: .line 278
            aload 10
            athrow
        33: .line 277
      StackMap locals:
      StackMap stack:
            aload 5 /* scope */
            aload 0 /* this */
            invokevirtual org.graalvm.compiler.debug.ScopeImpl.updateFlags:(Lorg/graalvm/compiler/debug/DebugConfigImpl;)V
        34: .line 279
            aconst_null
            areturn
        end local 5 // org.graalvm.compiler.debug.ScopeImpl scope
        end local 4 // org.graalvm.compiler.debug.DebugConfigImpl config
        end local 3 // org.graalvm.compiler.options.OptionValues interceptOptions
        end local 2 // java.lang.Throwable e
        end local 1 // org.graalvm.compiler.debug.DebugContext debug
        end local 0 // org.graalvm.compiler.debug.DebugConfigImpl this
      LocalVariableTable:
        Start  End  Slot                    Name  Signature
            0   35     0                    this  Lorg/graalvm/compiler/debug/DebugConfigImpl;
            0   35     1                   debug  Lorg/graalvm/compiler/debug/DebugContext;
            0   35     2                       e  Ljava/lang/Throwable;
            4    6     3  causedByCompilerAssert  Z
           14   35     3        interceptOptions  Lorg/graalvm/compiler/options/OptionValues;
           15   35     4                  config  Lorg/graalvm/compiler/debug/DebugConfigImpl;
           16   35     5                   scope  Lorg/graalvm/compiler/debug/ScopeImpl;
           18   29     6                    baos  Ljava/io/ByteArrayOutputStream;
           21   29     7               firstSeen  Ljava/util/Map<Ljava/lang/Object;Ljava/lang/Object;>;
           23   28     8                       o  Ljava/lang/Object;
      Exception table:
        from    to  target  type
          17    30      30  any
    MethodParameters:
       Name  Flags
      debug  
      e      

  public java.util.Collection<org.graalvm.compiler.debug.DebugDumpHandler> dumpHandlers();
    descriptor: ()Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.debug.DebugConfigImpl this
         0: .line 284
            aload 0 /* this */
            getfield org.graalvm.compiler.debug.DebugConfigImpl.dumpHandlers:Ljava/util/List;
            areturn
        end local 0 // org.graalvm.compiler.debug.DebugConfigImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/debug/DebugConfigImpl;
    Signature: ()Ljava/util/Collection<Lorg/graalvm/compiler/debug/DebugDumpHandler;>;

  public java.util.Collection<org.graalvm.compiler.debug.DebugVerifyHandler> verifyHandlers();
    descriptor: ()Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.debug.DebugConfigImpl this
         0: .line 289
            aload 0 /* this */
            getfield org.graalvm.compiler.debug.DebugConfigImpl.verifyHandlers:Ljava/util/List;
            areturn
        end local 0 // org.graalvm.compiler.debug.DebugConfigImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/debug/DebugConfigImpl;
    Signature: ()Ljava/util/Collection<Lorg/graalvm/compiler/debug/DebugVerifyHandler;>;
}
SourceFile: "DebugConfigImpl.java"
InnerClasses:
  public abstract Scope = org.graalvm.compiler.debug.DebugContext$Scope of org.graalvm.compiler.debug.DebugContext