org.jruby.ir.instructions.NotInstr Maven / Gradle / Ivy
package org.jruby.ir.instructions;
import org.jruby.ir.IRVisitor;
import org.jruby.ir.IRScope;
import org.jruby.ir.Operation;
import org.jruby.ir.operands.BooleanLiteral;
import org.jruby.ir.operands.Operand;
import org.jruby.ir.operands.Variable;
import org.jruby.ir.transformations.inlining.InlinerInfo;
import org.jruby.runtime.Block;
import org.jruby.runtime.DynamicScope;
import org.jruby.runtime.ThreadContext;
import org.jruby.runtime.builtin.IRubyObject;
import java.util.Map;
public class NotInstr extends Instr implements ResultInstr {
private Operand arg;
private Variable result;
public NotInstr(Variable result, Operand arg) {
super(Operation.NOT);
assert result != null: "NotInstr result is null";
this.arg = arg;
this.result = result;
}
public Operand[] getOperands() {
return new Operand[]{arg};
}
public Variable getResult() {
return result;
}
public void updateResult(Variable v) {
this.result = v;
}
@Override
public void simplifyOperands(Map valueMap, boolean force) {
arg = arg.getSimplifiedOperand(valueMap, force);
}
@Override
public String toString() {
return super.toString() + "(" + arg + ")";
}
@Override
public Instr cloneForInlining(InlinerInfo ii) {
return new NotInstr(ii.getRenamedVariable(result), arg.cloneForInlining(ii));
}
private Operand flipLogical(IRScope scope, BooleanLiteral value) {
return value.isTrue() ? scope.getManager().getFalse() : scope.getManager().getTrue();
}
@Override
public Operand simplifyAndGetResult(IRScope scope, Map valueMap) {
simplifyOperands(valueMap, false);
return arg instanceof BooleanLiteral ? flipLogical(scope, (BooleanLiteral) arg) : null;
}
@Override
public Object interpret(ThreadContext context, DynamicScope currDynScope, IRubyObject self, Object[] temp, Block block) {
boolean not = !((IRubyObject) arg.retrieve(context, self, currDynScope, temp)).isTrue();
return context.runtime.newBoolean(not);
}
@Override
public void visit(IRVisitor visitor) {
visitor.NotInstr(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy