org.jruby.truffle.language.locals.FlipFlopNode Maven / Gradle / Ivy
The newest version!
/*
* Copyright (c) 2013, 2017 Oracle and/or its affiliates. All rights reserved. This
* code is released under a tri EPL/GPL/LGPL license. You can use it,
* redistribute it and/or modify it under the terms of the:
*
* Eclipse Public License version 1.0
* GNU General Public License version 2
* GNU Lesser General Public License version 2.1
*/
package org.jruby.truffle.language.locals;
import com.oracle.truffle.api.frame.VirtualFrame;
import org.jruby.truffle.core.cast.BooleanCastNode;
import org.jruby.truffle.core.cast.BooleanCastNodeGen;
import org.jruby.truffle.language.RubyNode;
public class FlipFlopNode extends RubyNode {
private final boolean exclusive;
@Child private BooleanCastNode begin;
@Child private BooleanCastNode end;
@Child private FlipFlopStateNode stateNode;
public FlipFlopNode(RubyNode begin, RubyNode end,
FlipFlopStateNode stateNode, boolean exclusive) {
this.exclusive = exclusive;
this.begin = BooleanCastNodeGen.create(begin);
this.end = BooleanCastNodeGen.create(end);
this.stateNode = stateNode;
}
@Override
public boolean executeBoolean(VirtualFrame frame) {
if (exclusive) {
if (stateNode.getState(frame)) {
if (end.executeBoolean(frame)) {
stateNode.setState(frame, false);
}
return true;
} else {
final boolean newState = begin.executeBoolean(frame);
stateNode.setState(frame, newState);
return newState;
}
} else {
if (stateNode.getState(frame)) {
if (end.executeBoolean(frame)) {
stateNode.setState(frame, false);
}
return true;
} else {
if (begin.executeBoolean(frame)) {
stateNode.setState(frame, !end.executeBoolean(frame));
return true;
}
return false;
}
}
}
@Override
public Object execute(VirtualFrame frame) {
return executeBoolean(frame);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy