public class org.graalvm.compiler.jtt.loop.LoopInline 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.loop.LoopInline
  super_class: org.graalvm.compiler.jtt.JTTTest
{
  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.jtt.loop.LoopInline this
         0: .line 31
            aload 0 /* this */
            invokespecial org.graalvm.compiler.jtt.JTTTest.<init>:()V
            return
        end local 0 // org.graalvm.compiler.jtt.loop.LoopInline this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/jtt/loop/LoopInline;

  public static int test(int);
    descriptor: (I)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // int arg
         0: .line 34
            iconst_0
            istore 1 /* count */
        start local 1 // int count
         1: .line 35
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         2: goto 8
         3: .line 36
      StackMap locals: int int
      StackMap stack:
            iload 1 /* count */
            iload 2 /* i */
            invokestatic org.graalvm.compiler.jtt.loop.LoopInline.foo:(I)I
            iadd
            istore 1 /* count */
         4: .line 37
            iload 1 /* count */
            bipush 15
            if_icmple 7
         5: .line 38
            iload 1 /* count */
            iconst_3
            invokestatic org.graalvm.compiler.jtt.loop.LoopInline.foo:(I)I
            isub
            istore 1 /* count */
         6: .line 39
            goto 9
         7: .line 35
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         8: iload 2 /* i */
            iload 0 /* arg */
            if_icmplt 3
        end local 2 // int i
         9: .line 42
      StackMap locals:
      StackMap stack:
            iload 1 /* count */
            ireturn
        end local 1 // int count
        end local 0 // int arg
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   10     0    arg  I
            1   10     1  count  I
            2    9     2      i  I
    MethodParameters:
      Name  Flags
      arg   

  public static int foo(int);
    descriptor: (I)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // int t
         0: .line 46
            iconst_0
            istore 1 /* sum */
        start local 1 // int sum
         1: .line 47
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         2: goto 8
         3: .line 48
      StackMap locals: int int
      StackMap stack:
            iload 1 /* sum */
            iload 2 /* i */
            iadd
            istore 1 /* sum */
         4: .line 49
            iload 2 /* i */
            iconst_4
            if_icmpne 7
         5: .line 50
            iload 1 /* sum */
            iload 1 /* sum */
            invokestatic org.graalvm.compiler.jtt.loop.LoopInline.foo2:(I)I
            iadd
            istore 1 /* sum */
         6: .line 51
            goto 9
         7: .line 47
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         8: iload 2 /* i */
            iload 0 /* t */
            if_icmplt 3
        end local 2 // int i
         9: .line 54
      StackMap locals:
      StackMap stack:
            iload 1 /* sum */
            ireturn
        end local 1 // int sum
        end local 0 // int t
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0     t  I
            1   10     1   sum  I
            2    9     2     i  I
    MethodParameters:
      Name  Flags
      t     

  public static int foo2(int);
    descriptor: (I)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // int i
         0: .line 58
            iload 0 /* i */
            istore 1 /* j */
        start local 1 // int j
         1: .line 59
            iconst_0
            istore 2 /* sum */
        start local 2 // int sum
         2: .line 60
            goto 5
         3: .line 61
      StackMap locals: int int
      StackMap stack:
            iload 2 /* sum */
            iload 1 /* j */
            iload 1 /* j */
            imul
            iadd
            istore 2 /* sum */
         4: .line 62
            iinc 1 /* j */ -1
         5: .line 60
      StackMap locals:
      StackMap stack:
            iload 1 /* j */
            ifgt 3
         6: .line 64
            iload 2 /* sum */
            ireturn
        end local 2 // int sum
        end local 1 // int j
        end local 0 // int i
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0     i  I
            1    7     1     j  I
            2    7     2   sum  I
    MethodParameters:
      Name  Flags
      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.loop.LoopInline this
         0: .line 67
            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.loop.LoopInline this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/jtt/loop/LoopInline;
    Exceptions:
      throws java.lang.Throwable
    RuntimeInvisibleAnnotations: 
      Test()

  public void run1();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.jtt.loop.LoopInline this
         0: .line 72
            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.loop.LoopInline this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/jtt/loop/LoopInline;
    Exceptions:
      throws java.lang.Throwable
    RuntimeInvisibleAnnotations: 
      Test()
}
SourceFile: "LoopInline.java"