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

use VectorFactory in cast nodes

parent 830e9224
No related branches found
No related tags found
No related merge requests found
Showing
with 63 additions and 69 deletions
/* /*
* Copyright (c) 2013, 2017, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2013, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
...@@ -32,13 +32,13 @@ import com.oracle.truffle.api.profiles.ValueProfile; ...@@ -32,13 +32,13 @@ import com.oracle.truffle.api.profiles.ValueProfile;
import com.oracle.truffle.r.nodes.attributes.SpecialAttributesFunctions.GetDimAttributeNode; import com.oracle.truffle.r.nodes.attributes.SpecialAttributesFunctions.GetDimAttributeNode;
import com.oracle.truffle.r.nodes.attributes.SpecialAttributesFunctions.GetDimNamesAttributeNode; import com.oracle.truffle.r.nodes.attributes.SpecialAttributesFunctions.GetDimNamesAttributeNode;
import com.oracle.truffle.r.nodes.attributes.SpecialAttributesFunctions.GetNamesAttributeNode; import com.oracle.truffle.r.nodes.attributes.SpecialAttributesFunctions.GetNamesAttributeNode;
import com.oracle.truffle.r.nodes.attributes.SpecialAttributesFunctions.SetDimNamesAttributeNode;
import com.oracle.truffle.r.runtime.NullProfile; import com.oracle.truffle.r.runtime.NullProfile;
import com.oracle.truffle.r.runtime.RError; import com.oracle.truffle.r.runtime.RError;
import com.oracle.truffle.r.runtime.RError.Message; import com.oracle.truffle.r.runtime.RError.Message;
import com.oracle.truffle.r.runtime.RInternalError; import com.oracle.truffle.r.runtime.RInternalError;
import com.oracle.truffle.r.runtime.RRuntime; import com.oracle.truffle.r.runtime.RRuntime;
import com.oracle.truffle.r.runtime.RType; import com.oracle.truffle.r.runtime.RType;
import com.oracle.truffle.r.runtime.data.RDataFactory.VectorFactory;
import com.oracle.truffle.r.runtime.data.RList; import com.oracle.truffle.r.runtime.data.RList;
import com.oracle.truffle.r.runtime.data.RNull; import com.oracle.truffle.r.runtime.data.RNull;
import com.oracle.truffle.r.runtime.data.RStringVector; import com.oracle.truffle.r.runtime.data.RStringVector;
...@@ -50,16 +50,17 @@ import com.oracle.truffle.r.runtime.env.REnvironment; ...@@ -50,16 +50,17 @@ import com.oracle.truffle.r.runtime.env.REnvironment;
public abstract class CastBaseNode extends CastNode { public abstract class CastBaseNode extends CastNode {
private final BranchProfile listCoercionErrorBranch = BranchProfile.create(); private final BranchProfile listCoercionErrorBranch = BranchProfile.create();
private final ConditionProfile hasDimNamesProfile = ConditionProfile.createBinaryProfile();
private final NullProfile hasDimensionsProfile = NullProfile.create(); private final NullProfile hasDimensionsProfile = NullProfile.create();
private final NullProfile hasNamesProfile = NullProfile.create(); private final NullProfile hasNamesProfile = NullProfile.create();
private final NullProfile hasDimNamesProfile = NullProfile.create();
private final ValueProfile reuseClassProfile; private final ValueProfile reuseClassProfile;
@Child private GetNamesAttributeNode getNamesNode = GetNamesAttributeNode.create(); @Child private GetNamesAttributeNode getNamesNode = GetNamesAttributeNode.create();
@Child private GetDimAttributeNode getDimNode; @Child private GetDimAttributeNode getDimNode;
@Child private SetDimNamesAttributeNode setDimNamesNode;
@Child private GetDimNamesAttributeNode getDimNamesNode; @Child private GetDimNamesAttributeNode getDimNamesNode;
@Child private VectorFactory factory;
private final boolean preserveNames; private final boolean preserveNames;
private final boolean preserveDimensions; private final boolean preserveDimensions;
private final boolean preserveAttributes; private final boolean preserveAttributes;
...@@ -87,13 +88,18 @@ public abstract class CastBaseNode extends CastNode { ...@@ -87,13 +88,18 @@ public abstract class CastBaseNode extends CastNode {
this.preserveDimensions = preserveDimensions; this.preserveDimensions = preserveDimensions;
this.preserveAttributes = preserveAttributes; this.preserveAttributes = preserveAttributes;
this.forRFFI = forRFFI; this.forRFFI = forRFFI;
if (preserveDimensions) {
getDimNamesNode = GetDimNamesAttributeNode.create();
}
this.useClosure = useClosure; this.useClosure = useClosure;
reuseClassProfile = useClosure ? ValueProfile.createClassProfile() : null; reuseClassProfile = useClosure ? ValueProfile.createClassProfile() : null;
} }
protected final VectorFactory factory() {
if (factory == null) {
CompilerDirectives.transferToInterpreterAndInvalidate();
factory = insert(VectorFactory.create());
}
return factory;
}
public final boolean preserveNames() { public final boolean preserveNames() {
return preserveNames; return preserveNames;
} }
...@@ -135,22 +141,25 @@ public abstract class CastBaseNode extends CastNode { ...@@ -135,22 +141,25 @@ public abstract class CastBaseNode extends CastNode {
protected RStringVector getPreservedNames(RAbstractContainer operand) { protected RStringVector getPreservedNames(RAbstractContainer operand) {
if (preserveNames()) { if (preserveNames()) {
if (getNamesNode == null) {
CompilerDirectives.transferToInterpreterAndInvalidate();
getNamesNode = insert(GetNamesAttributeNode.create());
}
return hasNamesProfile.profile(getNamesNode.getNames(operand)); return hasNamesProfile.profile(getNamesNode.getNames(operand));
} else { } else {
return null; return null;
} }
} }
protected void preserveDimensionNames(RAbstractContainer operand, RAbstractContainer ret) { protected RList getPreservedDimNames(RAbstractContainer operand) {
if (preserveDimensions()) { if (preserveDimensions()) {
RList dimNames = getDimNamesNode.getDimNames(operand); if (getDimNamesNode == null) {
if (hasDimNamesProfile.profile(dimNames != null)) { CompilerDirectives.transferToInterpreterAndInvalidate();
if (setDimNamesNode == null) { getDimNamesNode = insert(GetDimNamesAttributeNode.create());
CompilerDirectives.transferToInterpreterAndInvalidate();
setDimNamesNode = insert(SetDimNamesAttributeNode.create());
}
setDimNamesNode.setDimNames(ret, (RList) dimNames.copy());
} }
return hasDimNamesProfile.profile(getDimNamesNode.getDimNames(operand));
} else {
return null;
} }
} }
......
...@@ -123,7 +123,7 @@ public abstract class CastComplexNode extends CastBaseNode { ...@@ -123,7 +123,7 @@ public abstract class CastComplexNode extends CastBaseNode {
@Specialization @Specialization
protected RComplex doRaw(RRaw operand) { protected RComplex doRaw(RRaw operand) {
return RDataFactory.createComplex(operand.getValue(), 0); return factory().createComplex(operand.getValue(), 0);
} }
@Specialization @Specialization
...@@ -151,8 +151,7 @@ public abstract class CastComplexNode extends CastBaseNode { ...@@ -151,8 +151,7 @@ public abstract class CastComplexNode extends CastBaseNode {
ddata[index + 1] = complexValue.getImaginaryPart(); ddata[index + 1] = complexValue.getImaginaryPart();
seenNA = seenNA || naProfile.isNA(complexValue); seenNA = seenNA || naProfile.isNA(complexValue);
} }
RComplexVector ret = RDataFactory.createComplexVector(ddata, !seenNA, getPreservedDimensions(operand), getPreservedNames(operand)); RComplexVector ret = factory().createComplexVector(ddata, !seenNA, getPreservedDimensions(operand), getPreservedNames(operand), getPreservedDimNames(operand));
preserveDimensionNames(operand, ret);
if (preserveRegAttributes()) { if (preserveRegAttributes()) {
ret.copyRegAttributesFrom(operand); ret.copyRegAttributesFrom(operand);
} }
...@@ -204,8 +203,7 @@ public abstract class CastComplexNode extends CastBaseNode { ...@@ -204,8 +203,7 @@ public abstract class CastComplexNode extends CastBaseNode {
if (warning) { if (warning) {
warning(RError.Message.NA_INTRODUCED_COERCION); warning(RError.Message.NA_INTRODUCED_COERCION);
} }
RComplexVector ret = RDataFactory.createComplexVector(ddata, !seenNA, getPreservedDimensions(operand), getPreservedNames(operand)); RComplexVector ret = factory().createComplexVector(ddata, !seenNA, getPreservedDimensions(operand), getPreservedNames(operand), getPreservedDimNames(operand));
preserveDimensionNames(operand, ret);
if (preserveRegAttributes()) { if (preserveRegAttributes()) {
ret.copyRegAttributesFrom(operand); ret.copyRegAttributesFrom(operand);
} }
...@@ -259,7 +257,7 @@ public abstract class CastComplexNode extends CastBaseNode { ...@@ -259,7 +257,7 @@ public abstract class CastComplexNode extends CastBaseNode {
} }
} }
} }
RComplexVector ret = RDataFactory.createComplexVector(result, !seenNA, getPreservedDimensions(list), getPreservedNames(list)); RComplexVector ret = factory().createComplexVector(result, !seenNA, getPreservedDimensions(list), getPreservedNames(list), null);
if (preserveRegAttributes()) { if (preserveRegAttributes()) {
ret.copyRegAttributesFrom(list); ret.copyRegAttributesFrom(list);
} }
......
...@@ -36,7 +36,6 @@ import com.oracle.truffle.r.runtime.RError; ...@@ -36,7 +36,6 @@ import com.oracle.truffle.r.runtime.RError;
import com.oracle.truffle.r.runtime.RRuntime; import com.oracle.truffle.r.runtime.RRuntime;
import com.oracle.truffle.r.runtime.RType; import com.oracle.truffle.r.runtime.RType;
import com.oracle.truffle.r.runtime.data.RComplex; import com.oracle.truffle.r.runtime.data.RComplex;
import com.oracle.truffle.r.runtime.data.RDataFactory;
import com.oracle.truffle.r.runtime.data.RDoubleVector; import com.oracle.truffle.r.runtime.data.RDoubleVector;
import com.oracle.truffle.r.runtime.data.RList; import com.oracle.truffle.r.runtime.data.RList;
import com.oracle.truffle.r.runtime.data.RPairList; import com.oracle.truffle.r.runtime.data.RPairList;
...@@ -73,8 +72,7 @@ public abstract class CastDoubleNode extends CastDoubleBaseNode { ...@@ -73,8 +72,7 @@ public abstract class CastDoubleNode extends CastDoubleBaseNode {
} }
private RDoubleVector vectorCopy(RAbstractContainer operand, double[] data, boolean isComplete) { private RDoubleVector vectorCopy(RAbstractContainer operand, double[] data, boolean isComplete) {
RDoubleVector ret = RDataFactory.createDoubleVector(data, isComplete, getPreservedDimensions(operand), getPreservedNames(operand)); RDoubleVector ret = factory().createDoubleVector(data, isComplete, getPreservedDimensions(operand), getPreservedNames(operand), getPreservedDimNames(operand));
preserveDimensionNames(operand, ret);
if (preserveRegAttributes()) { if (preserveRegAttributes()) {
ret.copyRegAttributesFrom(operand); ret.copyRegAttributesFrom(operand);
} }
...@@ -152,8 +150,7 @@ public abstract class CastDoubleNode extends CastDoubleBaseNode { ...@@ -152,8 +150,7 @@ public abstract class CastDoubleNode extends CastDoubleBaseNode {
if (warning) { if (warning) {
warning(RError.Message.NA_INTRODUCED_COERCION); warning(RError.Message.NA_INTRODUCED_COERCION);
} }
RDoubleVector ret = RDataFactory.createDoubleVector(ddata, !seenNA, getPreservedDimensions(operand), getPreservedNames(operand)); RDoubleVector ret = factory().createDoubleVector(ddata, !seenNA, getPreservedDimensions(operand), getPreservedNames(operand), getPreservedDimNames(operand));
preserveDimensionNames(operand, ret);
if (preserveRegAttributes()) { if (preserveRegAttributes()) {
ret.copyRegAttributesFrom(operand); ret.copyRegAttributesFrom(operand);
} }
...@@ -216,7 +213,7 @@ public abstract class CastDoubleNode extends CastDoubleBaseNode { ...@@ -216,7 +213,7 @@ public abstract class CastDoubleNode extends CastDoubleBaseNode {
} }
} }
} }
RDoubleVector ret = RDataFactory.createDoubleVector(result, !seenNA, getPreservedDimensions(list), getPreservedNames(list)); RDoubleVector ret = factory().createDoubleVector(result, !seenNA, getPreservedDimensions(list), getPreservedNames(list), null);
if (preserveRegAttributes()) { if (preserveRegAttributes()) {
ret.copyRegAttributesFrom(list); ret.copyRegAttributesFrom(list);
} }
......
/* /*
* Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
...@@ -27,7 +27,6 @@ import com.oracle.truffle.api.dsl.Specialization; ...@@ -27,7 +27,6 @@ import com.oracle.truffle.api.dsl.Specialization;
import com.oracle.truffle.r.nodes.attributes.SpecialAttributesFunctions.GetNamesAttributeNode; import com.oracle.truffle.r.nodes.attributes.SpecialAttributesFunctions.GetNamesAttributeNode;
import com.oracle.truffle.r.runtime.RError; import com.oracle.truffle.r.runtime.RError;
import com.oracle.truffle.r.runtime.RType; import com.oracle.truffle.r.runtime.RType;
import com.oracle.truffle.r.runtime.data.RDataFactory;
import com.oracle.truffle.r.runtime.data.RExpression; import com.oracle.truffle.r.runtime.data.RExpression;
import com.oracle.truffle.r.runtime.data.RFunction; import com.oracle.truffle.r.runtime.data.RFunction;
import com.oracle.truffle.r.runtime.data.RList; import com.oracle.truffle.r.runtime.data.RList;
...@@ -98,14 +97,14 @@ public abstract class CastExpressionNode extends CastBaseNode { ...@@ -98,14 +97,14 @@ public abstract class CastExpressionNode extends CastBaseNode {
if (obj instanceof RList) { if (obj instanceof RList) {
RList list = (RList) obj; RList list = (RList) obj;
// TODO other attributes // TODO other attributes
return RDataFactory.createExpression(data, getNamesNode.getNames(list)); return factory().createExpression(data, getNamesNode.getNames(list));
} else { } else {
return RDataFactory.createExpression(data); return factory().createExpression(data);
} }
} }
private static RExpression create(Object obj) { private RExpression create(Object obj) {
return RDataFactory.createExpression(new Object[]{obj}); return factory().createExpression(new Object[]{obj});
} }
/** /**
......
...@@ -34,7 +34,6 @@ import com.oracle.truffle.r.runtime.RRuntime; ...@@ -34,7 +34,6 @@ import com.oracle.truffle.r.runtime.RRuntime;
import com.oracle.truffle.r.runtime.RType; import com.oracle.truffle.r.runtime.RType;
import com.oracle.truffle.r.runtime.data.RArgsValuesAndNames; import com.oracle.truffle.r.runtime.data.RArgsValuesAndNames;
import com.oracle.truffle.r.runtime.data.RComplex; import com.oracle.truffle.r.runtime.data.RComplex;
import com.oracle.truffle.r.runtime.data.RDataFactory;
import com.oracle.truffle.r.runtime.data.RDoubleSequence; import com.oracle.truffle.r.runtime.data.RDoubleSequence;
import com.oracle.truffle.r.runtime.data.RIntSequence; import com.oracle.truffle.r.runtime.data.RIntSequence;
import com.oracle.truffle.r.runtime.data.RIntVector; import com.oracle.truffle.r.runtime.data.RIntVector;
...@@ -82,12 +81,11 @@ public abstract class CastIntegerNode extends CastIntegerBaseNode { ...@@ -82,12 +81,11 @@ public abstract class CastIntegerNode extends CastIntegerBaseNode {
@Specialization @Specialization
protected RIntSequence doDoubleSequence(RDoubleSequence operand) { protected RIntSequence doDoubleSequence(RDoubleSequence operand) {
// start and stride cannot be NA so no point checking // start and stride cannot be NA so no point checking
return RDataFactory.createIntSequence(RRuntime.double2intNoCheck(operand.getStart()), RRuntime.double2intNoCheck(operand.getStride()), operand.getLength()); return factory().createIntSequence(RRuntime.double2intNoCheck(operand.getStart()), RRuntime.double2intNoCheck(operand.getStride()), operand.getLength());
} }
private RIntVector vectorCopy(RAbstractVector operand, int[] idata, boolean isComplete) { private RIntVector vectorCopy(RAbstractVector operand, int[] idata, boolean isComplete) {
RIntVector ret = RDataFactory.createIntVector(idata, isComplete, getPreservedDimensions(operand), getPreservedNames(operand)); RIntVector ret = factory().createIntVector(idata, isComplete, getPreservedDimensions(operand), getPreservedNames(operand), getPreservedDimNames(operand));
preserveDimensionNames(operand, ret);
if (preserveRegAttributes()) { if (preserveRegAttributes()) {
ret.copyRegAttributesFrom(operand); ret.copyRegAttributesFrom(operand);
} }
...@@ -224,7 +222,7 @@ public abstract class CastIntegerNode extends CastIntegerBaseNode { ...@@ -224,7 +222,7 @@ public abstract class CastIntegerNode extends CastIntegerBaseNode {
} }
} }
} }
RIntVector ret = RDataFactory.createIntVector(result, !seenNA, getPreservedDimensions(list), getPreservedNames(list)); RIntVector ret = factory().createIntVector(result, !seenNA, getPreservedDimensions(list), getPreservedNames(list), null);
if (preserveRegAttributes()) { if (preserveRegAttributes()) {
ret.copyRegAttributesFrom(list); ret.copyRegAttributesFrom(list);
} }
......
...@@ -30,7 +30,6 @@ import com.oracle.truffle.api.profiles.ValueProfile; ...@@ -30,7 +30,6 @@ import com.oracle.truffle.api.profiles.ValueProfile;
import com.oracle.truffle.r.nodes.attributes.SpecialAttributesFunctions.SetClassAttributeNode; import com.oracle.truffle.r.nodes.attributes.SpecialAttributesFunctions.SetClassAttributeNode;
import com.oracle.truffle.r.runtime.RRuntime; import com.oracle.truffle.r.runtime.RRuntime;
import com.oracle.truffle.r.runtime.RType; import com.oracle.truffle.r.runtime.RType;
import com.oracle.truffle.r.runtime.data.RDataFactory;
import com.oracle.truffle.r.runtime.data.RFunction; import com.oracle.truffle.r.runtime.data.RFunction;
import com.oracle.truffle.r.runtime.data.RInteropScalar; import com.oracle.truffle.r.runtime.data.RInteropScalar;
import com.oracle.truffle.r.runtime.data.RList; import com.oracle.truffle.r.runtime.data.RList;
...@@ -64,17 +63,17 @@ public abstract class CastListNode extends CastBaseNode { ...@@ -64,17 +63,17 @@ public abstract class CastListNode extends CastBaseNode {
@Specialization @Specialization
protected RList doNull(@SuppressWarnings("unused") RNull operand) { protected RList doNull(@SuppressWarnings("unused") RNull operand) {
return RDataFactory.createList(); return factory().createList(new Object[0]);
} }
@Specialization @Specialization
protected RList doDouble(double operand) { protected RList doDouble(double operand) {
return RDataFactory.createList(new Object[]{operand}); return factory().createList(new Object[]{operand});
} }
@Specialization @Specialization
protected RList doInt(int operand) { protected RList doInt(int operand) {
return RDataFactory.createList(new Object[]{operand}); return factory().createList(new Object[]{operand});
} }
@Specialization @Specialization
...@@ -85,8 +84,7 @@ public abstract class CastListNode extends CastBaseNode { ...@@ -85,8 +84,7 @@ public abstract class CastListNode extends CastBaseNode {
for (int i = 0; i < data.length; i++) { for (int i = 0; i < data.length; i++) {
data[i] = profiledOperand.getDataAtAsObject(i); data[i] = profiledOperand.getDataAtAsObject(i);
} }
RList ret = RDataFactory.createList(data, getPreservedDimensions(operand), getPreservedNames(operand)); RList ret = factory().createList(data, getPreservedDimensions(operand), getPreservedNames(operand), getPreservedDimNames(operand));
preserveDimensionNames(operand, ret);
if (preserveRegAttributes()) { if (preserveRegAttributes()) {
ret.copyRegAttributesFrom(operand); ret.copyRegAttributesFrom(operand);
} }
...@@ -100,27 +98,27 @@ public abstract class CastListNode extends CastBaseNode { ...@@ -100,27 +98,27 @@ public abstract class CastListNode extends CastBaseNode {
@Specialization @Specialization
protected RList doFunction(RFunction func) { protected RList doFunction(RFunction func) {
return RDataFactory.createList(new Object[]{func}); return factory().createList(new Object[]{func});
} }
@Specialization @Specialization
protected RList doEnvironment(REnvironment env) { protected RList doEnvironment(REnvironment env) {
return RDataFactory.createList(new Object[]{env}); return factory().createList(new Object[]{env});
} }
@Specialization @Specialization
protected RList doS4Object(RS4Object o) { protected RList doS4Object(RS4Object o) {
return RDataFactory.createList(new Object[]{o}); return factory().createList(new Object[]{o});
} }
@Specialization @Specialization
protected RList doRSymbol(RSymbol s) { protected RList doRSymbol(RSymbol s) {
return RDataFactory.createList(new Object[]{s}); return factory().createList(new Object[]{s});
} }
@Specialization @Specialization
protected RList doRInterop(RInteropScalar ri) { protected RList doRInterop(RInteropScalar ri) {
return RDataFactory.createList(new Object[]{ri}); return factory().createList(new Object[]{ri});
} }
@Specialization(guards = {"isForeignObject(obj)"}) @Specialization(guards = {"isForeignObject(obj)"})
...@@ -134,7 +132,7 @@ public abstract class CastListNode extends CastBaseNode { ...@@ -134,7 +132,7 @@ public abstract class CastListNode extends CastBaseNode {
} }
return (RList) execute(o); return (RList) execute(o);
} }
return RDataFactory.createList(new Object[]{obj}); return factory().createList(new Object[]{obj});
} }
public static CastListNode create() { public static CastListNode create() {
......
...@@ -92,8 +92,7 @@ public abstract class CastLogicalNode extends CastLogicalBaseNode { ...@@ -92,8 +92,7 @@ public abstract class CastLogicalNode extends CastLogicalBaseNode {
} }
private RLogicalVector vectorCopy(RAbstractVector operand, byte[] bdata, boolean isComplete) { private RLogicalVector vectorCopy(RAbstractVector operand, byte[] bdata, boolean isComplete) {
RLogicalVector ret = RDataFactory.createLogicalVector(bdata, isComplete, getPreservedDimensions(operand), getPreservedNames(operand)); RLogicalVector ret = factory().createLogicalVector(bdata, isComplete, getPreservedDimensions(operand), getPreservedNames(operand), getPreservedDimNames(operand));
preserveDimensionNames(operand, ret);
if (preserveRegAttributes()) { if (preserveRegAttributes()) {
ret.copyRegAttributesFrom(operand); ret.copyRegAttributesFrom(operand);
} }
...@@ -126,7 +125,7 @@ public abstract class CastLogicalNode extends CastLogicalBaseNode { ...@@ -126,7 +125,7 @@ public abstract class CastLogicalNode extends CastLogicalBaseNode {
protected RLogicalVector asLogical(RAbstractIntVector factor) { protected RLogicalVector asLogical(RAbstractIntVector factor) {
byte[] data = new byte[factor.getLength()]; byte[] data = new byte[factor.getLength()];
Arrays.fill(data, RRuntime.LOGICAL_NA); Arrays.fill(data, RRuntime.LOGICAL_NA);
return RDataFactory.createLogicalVector(data, RDataFactory.INCOMPLETE_VECTOR); return factory().createLogicalVector(data, RDataFactory.INCOMPLETE_VECTOR);
} }
@Specialization @Specialization
...@@ -182,7 +181,7 @@ public abstract class CastLogicalNode extends CastLogicalBaseNode { ...@@ -182,7 +181,7 @@ public abstract class CastLogicalNode extends CastLogicalBaseNode {
} }
} }
} }
RLogicalVector ret = RDataFactory.createLogicalVector(result, !seenNA, getPreservedDimensions(list), getPreservedNames(list)); RLogicalVector ret = factory().createLogicalVector(result, !seenNA, getPreservedDimensions(list), getPreservedNames(list), null);
if (preserveRegAttributes()) { if (preserveRegAttributes()) {
ret.copyRegAttributesFrom(list); ret.copyRegAttributesFrom(list);
} }
......
...@@ -31,7 +31,6 @@ import com.oracle.truffle.r.runtime.RError; ...@@ -31,7 +31,6 @@ import com.oracle.truffle.r.runtime.RError;
import com.oracle.truffle.r.runtime.RRuntime; import com.oracle.truffle.r.runtime.RRuntime;
import com.oracle.truffle.r.runtime.RType; import com.oracle.truffle.r.runtime.RType;
import com.oracle.truffle.r.runtime.data.RComplex; import com.oracle.truffle.r.runtime.data.RComplex;
import com.oracle.truffle.r.runtime.data.RDataFactory;
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.data.RNull;
import com.oracle.truffle.r.runtime.data.RPairList; import com.oracle.truffle.r.runtime.data.RPairList;
...@@ -97,9 +96,9 @@ public abstract class CastRawNode extends CastBaseNode { ...@@ -97,9 +96,9 @@ public abstract class CastRawNode extends CastBaseNode {
private RRaw checkOutOfRange(int operand, int intResult) { private RRaw checkOutOfRange(int operand, int intResult) {
if (intResult != operand) { if (intResult != operand) {
warning(RError.Message.OUT_OF_RANGE); warning(RError.Message.OUT_OF_RANGE);
return RDataFactory.createRaw((byte) 0); return factory().createRaw((byte) 0);
} }
return RDataFactory.createRaw((byte) intResult); return factory().createRaw((byte) intResult);
} }
@Specialization @Specialization
...@@ -157,8 +156,7 @@ public abstract class CastRawNode extends CastBaseNode { ...@@ -157,8 +156,7 @@ public abstract class CastRawNode extends CastBaseNode {
} }
private RRawVector vectorCopy(RAbstractVector operand, byte[] bdata) { private RRawVector vectorCopy(RAbstractVector operand, byte[] bdata) {
RRawVector ret = RDataFactory.createRawVector(bdata, getPreservedDimensions(operand), getPreservedNames(operand)); RRawVector ret = factory().createRawVector(bdata, getPreservedDimensions(operand), getPreservedNames(operand), getPreservedDimNames(operand));
preserveDimensionNames(operand, ret);
if (preserveRegAttributes()) { if (preserveRegAttributes()) {
ret.copyRegAttributesFrom(operand); ret.copyRegAttributesFrom(operand);
} }
...@@ -307,7 +305,7 @@ public abstract class CastRawNode extends CastBaseNode { ...@@ -307,7 +305,7 @@ public abstract class CastRawNode extends CastBaseNode {
for (int i = 0; i < length; i++) { for (int i = 0; i < length; i++) {
data[i] = ((RRaw) castRawRecursive(value.getDataAt(i))).getValue(); data[i] = ((RRaw) castRawRecursive(value.getDataAt(i))).getValue();
} }
RRawVector result = RDataFactory.createRawVector(data, getPreservedDimensions(value), getPreservedNames(value)); RRawVector result = factory().createRawVector(data, getPreservedDimensions(value), getPreservedNames(value), null);
if (preserveRegAttributes()) { if (preserveRegAttributes()) {
result.copyRegAttributesFrom(value); result.copyRegAttributesFrom(value);
} }
......
...@@ -32,7 +32,6 @@ import com.oracle.truffle.api.profiles.ValueProfile; ...@@ -32,7 +32,6 @@ import com.oracle.truffle.api.profiles.ValueProfile;
import com.oracle.truffle.r.runtime.RDeparse; import com.oracle.truffle.r.runtime.RDeparse;
import com.oracle.truffle.r.runtime.RError; import com.oracle.truffle.r.runtime.RError;
import com.oracle.truffle.r.runtime.RRuntime; import com.oracle.truffle.r.runtime.RRuntime;
import com.oracle.truffle.r.runtime.data.RDataFactory;
import com.oracle.truffle.r.runtime.data.RIntSequence; import com.oracle.truffle.r.runtime.data.RIntSequence;
import com.oracle.truffle.r.runtime.data.RPairList; import com.oracle.truffle.r.runtime.data.RPairList;
import com.oracle.truffle.r.runtime.data.RStringSequence; import com.oracle.truffle.r.runtime.data.RStringSequence;
...@@ -64,8 +63,7 @@ public abstract class CastStringNode extends CastStringBaseNode { ...@@ -64,8 +63,7 @@ public abstract class CastStringNode extends CastStringBaseNode {
public abstract Object executeString(Object o); public abstract Object executeString(Object o);
private RStringVector vectorCopy(RAbstractContainer operand, String[] data) { private RStringVector vectorCopy(RAbstractContainer operand, String[] data) {
RStringVector ret = RDataFactory.createStringVector(data, operand.isComplete(), getPreservedDimensions(operand), getPreservedNames(operand)); RStringVector ret = factory().createStringVector(data, operand.isComplete(), getPreservedDimensions(operand), getPreservedNames(operand), getPreservedDimNames(operand));
preserveDimensionNames(operand, ret);
if (preserveRegAttributes()) { if (preserveRegAttributes()) {
ret.copyRegAttributesFrom(operand); ret.copyRegAttributesFrom(operand);
} }
...@@ -83,7 +81,7 @@ public abstract class CastStringNode extends CastStringBaseNode { ...@@ -83,7 +81,7 @@ public abstract class CastStringNode extends CastStringBaseNode {
@Specialization @Specialization
protected RStringSequence doIntSequence(RIntSequence vector) { protected RStringSequence doIntSequence(RIntSequence vector) {
return RDataFactory.createStringSequence("", "", vector.getStart(), vector.getStride(), vector.getLength()); return factory().createStringSequence("", "", vector.getStart(), vector.getStride(), vector.getLength());
} }
@Specialization(guards = {"!isIntSequence(operandIn)", "!isRAbstractStringVector(operandIn)"}) @Specialization(guards = {"!isIntSequence(operandIn)", "!isRAbstractStringVector(operandIn)"})
......
...@@ -32,7 +32,6 @@ import com.oracle.truffle.r.runtime.RError.Message; ...@@ -32,7 +32,6 @@ import com.oracle.truffle.r.runtime.RError.Message;
import com.oracle.truffle.r.runtime.RInternalError; import com.oracle.truffle.r.runtime.RInternalError;
import com.oracle.truffle.r.runtime.RType; import com.oracle.truffle.r.runtime.RType;
import com.oracle.truffle.r.runtime.data.RComplex; import com.oracle.truffle.r.runtime.data.RComplex;
import com.oracle.truffle.r.runtime.data.RDataFactory;
import com.oracle.truffle.r.runtime.data.RList; import com.oracle.truffle.r.runtime.data.RList;
import com.oracle.truffle.r.runtime.data.RNull; import com.oracle.truffle.r.runtime.data.RNull;
import com.oracle.truffle.r.runtime.data.RRaw; import com.oracle.truffle.r.runtime.data.RRaw;
...@@ -151,8 +150,8 @@ public abstract class CastSymbolNode extends CastBaseNode { ...@@ -151,8 +150,8 @@ public abstract class CastSymbolNode extends CastBaseNode {
} }
@TruffleBoundary @TruffleBoundary
private static RSymbol asSymbol(String s) { private RSymbol asSymbol(String s) {
return RDataFactory.createSymbolInterned(s); return factory().createSymbolInterned(s);
} }
@Override @Override
......
...@@ -22,6 +22,9 @@ ...@@ -22,6 +22,9 @@
*/ */
package com.oracle.truffle.r.nodes.unary; package com.oracle.truffle.r.nodes.unary;
import static com.oracle.truffle.r.runtime.interop.ForeignArray2R.isForeignArray;
import static com.oracle.truffle.r.runtime.interop.ForeignArray2R.isJavaIterable;
import com.oracle.truffle.api.CompilerDirectives; import com.oracle.truffle.api.CompilerDirectives;
import com.oracle.truffle.api.CompilerDirectives.TruffleBoundary; import com.oracle.truffle.api.CompilerDirectives.TruffleBoundary;
import com.oracle.truffle.api.dsl.Cached; import com.oracle.truffle.api.dsl.Cached;
...@@ -61,8 +64,6 @@ import com.oracle.truffle.r.runtime.data.model.RAbstractVector; ...@@ -61,8 +64,6 @@ import com.oracle.truffle.r.runtime.data.model.RAbstractVector;
import com.oracle.truffle.r.runtime.env.REnvironment; import com.oracle.truffle.r.runtime.env.REnvironment;
import com.oracle.truffle.r.runtime.interop.Foreign2R; import com.oracle.truffle.r.runtime.interop.Foreign2R;
import com.oracle.truffle.r.runtime.interop.ForeignArray2R; import com.oracle.truffle.r.runtime.interop.ForeignArray2R;
import static com.oracle.truffle.r.runtime.interop.ForeignArray2R.isForeignArray;
import static com.oracle.truffle.r.runtime.interop.ForeignArray2R.isJavaIterable;
import com.oracle.truffle.r.runtime.nodes.RBaseNode; import com.oracle.truffle.r.runtime.nodes.RBaseNode;
@ImportStatic({Message.class, RRuntime.class, ForeignArray2R.class, Foreign2R.class}) @ImportStatic({Message.class, RRuntime.class, ForeignArray2R.class, Foreign2R.class})
......
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