public JRubyImplCallInstr(
     Variable result,
     JRubyImplementationMethod methAddr,
     Operand receiver,
     Operand[] args,
     Operand closure) {
   super(result, methAddr.getMethAddr(), receiver, args, closure);
   this.implMethod = methAddr;
 }
 public JRubyImplCallInstr(
     Variable result, JRubyImplementationMethod methAddr, Operand receiver, Operand[] args) {
   super(Operation.JRUBY_IMPL, result, methAddr.getMethAddr(), receiver, args, null);
   this.implMethod = methAddr;
 }