Skip to content
Snippets Groups Projects
Commit 4749b1bd authored by Lukas Stadler's avatar Lukas Stadler
Browse files

create RSyntaxFunction only for valid function literals, RSyntaxCall otherwise

parent ac6f39df
No related branches found
No related tags found
No related merge requests found
...@@ -42,6 +42,7 @@ import com.oracle.truffle.r.runtime.data.RArgsValuesAndNames; ...@@ -42,6 +42,7 @@ import com.oracle.truffle.r.runtime.data.RArgsValuesAndNames;
import com.oracle.truffle.r.runtime.data.RDataFactory; import com.oracle.truffle.r.runtime.data.RDataFactory;
import com.oracle.truffle.r.runtime.data.RPairList; import com.oracle.truffle.r.runtime.data.RPairList;
import com.oracle.truffle.r.runtime.data.RMissing; import com.oracle.truffle.r.runtime.data.RMissing;
import com.oracle.truffle.r.runtime.data.RNull;
import com.oracle.truffle.r.runtime.nodes.RCodeBuilder; import com.oracle.truffle.r.runtime.nodes.RCodeBuilder;
import com.oracle.truffle.r.runtime.nodes.RNode; import com.oracle.truffle.r.runtime.nodes.RNode;
import com.oracle.truffle.r.runtime.nodes.RSyntaxLookup; import com.oracle.truffle.r.runtime.nodes.RSyntaxLookup;
...@@ -74,7 +75,8 @@ public abstract class Call extends RBuiltinNode.Arg2 { ...@@ -74,7 +75,8 @@ public abstract class Call extends RBuiltinNode.Arg2 {
@TruffleBoundary @TruffleBoundary
public static RPairList makeCall(TruffleRLanguage language, RSyntaxNode target, Object[] arguments, ArgumentsSignature signature) { public static RPairList makeCall(TruffleRLanguage language, RSyntaxNode target, Object[] arguments, ArgumentsSignature signature) {
assert arguments.length == signature.getLength(); assert arguments.length == signature.getLength();
if (target instanceof RSyntaxLookup && "function".equals(((RSyntaxLookup) target).getIdentifier()) && arguments.length >= 2) { if (target instanceof RSyntaxLookup && "function".equals(((RSyntaxLookup) target).getIdentifier()) && arguments.length >= 2 &&
(arguments[1] == RNull.instance || arguments[1] instanceof RPairList)) {
// this optimization is not strictly necessary, `function` builtin is functional too. // this optimization is not strictly necessary, `function` builtin is functional too.
FunctionExpressionNode function = FunctionBuiltin.createFunctionExpressionNode(language, arguments[0], arguments[1]); FunctionExpressionNode function = FunctionBuiltin.createFunctionExpressionNode(language, arguments[0], arguments[1]);
return RDataFactory.createLanguage(Closure.createLanguageClosure(function.asRNode())); return RDataFactory.createLanguage(Closure.createLanguageClosure(function.asRNode()));
......
...@@ -46,6 +46,7 @@ import com.oracle.truffle.r.runtime.gnur.SEXPTYPE; ...@@ -46,6 +46,7 @@ import com.oracle.truffle.r.runtime.gnur.SEXPTYPE;
import com.oracle.truffle.r.runtime.nodes.RBaseNode; import com.oracle.truffle.r.runtime.nodes.RBaseNode;
import com.oracle.truffle.r.runtime.nodes.RNode; import com.oracle.truffle.r.runtime.nodes.RNode;
import com.oracle.truffle.r.runtime.nodes.RSyntaxCall; import com.oracle.truffle.r.runtime.nodes.RSyntaxCall;
import com.oracle.truffle.r.runtime.nodes.RSyntaxConstant;
import com.oracle.truffle.r.runtime.nodes.RSyntaxElement; import com.oracle.truffle.r.runtime.nodes.RSyntaxElement;
import com.oracle.truffle.r.runtime.nodes.RSyntaxFunction; import com.oracle.truffle.r.runtime.nodes.RSyntaxFunction;
import com.oracle.truffle.r.runtime.nodes.RSyntaxLookup; import com.oracle.truffle.r.runtime.nodes.RSyntaxLookup;
...@@ -132,7 +133,17 @@ public final class RPairList extends RSharingAttributeStorage implements RAbstra ...@@ -132,7 +133,17 @@ public final class RPairList extends RSharingAttributeStorage implements RAbstra
if (node instanceof RSyntaxCall) { if (node instanceof RSyntaxCall) {
RSyntaxCall call = (RSyntaxCall) node; RSyntaxCall call = (RSyntaxCall) node;
if (call.getSyntaxLHS() instanceof RSyntaxLookup && ((RSyntaxLookup) call.getSyntaxLHS()).getIdentifier().equals("function")) { if (call.getSyntaxLHS() instanceof RSyntaxLookup && ((RSyntaxLookup) call.getSyntaxLHS()).getIdentifier().equals("function")) {
assert false : "calls to 'function' should be instances of RSyntaxFunction"; boolean valid = true;
valid &= call.getSyntaxSignature().getLength() >= 2;
if (valid) {
RSyntaxElement argList = call.getSyntaxArguments()[1];
valid &= argList instanceof RSyntaxConstant;
if (valid) {
Object list = ((RSyntaxConstant) argList).getValue();
valid &= list instanceof RNull || list instanceof RPairList;
}
}
assert !valid : "valid calls to 'function' should be instances of RSyntaxFunction";
} }
} else { } else {
assert node instanceof RSyntaxFunction : "invalid contents of 'language' pairlist: " + node; assert node instanceof RSyntaxFunction : "invalid contents of 'language' pairlist: " + node;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment