public abstract class org.jruby.ir.instructions.PutInstr extends org.jruby.ir.instructions.TwoOperandInstr implements org.jruby.ir.instructions.FixedArityInstr
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: org.jruby.ir.instructions.PutInstr
  super_class: org.jruby.ir.instructions.TwoOperandInstr
{
  protected org.jruby.RubySymbol name;
    descriptor: Lorg/jruby/RubySymbol;
    flags: (0x0004) ACC_PROTECTED

  public void <init>(org.jruby.ir.Operation, org.jruby.ir.operands.Operand, org.jruby.RubySymbol, org.jruby.ir.operands.Operand);
    descriptor: (Lorg/jruby/ir/Operation;Lorg/jruby/ir/operands/Operand;Lorg/jruby/RubySymbol;Lorg/jruby/ir/operands/Operand;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=5
        start local 0 // org.jruby.ir.instructions.PutInstr this
        start local 1 // org.jruby.ir.Operation op
        start local 2 // org.jruby.ir.operands.Operand target
        start local 3 // org.jruby.RubySymbol name
        start local 4 // org.jruby.ir.operands.Operand value
         0: .line 13
            aload 0 /* this */
            aload 1 /* op */
            aload 2 /* target */
            aload 4 /* value */
            invokespecial org.jruby.ir.instructions.TwoOperandInstr.<init>:(Lorg/jruby/ir/Operation;Lorg/jruby/ir/operands/Operand;Lorg/jruby/ir/operands/Operand;)V
         1: .line 15
            aload 0 /* this */
            aload 3 /* name */
            putfield org.jruby.ir.instructions.PutInstr.name:Lorg/jruby/RubySymbol;
         2: .line 16
            return
        end local 4 // org.jruby.ir.operands.Operand value
        end local 3 // org.jruby.RubySymbol name
        end local 2 // org.jruby.ir.operands.Operand target
        end local 1 // org.jruby.ir.Operation op
        end local 0 // org.jruby.ir.instructions.PutInstr this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/jruby/ir/instructions/PutInstr;
            0    3     1      op  Lorg/jruby/ir/Operation;
            0    3     2  target  Lorg/jruby/ir/operands/Operand;
            0    3     3    name  Lorg/jruby/RubySymbol;
            0    3     4   value  Lorg/jruby/ir/operands/Operand;
    MethodParameters:
        Name  Flags
      op      
      target  
      name    
      value   

  public java.lang.String getId();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.ir.instructions.PutInstr this
         0: .line 19
            aload 0 /* this */
            getfield org.jruby.ir.instructions.PutInstr.name:Lorg/jruby/RubySymbol;
            invokevirtual org.jruby.RubySymbol.idString:()Ljava/lang/String;
            areturn
        end local 0 // org.jruby.ir.instructions.PutInstr this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ir/instructions/PutInstr;

  public org.jruby.RubySymbol getName();
    descriptor: ()Lorg/jruby/RubySymbol;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.ir.instructions.PutInstr this
         0: .line 23
            aload 0 /* this */
            getfield org.jruby.ir.instructions.PutInstr.name:Lorg/jruby/RubySymbol;
            areturn
        end local 0 // org.jruby.ir.instructions.PutInstr this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ir/instructions/PutInstr;

  public org.jruby.ir.operands.Operand getTarget();
    descriptor: ()Lorg/jruby/ir/operands/Operand;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.ir.instructions.PutInstr this
         0: .line 27
            aload 0 /* this */
            invokevirtual org.jruby.ir.instructions.PutInstr.getOperand1:()Lorg/jruby/ir/operands/Operand;
            areturn
        end local 0 // org.jruby.ir.instructions.PutInstr this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ir/instructions/PutInstr;

  public org.jruby.ir.operands.Operand getValue();
    descriptor: ()Lorg/jruby/ir/operands/Operand;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.ir.instructions.PutInstr this
         0: .line 31
            aload 0 /* this */
            invokevirtual org.jruby.ir.instructions.PutInstr.getOperand2:()Lorg/jruby/ir/operands/Operand;
            areturn
        end local 0 // org.jruby.ir.instructions.PutInstr this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ir/instructions/PutInstr;

  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.instructions.PutInstr this
        start local 1 // org.jruby.ir.persistence.IRWriterEncoder e
         0: .line 36
            aload 0 /* this */
            aload 1 /* e */
            invokespecial org.jruby.ir.instructions.TwoOperandInstr.encode:(Lorg/jruby/ir/persistence/IRWriterEncoder;)V
         1: .line 37
            aload 1 /* e */
            aload 0 /* this */
            invokevirtual org.jruby.ir.instructions.PutInstr.getTarget:()Lorg/jruby/ir/operands/Operand;
            invokeinterface org.jruby.ir.persistence.IRWriterEncoder.encode:(Lorg/jruby/ir/operands/Operand;)V
         2: .line 38
            aload 1 /* e */
            aload 0 /* this */
            invokevirtual org.jruby.ir.instructions.PutInstr.getName:()Lorg/jruby/RubySymbol;
            invokeinterface org.jruby.ir.persistence.IRWriterEncoder.encode:(Lorg/jruby/RubySymbol;)V
         3: .line 39
            aload 1 /* e */
            aload 0 /* this */
            invokevirtual org.jruby.ir.instructions.PutInstr.getValue:()Lorg/jruby/ir/operands/Operand;
            invokeinterface org.jruby.ir.persistence.IRWriterEncoder.encode:(Lorg/jruby/ir/operands/Operand;)V
         4: .line 40
            return
        end local 1 // org.jruby.ir.persistence.IRWriterEncoder e
        end local 0 // org.jruby.ir.instructions.PutInstr this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/jruby/ir/instructions/PutInstr;
            0    5     1     e  Lorg/jruby/ir/persistence/IRWriterEncoder;
    MethodParameters:
      Name  Flags
      e     

  public java.lang.String[] toStringNonOperandArgs();
    descriptor: ()[Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=1, args_size=1
        start local 0 // org.jruby.ir.instructions.PutInstr this
         0: .line 44
            iconst_1
            anewarray java.lang.String
            dup
            iconst_0
            new java.lang.StringBuilder
            dup
            ldc "name: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield org.jruby.ir.instructions.PutInstr.name:Lorg/jruby/RubySymbol;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            aastore
            areturn
        end local 0 // org.jruby.ir.instructions.PutInstr this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ir/instructions/PutInstr;
}
SourceFile: "PutInstr.java"