public abstract class sun.security.util.math.intpoly.IntegerPolynomial implements sun.security.util.math.IntegerFieldModuloP
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: sun.security.util.math.intpoly.IntegerPolynomial
  super_class: java.lang.Object
{
  protected static final java.math.BigInteger TWO;
    descriptor: Ljava/math/BigInteger;
    flags: (0x001c) ACC_PROTECTED, ACC_STATIC, ACC_FINAL

  protected final int numLimbs;
    descriptor: I
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  private final java.math.BigInteger modulus;
    descriptor: Ljava/math/BigInteger;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  protected final int bitsPerLimb;
    descriptor: I
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  private final long[] posModLimbs;
    descriptor: [J
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int maxAdds;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 66
            ldc 2
            invokestatic java.math.BigInteger.valueOf:(J)Ljava/math/BigInteger;
            putstatic sun.security.util.math.intpoly.IntegerPolynomial.TWO:Ljava/math/BigInteger;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  protected abstract void reduce(long[]);
    descriptor: ([J)V
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT
    MethodParameters:
      Name  Flags
      a     

  protected void multByInt(long[], long);
    descriptor: ([JJ)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=6, locals=5, args_size=3
        start local 0 // sun.security.util.math.intpoly.IntegerPolynomial this
        start local 1 // long[] a
        start local 2 // long b
         0: .line 86
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         1: goto 4
         2: .line 87
      StackMap locals: int
      StackMap stack:
            aload 1 /* a */
            iload 4 /* i */
            dup2
            laload
            lload 2 /* b */
            lmul
            lastore
         3: .line 86
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
         4: iload 4 /* i */
            aload 1 /* a */
            arraylength
            if_icmplt 2
        end local 4 // int i
         5: .line 89
            aload 0 /* this */
            aload 1 /* a */
            invokevirtual sun.security.util.math.intpoly.IntegerPolynomial.reduce:([J)V
         6: .line 90
            return
        end local 2 // long b
        end local 1 // long[] a
        end local 0 // sun.security.util.math.intpoly.IntegerPolynomial this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lsun/security/util/math/intpoly/IntegerPolynomial;
            0    7     1     a  [J
            0    7     2     b  J
            1    5     4     i  I
    MethodParameters:
      Name  Flags
      a     
      b     

  protected abstract void mult(long[], long[], long[]);
    descriptor: ([J[J[J)V
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT
    MethodParameters:
      Name  Flags
      a     
      b     
      r     

  protected abstract void square(long[], long[]);
    descriptor: ([J[J)V
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT
    MethodParameters:
      Name  Flags
      a     
      r     

  void <init>(int, int, int, java.math.BigInteger);
    descriptor: (IIILjava/math/BigInteger;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=5, args_size=5
        start local 0 // sun.security.util.math.intpoly.IntegerPolynomial this
        start local 1 // int bitsPerLimb
        start local 2 // int numLimbs
        start local 3 // int maxAdds
        start local 4 // java.math.BigInteger modulus
         0: .line 108
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 114
            aload 0 /* this */
            iload 2 /* numLimbs */
            putfield sun.security.util.math.intpoly.IntegerPolynomial.numLimbs:I
         2: .line 115
            aload 0 /* this */
            aload 4 /* modulus */
            putfield sun.security.util.math.intpoly.IntegerPolynomial.modulus:Ljava/math/BigInteger;
         3: .line 116
            aload 0 /* this */
            iload 1 /* bitsPerLimb */
            putfield sun.security.util.math.intpoly.IntegerPolynomial.bitsPerLimb:I
         4: .line 117
            aload 0 /* this */
            iload 3 /* maxAdds */
            putfield sun.security.util.math.intpoly.IntegerPolynomial.maxAdds:I
         5: .line 119
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual sun.security.util.math.intpoly.IntegerPolynomial.setPosModLimbs:()[J
            putfield sun.security.util.math.intpoly.IntegerPolynomial.posModLimbs:[J
         6: .line 120
            return
        end local 4 // java.math.BigInteger modulus
        end local 3 // int maxAdds
        end local 2 // int numLimbs
        end local 1 // int bitsPerLimb
        end local 0 // sun.security.util.math.intpoly.IntegerPolynomial this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    7     0         this  Lsun/security/util/math/intpoly/IntegerPolynomial;
            0    7     1  bitsPerLimb  I
            0    7     2     numLimbs  I
            0    7     3      maxAdds  I
            0    7     4      modulus  Ljava/math/BigInteger;
    MethodParameters:
             Name  Flags
      bitsPerLimb  
      numLimbs     
      maxAdds      
      modulus      

  private long[] setPosModLimbs();
    descriptor: ()[J
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // sun.security.util.math.intpoly.IntegerPolynomial this
         0: .line 123
            aload 0 /* this */
            getfield sun.security.util.math.intpoly.IntegerPolynomial.numLimbs:I
            newarray 11
            astore 1 /* result */
        start local 1 // long[] result
         1: .line 124
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.security.util.math.intpoly.IntegerPolynomial.modulus:Ljava/math/BigInteger;
            aload 1 /* result */
            invokevirtual sun.security.util.math.intpoly.IntegerPolynomial.setLimbsValuePositive:(Ljava/math/BigInteger;[J)V
         2: .line 125
            aload 1 /* result */
            areturn
        end local 1 // long[] result
        end local 0 // sun.security.util.math.intpoly.IntegerPolynomial this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lsun/security/util/math/intpoly/IntegerPolynomial;
            1    3     1  result  [J

  protected int getNumLimbs();
    descriptor: ()I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.security.util.math.intpoly.IntegerPolynomial this
         0: .line 129
            aload 0 /* this */
            getfield sun.security.util.math.intpoly.IntegerPolynomial.numLimbs:I
            ireturn
        end local 0 // sun.security.util.math.intpoly.IntegerPolynomial this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/util/math/intpoly/IntegerPolynomial;

  public int getMaxAdds();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.security.util.math.intpoly.IntegerPolynomial this
         0: .line 133
            aload 0 /* this */
            getfield sun.security.util.math.intpoly.IntegerPolynomial.maxAdds:I
            ireturn
        end local 0 // sun.security.util.math.intpoly.IntegerPolynomial this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/util/math/intpoly/IntegerPolynomial;

  public java.math.BigInteger getSize();
    descriptor: ()Ljava/math/BigInteger;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.security.util.math.intpoly.IntegerPolynomial this
         0: .line 138
            aload 0 /* this */
            getfield sun.security.util.math.intpoly.IntegerPolynomial.modulus:Ljava/math/BigInteger;
            areturn
        end local 0 // sun.security.util.math.intpoly.IntegerPolynomial this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/util/math/intpoly/IntegerPolynomial;

  public sun.security.util.math.intpoly.IntegerPolynomial$ImmutableElement get0();
    descriptor: ()Lsun/security/util/math/intpoly/IntegerPolynomial$ImmutableElement;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // sun.security.util.math.intpoly.IntegerPolynomial this
         0: .line 143
            new sun.security.util.math.intpoly.IntegerPolynomial$ImmutableElement
            dup
            aload 0 /* this */
            iconst_0
            invokespecial sun.security.util.math.intpoly.IntegerPolynomial$ImmutableElement.<init>:(Lsun/security/util/math/intpoly/IntegerPolynomial;Z)V
            areturn
        end local 0 // sun.security.util.math.intpoly.IntegerPolynomial this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/util/math/intpoly/IntegerPolynomial;

  public sun.security.util.math.intpoly.IntegerPolynomial$ImmutableElement get1();
    descriptor: ()Lsun/security/util/math/intpoly/IntegerPolynomial$ImmutableElement;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // sun.security.util.math.intpoly.IntegerPolynomial this
         0: .line 148
            new sun.security.util.math.intpoly.IntegerPolynomial$ImmutableElement
            dup
            aload 0 /* this */
            iconst_1
            invokespecial sun.security.util.math.intpoly.IntegerPolynomial$ImmutableElement.<init>:(Lsun/security/util/math/intpoly/IntegerPolynomial;Z)V
            areturn
        end local 0 // sun.security.util.math.intpoly.IntegerPolynomial this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/util/math/intpoly/IntegerPolynomial;

  public sun.security.util.math.intpoly.IntegerPolynomial$ImmutableElement getElement(java.math.BigInteger);
    descriptor: (Ljava/math/BigInteger;)Lsun/security/util/math/intpoly/IntegerPolynomial$ImmutableElement;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // sun.security.util.math.intpoly.IntegerPolynomial this
        start local 1 // java.math.BigInteger v
         0: .line 153
            new sun.security.util.math.intpoly.IntegerPolynomial$ImmutableElement
            dup
            aload 0 /* this */
            aload 1 /* v */
            invokespecial sun.security.util.math.intpoly.IntegerPolynomial$ImmutableElement.<init>:(Lsun/security/util/math/intpoly/IntegerPolynomial;Ljava/math/BigInteger;)V
            areturn
        end local 1 // java.math.BigInteger v
        end local 0 // sun.security.util.math.intpoly.IntegerPolynomial this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/util/math/intpoly/IntegerPolynomial;
            0    1     1     v  Ljava/math/BigInteger;
    MethodParameters:
      Name  Flags
      v     

  public sun.security.util.math.SmallValue getSmallValue(int);
    descriptor: (I)Lsun/security/util/math/SmallValue;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // sun.security.util.math.intpoly.IntegerPolynomial this
        start local 1 // int value
         0: .line 158
            iconst_1
            aload 0 /* this */
            getfield sun.security.util.math.intpoly.IntegerPolynomial.bitsPerLimb:I
            iconst_1
            isub
            ishl
            istore 2 /* maxMag */
        start local 2 // int maxMag
         1: .line 159
            iload 1 /* value */
            invokestatic java.lang.Math.abs:(I)I
            iload 2 /* maxMag */
            if_icmplt 5
         2: .line 160
            new java.lang.IllegalArgumentException
            dup
         3: .line 161
            new java.lang.StringBuilder
            dup
            ldc "max magnitude is "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 2 /* maxMag */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         4: .line 160
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 163
      StackMap locals: int
      StackMap stack:
            new sun.security.util.math.intpoly.IntegerPolynomial$Limb
            dup
            aload 0 /* this */
            iload 1 /* value */
            invokespecial sun.security.util.math.intpoly.IntegerPolynomial$Limb.<init>:(Lsun/security/util/math/intpoly/IntegerPolynomial;I)V
            areturn
        end local 2 // int maxMag
        end local 1 // int value
        end local 0 // sun.security.util.math.intpoly.IntegerPolynomial this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lsun/security/util/math/intpoly/IntegerPolynomial;
            0    6     1   value  I
            1    6     2  maxMag  I
    MethodParameters:
       Name  Flags
      value  

  protected void encode(java.nio.ByteBuffer, int, byte, long[]);
    descriptor: (Ljava/nio/ByteBuffer;IB[J)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=9, args_size=5
        start local 0 // sun.security.util.math.intpoly.IntegerPolynomial this
        start local 1 // java.nio.ByteBuffer buf
        start local 2 // int length
        start local 3 // byte highByte
        start local 4 // long[] result
         0: .line 176
            bipush 32
            iload 3 /* highByte */
            invokestatic java.lang.Integer.numberOfLeadingZeros:(I)I
            isub
            istore 5 /* numHighBits */
        start local 5 // int numHighBits
         1: .line 177
            bipush 8
            iload 2 /* length */
            imul
            iload 5 /* numHighBits */
            iadd
            istore 6 /* numBits */
        start local 6 // int numBits
         2: .line 178
            iload 6 /* numBits */
            aload 0 /* this */
            getfield sun.security.util.math.intpoly.IntegerPolynomial.bitsPerLimb:I
            iadd
            iconst_1
            isub
            aload 0 /* this */
            getfield sun.security.util.math.intpoly.IntegerPolynomial.bitsPerLimb:I
            idiv
            istore 7 /* requiredLimbs */
        start local 7 // int requiredLimbs
         3: .line 179
            iload 7 /* requiredLimbs */
            aload 0 /* this */
            getfield sun.security.util.math.intpoly.IntegerPolynomial.numLimbs:I
            if_icmple 8
         4: .line 180
            iload 7 /* requiredLimbs */
            newarray 11
            astore 8 /* temp */
        start local 8 // long[] temp
         5: .line 181
            aload 0 /* this */
            aload 1 /* buf */
            iload 2 /* length */
            iload 3 /* highByte */
            aload 8 /* temp */
            invokevirtual sun.security.util.math.intpoly.IntegerPolynomial.encodeSmall:(Ljava/nio/ByteBuffer;IB[J)V
         6: .line 183
            aload 8 /* temp */
            iconst_0
            aload 4 /* result */
            iconst_0
            aload 4 /* result */
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        end local 8 // long[] temp
         7: .line 184
            goto 9
         8: .line 185
      StackMap locals: int int int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* buf */
            iload 2 /* length */
            iload 3 /* highByte */
            aload 4 /* result */
            invokevirtual sun.security.util.math.intpoly.IntegerPolynomial.encodeSmall:(Ljava/nio/ByteBuffer;IB[J)V
         9: .line 187
      StackMap locals:
      StackMap stack:
            return
        end local 7 // int requiredLimbs
        end local 6 // int numBits
        end local 5 // int numHighBits
        end local 4 // long[] result
        end local 3 // byte highByte
        end local 2 // int length
        end local 1 // java.nio.ByteBuffer buf
        end local 0 // sun.security.util.math.intpoly.IntegerPolynomial this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   10     0           this  Lsun/security/util/math/intpoly/IntegerPolynomial;
            0   10     1            buf  Ljava/nio/ByteBuffer;
            0   10     2         length  I
            0   10     3       highByte  B
            0   10     4         result  [J
            1   10     5    numHighBits  I
            2   10     6        numBits  I
            3   10     7  requiredLimbs  I
            5    7     8           temp  [J
    MethodParameters:
          Name  Flags
      buf       
      length    
      highByte  
      result    

  protected void encodeSmall(java.nio.ByteBuffer, int, byte, long[]);
    descriptor: (Ljava/nio/ByteBuffer;IB[J)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=7, locals=13, args_size=5
        start local 0 // sun.security.util.math.intpoly.IntegerPolynomial this
        start local 1 // java.nio.ByteBuffer buf
        start local 2 // int length
        start local 3 // byte highByte
        start local 4 // long[] result
         0: .line 192
            iconst_0
            istore 5 /* limbIndex */
        start local 5 // int limbIndex
         1: .line 193
            lconst_0
            lstore 6 /* curLimbValue */
        start local 6 // long curLimbValue
         2: .line 194
            iconst_0
            istore 8 /* bitPos */
        start local 8 // int bitPos
         3: .line 195
            iconst_0
            istore 9 /* i */
        start local 9 // int i
         4: goto 16
         5: .line 196
      StackMap locals: sun.security.util.math.intpoly.IntegerPolynomial java.nio.ByteBuffer int int long[] int long int int
      StackMap stack:
            aload 1 /* buf */
            invokevirtual java.nio.ByteBuffer.get:()B
            sipush 255
            iand
            i2l
            lstore 10 /* curV */
        start local 10 // long curV
         6: .line 198
            iload 8 /* bitPos */
            bipush 8
            iadd
            aload 0 /* this */
            getfield sun.security.util.math.intpoly.IntegerPolynomial.bitsPerLimb:I
            if_icmplt 13
         7: .line 199
            aload 0 /* this */
            getfield sun.security.util.math.intpoly.IntegerPolynomial.bitsPerLimb:I
            iload 8 /* bitPos */
            isub
            istore 12 /* bitsThisLimb */
        start local 12 // int bitsThisLimb
         8: .line 200
            lload 6 /* curLimbValue */
            lload 10 /* curV */
            sipush 255
            bipush 8
            iload 12 /* bitsThisLimb */
            isub
            ishr
            i2l
            land
            iload 8 /* bitPos */
            lshl
            ladd
            lstore 6 /* curLimbValue */
         9: .line 201
            aload 4 /* result */
            iload 5 /* limbIndex */
            iinc 5 /* limbIndex */ 1
            lload 6 /* curLimbValue */
            lastore
        10: .line 202
            lload 10 /* curV */
            iload 12 /* bitsThisLimb */
            lshr
            lstore 6 /* curLimbValue */
        11: .line 203
            bipush 8
            iload 12 /* bitsThisLimb */
            isub
            istore 8 /* bitPos */
        end local 12 // int bitsThisLimb
        12: .line 204
            goto 15
        13: .line 206
      StackMap locals: long
      StackMap stack:
            lload 6 /* curLimbValue */
            lload 10 /* curV */
            iload 8 /* bitPos */
            lshl
            ladd
            lstore 6 /* curLimbValue */
        14: .line 207
            iinc 8 /* bitPos */ 8
        end local 10 // long curV
        15: .line 195
      StackMap locals:
      StackMap stack:
            iinc 9 /* i */ 1
      StackMap locals:
      StackMap stack:
        16: iload 9 /* i */
            iload 2 /* length */
            if_icmplt 5
        end local 9 // int i
        17: .line 212
            iload 3 /* highByte */
            ifeq 26
        18: .line 213
            iload 3 /* highByte */
            sipush 255
            iand
            i2l
            lstore 9 /* curV */
        start local 9 // long curV
        19: .line 214
            iload 8 /* bitPos */
            bipush 8
            iadd
            aload 0 /* this */
            getfield sun.security.util.math.intpoly.IntegerPolynomial.bitsPerLimb:I
            if_icmplt 25
        20: .line 215
            aload 0 /* this */
            getfield sun.security.util.math.intpoly.IntegerPolynomial.bitsPerLimb:I
            iload 8 /* bitPos */
            isub
            istore 11 /* bitsThisLimb */
        start local 11 // int bitsThisLimb
        21: .line 216
            lload 6 /* curLimbValue */
            lload 9 /* curV */
            sipush 255
            bipush 8
            iload 11 /* bitsThisLimb */
            isub
            ishr
            i2l
            land
            iload 8 /* bitPos */
            lshl
            ladd
            lstore 6 /* curLimbValue */
        22: .line 217
            aload 4 /* result */
            iload 5 /* limbIndex */
            iinc 5 /* limbIndex */ 1
            lload 6 /* curLimbValue */
            lastore
        23: .line 218
            lload 9 /* curV */
            iload 11 /* bitsThisLimb */
            lshr
            lstore 6 /* curLimbValue */
        end local 11 // int bitsThisLimb
        24: .line 219
            goto 26
        25: .line 221
      StackMap locals: sun.security.util.math.intpoly.IntegerPolynomial java.nio.ByteBuffer int int long[] int long int long
      StackMap stack:
            lload 6 /* curLimbValue */
            lload 9 /* curV */
            iload 8 /* bitPos */
            lshl
            ladd
            lstore 6 /* curLimbValue */
        end local 9 // long curV
        26: .line 225
      StackMap locals:
      StackMap stack:
            iload 5 /* limbIndex */
            aload 4 /* result */
            arraylength
            if_icmpge 28
        27: .line 226
            aload 4 /* result */
            iload 5 /* limbIndex */
            iinc 5 /* limbIndex */ 1
            lload 6 /* curLimbValue */
            lastore
        28: .line 228
      StackMap locals:
      StackMap stack:
            aload 4 /* result */
            iload 5 /* limbIndex */
            aload 4 /* result */
            arraylength
            lconst_0
            invokestatic java.util.Arrays.fill:([JIIJ)V
        29: .line 230
            aload 0 /* this */
            aload 4 /* result */
            invokevirtual sun.security.util.math.intpoly.IntegerPolynomial.postEncodeCarry:([J)V
        30: .line 231
            return
        end local 8 // int bitPos
        end local 6 // long curLimbValue
        end local 5 // int limbIndex
        end local 4 // long[] result
        end local 3 // byte highByte
        end local 2 // int length
        end local 1 // java.nio.ByteBuffer buf
        end local 0 // sun.security.util.math.intpoly.IntegerPolynomial this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   31     0          this  Lsun/security/util/math/intpoly/IntegerPolynomial;
            0   31     1           buf  Ljava/nio/ByteBuffer;
            0   31     2        length  I
            0   31     3      highByte  B
            0   31     4        result  [J
            1   31     5     limbIndex  I
            2   31     6  curLimbValue  J
            3   31     8        bitPos  I
            4   17     9             i  I
            6   15    10          curV  J
            8   12    12  bitsThisLimb  I
           19   26     9          curV  J
           21   24    11  bitsThisLimb  I
    MethodParameters:
          Name  Flags
      buf       
      length    
      highByte  
      result    

  protected void encode(byte[], int, int, byte, long[]);
    descriptor: ([BIIB[J)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=7, args_size=6
        start local 0 // sun.security.util.math.intpoly.IntegerPolynomial this
        start local 1 // byte[] v
        start local 2 // int offset
        start local 3 // int length
        start local 4 // byte highByte
        start local 5 // long[] result
         0: .line 236
            aload 1 /* v */
            iload 2 /* offset */
            iload 3 /* length */
            invokestatic java.nio.ByteBuffer.wrap:([BII)Ljava/nio/ByteBuffer;
            astore 6 /* buf */
        start local 6 // java.nio.ByteBuffer buf
         1: .line 237
            aload 6 /* buf */
            getstatic java.nio.ByteOrder.LITTLE_ENDIAN:Ljava/nio/ByteOrder;
            invokevirtual java.nio.ByteBuffer.order:(Ljava/nio/ByteOrder;)Ljava/nio/ByteBuffer;
            pop
         2: .line 238
            aload 0 /* this */
            aload 6 /* buf */
            iload 3 /* length */
            iload 4 /* highByte */
            aload 5 /* result */
            invokevirtual sun.security.util.math.intpoly.IntegerPolynomial.encode:(Ljava/nio/ByteBuffer;IB[J)V
         3: .line 239
            return
        end local 6 // java.nio.ByteBuffer buf
        end local 5 // long[] result
        end local 4 // byte highByte
        end local 3 // int length
        end local 2 // int offset
        end local 1 // byte[] v
        end local 0 // sun.security.util.math.intpoly.IntegerPolynomial this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lsun/security/util/math/intpoly/IntegerPolynomial;
            0    4     1         v  [B
            0    4     2    offset  I
            0    4     3    length  I
            0    4     4  highByte  B
            0    4     5    result  [J
            1    4     6       buf  Ljava/nio/ByteBuffer;
    MethodParameters:
          Name  Flags
      v         
      offset    
      length    
      highByte  
      result    

  protected void postEncodeCarry(long[]);
    descriptor: ([J)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.security.util.math.intpoly.IntegerPolynomial this
        start local 1 // long[] v
         0: .line 244
            aload 0 /* this */
            aload 1 /* v */
            invokevirtual sun.security.util.math.intpoly.IntegerPolynomial.reduce:([J)V
         1: .line 245
            return
        end local 1 // long[] v
        end local 0 // sun.security.util.math.intpoly.IntegerPolynomial this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/security/util/math/intpoly/IntegerPolynomial;
            0    2     1     v  [J
    MethodParameters:
      Name  Flags
      v     

  public sun.security.util.math.intpoly.IntegerPolynomial$ImmutableElement getElement(byte[], int, int, byte);
    descriptor: ([BIIB)Lsun/security/util/math/intpoly/IntegerPolynomial$ImmutableElement;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=6, args_size=5
        start local 0 // sun.security.util.math.intpoly.IntegerPolynomial this
        start local 1 // byte[] v
        start local 2 // int offset
        start local 3 // int length
        start local 4 // byte highByte
         0: .line 250
            aload 0 /* this */
            getfield sun.security.util.math.intpoly.IntegerPolynomial.numLimbs:I
            newarray 11
            astore 5 /* result */
        start local 5 // long[] result
         1: .line 252
            aload 0 /* this */
            aload 1 /* v */
            iload 2 /* offset */
            iload 3 /* length */
            iload 4 /* highByte */
            aload 5 /* result */
            invokevirtual sun.security.util.math.intpoly.IntegerPolynomial.encode:([BIIB[J)V
         2: .line 254
            new sun.security.util.math.intpoly.IntegerPolynomial$ImmutableElement
            dup
            aload 0 /* this */
            aload 5 /* result */
            iconst_0
            invokespecial sun.security.util.math.intpoly.IntegerPolynomial$ImmutableElement.<init>:(Lsun/security/util/math/intpoly/IntegerPolynomial;[JI)V
            areturn
        end local 5 // long[] result
        end local 4 // byte highByte
        end local 3 // int length
        end local 2 // int offset
        end local 1 // byte[] v
        end local 0 // sun.security.util.math.intpoly.IntegerPolynomial this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lsun/security/util/math/intpoly/IntegerPolynomial;
            0    3     1         v  [B
            0    3     2    offset  I
            0    3     3    length  I
            0    3     4  highByte  B
            1    3     5    result  [J
    MethodParameters:
          Name  Flags
      v         
      offset    
      length    
      highByte  

  protected java.math.BigInteger evaluate(long[]);
    descriptor: ([J)Ljava/math/BigInteger;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // sun.security.util.math.intpoly.IntegerPolynomial this
        start local 1 // long[] limbs
         0: .line 258
            getstatic java.math.BigInteger.ZERO:Ljava/math/BigInteger;
            astore 2 /* result */
        start local 2 // java.math.BigInteger result
         1: .line 259
            aload 1 /* limbs */
            arraylength
            iconst_1
            isub
            istore 3 /* i */
        start local 3 // int i
         2: goto 7
         3: .line 260
      StackMap locals: java.math.BigInteger int
      StackMap stack:
            aload 2 /* result */
            aload 0 /* this */
            getfield sun.security.util.math.intpoly.IntegerPolynomial.bitsPerLimb:I
            invokevirtual java.math.BigInteger.shiftLeft:(I)Ljava/math/BigInteger;
         4: .line 261
            aload 1 /* limbs */
            iload 3 /* i */
            laload
            invokestatic java.math.BigInteger.valueOf:(J)Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.add:(Ljava/math/BigInteger;)Ljava/math/BigInteger;
         5: .line 260
            astore 2 /* result */
         6: .line 259
            iinc 3 /* i */ -1
      StackMap locals:
      StackMap stack:
         7: iload 3 /* i */
            ifge 3
        end local 3 // int i
         8: .line 263
            aload 2 /* result */
            aload 0 /* this */
            getfield sun.security.util.math.intpoly.IntegerPolynomial.modulus:Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.mod:(Ljava/math/BigInteger;)Ljava/math/BigInteger;
            areturn
        end local 2 // java.math.BigInteger result
        end local 1 // long[] limbs
        end local 0 // sun.security.util.math.intpoly.IntegerPolynomial this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    9     0    this  Lsun/security/util/math/intpoly/IntegerPolynomial;
            0    9     1   limbs  [J
            1    9     2  result  Ljava/math/BigInteger;
            2    8     3       i  I
    MethodParameters:
       Name  Flags
      limbs  

  protected long carryValue(long);
    descriptor: (J)J
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // sun.security.util.math.intpoly.IntegerPolynomial this
        start local 1 // long x
         0: .line 270
            lload 1 /* x */
            iconst_1
            aload 0 /* this */
            getfield sun.security.util.math.intpoly.IntegerPolynomial.bitsPerLimb:I
            iconst_1
            isub
            ishl
            i2l
            ladd
            aload 0 /* this */
            getfield sun.security.util.math.intpoly.IntegerPolynomial.bitsPerLimb:I
            lshr
            lreturn
        end local 1 // long x
        end local 0 // sun.security.util.math.intpoly.IntegerPolynomial this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/util/math/intpoly/IntegerPolynomial;
            0    1     1     x  J
    MethodParameters:
      Name  Flags
      x     

  protected void carry(long[], int, int);
    descriptor: ([JII)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=6, locals=7, args_size=4
        start local 0 // sun.security.util.math.intpoly.IntegerPolynomial this
        start local 1 // long[] limbs
        start local 2 // int start
        start local 3 // int end
         0: .line 275
            iload 2 /* start */
            istore 4 /* i */
        start local 4 // int i
         1: goto 5
         2: .line 277
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* limbs */
            iload 4 /* i */
            invokevirtual sun.security.util.math.intpoly.IntegerPolynomial.carryOut:([JI)J
            lstore 5 /* carry */
        start local 5 // long carry
         3: .line 278
            aload 1 /* limbs */
            iload 4 /* i */
            iconst_1
            iadd
            dup2
            laload
            lload 5 /* carry */
            ladd
            lastore
        end local 5 // long carry
         4: .line 275
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 4 /* i */
            iload 3 /* end */
            if_icmplt 2
        end local 4 // int i
         6: .line 280
            return
        end local 3 // int end
        end local 2 // int start
        end local 1 // long[] limbs
        end local 0 // sun.security.util.math.intpoly.IntegerPolynomial this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lsun/security/util/math/intpoly/IntegerPolynomial;
            0    7     1  limbs  [J
            0    7     2  start  I
            0    7     3    end  I
            1    6     4      i  I
            3    4     5  carry  J
    MethodParameters:
       Name  Flags
      limbs  
      start  
      end    

  protected void carry(long[]);
    descriptor: ([J)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // sun.security.util.math.intpoly.IntegerPolynomial this
        start local 1 // long[] limbs
         0: .line 284
            aload 0 /* this */
            aload 1 /* limbs */
            iconst_0
            aload 1 /* limbs */
            arraylength
            iconst_1
            isub
            invokevirtual sun.security.util.math.intpoly.IntegerPolynomial.carry:([JII)V
         1: .line 285
            return
        end local 1 // long[] limbs
        end local 0 // sun.security.util.math.intpoly.IntegerPolynomial this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lsun/security/util/math/intpoly/IntegerPolynomial;
            0    2     1  limbs  [J
    MethodParameters:
       Name  Flags
      limbs  

  protected long carryOut(long[], int);
    descriptor: ([JI)J
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=7, locals=5, args_size=3
        start local 0 // sun.security.util.math.intpoly.IntegerPolynomial this
        start local 1 // long[] limbs
        start local 2 // int index
         0: .line 291
            aload 0 /* this */
            aload 1 /* limbs */
            iload 2 /* index */
            laload
            invokevirtual sun.security.util.math.intpoly.IntegerPolynomial.carryValue:(J)J
            lstore 3 /* carry */
        start local 3 // long carry
         1: .line 292
            aload 1 /* limbs */
            iload 2 /* index */
            dup2
            laload
            lload 3 /* carry */
            aload 0 /* this */
            getfield sun.security.util.math.intpoly.IntegerPolynomial.bitsPerLimb:I
            lshl
            lsub
            lastore
         2: .line 293
            lload 3 /* carry */
            lreturn
        end local 3 // long carry
        end local 2 // int index
        end local 1 // long[] limbs
        end local 0 // sun.security.util.math.intpoly.IntegerPolynomial this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lsun/security/util/math/intpoly/IntegerPolynomial;
            0    3     1  limbs  [J
            0    3     2  index  I
            1    3     3  carry  J
    MethodParameters:
       Name  Flags
      limbs  
      index  

  private void setLimbsValue(java.math.BigInteger, long[]);
    descriptor: (Ljava/math/BigInteger;[J)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // sun.security.util.math.intpoly.IntegerPolynomial this
        start local 1 // java.math.BigInteger v
        start local 2 // long[] limbs
         0: .line 298
            aload 0 /* this */
            aload 1 /* v */
            aload 2 /* limbs */
            invokevirtual sun.security.util.math.intpoly.IntegerPolynomial.setLimbsValuePositive:(Ljava/math/BigInteger;[J)V
         1: .line 299
            aload 0 /* this */
            aload 2 /* limbs */
            invokevirtual sun.security.util.math.intpoly.IntegerPolynomial.carry:([J)V
         2: .line 300
            return
        end local 2 // long[] limbs
        end local 1 // java.math.BigInteger v
        end local 0 // sun.security.util.math.intpoly.IntegerPolynomial this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lsun/security/util/math/intpoly/IntegerPolynomial;
            0    3     1      v  Ljava/math/BigInteger;
            0    3     2  limbs  [J
    MethodParameters:
       Name  Flags
      v      
      limbs  

  protected void setLimbsValuePositive(java.math.BigInteger, long[]);
    descriptor: (Ljava/math/BigInteger;[J)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // sun.security.util.math.intpoly.IntegerPolynomial this
        start local 1 // java.math.BigInteger v
        start local 2 // long[] limbs
         0: .line 303
            iconst_1
            aload 0 /* this */
            getfield sun.security.util.math.intpoly.IntegerPolynomial.bitsPerLimb:I
            ishl
            i2l
            invokestatic java.math.BigInteger.valueOf:(J)Ljava/math/BigInteger;
            astore 3 /* mod */
        start local 3 // java.math.BigInteger mod
         1: .line 304
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         2: goto 6
         3: .line 305
      StackMap locals: java.math.BigInteger int
      StackMap stack:
            aload 2 /* limbs */
            iload 4 /* i */
            aload 1 /* v */
            aload 3 /* mod */
            invokevirtual java.math.BigInteger.mod:(Ljava/math/BigInteger;)Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.longValue:()J
            lastore
         4: .line 306
            aload 1 /* v */
            aload 0 /* this */
            getfield sun.security.util.math.intpoly.IntegerPolynomial.bitsPerLimb:I
            invokevirtual java.math.BigInteger.shiftRight:(I)Ljava/math/BigInteger;
            astore 1 /* v */
         5: .line 304
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
         6: iload 4 /* i */
            aload 2 /* limbs */
            arraylength
            if_icmplt 3
        end local 4 // int i
         7: .line 308
            return
        end local 3 // java.math.BigInteger mod
        end local 2 // long[] limbs
        end local 1 // java.math.BigInteger v
        end local 0 // sun.security.util.math.intpoly.IntegerPolynomial this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    8     0   this  Lsun/security/util/math/intpoly/IntegerPolynomial;
            0    8     1      v  Ljava/math/BigInteger;
            0    8     2  limbs  [J
            1    8     3    mod  Ljava/math/BigInteger;
            2    7     4      i  I
    MethodParameters:
       Name  Flags
      v      
      limbs  

  protected abstract void finalCarryReduceLast(long[]);
    descriptor: ([J)V
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT
    MethodParameters:
       Name  Flags
      limbs  

  protected void finalReduce(long[]);
    descriptor: ([J)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=7, locals=6, args_size=2
        start local 0 // sun.security.util.math.intpoly.IntegerPolynomial this
        start local 1 // long[] limbs
         0: .line 338
            iconst_0
            istore 2 /* pass */
        start local 2 // int pass
         1: goto 13
         2: .line 341
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* limbs */
            invokevirtual sun.security.util.math.intpoly.IntegerPolynomial.finalCarryReduceLast:([J)V
         3: .line 344
            lconst_0
            lstore 3 /* carry */
        start local 3 // long carry
         4: .line 345
            iconst_0
            istore 5 /* i */
        start local 5 // int i
         5: goto 10
         6: .line 346
      StackMap locals: long int
      StackMap stack:
            aload 1 /* limbs */
            iload 5 /* i */
            dup2
            laload
            lload 3 /* carry */
            ladd
            lastore
         7: .line 347
            aload 1 /* limbs */
            iload 5 /* i */
            laload
            aload 0 /* this */
            getfield sun.security.util.math.intpoly.IntegerPolynomial.bitsPerLimb:I
            lshr
            lstore 3 /* carry */
         8: .line 348
            aload 1 /* limbs */
            iload 5 /* i */
            dup2
            laload
            lload 3 /* carry */
            aload 0 /* this */
            getfield sun.security.util.math.intpoly.IntegerPolynomial.bitsPerLimb:I
            lshl
            lsub
            lastore
         9: .line 345
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 5 /* i */
            aload 0 /* this */
            getfield sun.security.util.math.intpoly.IntegerPolynomial.numLimbs:I
            iconst_1
            isub
            if_icmplt 6
        end local 5 // int i
        11: .line 350
            aload 1 /* limbs */
            aload 0 /* this */
            getfield sun.security.util.math.intpoly.IntegerPolynomial.numLimbs:I
            iconst_1
            isub
            dup2
            laload
            lload 3 /* carry */
            ladd
            lastore
        end local 3 // long carry
        12: .line 338
            iinc 2 /* pass */ 1
      StackMap locals:
      StackMap stack:
        13: iload 2 /* pass */
            iconst_2
            if_icmplt 2
        end local 2 // int pass
        14: .line 361
            iconst_1
            istore 2 /* smallerNonNegative */
        start local 2 // int smallerNonNegative
        15: .line 362
            aload 0 /* this */
            getfield sun.security.util.math.intpoly.IntegerPolynomial.numLimbs:I
            newarray 11
            astore 3 /* smaller */
        start local 3 // long[] smaller
        16: .line 363
            aload 0 /* this */
            getfield sun.security.util.math.intpoly.IntegerPolynomial.numLimbs:I
            iconst_1
            isub
            istore 4 /* i */
        start local 4 // int i
        17: goto 21
        18: .line 364
      StackMap locals: long[] int
      StackMap stack:
            aload 3 /* smaller */
            iload 4 /* i */
            aload 1 /* limbs */
            iload 4 /* i */
            laload
            aload 0 /* this */
            getfield sun.security.util.math.intpoly.IntegerPolynomial.posModLimbs:[J
            iload 4 /* i */
            laload
            lsub
            lastore
        19: .line 367
            iload 2 /* smallerNonNegative */
            aload 3 /* smaller */
            iload 4 /* i */
            laload
            bipush 63
            lshr
            l2i
            iconst_1
            iadd
            imul
            istore 2 /* smallerNonNegative */
        20: .line 363
            iinc 4 /* i */ -1
      StackMap locals:
      StackMap stack:
        21: iload 4 /* i */
            ifge 18
        end local 4 // int i
        22: .line 369
            iload 2 /* smallerNonNegative */
            aload 1 /* limbs */
            aload 3 /* smaller */
            invokestatic sun.security.util.math.intpoly.IntegerPolynomial.conditionalSwap:(I[J[J)V
        23: .line 371
            return
        end local 3 // long[] smaller
        end local 2 // int smallerNonNegative
        end local 1 // long[] limbs
        end local 0 // sun.security.util.math.intpoly.IntegerPolynomial this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0   24     0                this  Lsun/security/util/math/intpoly/IntegerPolynomial;
            0   24     1               limbs  [J
            1   14     2                pass  I
            4   12     3               carry  J
            5   11     5                   i  I
           15   24     2  smallerNonNegative  I
           16   24     3             smaller  [J
           17   22     4                   i  I
    MethodParameters:
       Name  Flags
      limbs  

  protected void decode(long[], byte[], int, int);
    descriptor: ([J[BII)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=8, locals=13, args_size=5
        start local 0 // sun.security.util.math.intpoly.IntegerPolynomial this
        start local 1 // long[] v
        start local 2 // byte[] dst
        start local 3 // int offset
        start local 4 // int length
         0: .line 379
            iconst_0
            istore 5 /* nextLimbIndex */
        start local 5 // int nextLimbIndex
         1: .line 380
            aload 1 /* v */
            iload 5 /* nextLimbIndex */
            iinc 5 /* nextLimbIndex */ 1
            laload
            lstore 6 /* curLimbValue */
        start local 6 // long curLimbValue
         2: .line 381
            iconst_0
            istore 8 /* bitPos */
        start local 8 // int bitPos
         3: .line 382
            iconst_0
            istore 9 /* i */
        start local 9 // int i
         4: goto 23
         5: .line 384
      StackMap locals: sun.security.util.math.intpoly.IntegerPolynomial long[] byte[] int int int long int int
      StackMap stack:
            iload 9 /* i */
            iload 3 /* offset */
            iadd
            istore 10 /* dstIndex */
        start local 10 // int dstIndex
         6: .line 385
            iload 8 /* bitPos */
            bipush 8
            iadd
            aload 0 /* this */
            getfield sun.security.util.math.intpoly.IntegerPolynomial.bitsPerLimb:I
            if_icmplt 19
         7: .line 386
            aload 2 /* dst */
            iload 10 /* dstIndex */
            lload 6 /* curLimbValue */
            l2i
            i2b
            bastore
         8: .line 387
            lconst_0
            lstore 6 /* curLimbValue */
         9: .line 388
            iload 5 /* nextLimbIndex */
            aload 1 /* v */
            arraylength
            if_icmpge 11
        10: .line 389
            aload 1 /* v */
            iload 5 /* nextLimbIndex */
            iinc 5 /* nextLimbIndex */ 1
            laload
            lstore 6 /* curLimbValue */
        11: .line 391
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.util.math.intpoly.IntegerPolynomial.bitsPerLimb:I
            iload 8 /* bitPos */
            isub
            istore 11 /* bitsAdded */
        start local 11 // int bitsAdded
        12: .line 392
            bipush 8
            iload 11 /* bitsAdded */
            isub
            istore 12 /* bitsLeft */
        start local 12 // int bitsLeft
        13: .line 394
            aload 2 /* dst */
            iload 10 /* dstIndex */
            dup2
            baload
            i2l
            lload 6 /* curLimbValue */
            sipush 255
            iload 11 /* bitsAdded */
            ishr
            i2l
            land
        14: .line 395
            iload 11 /* bitsAdded */
            lshl
        15: .line 394
            ladd
            l2i
            i2b
            bastore
        16: .line 396
            lload 6 /* curLimbValue */
            iload 12 /* bitsLeft */
            lshr
            lstore 6 /* curLimbValue */
        17: .line 397
            iload 12 /* bitsLeft */
            istore 8 /* bitPos */
        end local 12 // int bitsLeft
        end local 11 // int bitsAdded
        18: .line 398
            goto 22
        19: .line 399
      StackMap locals:
      StackMap stack:
            aload 2 /* dst */
            iload 10 /* dstIndex */
            lload 6 /* curLimbValue */
            l2i
            i2b
            bastore
        20: .line 400
            lload 6 /* curLimbValue */
            bipush 8
            lshr
            lstore 6 /* curLimbValue */
        21: .line 401
            iinc 8 /* bitPos */ 8
        end local 10 // int dstIndex
        22: .line 382
      StackMap locals:
      StackMap stack:
            iinc 9 /* i */ 1
      StackMap locals:
      StackMap stack:
        23: iload 9 /* i */
            iload 4 /* length */
            if_icmplt 5
        end local 9 // int i
        24: .line 404
            return
        end local 8 // int bitPos
        end local 6 // long curLimbValue
        end local 5 // int nextLimbIndex
        end local 4 // int length
        end local 3 // int offset
        end local 2 // byte[] dst
        end local 1 // long[] v
        end local 0 // sun.security.util.math.intpoly.IntegerPolynomial this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   25     0           this  Lsun/security/util/math/intpoly/IntegerPolynomial;
            0   25     1              v  [J
            0   25     2            dst  [B
            0   25     3         offset  I
            0   25     4         length  I
            1   25     5  nextLimbIndex  I
            2   25     6   curLimbValue  J
            3   25     8         bitPos  I
            4   24     9              i  I
            6   22    10       dstIndex  I
           12   18    11      bitsAdded  I
           13   18    12       bitsLeft  I
    MethodParameters:
        Name  Flags
      v       
      dst     
      offset  
      length  

  protected void addLimbs(long[], long[], long[]);
    descriptor: ([J[J[J)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=6, locals=5, args_size=4
        start local 0 // sun.security.util.math.intpoly.IntegerPolynomial this
        start local 1 // long[] a
        start local 2 // long[] b
        start local 3 // long[] dst
         0: .line 413
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         1: goto 4
         2: .line 414
      StackMap locals: int
      StackMap stack:
            aload 3 /* dst */
            iload 4 /* i */
            aload 1 /* a */
            iload 4 /* i */
            laload
            aload 2 /* b */
            iload 4 /* i */
            laload
            ladd
            lastore
         3: .line 413
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
         4: iload 4 /* i */
            aload 3 /* dst */
            arraylength
            if_icmplt 2
        end local 4 // int i
         5: .line 416
            return
        end local 3 // long[] dst
        end local 2 // long[] b
        end local 1 // long[] a
        end local 0 // sun.security.util.math.intpoly.IntegerPolynomial this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lsun/security/util/math/intpoly/IntegerPolynomial;
            0    6     1     a  [J
            0    6     2     b  [J
            0    6     3   dst  [J
            1    5     4     i  I
    MethodParameters:
      Name  Flags
      a     
      b     
      dst   

  protected static void conditionalAssign(int, long[], long[]);
    descriptor: (I[J[J)V
    flags: (0x000c) ACC_PROTECTED, ACC_STATIC
    Code:
      stack=6, locals=7, args_size=3
        start local 0 // int set
        start local 1 // long[] a
        start local 2 // long[] b
         0: .line 425
            iconst_0
            iload 0 /* set */
            isub
            istore 3 /* maskValue */
        start local 3 // int maskValue
         1: .line 426
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         2: goto 6
         3: .line 427
      StackMap locals: int int
      StackMap stack:
            iload 3 /* maskValue */
            i2l
            aload 1 /* a */
            iload 4 /* i */
            laload
            aload 2 /* b */
            iload 4 /* i */
            laload
            lxor
            land
            lstore 5 /* dummyLimbs */
        start local 5 // long dummyLimbs
         4: .line 428
            aload 1 /* a */
            iload 4 /* i */
            lload 5 /* dummyLimbs */
            aload 1 /* a */
            iload 4 /* i */
            laload
            lxor
            lastore
        end local 5 // long dummyLimbs
         5: .line 426
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
         6: iload 4 /* i */
            aload 1 /* a */
            arraylength
            if_icmplt 3
        end local 4 // int i
         7: .line 430
            return
        end local 3 // int maskValue
        end local 2 // long[] b
        end local 1 // long[] a
        end local 0 // int set
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    8     0         set  I
            0    8     1           a  [J
            0    8     2           b  [J
            1    8     3   maskValue  I
            2    7     4           i  I
            4    5     5  dummyLimbs  J
    MethodParameters:
      Name  Flags
      set   
      a     
      b     

  protected static void conditionalSwap(int, long[], long[]);
    descriptor: (I[J[J)V
    flags: (0x000c) ACC_PROTECTED, ACC_STATIC
    Code:
      stack=6, locals=7, args_size=3
        start local 0 // int swap
        start local 1 // long[] a
        start local 2 // long[] b
         0: .line 440
            iconst_0
            iload 0 /* swap */
            isub
            istore 3 /* maskValue */
        start local 3 // int maskValue
         1: .line 441
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         2: goto 7
         3: .line 442
      StackMap locals: int int
      StackMap stack:
            iload 3 /* maskValue */
            i2l
            aload 1 /* a */
            iload 4 /* i */
            laload
            aload 2 /* b */
            iload 4 /* i */
            laload
            lxor
            land
            lstore 5 /* dummyLimbs */
        start local 5 // long dummyLimbs
         4: .line 443
            aload 1 /* a */
            iload 4 /* i */
            lload 5 /* dummyLimbs */
            aload 1 /* a */
            iload 4 /* i */
            laload
            lxor
            lastore
         5: .line 444
            aload 2 /* b */
            iload 4 /* i */
            lload 5 /* dummyLimbs */
            aload 2 /* b */
            iload 4 /* i */
            laload
            lxor
            lastore
        end local 5 // long dummyLimbs
         6: .line 441
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
         7: iload 4 /* i */
            aload 1 /* a */
            arraylength
            if_icmplt 3
        end local 4 // int i
         8: .line 446
            return
        end local 3 // int maskValue
        end local 2 // long[] b
        end local 1 // long[] a
        end local 0 // int swap
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    9     0        swap  I
            0    9     1           a  [J
            0    9     2           b  [J
            1    9     3   maskValue  I
            2    8     4           i  I
            4    6     5  dummyLimbs  J
    MethodParameters:
      Name  Flags
      swap  
      a     
      b     

  protected void limbsToByteArray(long[], byte[]);
    descriptor: ([J[B)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // sun.security.util.math.intpoly.IntegerPolynomial this
        start local 1 // long[] limbs
        start local 2 // byte[] result
         0: .line 453
            aload 1 /* limbs */
            invokevirtual long[].clone:()Ljava/lang/Object;
            checkcast long[]
            astore 3 /* reducedLimbs */
        start local 3 // long[] reducedLimbs
         1: .line 454
            aload 0 /* this */
            aload 3 /* reducedLimbs */
            invokevirtual sun.security.util.math.intpoly.IntegerPolynomial.finalReduce:([J)V
         2: .line 456
            aload 0 /* this */
            aload 3 /* reducedLimbs */
            aload 2 /* result */
            iconst_0
            aload 2 /* result */
            arraylength
            invokevirtual sun.security.util.math.intpoly.IntegerPolynomial.decode:([J[BII)V
         3: .line 457
            return
        end local 3 // long[] reducedLimbs
        end local 2 // byte[] result
        end local 1 // long[] limbs
        end local 0 // sun.security.util.math.intpoly.IntegerPolynomial this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    4     0          this  Lsun/security/util/math/intpoly/IntegerPolynomial;
            0    4     1         limbs  [J
            0    4     2        result  [B
            1    4     3  reducedLimbs  [J
    MethodParameters:
        Name  Flags
      limbs   
      result  

  protected void addLimbsModPowerTwo(long[], long[], byte[]);
    descriptor: ([J[J[B)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=7, locals=9, args_size=4
        start local 0 // sun.security.util.math.intpoly.IntegerPolynomial this
        start local 1 // long[] limbs
        start local 2 // long[] other
        start local 3 // byte[] result
         0: .line 467
            aload 2 /* other */
            invokevirtual long[].clone:()Ljava/lang/Object;
            checkcast long[]
            astore 4 /* reducedOther */
        start local 4 // long[] reducedOther
         1: .line 468
            aload 1 /* limbs */
            invokevirtual long[].clone:()Ljava/lang/Object;
            checkcast long[]
            astore 5 /* reducedLimbs */
        start local 5 // long[] reducedLimbs
         2: .line 469
            aload 0 /* this */
            aload 4 /* reducedOther */
            invokevirtual sun.security.util.math.intpoly.IntegerPolynomial.finalReduce:([J)V
         3: .line 470
            aload 0 /* this */
            aload 5 /* reducedLimbs */
            invokevirtual sun.security.util.math.intpoly.IntegerPolynomial.finalReduce:([J)V
         4: .line 472
            aload 0 /* this */
            aload 5 /* reducedLimbs */
            aload 4 /* reducedOther */
            aload 5 /* reducedLimbs */
            invokevirtual sun.security.util.math.intpoly.IntegerPolynomial.addLimbs:([J[J[J)V
         5: .line 475
            lconst_0
            lstore 6 /* carry */
        start local 6 // long carry
         6: .line 476
            iconst_0
            istore 8 /* i */
        start local 8 // int i
         7: goto 12
         8: .line 477
      StackMap locals: sun.security.util.math.intpoly.IntegerPolynomial long[] long[] byte[] long[] long[] long int
      StackMap stack:
            aload 5 /* reducedLimbs */
            iload 8 /* i */
            dup2
            laload
            lload 6 /* carry */
            ladd
            lastore
         9: .line 478
            aload 5 /* reducedLimbs */
            iload 8 /* i */
            laload
            aload 0 /* this */
            getfield sun.security.util.math.intpoly.IntegerPolynomial.bitsPerLimb:I
            lshr
            lstore 6 /* carry */
        10: .line 479
            aload 5 /* reducedLimbs */
            iload 8 /* i */
            dup2
            laload
            lload 6 /* carry */
            aload 0 /* this */
            getfield sun.security.util.math.intpoly.IntegerPolynomial.bitsPerLimb:I
            lshl
            lsub
            lastore
        11: .line 476
            iinc 8 /* i */ 1
      StackMap locals:
      StackMap stack:
        12: iload 8 /* i */
            aload 0 /* this */
            getfield sun.security.util.math.intpoly.IntegerPolynomial.numLimbs:I
            if_icmplt 8
        end local 8 // int i
        13: .line 482
            aload 0 /* this */
            aload 5 /* reducedLimbs */
            aload 3 /* result */
            iconst_0
            aload 3 /* result */
            arraylength
            invokevirtual sun.security.util.math.intpoly.IntegerPolynomial.decode:([J[BII)V
        14: .line 483
            return
        end local 6 // long carry
        end local 5 // long[] reducedLimbs
        end local 4 // long[] reducedOther
        end local 3 // byte[] result
        end local 2 // long[] other
        end local 1 // long[] limbs
        end local 0 // sun.security.util.math.intpoly.IntegerPolynomial this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   15     0          this  Lsun/security/util/math/intpoly/IntegerPolynomial;
            0   15     1         limbs  [J
            0   15     2         other  [J
            0   15     3        result  [B
            1   15     4  reducedOther  [J
            2   15     5  reducedLimbs  [J
            6   15     6         carry  J
            7   13     8             i  I
    MethodParameters:
        Name  Flags
      limbs   
      other   
      result  

  public sun.security.util.math.ImmutableIntegerModuloP getElement(byte[], int, int, byte);
    descriptor: ([BIIB)Lsun/security/util/math/ImmutableIntegerModuloP;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=5, locals=5, args_size=5
         0: .line 1
            aload 0
            aload 1
            iload 2
            iload 3
            iload 4
            invokevirtual sun.security.util.math.intpoly.IntegerPolynomial.getElement:([BIIB)Lsun/security/util/math/intpoly/IntegerPolynomial$ImmutableElement;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public sun.security.util.math.ImmutableIntegerModuloP getElement(java.math.BigInteger);
    descriptor: (Ljava/math/BigInteger;)Lsun/security/util/math/ImmutableIntegerModuloP;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual sun.security.util.math.intpoly.IntegerPolynomial.getElement:(Ljava/math/BigInteger;)Lsun/security/util/math/intpoly/IntegerPolynomial$ImmutableElement;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public sun.security.util.math.ImmutableIntegerModuloP get1();
    descriptor: ()Lsun/security/util/math/ImmutableIntegerModuloP;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual sun.security.util.math.intpoly.IntegerPolynomial.get1:()Lsun/security/util/math/intpoly/IntegerPolynomial$ImmutableElement;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public sun.security.util.math.ImmutableIntegerModuloP get0();
    descriptor: ()Lsun/security/util/math/ImmutableIntegerModuloP;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual sun.security.util.math.intpoly.IntegerPolynomial.get0:()Lsun/security/util/math/intpoly/IntegerPolynomial$ImmutableElement;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "IntegerPolynomial.java"
NestMembers:
  sun.security.util.math.intpoly.IntegerPolynomial$Element  sun.security.util.math.intpoly.IntegerPolynomial$ImmutableElement  sun.security.util.math.intpoly.IntegerPolynomial$Limb  sun.security.util.math.intpoly.IntegerPolynomial$MutableElement
InnerClasses:
  private abstract Element = sun.security.util.math.intpoly.IntegerPolynomial$Element of sun.security.util.math.intpoly.IntegerPolynomial
  ImmutableElement = sun.security.util.math.intpoly.IntegerPolynomial$ImmutableElement of sun.security.util.math.intpoly.IntegerPolynomial
  Limb = sun.security.util.math.intpoly.IntegerPolynomial$Limb of sun.security.util.math.intpoly.IntegerPolynomial
  protected MutableElement = sun.security.util.math.intpoly.IntegerPolynomial$MutableElement of sun.security.util.math.intpoly.IntegerPolynomial