public class org.jruby.ir.operands.Label extends org.jruby.ir.operands.Operand
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.jruby.ir.operands.Label
  super_class: org.jruby.ir.operands.Operand
{
  public static final org.jruby.ir.operands.Label UNRESCUED_REGION_LABEL;
    descriptor: Lorg/jruby/ir/operands/Label;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  private static final org.jruby.ir.operands.Label GLOBAL_ENSURE_BLOCK_LABEL;
    descriptor: Lorg/jruby/ir/operands/Label;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  public final java.lang.String prefix;
    descriptor: Ljava/lang/String;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL

  public final int id;
    descriptor: I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL

  private int targetPC;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=0, args_size=0
         0: .line 14
            new org.jruby.ir.operands.Label
            dup
            ldc "UNRESCUED_REGION"
            iconst_0
            invokespecial org.jruby.ir.operands.Label.<init>:(Ljava/lang/String;I)V
            putstatic org.jruby.ir.operands.Label.UNRESCUED_REGION_LABEL:Lorg/jruby/ir/operands/Label;
         1: .line 15
            new org.jruby.ir.operands.Label
            dup
            ldc "_GLOBAL_ENSURE_BLOCK_"
            iconst_0
            invokespecial org.jruby.ir.operands.Label.<init>:(Ljava/lang/String;I)V
            putstatic org.jruby.ir.operands.Label.GLOBAL_ENSURE_BLOCK_LABEL:Lorg/jruby/ir/operands/Label;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public static org.jruby.ir.operands.Label getGlobalEnsureBlockLabel();
    descriptor: ()Lorg/jruby/ir/operands/Label;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 25
            getstatic org.jruby.ir.operands.Label.GLOBAL_ENSURE_BLOCK_LABEL:Lorg/jruby/ir/operands/Label;
            invokevirtual org.jruby.ir.operands.Label.clone:()Lorg/jruby/ir/operands/Label;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(java.lang.String, int);
    descriptor: (Ljava/lang/String;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.jruby.ir.operands.Label this
        start local 1 // java.lang.String prefix
        start local 2 // int id
         0: .line 28
            aload 0 /* this */
            invokespecial org.jruby.ir.operands.Operand.<init>:()V
         1: .line 22
            aload 0 /* this */
            iconst_m1
            putfield org.jruby.ir.operands.Label.targetPC:I
         2: .line 30
            aload 0 /* this */
            aload 1 /* prefix */
            putfield org.jruby.ir.operands.Label.prefix:Ljava/lang/String;
         3: .line 31
            aload 0 /* this */
            iload 2 /* id */
            putfield org.jruby.ir.operands.Label.id:I
         4: .line 32
            return
        end local 2 // int id
        end local 1 // java.lang.String prefix
        end local 0 // org.jruby.ir.operands.Label this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lorg/jruby/ir/operands/Label;
            0    5     1  prefix  Ljava/lang/String;
            0    5     2      id  I
    MethodParameters:
        Name  Flags
      prefix  
      id      

  public org.jruby.ir.operands.OperandType getOperandType();
    descriptor: ()Lorg/jruby/ir/operands/OperandType;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.ir.operands.Label this
         0: .line 36
            getstatic org.jruby.ir.operands.OperandType.LABEL:Lorg/jruby/ir/operands/OperandType;
            areturn
        end local 0 // org.jruby.ir.operands.Label this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ir/operands/Label;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.jruby.ir.operands.Label this
         0: .line 41
            new java.lang.StringBuilder
            dup
            aload 0 /* this */
            getfield org.jruby.ir.operands.Label.prefix:Ljava/lang/String;
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            bipush 95
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield org.jruby.ir.operands.Label.id:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            bipush 58
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield org.jruby.ir.operands.Label.targetPC:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // org.jruby.ir.operands.Label this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ir/operands/Label;

  public void addUsedVariables(java.util.List<org.jruby.ir.operands.Variable>);
    descriptor: (Ljava/util/List;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=2, args_size=2
        start local 0 // org.jruby.ir.operands.Label this
        start local 1 // java.util.List l
         0: .line 47
            return
        end local 1 // java.util.List l
        end local 0 // org.jruby.ir.operands.Label this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ir/operands/Label;
            0    1     1     l  Ljava/util/List<Lorg/jruby/ir/operands/Variable;>;
    Signature: (Ljava/util/List<Lorg/jruby/ir/operands/Variable;>;)V
    MethodParameters:
      Name  Flags
      l     

  public boolean canCopyPropagate();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.ir.operands.Label this
         0: .line 51
            iconst_1
            ireturn
        end local 0 // org.jruby.ir.operands.Label this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ir/operands/Label;

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.jruby.ir.operands.Label this
         0: .line 56
            bipush 11
            bipush 77
            aload 0 /* this */
            getfield org.jruby.ir.operands.Label.prefix:Ljava/lang/String;
            invokestatic java.lang.System.identityHashCode:(Ljava/lang/Object;)I
            iadd
            imul
            aload 0 /* this */
            getfield org.jruby.ir.operands.Label.id:I
            iadd
            ireturn
        end local 0 // org.jruby.ir.operands.Label this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ir/operands/Label;

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.jruby.ir.operands.Label this
        start local 1 // java.lang.Object o
         0: .line 61
            aload 1 /* o */
            instanceof org.jruby.ir.operands.Label
            ifeq 1
            aload 0 /* this */
            getfield org.jruby.ir.operands.Label.id:I
            aload 1 /* o */
            checkcast org.jruby.ir.operands.Label
            getfield org.jruby.ir.operands.Label.id:I
            if_icmpne 1
            aload 0 /* this */
            getfield org.jruby.ir.operands.Label.prefix:Ljava/lang/String;
            aload 1 /* o */
            checkcast org.jruby.ir.operands.Label
            getfield org.jruby.ir.operands.Label.prefix:Ljava/lang/String;
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // java.lang.Object o
        end local 0 // org.jruby.ir.operands.Label this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/jruby/ir/operands/Label;
            0    2     1     o  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      o     

  public boolean isGlobalEnsureBlockLabel();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.jruby.ir.operands.Label this
         0: .line 65
            aload 0 /* this */
            getstatic org.jruby.ir.operands.Label.GLOBAL_ENSURE_BLOCK_LABEL:Lorg/jruby/ir/operands/Label;
            invokevirtual org.jruby.ir.operands.Label.equals:(Ljava/lang/Object;)Z
            ireturn
        end local 0 // org.jruby.ir.operands.Label this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ir/operands/Label;

  public org.jruby.ir.operands.Label clone();
    descriptor: ()Lorg/jruby/ir/operands/Label;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // org.jruby.ir.operands.Label this
         0: .line 69
            new org.jruby.ir.operands.Label
            dup
            aload 0 /* this */
            getfield org.jruby.ir.operands.Label.prefix:Ljava/lang/String;
            aload 0 /* this */
            getfield org.jruby.ir.operands.Label.id:I
            invokespecial org.jruby.ir.operands.Label.<init>:(Ljava/lang/String;I)V
            astore 1 /* newL */
        start local 1 // org.jruby.ir.operands.Label newL
         1: .line 70
            aload 1 /* newL */
            aload 0 /* this */
            invokevirtual org.jruby.ir.operands.Label.getTargetPC:()I
            invokevirtual org.jruby.ir.operands.Label.setTargetPC:(I)V
         2: .line 71
            aload 1 /* newL */
            areturn
        end local 1 // org.jruby.ir.operands.Label newL
        end local 0 // org.jruby.ir.operands.Label this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/jruby/ir/operands/Label;
            1    3     1  newL  Lorg/jruby/ir/operands/Label;

  public org.jruby.ir.operands.Operand cloneForInlining(org.jruby.ir.transformations.inlining.CloneInfo);
    descriptor: (Lorg/jruby/ir/transformations/inlining/CloneInfo;)Lorg/jruby/ir/operands/Operand;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.jruby.ir.operands.Label this
        start local 1 // org.jruby.ir.transformations.inlining.CloneInfo ii
         0: .line 76
            aload 1 /* ii */
            aload 0 /* this */
            invokevirtual org.jruby.ir.transformations.inlining.CloneInfo.getRenamedLabel:(Lorg/jruby/ir/operands/Label;)Lorg/jruby/ir/operands/Label;
            areturn
        end local 1 // org.jruby.ir.transformations.inlining.CloneInfo ii
        end local 0 // org.jruby.ir.operands.Label this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ir/operands/Label;
            0    1     1    ii  Lorg/jruby/ir/transformations/inlining/CloneInfo;
    MethodParameters:
      Name  Flags
      ii    

  public void setTargetPC(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.jruby.ir.operands.Label this
        start local 1 // int i
         0: .line 80
            aload 0 /* this */
            iload 1 /* i */
            putfield org.jruby.ir.operands.Label.targetPC:I
         1: .line 81
            return
        end local 1 // int i
        end local 0 // org.jruby.ir.operands.Label this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/jruby/ir/operands/Label;
            0    2     1     i  I
    MethodParameters:
      Name  Flags
      i     

  public int getTargetPC();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.ir.operands.Label this
         0: .line 84
            aload 0 /* this */
            getfield org.jruby.ir.operands.Label.targetPC:I
            ireturn
        end local 0 // org.jruby.ir.operands.Label this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ir/operands/Label;

  public void encode(org.jruby.ir.persistence.IRWriterEncoder);
    descriptor: (Lorg/jruby/ir/persistence/IRWriterEncoder;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.jruby.ir.operands.Label this
        start local 1 // org.jruby.ir.persistence.IRWriterEncoder e
         0: .line 89
            aload 0 /* this */
            aload 1 /* e */
            invokespecial org.jruby.ir.operands.Operand.encode:(Lorg/jruby/ir/persistence/IRWriterEncoder;)V
         1: .line 90
            aload 1 /* e */
            aload 0 /* this */
            getfield org.jruby.ir.operands.Label.prefix:Ljava/lang/String;
            invokeinterface org.jruby.ir.persistence.IRWriterEncoder.encode:(Ljava/lang/String;)V
         2: .line 91
            aload 1 /* e */
            aload 0 /* this */
            getfield org.jruby.ir.operands.Label.id:I
            invokeinterface org.jruby.ir.persistence.IRWriterEncoder.encode:(I)V
         3: .line 92
            return
        end local 1 // org.jruby.ir.persistence.IRWriterEncoder e
        end local 0 // org.jruby.ir.operands.Label this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/jruby/ir/operands/Label;
            0    4     1     e  Lorg/jruby/ir/persistence/IRWriterEncoder;
    MethodParameters:
      Name  Flags
      e     

  public static org.jruby.ir.operands.Label decode(org.jruby.ir.persistence.IRReaderDecoder);
    descriptor: (Lorg/jruby/ir/persistence/IRReaderDecoder;)Lorg/jruby/ir/operands/Label;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=5, args_size=1
        start local 0 // org.jruby.ir.persistence.IRReaderDecoder d
         0: .line 95
            aload 0 /* d */
            invokeinterface org.jruby.ir.persistence.IRReaderDecoder.decodeString:()Ljava/lang/String;
            astore 1 /* prefix */
        start local 1 // java.lang.String prefix
         1: .line 96
            aload 0 /* d */
            invokeinterface org.jruby.ir.persistence.IRReaderDecoder.decodeInt:()I
            istore 2 /* id */
        start local 2 // int id
         2: .line 99
            ldc "_GLOBAL_ENSURE_BLOCK"
            aload 1 /* prefix */
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 3
            new org.jruby.ir.operands.Label
            dup
            ldc "_GLOBAL_ENSURE_BLOCK"
            iconst_0
            invokespecial org.jruby.ir.operands.Label.<init>:(Ljava/lang/String;I)V
            areturn
         3: .line 104
      StackMap locals: java.lang.String int
      StackMap stack:
            new java.lang.StringBuilder
            dup
            aload 1 /* prefix */
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            bipush 95
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            iload 2 /* id */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            astore 3 /* fullLabel */
        start local 3 // java.lang.String fullLabel
         4: .line 105
            aload 0 /* d */
            invokeinterface org.jruby.ir.persistence.IRReaderDecoder.getVars:()Ljava/util/Map;
            aload 3 /* fullLabel */
            invokeinterface java.util.Map.containsKey:(Ljava/lang/Object;)Z
            ifeq 6
         5: .line 106
            aload 0 /* d */
            invokeinterface org.jruby.ir.persistence.IRReaderDecoder.getVars:()Ljava/util/Map;
            aload 3 /* fullLabel */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast org.jruby.ir.operands.Label
            areturn
         6: .line 109
      StackMap locals: java.lang.String
      StackMap stack:
            new org.jruby.ir.operands.Label
            dup
            aload 1 /* prefix */
            iload 2 /* id */
            invokespecial org.jruby.ir.operands.Label.<init>:(Ljava/lang/String;I)V
            astore 4 /* newLabel */
        start local 4 // org.jruby.ir.operands.Label newLabel
         7: .line 112
            aload 0 /* d */
            invokeinterface org.jruby.ir.persistence.IRReaderDecoder.getVars:()Ljava/util/Map;
            aload 3 /* fullLabel */
            aload 4 /* newLabel */
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         8: .line 114
            aload 4 /* newLabel */
            areturn
        end local 4 // org.jruby.ir.operands.Label newLabel
        end local 3 // java.lang.String fullLabel
        end local 2 // int id
        end local 1 // java.lang.String prefix
        end local 0 // org.jruby.ir.persistence.IRReaderDecoder d
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    9     0          d  Lorg/jruby/ir/persistence/IRReaderDecoder;
            1    9     1     prefix  Ljava/lang/String;
            2    9     2         id  I
            4    9     3  fullLabel  Ljava/lang/String;
            7    9     4   newLabel  Lorg/jruby/ir/operands/Label;
    MethodParameters:
      Name  Flags
      d     

  public void visit(org.jruby.ir.IRVisitor);
    descriptor: (Lorg/jruby/ir/IRVisitor;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.jruby.ir.operands.Label this
        start local 1 // org.jruby.ir.IRVisitor visitor
         0: .line 119
            aload 1 /* visitor */
            aload 0 /* this */
            invokevirtual org.jruby.ir.IRVisitor.Label:(Lorg/jruby/ir/operands/Label;)V
         1: .line 120
            return
        end local 1 // org.jruby.ir.IRVisitor visitor
        end local 0 // org.jruby.ir.operands.Label this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/jruby/ir/operands/Label;
            0    2     1  visitor  Lorg/jruby/ir/IRVisitor;
    MethodParameters:
         Name  Flags
      visitor  

  public java.lang.Object clone();
    descriptor: ()Ljava/lang/Object;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.jruby.ir.operands.Label.clone:()Lorg/jruby/ir/operands/Label;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.lang.CloneNotSupportedException
}
SourceFile: "Label.java"