Skip to content
Snippets Groups Projects
Commit 795a9cac authored by Stepan Sindelar's avatar Stepan Sindelar
Browse files

[GR-2798] Add @TruffleBoundary to more grid functions and logb.

parents 4589ac03 e02beb03
No related branches found
No related tags found
No related merge requests found
......@@ -24,6 +24,7 @@ package com.oracle.truffle.r.library.fastrGrid;
import java.util.ArrayList;
import com.oracle.truffle.api.CompilerDirectives.TruffleBoundary;
import com.oracle.truffle.r.library.fastrGrid.GridState.GridDeviceState;
import com.oracle.truffle.r.library.fastrGrid.device.GridDevice;
import com.oracle.truffle.r.library.fastrGrid.device.GridDevice.DeviceCloseException;
......@@ -58,6 +59,7 @@ public final class GridContext {
return INSTANCE;
}
@TruffleBoundary
public GridState getGridState() {
gridState.setDeviceState(devices.get(currentDeviceIdx).state);
return gridState;
......
......@@ -24,6 +24,7 @@ package com.oracle.truffle.r.library.fastrGrid;
import java.util.function.Function;
import com.oracle.truffle.api.CompilerDirectives.TruffleBoundary;
import com.oracle.truffle.r.nodes.builtin.RExternalBuiltinNode;
/**
......@@ -41,6 +42,7 @@ final class GridStateGetNode extends RExternalBuiltinNode.Arg0 {
}
@Override
@TruffleBoundary
public Object execute() {
Object result = getter.apply(GridContext.getContext().getGridState());
assert result != null;
......
......@@ -24,6 +24,7 @@ package com.oracle.truffle.r.library.fastrGrid;
import java.util.function.BiConsumer;
import com.oracle.truffle.api.CompilerDirectives.TruffleBoundary;
import com.oracle.truffle.r.nodes.builtin.RExternalBuiltinNode;
import com.oracle.truffle.r.runtime.data.RNull;
......@@ -46,6 +47,7 @@ public final class GridStateSetNode extends RExternalBuiltinNode.Arg1 {
}
@Override
@TruffleBoundary
public Object execute(Object arg) {
setter.accept(GridContext.getContext().getGridState(), arg);
return RNull.instance;
......
......@@ -30,6 +30,7 @@ import static com.oracle.truffle.r.runtime.builtins.RBuiltinKind.PRIMITIVE;
import java.util.Arrays;
import com.oracle.truffle.api.CompilerDirectives.TruffleBoundary;
import com.oracle.truffle.api.dsl.Cached;
import com.oracle.truffle.api.dsl.Specialization;
import com.oracle.truffle.api.profiles.BranchProfile;
......@@ -54,6 +55,7 @@ import com.oracle.truffle.r.runtime.data.RMissing;
import com.oracle.truffle.r.runtime.data.model.RAbstractComplexVector;
import com.oracle.truffle.r.runtime.data.model.RAbstractDoubleVector;
import com.oracle.truffle.r.runtime.data.model.RAbstractVector;
import com.oracle.truffle.r.runtime.nodes.RBaseNode;
import com.oracle.truffle.r.runtime.ops.BinaryArithmetic;
import com.oracle.truffle.r.runtime.ops.na.NACheck;
import com.oracle.truffle.r.runtime.ops.na.NAProfile;
......@@ -208,13 +210,13 @@ public class LogFunctions {
Arrays.fill(resultVector, 0, resultVector.length, Double.NaN);
} else {
xNACheck.enable(vector);
Runnable[] warningResult = new Runnable[1];
RBaseNode[] warningCtx = new RBaseNode[1];
for (int i = 0; i < vector.getLength(); i++) {
double value = vector.getDataAt(i);
resultVector[i] = xNACheck.check(value) ? RRuntime.DOUBLE_NA : logb(value, base, warningResult);
resultVector[i] = xNACheck.check(value) ? RRuntime.DOUBLE_NA : logb(value, base, warningCtx);
}
if (warningResult[0] != null) {
warningResult[0].run();
if (warningCtx[0] != null) {
RError.warning(warningCtx[0], RError.Message.NAN_PRODUCED);
}
}
boolean complete = xNACheck.neverSeenNA() && baseNACheck.neverSeenNA();
......@@ -230,26 +232,27 @@ public class LogFunctions {
nanProfile.enter();
return base;
}
Runnable[] warningResult = new Runnable[1];
double ret = logb(x, base, warningResult);
if (warningResult[0] != null) {
warningResult[0].run();
RBaseNode[] warningCtx = new RBaseNode[1];
double ret = logb(x, base, warningCtx);
if (warningCtx[0] != null) {
RError.warning(warningCtx[0], RError.Message.NAN_PRODUCED);
}
return ret;
}
private double logb(double x, double base, Runnable[] warningResult) {
@TruffleBoundary
private double logb(double x, double base, RBaseNode[] warningCtx) {
double logx = Math.log(x);
if (Double.isNaN(logx)) {
warningResult[0] = () -> RError.warning(this, RError.Message.NAN_PRODUCED);
warningCtx[0] = this;
}
if (base == Math.E) {
return logx;
}
double result = logx / Math.log(base);
if (warningResult[0] == null && Double.isNaN(result)) {
warningResult[0] = () -> RError.warning(RError.SHOW_CALLER, RError.Message.NAN_PRODUCED);
if (warningCtx[0] == null && Double.isNaN(result)) {
warningCtx[0] = RError.SHOW_CALLER;
}
return result;
......
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