abstract class com.oracle.truffle.api.dsl.test.CachedTest$TestCodeGenerationPosNegGuard extends com.oracle.truffle.api.nodes.Node
  minor version: 0
  major version: 59
  flags: flags: (0x0420) ACC_SUPER, ACC_ABSTRACT
  this_class: com.oracle.truffle.api.dsl.test.CachedTest$TestCodeGenerationPosNegGuard
  super_class: com.oracle.truffle.api.nodes.Node
{
  void <init>();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.api.dsl.test.CachedTest$TestCodeGenerationPosNegGuard this
         0: .line 503
            aload 0 /* this */
            invokespecial com.oracle.truffle.api.nodes.Node.<init>:()V
            return
        end local 0 // com.oracle.truffle.api.dsl.test.CachedTest$TestCodeGenerationPosNegGuard this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/api/dsl/test/CachedTest$TestCodeGenerationPosNegGuard;

  public abstract int execute(java.lang.Object);
    descriptor: (Ljava/lang/Object;)I
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
         Name  Flags
      execute  

  static int do0(int);
    descriptor: (I)I
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // int value
         0: .line 509
            iload 0 /* value */
            ireturn
        end local 0 // int value
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0  value  I
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.dsl.Specialization(guards = {"guard(value)"})
    MethodParameters:
       Name  Flags
      value  

  static int do1(int, int);
    descriptor: (II)I
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // int value
        start local 1 // int cachedValue
         0: .line 514
            iload 1 /* cachedValue */
            ireturn
        end local 1 // int cachedValue
        end local 0 // int value
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    1     0        value  I
            0    1     1  cachedValue  I
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.dsl.Specialization(guards = {"!guard(value)", "value != cachedValue"}, limit = "3")
    RuntimeInvisibleParameterAnnotations: 
      0:
      1:
        com.oracle.truffle.api.dsl.Cached(value = "get(value)")
    MethodParameters:
             Name  Flags
      value        
      cachedValue  

  protected static boolean guard(int);
    descriptor: (I)Z
    flags: (0x000c) ACC_PROTECTED, ACC_STATIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // int i
         0: .line 518
            iload 0 /* i */
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // int i
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0     i  I
    MethodParameters:
      Name  Flags
      i     

  protected int get(int);
    descriptor: (I)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.truffle.api.dsl.test.CachedTest$TestCodeGenerationPosNegGuard this
        start local 1 // int i
         0: .line 522
            iload 1 /* i */
            iconst_2
            imul
            ireturn
        end local 1 // int i
        end local 0 // com.oracle.truffle.api.dsl.test.CachedTest$TestCodeGenerationPosNegGuard this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/api/dsl/test/CachedTest$TestCodeGenerationPosNegGuard;
            0    1     1     i  I
    MethodParameters:
      Name  Flags
      i     
}
SourceFile: "CachedTest.java"
NestHost: com.oracle.truffle.api.dsl.test.CachedTest
InnerClasses:
  abstract TestCodeGenerationPosNegGuard = com.oracle.truffle.api.dsl.test.CachedTest$TestCodeGenerationPosNegGuard of com.oracle.truffle.api.dsl.test.CachedTest
    RuntimeInvisibleAnnotations: 
      com.oracle.truffle.api.dsl.TypeSystemReference(value = Lcom/oracle/truffle/api/dsl/test/examples/ExampleTypes;)