Skip to content
Snippets Groups Projects
Commit ba104080 authored by Florian Angerer's avatar Florian Angerer
Browse files

Lazy creation of ReuseNonSharedNode.

parent b3a7b5cd
No related branches found
No related tags found
No related merge requests found
......@@ -28,6 +28,7 @@ import static com.oracle.truffle.r.nodes.builtin.CastBuilder.Predef.nullValue;
import static com.oracle.truffle.r.runtime.builtins.RBehavior.PURE;
import static com.oracle.truffle.r.runtime.builtins.RBuiltinKind.PRIMITIVE;
import com.oracle.truffle.api.CompilerDirectives;
import com.oracle.truffle.api.dsl.Specialization;
import com.oracle.truffle.api.profiles.ConditionProfile;
import com.oracle.truffle.r.nodes.builtin.RBuiltinNode;
......@@ -42,11 +43,11 @@ public abstract class AsDouble extends RBuiltinNode.Arg2 {
private final ConditionProfile noAttributes = ConditionProfile.createBinaryProfile();
@Child protected ReuseNonSharedNode reuseNonShared = ReuseNonSharedNode.create();
@Child protected ReuseNonSharedNode reuseNonShared;
static {
Casts casts = new Casts(AsDouble.class);
casts.arg("x").returnIf(missingValue().or(nullValue()), emptyDoubleVector()).asDoubleVector(false, false, false);
casts.arg("x").returnIf(missingValue().or(nullValue()), emptyDoubleVector()).asDoubleVector();
}
@Specialization
......@@ -54,6 +55,10 @@ public abstract class AsDouble extends RBuiltinNode.Arg2 {
if (noAttributes.profile(v.getAttributes() == null)) {
return v;
} else {
if (reuseNonShared == null) {
CompilerDirectives.transferToInterpreterAndInvalidate();
reuseNonShared = insert(ReuseNonSharedNode.create());
}
RAbstractDoubleVector res = (RAbstractDoubleVector) reuseNonShared.execute(v);
res.resetAllAttributes(true);
return res;
......
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