public class org.graalvm.compiler.debug.internal.DebugHistogramImpl implements org.graalvm.compiler.debug.DebugHistogram
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.graalvm.compiler.debug.internal.DebugHistogramImpl
  super_class: java.lang.Object
{
  private final java.lang.String name;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private java.util.HashMap<java.lang.Object, org.graalvm.compiler.debug.DebugHistogram$CountedValue> map;
    descriptor: Ljava/util/HashMap;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/HashMap<Ljava/lang/Object;Lorg/graalvm/compiler/debug/DebugHistogram$CountedValue;>;

  public void <init>(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.graalvm.compiler.debug.internal.DebugHistogramImpl this
        start local 1 // java.lang.String name
         0: .line 37
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 35
            aload 0 /* this */
            new java.util.HashMap
            dup
            invokespecial java.util.HashMap.<init>:()V
            putfield org.graalvm.compiler.debug.internal.DebugHistogramImpl.map:Ljava/util/HashMap;
         2: .line 38
            aload 0 /* this */
            aload 1 /* name */
            putfield org.graalvm.compiler.debug.internal.DebugHistogramImpl.name:Ljava/lang/String;
         3: .line 39
            return
        end local 1 // java.lang.String name
        end local 0 // org.graalvm.compiler.debug.internal.DebugHistogramImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/graalvm/compiler/debug/internal/DebugHistogramImpl;
            0    4     1  name  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      name  

  public void add(java.lang.Object);
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=3, args_size=2
        start local 0 // org.graalvm.compiler.debug.internal.DebugHistogramImpl this
        start local 1 // java.lang.Object value
         0: .line 43
            aload 0 /* this */
            getfield org.graalvm.compiler.debug.internal.DebugHistogramImpl.map:Ljava/util/HashMap;
            aload 1 /* value */
            invokevirtual java.util.HashMap.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast org.graalvm.compiler.debug.DebugHistogram$CountedValue
            astore 2 /* cv */
        start local 2 // org.graalvm.compiler.debug.DebugHistogram$CountedValue cv
         1: .line 44
            aload 2 /* cv */
            ifnonnull 4
         2: .line 45
            aload 0 /* this */
            getfield org.graalvm.compiler.debug.internal.DebugHistogramImpl.map:Ljava/util/HashMap;
            aload 1 /* value */
            new org.graalvm.compiler.debug.DebugHistogram$CountedValue
            dup
            lconst_1
            aload 1 /* value */
            invokespecial org.graalvm.compiler.debug.DebugHistogram$CountedValue.<init>:(JLjava/lang/Object;)V
            invokevirtual java.util.HashMap.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         3: .line 46
            goto 5
         4: .line 47
      StackMap locals: org.graalvm.compiler.debug.DebugHistogram$CountedValue
      StackMap stack:
            aload 2 /* cv */
            invokevirtual org.graalvm.compiler.debug.DebugHistogram$CountedValue.inc:()V
         5: .line 49
      StackMap locals:
      StackMap stack:
            return
        end local 2 // org.graalvm.compiler.debug.DebugHistogram$CountedValue cv
        end local 1 // java.lang.Object value
        end local 0 // org.graalvm.compiler.debug.internal.DebugHistogramImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lorg/graalvm/compiler/debug/internal/DebugHistogramImpl;
            0    6     1  value  Ljava/lang/Object;
            1    6     2     cv  Lorg/graalvm/compiler/debug/DebugHistogram$CountedValue;
    MethodParameters:
       Name  Flags
      value  

  public void add(java.lang.Object, long);
    descriptor: (Ljava/lang/Object;J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=5, args_size=3
        start local 0 // org.graalvm.compiler.debug.internal.DebugHistogramImpl this
        start local 1 // java.lang.Object value
        start local 2 // long count
         0: .line 53
            aload 0 /* this */
            getfield org.graalvm.compiler.debug.internal.DebugHistogramImpl.map:Ljava/util/HashMap;
            aload 1 /* value */
            invokevirtual java.util.HashMap.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast org.graalvm.compiler.debug.DebugHistogram$CountedValue
            astore 4 /* cv */
        start local 4 // org.graalvm.compiler.debug.DebugHistogram$CountedValue cv
         1: .line 54
            aload 4 /* cv */
            ifnonnull 4
         2: .line 55
            aload 0 /* this */
            getfield org.graalvm.compiler.debug.internal.DebugHistogramImpl.map:Ljava/util/HashMap;
            aload 1 /* value */
            new org.graalvm.compiler.debug.DebugHistogram$CountedValue
            dup
            lload 2 /* count */
            aload 1 /* value */
            invokespecial org.graalvm.compiler.debug.DebugHistogram$CountedValue.<init>:(JLjava/lang/Object;)V
            invokevirtual java.util.HashMap.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         3: .line 56
            goto 5
         4: .line 57
      StackMap locals: org.graalvm.compiler.debug.DebugHistogram$CountedValue
      StackMap stack:
            aload 4 /* cv */
            lload 2 /* count */
            invokevirtual org.graalvm.compiler.debug.DebugHistogram$CountedValue.add:(J)V
         5: .line 59
      StackMap locals:
      StackMap stack:
            return
        end local 4 // org.graalvm.compiler.debug.DebugHistogram$CountedValue cv
        end local 2 // long count
        end local 1 // java.lang.Object value
        end local 0 // org.graalvm.compiler.debug.internal.DebugHistogramImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lorg/graalvm/compiler/debug/internal/DebugHistogramImpl;
            0    6     1  value  Ljava/lang/Object;
            0    6     2  count  J
            1    6     4     cv  Lorg/graalvm/compiler/debug/DebugHistogram$CountedValue;
    MethodParameters:
       Name  Flags
      value  
      count  

  public java.lang.String getName();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.debug.internal.DebugHistogramImpl this
         0: .line 63
            aload 0 /* this */
            getfield org.graalvm.compiler.debug.internal.DebugHistogramImpl.name:Ljava/lang/String;
            areturn
        end local 0 // org.graalvm.compiler.debug.internal.DebugHistogramImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/debug/internal/DebugHistogramImpl;

  public java.util.List<org.graalvm.compiler.debug.DebugHistogram$CountedValue> getValues();
    descriptor: ()Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.graalvm.compiler.debug.internal.DebugHistogramImpl this
         0: .line 68
            new java.util.ArrayList
            dup
            aload 0 /* this */
            getfield org.graalvm.compiler.debug.internal.DebugHistogramImpl.map:Ljava/util/HashMap;
            invokevirtual java.util.HashMap.values:()Ljava/util/Collection;
            invokespecial java.util.ArrayList.<init>:(Ljava/util/Collection;)V
            astore 1 /* res */
        start local 1 // java.util.ArrayList res
         1: .line 69
            aload 1 /* res */
            invokestatic java.util.Collections.sort:(Ljava/util/List;)V
         2: .line 70
            aload 1 /* res */
            areturn
        end local 1 // java.util.ArrayList res
        end local 0 // org.graalvm.compiler.debug.internal.DebugHistogramImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/graalvm/compiler/debug/internal/DebugHistogramImpl;
            1    3     1   res  Ljava/util/ArrayList<Lorg/graalvm/compiler/debug/DebugHistogram$CountedValue;>;
    Signature: ()Ljava/util/List<Lorg/graalvm/compiler/debug/DebugHistogram$CountedValue;>;
}
SourceFile: "DebugHistogramImpl.java"
InnerClasses:
  public CountedValue = org.graalvm.compiler.debug.DebugHistogram$CountedValue of org.graalvm.compiler.debug.DebugHistogram