public class org.graalvm.compiler.jtt.hotpath.HP_life extends org.graalvm.compiler.jtt.JTTTest
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.graalvm.compiler.jtt.hotpath.HP_life
  super_class: org.graalvm.compiler.jtt.JTTTest
{
  private static final int rows;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 20

  private static final int cols;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 20

  private static boolean[] cells;
    descriptor: [Z
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 55
            sipush 400
            newarray 4
            putstatic org.graalvm.compiler.jtt.hotpath.HP_life.cells:[Z
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.jtt.hotpath.HP_life this
         0: .line 36
            aload 0 /* this */
            invokespecial org.graalvm.compiler.jtt.JTTTest.<init>:()V
            return
        end local 0 // org.graalvm.compiler.jtt.hotpath.HP_life this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/jtt/hotpath/HP_life;

  public static int test(int);
    descriptor: (I)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=5, args_size=1
        start local 0 // int generations
         0: .line 39
            invokestatic org.graalvm.compiler.jtt.hotpath.HP_life.reset:()V
         1: .line 40
            iconst_0
            istore 1 /* i */
        start local 1 // int i
         2: goto 5
         3: .line 41
      StackMap locals: int
      StackMap stack:
            invokestatic org.graalvm.compiler.jtt.hotpath.HP_life.step:()Z
            pop
         4: .line 40
            iinc 1 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 1 /* i */
            iload 0 /* generations */
            if_icmplt 3
        end local 1 // int i
         6: .line 43
            iconst_0
            istore 1 /* sum */
        start local 1 // int sum
         7: .line 44
            iconst_0
            istore 2 /* row */
        start local 2 // int row
         8: goto 18
         9: .line 45
      StackMap locals: int
      StackMap stack:
            iconst_0
            istore 3 /* col */
        start local 3 // int col
        10: goto 16
        11: .line 46
      StackMap locals: int
      StackMap stack:
            iload 2 /* row */
            iload 3 /* col */
            invokestatic org.graalvm.compiler.jtt.hotpath.HP_life.cell:(II)Z
            istore 4 /* value */
        start local 4 // boolean value
        12: .line 47
            iload 1 /* sum */
            iload 2 /* row */
            ldc 15223242
            imul
            iload 3 /* col */
            ldc 21623234
            imul
            iadd
            iload 4 /* value */
            ifeq 13
            iconst_1
            goto 14
      StackMap locals: int int int int int
      StackMap stack: int int
        13: iconst_0
      StackMap locals: int int int int int
      StackMap stack: int int int
        14: ldc 15323142
            imul
            ixor
            iadd
            istore 1 /* sum */
        end local 4 // boolean value
        15: .line 45
            iinc 3 /* col */ 1
      StackMap locals:
      StackMap stack:
        16: iload 3 /* col */
            bipush 20
            if_icmplt 11
        end local 3 // int col
        17: .line 44
            iinc 2 /* row */ 1
      StackMap locals:
      StackMap stack:
        18: iload 2 /* row */
            bipush 20
            if_icmplt 9
        end local 2 // int row
        19: .line 50
            iload 1 /* sum */
            ireturn
        end local 1 // int sum
        end local 0 // int generations
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   20     0  generations  I
            2    6     1            i  I
            7   20     1          sum  I
            8   19     2          row  I
           10   17     3          col  I
           12   15     4        value  Z
    MethodParameters:
             Name  Flags
      generations  

  private static boolean cell(int, int);
    descriptor: (II)Z
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // int row
        start local 1 // int col
         0: .line 58
            iload 0 /* row */
            iflt 1
            iload 0 /* row */
            bipush 20
            if_icmpge 1
            iload 1 /* col */
            iflt 1
            iload 1 /* col */
            bipush 20
            if_icmpge 1
            getstatic org.graalvm.compiler.jtt.hotpath.HP_life.cells:[Z
            iload 0 /* row */
            bipush 20
            imul
            iload 1 /* col */
            iadd
            baload
            ifeq 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // int col
        end local 0 // int row
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0   row  I
            0    2     1   col  I
    MethodParameters:
      Name  Flags
      row   
      col   

  private static boolean step();
    descriptor: ()Z
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=8, args_size=0
         0: .line 62
            sipush 400
            newarray 4
            astore 0 /* next */
        start local 0 // boolean[] next
         1: .line 63
            iconst_0
            istore 1 /* changed */
        start local 1 // boolean changed
         2: .line 64
            bipush 19
            istore 2 /* row */
        start local 2 // int row
         3: goto 36
         4: .line 65
      StackMap locals: boolean[] int int
      StackMap stack:
            iload 2 /* row */
            bipush 20
            imul
            istore 3 /* row_offset */
        start local 3 // int row_offset
         5: .line 66
            bipush 19
            istore 4 /* col */
        start local 4 // int col
         6: goto 34
         7: .line 67
      StackMap locals: int int
      StackMap stack:
            iconst_0
            istore 5 /* count */
        start local 5 // int count
         8: .line 68
            iload 2 /* row */
            iconst_1
            isub
            iload 4 /* col */
            iconst_1
            isub
            invokestatic org.graalvm.compiler.jtt.hotpath.HP_life.cell:(II)Z
            ifeq 10
         9: .line 69
            iinc 5 /* count */ 1
        10: .line 71
      StackMap locals: int
      StackMap stack:
            iload 2 /* row */
            iconst_1
            isub
            iload 4 /* col */
            invokestatic org.graalvm.compiler.jtt.hotpath.HP_life.cell:(II)Z
            ifeq 12
        11: .line 72
            iinc 5 /* count */ 1
        12: .line 74
      StackMap locals:
      StackMap stack:
            iload 2 /* row */
            iconst_1
            isub
            iload 4 /* col */
            iconst_1
            iadd
            invokestatic org.graalvm.compiler.jtt.hotpath.HP_life.cell:(II)Z
            ifeq 14
        13: .line 75
            iinc 5 /* count */ 1
        14: .line 77
      StackMap locals:
      StackMap stack:
            iload 2 /* row */
            iload 4 /* col */
            iconst_1
            isub
            invokestatic org.graalvm.compiler.jtt.hotpath.HP_life.cell:(II)Z
            ifeq 16
        15: .line 78
            iinc 5 /* count */ 1
        16: .line 80
      StackMap locals:
      StackMap stack:
            iload 2 /* row */
            iload 4 /* col */
            iconst_1
            iadd
            invokestatic org.graalvm.compiler.jtt.hotpath.HP_life.cell:(II)Z
            ifeq 18
        17: .line 81
            iinc 5 /* count */ 1
        18: .line 83
      StackMap locals:
      StackMap stack:
            iload 2 /* row */
            iconst_1
            iadd
            iload 4 /* col */
            iconst_1
            isub
            invokestatic org.graalvm.compiler.jtt.hotpath.HP_life.cell:(II)Z
            ifeq 20
        19: .line 84
            iinc 5 /* count */ 1
        20: .line 86
      StackMap locals:
      StackMap stack:
            iload 2 /* row */
            iconst_1
            iadd
            iload 4 /* col */
            invokestatic org.graalvm.compiler.jtt.hotpath.HP_life.cell:(II)Z
            ifeq 22
        21: .line 87
            iinc 5 /* count */ 1
        22: .line 89
      StackMap locals:
      StackMap stack:
            iload 2 /* row */
            iconst_1
            iadd
            iload 4 /* col */
            iconst_1
            iadd
            invokestatic org.graalvm.compiler.jtt.hotpath.HP_life.cell:(II)Z
            ifeq 24
        23: .line 90
            iinc 5 /* count */ 1
        24: .line 92
      StackMap locals:
      StackMap stack:
            getstatic org.graalvm.compiler.jtt.hotpath.HP_life.cells:[Z
            iload 3 /* row_offset */
            iload 4 /* col */
            iadd
            baload
            istore 6 /* old_state */
        start local 6 // boolean old_state
        25: .line 93
            iload 6 /* old_state */
            ifne 26
            iload 5 /* count */
            iconst_3
            if_icmpeq 28
      StackMap locals: int
      StackMap stack:
        26: iload 6 /* old_state */
            ifeq 27
            iload 5 /* count */
            iconst_2
            if_icmpeq 28
            iload 5 /* count */
            iconst_3
            if_icmpeq 28
      StackMap locals:
      StackMap stack:
        27: iconst_0
            goto 29
      StackMap locals:
      StackMap stack:
        28: iconst_1
      StackMap locals:
      StackMap stack: int
        29: istore 7 /* new_state */
        start local 7 // boolean new_state
        30: .line 94
            iload 1 /* changed */
            ifne 32
            iload 7 /* new_state */
            iload 6 /* old_state */
            if_icmpeq 32
        31: .line 95
            iconst_1
            istore 1 /* changed */
        32: .line 97
      StackMap locals: int
      StackMap stack:
            aload 0 /* next */
            iload 3 /* row_offset */
            iload 4 /* col */
            iadd
            iload 7 /* new_state */
            bastore
        end local 7 // boolean new_state
        end local 6 // boolean old_state
        end local 5 // int count
        33: .line 66
            iinc 4 /* col */ -1
      StackMap locals:
      StackMap stack:
        34: iload 4 /* col */
            ifge 7
        end local 4 // int col
        end local 3 // int row_offset
        35: .line 64
            iinc 2 /* row */ -1
      StackMap locals:
      StackMap stack:
        36: iload 2 /* row */
            ifge 4
        end local 2 // int row
        37: .line 100
            aload 0 /* next */
            putstatic org.graalvm.compiler.jtt.hotpath.HP_life.cells:[Z
        38: .line 101
            iload 1 /* changed */
            ireturn
        end local 1 // boolean changed
        end local 0 // boolean[] next
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            1   39     0        next  [Z
            2   39     1     changed  Z
            3   37     2         row  I
            5   35     3  row_offset  I
            6   35     4         col  I
            8   33     5       count  I
           25   33     6   old_state  Z
           30   33     7   new_state  Z

  private static void reset();
    descriptor: ()V
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=6, locals=3, args_size=0
         0: .line 105
            new java.util.Random
            dup
            lconst_0
            invokespecial java.util.Random.<init>:(J)V
            astore 0 /* random */
        start local 0 // java.util.Random random
         1: .line 106
            getstatic org.graalvm.compiler.jtt.hotpath.HP_life.cells:[Z
            astore 1 /* cells2 */
        start local 1 // boolean[] cells2
         2: .line 107
            iconst_0
            istore 2 /* offset */
        start local 2 // int offset
         3: goto 8
         4: .line 108
      StackMap locals: java.util.Random boolean[] int
      StackMap stack:
            aload 1 /* cells2 */
            iload 2 /* offset */
            aload 0 /* random */
            invokevirtual java.util.Random.nextDouble:()D
            ldc 0.5
            dcmpl
            ifle 5
            iconst_1
            goto 6
      StackMap locals: java.util.Random boolean[] int
      StackMap stack: boolean[] int
         5: iconst_0
      StackMap locals: java.util.Random boolean[] int
      StackMap stack: boolean[] int int
         6: bastore
         7: .line 107
            iinc 2 /* offset */ 1
      StackMap locals:
      StackMap stack:
         8: iload 2 /* offset */
            aload 1 /* cells2 */
            arraylength
            if_icmplt 4
        end local 2 // int offset
         9: .line 110
            return
        end local 1 // boolean[] cells2
        end local 0 // java.util.Random random
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            1   10     0  random  Ljava/util/Random;
            2   10     1  cells2  [Z
            3    9     2  offset  I

  public void run0();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.jtt.hotpath.HP_life this
         0: .line 112
            new java.lang.Error
            dup
            ldc "Unresolved compilation problem: \n\tTest cannot be resolved to a type\n"
            invokespecial java.lang.Error.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // org.graalvm.compiler.jtt.hotpath.HP_life this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/jtt/hotpath/HP_life;
    Exceptions:
      throws java.lang.Throwable
    RuntimeInvisibleAnnotations: 
      Test()
}
SourceFile: "HP_life.java"