public class org.graalvm.compiler.nodes.TypeCheckHints
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.graalvm.compiler.nodes.TypeCheckHints
  super_class: java.lang.Object
{
  private static final org.graalvm.compiler.nodes.TypeCheckHints$Hint[] NO_HINTS;
    descriptor: [Lorg/graalvm/compiler/nodes/TypeCheckHints$Hint;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  public final jdk.vm.ci.meta.ResolvedJavaType exact;
    descriptor: Ljdk/vm/ci/meta/ResolvedJavaType;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL

  public final org.graalvm.compiler.nodes.TypeCheckHints$Hint[] hints;
    descriptor: [Lorg/graalvm/compiler/nodes/TypeCheckHints$Hint;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL

  public final jdk.vm.ci.meta.JavaTypeProfile profile;
    descriptor: Ljdk/vm/ci/meta/JavaTypeProfile;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL

  public final double hintHitProbability;
    descriptor: D
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 63
            iconst_0
            anewarray org.graalvm.compiler.nodes.TypeCheckHints$Hint
            putstatic org.graalvm.compiler.nodes.TypeCheckHints.NO_HINTS:[Lorg/graalvm/compiler/nodes/TypeCheckHints$Hint;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(org.graalvm.compiler.core.common.type.TypeReference, jdk.vm.ci.meta.JavaTypeProfile, jdk.vm.ci.meta.Assumptions, double, int);
    descriptor: (Lorg/graalvm/compiler/core/common/type/TypeReference;Ljdk/vm/ci/meta/JavaTypeProfile;Ljdk/vm/ci/meta/Assumptions;DI)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=8, args_size=6
        start local 0 // org.graalvm.compiler.nodes.TypeCheckHints this
        start local 1 // org.graalvm.compiler.core.common.type.TypeReference targetType
        start local 2 // jdk.vm.ci.meta.JavaTypeProfile profile
        start local 3 // jdk.vm.ci.meta.Assumptions assumptions
        start local 4 // double minHintHitProbability
        start local 6 // int maxHints
         0: .line 99
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 100
            aload 0 /* this */
            aload 2 /* profile */
            putfield org.graalvm.compiler.nodes.TypeCheckHints.profile:Ljdk/vm/ci/meta/JavaTypeProfile;
         2: .line 101
            aload 1 /* targetType */
            ifnull 5
            aload 1 /* targetType */
            invokevirtual org.graalvm.compiler.core.common.type.TypeReference.isExact:()Z
            ifeq 5
         3: .line 102
            aload 0 /* this */
            aload 1 /* targetType */
            invokevirtual org.graalvm.compiler.core.common.type.TypeReference.getType:()Ljdk/vm/ci/meta/ResolvedJavaType;
            putfield org.graalvm.compiler.nodes.TypeCheckHints.exact:Ljdk/vm/ci/meta/ResolvedJavaType;
         4: .line 103
            goto 6
         5: .line 104
      StackMap locals: org.graalvm.compiler.nodes.TypeCheckHints org.graalvm.compiler.core.common.type.TypeReference jdk.vm.ci.meta.JavaTypeProfile jdk.vm.ci.meta.Assumptions double int
      StackMap stack:
            aload 0 /* this */
            aconst_null
            putfield org.graalvm.compiler.nodes.TypeCheckHints.exact:Ljdk/vm/ci/meta/ResolvedJavaType;
         6: .line 106
      StackMap locals:
      StackMap stack:
            iconst_1
            anewarray java.lang.Double
            astore 7 /* hitProbability */
        start local 7 // java.lang.Double[] hitProbability
         7: .line 107
            aload 0 /* this */
            aload 1 /* targetType */
            aload 2 /* profile */
            dload 4 /* minHintHitProbability */
            iload 6 /* maxHints */
            aload 7 /* hitProbability */
            invokestatic org.graalvm.compiler.nodes.TypeCheckHints.makeHints:(Lorg/graalvm/compiler/core/common/type/TypeReference;Ljdk/vm/ci/meta/JavaTypeProfile;DI[Ljava/lang/Double;)[Lorg/graalvm/compiler/nodes/TypeCheckHints$Hint;
            putfield org.graalvm.compiler.nodes.TypeCheckHints.hints:[Lorg/graalvm/compiler/nodes/TypeCheckHints$Hint;
         8: .line 108
            aload 0 /* this */
            aload 7 /* hitProbability */
            iconst_0
            aaload
            invokevirtual java.lang.Double.doubleValue:()D
            putfield org.graalvm.compiler.nodes.TypeCheckHints.hintHitProbability:D
         9: .line 109
            return
        end local 7 // java.lang.Double[] hitProbability
        end local 6 // int maxHints
        end local 4 // double minHintHitProbability
        end local 3 // jdk.vm.ci.meta.Assumptions assumptions
        end local 2 // jdk.vm.ci.meta.JavaTypeProfile profile
        end local 1 // org.graalvm.compiler.core.common.type.TypeReference targetType
        end local 0 // org.graalvm.compiler.nodes.TypeCheckHints this
      LocalVariableTable:
        Start  End  Slot                   Name  Signature
            0   10     0                   this  Lorg/graalvm/compiler/nodes/TypeCheckHints;
            0   10     1             targetType  Lorg/graalvm/compiler/core/common/type/TypeReference;
            0   10     2                profile  Ljdk/vm/ci/meta/JavaTypeProfile;
            0   10     3            assumptions  Ljdk/vm/ci/meta/Assumptions;
            0   10     4  minHintHitProbability  D
            0   10     6               maxHints  I
            7   10     7         hitProbability  [Ljava/lang/Double;
    MethodParameters:
                       Name  Flags
      targetType             
      profile                
      assumptions            
      minHintHitProbability  
      maxHints               

  private static org.graalvm.compiler.nodes.TypeCheckHints$Hint[] makeHints(org.graalvm.compiler.core.common.type.TypeReference, jdk.vm.ci.meta.JavaTypeProfile, double, int, java.lang.Double[]);
    descriptor: (Lorg/graalvm/compiler/core/common/type/TypeReference;Ljdk/vm/ci/meta/JavaTypeProfile;DI[Ljava/lang/Double;)[Lorg/graalvm/compiler/nodes/TypeCheckHints$Hint;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=7, locals=18, args_size=5
        start local 0 // org.graalvm.compiler.core.common.type.TypeReference targetType
        start local 1 // jdk.vm.ci.meta.JavaTypeProfile profile
        start local 2 // double minHintHitProbability
        start local 4 // int maxHints
        start local 5 // java.lang.Double[] hitProbability
         0: .line 112
            dconst_0
            dstore 6 /* hitProb */
        start local 6 // double hitProb
         1: .line 113
            getstatic org.graalvm.compiler.nodes.TypeCheckHints.NO_HINTS:[Lorg/graalvm/compiler/nodes/TypeCheckHints$Hint;
            astore 8 /* hintsBuf */
        start local 8 // org.graalvm.compiler.nodes.TypeCheckHints$Hint[] hintsBuf
         2: .line 114
            aload 1 /* profile */
            ifnull 24
         3: .line 115
            aload 1 /* profile */
            invokevirtual jdk.vm.ci.meta.JavaTypeProfile.getNotRecordedProbability:()D
            dstore 9 /* notRecordedTypes */
        start local 9 // double notRecordedTypes
         4: .line 116
            aload 1 /* profile */
            invokevirtual jdk.vm.ci.meta.JavaTypeProfile.getTypes:()[Ljdk/vm/ci/meta/JavaTypeProfile$ProfiledType;
            astore 11 /* ptypes */
        start local 11 // jdk.vm.ci.meta.JavaTypeProfile$ProfiledType[] ptypes
         5: .line 117
            dload 9 /* notRecordedTypes */
            dconst_1
            dload 2 /* minHintHitProbability */
            dsub
            dcmpg
            ifge 24
            aload 11 /* ptypes */
            ifnull 24
            aload 11 /* ptypes */
            arraylength
            ifle 24
         6: .line 118
            aload 11 /* ptypes */
            arraylength
            anewarray org.graalvm.compiler.nodes.TypeCheckHints$Hint
            astore 8 /* hintsBuf */
         7: .line 119
            iconst_0
            istore 12 /* hintCount */
        start local 12 // int hintCount
         8: .line 120
            aload 11 /* ptypes */
            dup
            astore 16
            arraylength
            istore 15
            iconst_0
            istore 14
            goto 17
      StackMap locals: org.graalvm.compiler.core.common.type.TypeReference jdk.vm.ci.meta.JavaTypeProfile double int java.lang.Double[] double org.graalvm.compiler.nodes.TypeCheckHints$Hint[] double jdk.vm.ci.meta.JavaTypeProfile$ProfiledType[] int top int int jdk.vm.ci.meta.JavaTypeProfile$ProfiledType[]
      StackMap stack:
         9: aload 16
            iload 14
            aaload
            astore 13 /* ptype */
        start local 13 // jdk.vm.ci.meta.JavaTypeProfile$ProfiledType ptype
        10: .line 121
            aload 0 /* targetType */
            ifnull 14
        11: .line 122
            aload 13 /* ptype */
            invokevirtual jdk.vm.ci.meta.JavaTypeProfile$ProfiledType.getType:()Ljdk/vm/ci/meta/ResolvedJavaType;
            astore 17 /* hintType */
        start local 17 // jdk.vm.ci.meta.ResolvedJavaType hintType
        12: .line 123
            aload 8 /* hintsBuf */
            iload 12 /* hintCount */
            iinc 12 /* hintCount */ 1
            new org.graalvm.compiler.nodes.TypeCheckHints$Hint
            dup
            aload 17 /* hintType */
            aload 0 /* targetType */
            invokevirtual org.graalvm.compiler.core.common.type.TypeReference.getType:()Ljdk/vm/ci/meta/ResolvedJavaType;
            aload 17 /* hintType */
            invokeinterface jdk.vm.ci.meta.ResolvedJavaType.isAssignableFrom:(Ljdk/vm/ci/meta/ResolvedJavaType;)Z
            invokespecial org.graalvm.compiler.nodes.TypeCheckHints$Hint.<init>:(Ljdk/vm/ci/meta/ResolvedJavaType;Z)V
            aastore
        13: .line 124
            dload 6 /* hitProb */
            aload 13 /* ptype */
            invokevirtual jdk.vm.ci.meta.JavaTypeProfile$ProfiledType.getProbability:()D
            dadd
            dstore 6 /* hitProb */
        end local 17 // jdk.vm.ci.meta.ResolvedJavaType hintType
        14: .line 126
      StackMap locals: org.graalvm.compiler.core.common.type.TypeReference jdk.vm.ci.meta.JavaTypeProfile double int java.lang.Double[] double org.graalvm.compiler.nodes.TypeCheckHints$Hint[] double jdk.vm.ci.meta.JavaTypeProfile$ProfiledType[] int jdk.vm.ci.meta.JavaTypeProfile$ProfiledType int int jdk.vm.ci.meta.JavaTypeProfile$ProfiledType[]
      StackMap stack:
            iload 12 /* hintCount */
            iload 4 /* maxHints */
            if_icmpne 16
        15: .line 127
            goto 18
        end local 13 // jdk.vm.ci.meta.JavaTypeProfile$ProfiledType ptype
        16: .line 120
      StackMap locals: org.graalvm.compiler.core.common.type.TypeReference jdk.vm.ci.meta.JavaTypeProfile double int java.lang.Double[] double org.graalvm.compiler.nodes.TypeCheckHints$Hint[] double jdk.vm.ci.meta.JavaTypeProfile$ProfiledType[] int top int int jdk.vm.ci.meta.JavaTypeProfile$ProfiledType[]
      StackMap stack:
            iinc 14 1
      StackMap locals:
      StackMap stack:
        17: iload 14
            iload 15
            if_icmplt 9
        18: .line 130
      StackMap locals: org.graalvm.compiler.core.common.type.TypeReference jdk.vm.ci.meta.JavaTypeProfile double int java.lang.Double[] double org.graalvm.compiler.nodes.TypeCheckHints$Hint[] double jdk.vm.ci.meta.JavaTypeProfile$ProfiledType[] int
      StackMap stack:
            dload 6 /* hitProb */
            dload 2 /* minHintHitProbability */
            dcmpl
            iflt 22
        19: .line 131
            aload 8 /* hintsBuf */
            arraylength
            iload 12 /* hintCount */
            if_icmpne 20
            iload 12 /* hintCount */
            iload 4 /* maxHints */
            if_icmple 24
        20: .line 132
      StackMap locals:
      StackMap stack:
            aload 8 /* hintsBuf */
            iload 4 /* maxHints */
            iload 12 /* hintCount */
            invokestatic java.lang.Math.min:(II)I
            invokestatic java.util.Arrays.copyOf:([Ljava/lang/Object;I)[Ljava/lang/Object;
            checkcast org.graalvm.compiler.nodes.TypeCheckHints$Hint[]
            astore 8 /* hintsBuf */
        21: .line 134
            goto 24
        22: .line 135
      StackMap locals:
      StackMap stack:
            getstatic org.graalvm.compiler.nodes.TypeCheckHints.NO_HINTS:[Lorg/graalvm/compiler/nodes/TypeCheckHints$Hint;
            astore 8 /* hintsBuf */
        23: .line 136
            dconst_0
            dstore 6 /* hitProb */
        end local 12 // int hintCount
        end local 11 // jdk.vm.ci.meta.JavaTypeProfile$ProfiledType[] ptypes
        end local 9 // double notRecordedTypes
        24: .line 140
      StackMap locals:
      StackMap stack:
            aload 5 /* hitProbability */
            iconst_0
            dload 6 /* hitProb */
            invokestatic java.lang.Double.valueOf:(D)Ljava/lang/Double;
            aastore
        25: .line 141
            aload 8 /* hintsBuf */
            areturn
        end local 8 // org.graalvm.compiler.nodes.TypeCheckHints$Hint[] hintsBuf
        end local 6 // double hitProb
        end local 5 // java.lang.Double[] hitProbability
        end local 4 // int maxHints
        end local 2 // double minHintHitProbability
        end local 1 // jdk.vm.ci.meta.JavaTypeProfile profile
        end local 0 // org.graalvm.compiler.core.common.type.TypeReference targetType
      LocalVariableTable:
        Start  End  Slot                   Name  Signature
            0   26     0             targetType  Lorg/graalvm/compiler/core/common/type/TypeReference;
            0   26     1                profile  Ljdk/vm/ci/meta/JavaTypeProfile;
            0   26     2  minHintHitProbability  D
            0   26     4               maxHints  I
            0   26     5         hitProbability  [Ljava/lang/Double;
            1   26     6                hitProb  D
            2   26     8               hintsBuf  [Lorg/graalvm/compiler/nodes/TypeCheckHints$Hint;
            4   24     9       notRecordedTypes  D
            5   24    11                 ptypes  [Ljdk/vm/ci/meta/JavaTypeProfile$ProfiledType;
            8   24    12              hintCount  I
           10   16    13                  ptype  Ljdk/vm/ci/meta/JavaTypeProfile$ProfiledType;
           12   14    17               hintType  Ljdk/vm/ci/meta/ResolvedJavaType;
    MethodParameters:
                       Name  Flags
      targetType             
      profile                
      minHintHitProbability  
      maxHints               
      hitProbability         
}
SourceFile: "TypeCheckHints.java"
NestMembers:
  org.graalvm.compiler.nodes.TypeCheckHints$Hint
InnerClasses:
  public ProfiledType = jdk.vm.ci.meta.JavaTypeProfile$ProfiledType of jdk.vm.ci.meta.JavaTypeProfile
  public Hint = org.graalvm.compiler.nodes.TypeCheckHints$Hint of org.graalvm.compiler.nodes.TypeCheckHints