public abstract class org.jruby.ir.transformations.inlining.CloneInfo
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: org.jruby.ir.transformations.inlining.CloneInfo
  super_class: java.lang.Object
{
  protected java.util.Map<org.jruby.ir.operands.Label, org.jruby.ir.operands.Label> labelRenameMap;
    descriptor: Ljava/util/Map;
    flags: (0x0004) ACC_PROTECTED
    Signature: Ljava/util/Map<Lorg/jruby/ir/operands/Label;Lorg/jruby/ir/operands/Label;>;

  protected java.util.Map<org.jruby.ir.operands.Variable, org.jruby.ir.operands.Variable> variableRenameMap;
    descriptor: Ljava/util/Map;
    flags: (0x0004) ACC_PROTECTED
    Signature: Ljava/util/Map<Lorg/jruby/ir/operands/Variable;Lorg/jruby/ir/operands/Variable;>;

  protected org.jruby.ir.IRScope scope;
    descriptor: Lorg/jruby/ir/IRScope;
    flags: (0x0004) ACC_PROTECTED

  protected void <init>(org.jruby.ir.IRScope);
    descriptor: (Lorg/jruby/ir/IRScope;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.jruby.ir.transformations.inlining.CloneInfo this
        start local 1 // org.jruby.ir.IRScope scope
         0: .line 22
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 17
            aload 0 /* this */
            new java.util.HashMap
            dup
            invokespecial java.util.HashMap.<init>:()V
            putfield org.jruby.ir.transformations.inlining.CloneInfo.labelRenameMap:Ljava/util/Map;
         2: .line 18
            aload 0 /* this */
            new java.util.HashMap
            dup
            invokespecial java.util.HashMap.<init>:()V
            putfield org.jruby.ir.transformations.inlining.CloneInfo.variableRenameMap:Ljava/util/Map;
         3: .line 23
            aload 0 /* this */
            aload 1 /* scope */
            putfield org.jruby.ir.transformations.inlining.CloneInfo.scope:Lorg/jruby/ir/IRScope;
         4: .line 24
            return
        end local 1 // org.jruby.ir.IRScope scope
        end local 0 // org.jruby.ir.transformations.inlining.CloneInfo this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lorg/jruby/ir/transformations/inlining/CloneInfo;
            0    5     1  scope  Lorg/jruby/ir/IRScope;
    MethodParameters:
       Name  Flags
      scope  

  public org.jruby.ir.transformations.inlining.SimpleCloneInfo cloneForCloningClosure(org.jruby.ir.IRClosure);
    descriptor: (Lorg/jruby/ir/IRClosure;)Lorg/jruby/ir/transformations/inlining/SimpleCloneInfo;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // org.jruby.ir.transformations.inlining.CloneInfo this
        start local 1 // org.jruby.ir.IRClosure clonedClosure
         0: .line 28
            aload 0 /* this */
            instanceof org.jruby.ir.transformations.inlining.SimpleCloneInfo
            ifeq 1
            aload 0 /* this */
            checkcast org.jruby.ir.transformations.inlining.SimpleCloneInfo
            invokevirtual org.jruby.ir.transformations.inlining.SimpleCloneInfo.isEnsureBlockCloneMode:()Z
            ifeq 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: istore 2 /* ensureClone */
        start local 2 // boolean ensureClone
         3: .line 29
            new org.jruby.ir.transformations.inlining.SimpleCloneInfo
            dup
            aload 1 /* clonedClosure */
            iload 2 /* ensureClone */
            invokespecial org.jruby.ir.transformations.inlining.SimpleCloneInfo.<init>:(Lorg/jruby/ir/IRScope;Z)V
            astore 3 /* clone */
        start local 3 // org.jruby.ir.transformations.inlining.SimpleCloneInfo clone
         4: .line 31
            aload 3 /* clone */
            getfield org.jruby.ir.transformations.inlining.SimpleCloneInfo.variableRenameMap:Ljava/util/Map;
            aload 0 /* this */
            getfield org.jruby.ir.transformations.inlining.CloneInfo.variableRenameMap:Ljava/util/Map;
            invokeinterface java.util.Map.putAll:(Ljava/util/Map;)V
         5: .line 33
            aload 3 /* clone */
            areturn
        end local 3 // org.jruby.ir.transformations.inlining.SimpleCloneInfo clone
        end local 2 // boolean ensureClone
        end local 1 // org.jruby.ir.IRClosure clonedClosure
        end local 0 // org.jruby.ir.transformations.inlining.CloneInfo this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    6     0           this  Lorg/jruby/ir/transformations/inlining/CloneInfo;
            0    6     1  clonedClosure  Lorg/jruby/ir/IRClosure;
            3    6     2    ensureClone  Z
            4    6     3          clone  Lorg/jruby/ir/transformations/inlining/SimpleCloneInfo;
    MethodParameters:
               Name  Flags
      clonedClosure  

  public org.jruby.ir.IRScope getScope();
    descriptor: ()Lorg/jruby/ir/IRScope;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.ir.transformations.inlining.CloneInfo this
         0: .line 40
            aload 0 /* this */
            getfield org.jruby.ir.transformations.inlining.CloneInfo.scope:Lorg/jruby/ir/IRScope;
            areturn
        end local 0 // org.jruby.ir.transformations.inlining.CloneInfo this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ir/transformations/inlining/CloneInfo;

  protected abstract org.jruby.ir.operands.Label getRenamedLabelSimple(org.jruby.ir.operands.Label);
    descriptor: (Lorg/jruby/ir/operands/Label;)Lorg/jruby/ir/operands/Label;
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT
    MethodParameters:
      Name  Flags
      l     

  public org.jruby.ir.operands.Label getRenamedLabel(org.jruby.ir.operands.Label);
    descriptor: (Lorg/jruby/ir/operands/Label;)Lorg/jruby/ir/operands/Label;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.jruby.ir.transformations.inlining.CloneInfo this
        start local 1 // org.jruby.ir.operands.Label label
         0: .line 53
            getstatic org.jruby.ir.operands.Label.UNRESCUED_REGION_LABEL:Lorg/jruby/ir/operands/Label;
            aload 1 /* label */
            invokevirtual org.jruby.ir.operands.Label.equals:(Ljava/lang/Object;)Z
            ifeq 1
            aload 1 /* label */
            areturn
         1: .line 55
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.jruby.ir.transformations.inlining.CloneInfo.labelRenameMap:Ljava/util/Map;
            aload 1 /* label */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast org.jruby.ir.operands.Label
            astore 2 /* newLabel */
        start local 2 // org.jruby.ir.operands.Label newLabel
         2: .line 56
            aload 2 /* newLabel */
            ifnonnull 5
         3: .line 57
            aload 0 /* this */
            aload 1 /* label */
            invokevirtual org.jruby.ir.transformations.inlining.CloneInfo.getRenamedLabelSimple:(Lorg/jruby/ir/operands/Label;)Lorg/jruby/ir/operands/Label;
            astore 2 /* newLabel */
         4: .line 58
            aload 0 /* this */
            getfield org.jruby.ir.transformations.inlining.CloneInfo.labelRenameMap:Ljava/util/Map;
            aload 1 /* label */
            aload 2 /* newLabel */
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         5: .line 60
      StackMap locals: org.jruby.ir.operands.Label
      StackMap stack:
            aload 2 /* newLabel */
            areturn
        end local 2 // org.jruby.ir.operands.Label newLabel
        end local 1 // org.jruby.ir.operands.Label label
        end local 0 // org.jruby.ir.transformations.inlining.CloneInfo this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    6     0      this  Lorg/jruby/ir/transformations/inlining/CloneInfo;
            0    6     1     label  Lorg/jruby/ir/operands/Label;
            2    6     2  newLabel  Lorg/jruby/ir/operands/Label;
    MethodParameters:
       Name  Flags
      label  

  protected abstract org.jruby.ir.operands.Variable getRenamedSelfVariable(org.jruby.ir.operands.Variable);
    descriptor: (Lorg/jruby/ir/operands/Variable;)Lorg/jruby/ir/operands/Variable;
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT
    MethodParameters:
      Name  Flags
      self  

  protected abstract org.jruby.ir.operands.Variable getRenamedVariableSimple(org.jruby.ir.operands.Variable);
    descriptor: (Lorg/jruby/ir/operands/Variable;)Lorg/jruby/ir/operands/Variable;
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT
    MethodParameters:
          Name  Flags
      variable  

  public org.jruby.ir.operands.Variable getRenamedVariable(org.jruby.ir.operands.Variable);
    descriptor: (Lorg/jruby/ir/operands/Variable;)Lorg/jruby/ir/operands/Variable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.jruby.ir.transformations.inlining.CloneInfo this
        start local 1 // org.jruby.ir.operands.Variable variable
         0: .line 87
            aload 1 /* variable */
            instanceof org.jruby.ir.operands.Self
            ifeq 1
            aload 0 /* this */
            aload 1 /* variable */
            invokevirtual org.jruby.ir.transformations.inlining.CloneInfo.getRenamedSelfVariable:(Lorg/jruby/ir/operands/Variable;)Lorg/jruby/ir/operands/Variable;
            areturn
         1: .line 89
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.jruby.ir.transformations.inlining.CloneInfo.variableRenameMap:Ljava/util/Map;
            aload 1 /* variable */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast org.jruby.ir.operands.Variable
            astore 2 /* newVariable */
        start local 2 // org.jruby.ir.operands.Variable newVariable
         2: .line 90
            aload 2 /* newVariable */
            ifnonnull 5
         3: .line 91
            aload 0 /* this */
            aload 1 /* variable */
            invokevirtual org.jruby.ir.transformations.inlining.CloneInfo.getRenamedVariableSimple:(Lorg/jruby/ir/operands/Variable;)Lorg/jruby/ir/operands/Variable;
            astore 2 /* newVariable */
         4: .line 92
            aload 0 /* this */
            getfield org.jruby.ir.transformations.inlining.CloneInfo.variableRenameMap:Ljava/util/Map;
            aload 1 /* variable */
            aload 2 /* newVariable */
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         5: .line 95
      StackMap locals: org.jruby.ir.operands.Variable
      StackMap stack:
            aload 2 /* newVariable */
            areturn
        end local 2 // org.jruby.ir.operands.Variable newVariable
        end local 1 // org.jruby.ir.operands.Variable variable
        end local 0 // org.jruby.ir.transformations.inlining.CloneInfo this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    6     0         this  Lorg/jruby/ir/transformations/inlining/CloneInfo;
            0    6     1     variable  Lorg/jruby/ir/operands/Variable;
            2    6     2  newVariable  Lorg/jruby/ir/operands/Variable;
    MethodParameters:
          Name  Flags
      variable  
}
SourceFile: "CloneInfo.java"