public class org.graalvm.compiler.hotspot.replacements.BigIntegerSubstitutions
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.graalvm.compiler.hotspot.replacements.BigIntegerSubstitutions
  super_class: java.lang.Object
{
  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.hotspot.replacements.BigIntegerSubstitutions this
         0: .line 35
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // org.graalvm.compiler.hotspot.replacements.BigIntegerSubstitutions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/hotspot/replacements/BigIntegerSubstitutions;

  static int[] multiplyToLen(java.lang.Object, int[], int, int[], int, int[]);
    descriptor: (Ljava/lang/Object;[II[II[I)[I
    flags: (0x0008) ACC_STATIC
    Code:
      stack=5, locals=6, args_size=6
        start local 0 // java.lang.Object receiver
        start local 1 // int[] x
        start local 2 // int xlen
        start local 3 // int[] y
        start local 4 // int ylen
        start local 5 // int[] zIn
         0: .line 39
            aload 1 /* x */
            iload 2 /* xlen */
            aload 3 /* y */
            iload 4 /* ylen */
            aload 5 /* zIn */
            invokestatic org.graalvm.compiler.hotspot.replacements.BigIntegerSubstitutions.multiplyToLenStatic:([II[II[I)[I
            areturn
        end local 5 // int[] zIn
        end local 4 // int ylen
        end local 3 // int[] y
        end local 2 // int xlen
        end local 1 // int[] x
        end local 0 // java.lang.Object receiver
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0  receiver  Ljava/lang/Object;
            0    1     1         x  [I
            0    1     2      xlen  I
            0    1     3         y  [I
            0    1     4      ylen  I
            0    1     5       zIn  [I
    RuntimeVisibleAnnotations: 
      org.graalvm.compiler.api.replacements.MethodSubstitution(isStatic = false)
    MethodParameters:
          Name  Flags
      receiver  
      x         
      xlen      
      y         
      ylen      
      zIn       

  static int[] multiplyToLenStatic(int[], int, int[], int, int[]);
    descriptor: ([II[II[I)[I
    flags: (0x0008) ACC_STATIC
    Code:
      stack=6, locals=7, args_size=5
        start local 0 // int[] x
        start local 1 // int xlen
        start local 2 // int[] y
        start local 3 // int ylen
        start local 4 // int[] zIn
         0: .line 44
            aload 4 /* zIn */
            astore 5 /* zResult */
        start local 5 // int[] zResult
         1: .line 46
            aload 5 /* zResult */
            ifnull 2
            aload 5 /* zResult */
            arraylength
            iload 1 /* xlen */
            iload 3 /* ylen */
            iadd
            if_icmpge 5
         2: .line 47
      StackMap locals: int[]
      StackMap stack:
            iload 1 /* xlen */
            iload 3 /* ylen */
            iadd
            istore 6 /* zLen */
        start local 6 // int zLen
         3: .line 48
            iload 1 /* xlen */
            iload 3 /* ylen */
            iadd
            newarray 10
            astore 5 /* zResult */
         4: .line 49
            goto 6
        end local 6 // int zLen
         5: .line 50
      StackMap locals:
      StackMap stack:
            aload 4 /* zIn */
            arraylength
            istore 6 /* zLen */
        start local 6 // int zLen
         6: .line 52
      StackMap locals: int
      StackMap stack:
            aload 0 /* x */
            invokestatic org.graalvm.compiler.hotspot.replacements.HotSpotReplacementsUtil.arrayStart:([I)Lorg/graalvm/compiler/word/Word;
            iload 1 /* xlen */
            aload 2 /* y */
            invokestatic org.graalvm.compiler.hotspot.replacements.HotSpotReplacementsUtil.arrayStart:([I)Lorg/graalvm/compiler/word/Word;
            iload 3 /* ylen */
            aload 5 /* zResult */
            invokestatic org.graalvm.compiler.hotspot.replacements.HotSpotReplacementsUtil.arrayStart:([I)Lorg/graalvm/compiler/word/Word;
            iload 6 /* zLen */
            invokestatic org.graalvm.compiler.hotspot.HotSpotBackend.multiplyToLenStub:(Lorg/graalvm/compiler/word/Word;ILorg/graalvm/compiler/word/Word;ILorg/graalvm/compiler/word/Word;I)V
         7: .line 53
            aload 5 /* zResult */
            areturn
        end local 6 // int zLen
        end local 5 // int[] zResult
        end local 4 // int[] zIn
        end local 3 // int ylen
        end local 2 // int[] y
        end local 1 // int xlen
        end local 0 // int[] x
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    8     0        x  [I
            0    8     1     xlen  I
            0    8     2        y  [I
            0    8     3     ylen  I
            0    8     4      zIn  [I
            1    8     5  zResult  [I
            3    5     6     zLen  I
            6    8     6     zLen  I
    RuntimeVisibleAnnotations: 
      org.graalvm.compiler.api.replacements.MethodSubstitution(isStatic = true)
    MethodParameters:
      Name  Flags
      x     
      xlen  
      y     
      ylen  
      zIn   

  static int mulAdd(int[], int[], int, int, int);
    descriptor: ([I[IIII)I
    flags: (0x0008) ACC_STATIC
    Code:
      stack=5, locals=7, args_size=5
        start local 0 // int[] out
        start local 1 // int[] in
        start local 2 // int offset
        start local 3 // int len
        start local 4 // int k
         0: .line 58
            aload 0 /* out */
            invokestatic org.graalvm.compiler.api.directives.GraalDirectives.guardingNonNull:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast int[]
            astore 5 /* outNonNull */
        start local 5 // int[] outNonNull
         1: .line 59
            aload 5 /* outNonNull */
            arraylength
            iload 2 /* offset */
            isub
            istore 6 /* newOffset */
        start local 6 // int newOffset
         2: .line 60
            aload 5 /* outNonNull */
            invokestatic org.graalvm.compiler.hotspot.replacements.HotSpotReplacementsUtil.arrayStart:([I)Lorg/graalvm/compiler/word/Word;
            aload 1 /* in */
            invokestatic org.graalvm.compiler.hotspot.replacements.HotSpotReplacementsUtil.arrayStart:([I)Lorg/graalvm/compiler/word/Word;
            iload 6 /* newOffset */
            iload 3 /* len */
            iload 4 /* k */
            invokestatic org.graalvm.compiler.hotspot.HotSpotBackend.mulAddStub:(Lorg/graalvm/compiler/word/Word;Lorg/graalvm/compiler/word/Word;III)I
            ireturn
        end local 6 // int newOffset
        end local 5 // int[] outNonNull
        end local 4 // int k
        end local 3 // int len
        end local 2 // int offset
        end local 1 // int[] in
        end local 0 // int[] out
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    3     0         out  [I
            0    3     1          in  [I
            0    3     2      offset  I
            0    3     3         len  I
            0    3     4           k  I
            1    3     5  outNonNull  [I
            2    3     6   newOffset  I
    RuntimeVisibleAnnotations: 
      org.graalvm.compiler.api.replacements.MethodSubstitution(isStatic = true)
    MethodParameters:
        Name  Flags
      out     
      in      
      offset  
      len     
      k       

  static int implMulAdd(int[], int[], int, int, int);
    descriptor: ([I[IIII)I
    flags: (0x0008) ACC_STATIC
    Code:
      stack=5, locals=7, args_size=5
        start local 0 // int[] out
        start local 1 // int[] in
        start local 2 // int offset
        start local 3 // int len
        start local 4 // int k
         0: .line 65
            aload 0 /* out */
            invokestatic org.graalvm.compiler.api.directives.GraalDirectives.guardingNonNull:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast int[]
            astore 5 /* outNonNull */
        start local 5 // int[] outNonNull
         1: .line 66
            aload 5 /* outNonNull */
            arraylength
            iload 2 /* offset */
            isub
            istore 6 /* newOffset */
        start local 6 // int newOffset
         2: .line 67
            aload 5 /* outNonNull */
            invokestatic org.graalvm.compiler.hotspot.replacements.HotSpotReplacementsUtil.arrayStart:([I)Lorg/graalvm/compiler/word/Word;
            aload 1 /* in */
            invokestatic org.graalvm.compiler.hotspot.replacements.HotSpotReplacementsUtil.arrayStart:([I)Lorg/graalvm/compiler/word/Word;
            iload 6 /* newOffset */
            iload 3 /* len */
            iload 4 /* k */
            invokestatic org.graalvm.compiler.hotspot.HotSpotBackend.mulAddStub:(Lorg/graalvm/compiler/word/Word;Lorg/graalvm/compiler/word/Word;III)I
            ireturn
        end local 6 // int newOffset
        end local 5 // int[] outNonNull
        end local 4 // int k
        end local 3 // int len
        end local 2 // int offset
        end local 1 // int[] in
        end local 0 // int[] out
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    3     0         out  [I
            0    3     1          in  [I
            0    3     2      offset  I
            0    3     3         len  I
            0    3     4           k  I
            1    3     5  outNonNull  [I
            2    3     6   newOffset  I
    RuntimeVisibleAnnotations: 
      org.graalvm.compiler.api.replacements.MethodSubstitution(isStatic = true)
    MethodParameters:
        Name  Flags
      out     
      in      
      offset  
      len     
      k       

  static int[] implMontgomeryMultiply(int[], int[], int[], int, long, int[]);
    descriptor: ([I[I[IIJ[I)[I
    flags: (0x0008) ACC_STATIC
    Code:
      stack=7, locals=7, args_size=6
        start local 0 // int[] a
        start local 1 // int[] b
        start local 2 // int[] n
        start local 3 // int len
        start local 4 // long inv
        start local 6 // int[] product
         0: .line 72
            aload 0 /* a */
            invokestatic org.graalvm.compiler.hotspot.replacements.HotSpotReplacementsUtil.arrayStart:([I)Lorg/graalvm/compiler/word/Word;
            aload 1 /* b */
            invokestatic org.graalvm.compiler.hotspot.replacements.HotSpotReplacementsUtil.arrayStart:([I)Lorg/graalvm/compiler/word/Word;
            aload 2 /* n */
            invokestatic org.graalvm.compiler.hotspot.replacements.HotSpotReplacementsUtil.arrayStart:([I)Lorg/graalvm/compiler/word/Word;
            iload 3 /* len */
            lload 4 /* inv */
            aload 6 /* product */
            invokestatic org.graalvm.compiler.hotspot.replacements.HotSpotReplacementsUtil.arrayStart:([I)Lorg/graalvm/compiler/word/Word;
            invokestatic org.graalvm.compiler.hotspot.HotSpotBackend.implMontgomeryMultiply:(Lorg/graalvm/compiler/word/Word;Lorg/graalvm/compiler/word/Word;Lorg/graalvm/compiler/word/Word;IJLorg/graalvm/compiler/word/Word;)V
         1: .line 73
            aload 6 /* product */
            areturn
        end local 6 // int[] product
        end local 4 // long inv
        end local 3 // int len
        end local 2 // int[] n
        end local 1 // int[] b
        end local 0 // int[] a
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0        a  [I
            0    2     1        b  [I
            0    2     2        n  [I
            0    2     3      len  I
            0    2     4      inv  J
            0    2     6  product  [I
    RuntimeVisibleAnnotations: 
      org.graalvm.compiler.api.replacements.MethodSubstitution(isStatic = true)
    MethodParameters:
         Name  Flags
      a        
      b        
      n        
      len      
      inv      
      product  

  static int[] implMontgomerySquare(int[], int[], int, long, int[]);
    descriptor: ([I[IIJ[I)[I
    flags: (0x0008) ACC_STATIC
    Code:
      stack=6, locals=6, args_size=5
        start local 0 // int[] a
        start local 1 // int[] n
        start local 2 // int len
        start local 3 // long inv
        start local 5 // int[] product
         0: .line 79
            aload 0 /* a */
            invokestatic org.graalvm.compiler.hotspot.replacements.HotSpotReplacementsUtil.arrayStart:([I)Lorg/graalvm/compiler/word/Word;
            aload 1 /* n */
            invokestatic org.graalvm.compiler.hotspot.replacements.HotSpotReplacementsUtil.arrayStart:([I)Lorg/graalvm/compiler/word/Word;
            iload 2 /* len */
            lload 3 /* inv */
            aload 5 /* product */
            invokestatic org.graalvm.compiler.hotspot.replacements.HotSpotReplacementsUtil.arrayStart:([I)Lorg/graalvm/compiler/word/Word;
            invokestatic org.graalvm.compiler.hotspot.HotSpotBackend.implMontgomerySquare:(Lorg/graalvm/compiler/word/Word;Lorg/graalvm/compiler/word/Word;IJLorg/graalvm/compiler/word/Word;)V
         1: .line 80
            aload 5 /* product */
            areturn
        end local 5 // int[] product
        end local 3 // long inv
        end local 2 // int len
        end local 1 // int[] n
        end local 0 // int[] a
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0        a  [I
            0    2     1        n  [I
            0    2     2      len  I
            0    2     3      inv  J
            0    2     5  product  [I
    RuntimeVisibleAnnotations: 
      org.graalvm.compiler.api.replacements.MethodSubstitution(isStatic = true)
    MethodParameters:
         Name  Flags
      a        
      n        
      len      
      inv      
      product  

  static int[] implSquareToLen(int[], int, int[], int);
    descriptor: ([II[II)[I
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // int[] x
        start local 1 // int len
        start local 2 // int[] z
        start local 3 // int zLen
         0: .line 85
            aload 0 /* x */
            invokestatic org.graalvm.compiler.hotspot.replacements.HotSpotReplacementsUtil.arrayStart:([I)Lorg/graalvm/compiler/word/Word;
            iload 1 /* len */
            aload 2 /* z */
            invokestatic org.graalvm.compiler.hotspot.replacements.HotSpotReplacementsUtil.arrayStart:([I)Lorg/graalvm/compiler/word/Word;
            iload 3 /* zLen */
            invokestatic org.graalvm.compiler.hotspot.HotSpotBackend.implSquareToLen:(Lorg/graalvm/compiler/word/Word;ILorg/graalvm/compiler/word/Word;I)V
         1: .line 86
            aload 2 /* z */
            areturn
        end local 3 // int zLen
        end local 2 // int[] z
        end local 1 // int len
        end local 0 // int[] x
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0     x  [I
            0    2     1   len  I
            0    2     2     z  [I
            0    2     3  zLen  I
    RuntimeVisibleAnnotations: 
      org.graalvm.compiler.api.replacements.MethodSubstitution(isStatic = true)
    MethodParameters:
      Name  Flags
      x     
      len   
      z     
      zLen  
}
SourceFile: "BigIntegerSubstitutions.java"
    RuntimeVisibleAnnotations: 
      org.graalvm.compiler.api.replacements.ClassSubstitution(className = {"java.math.BigInteger"}, optional = true)