Skip to content
Snippets Groups Projects
Commit 1b7db628 authored by Mick Jordan's avatar Mick Jordan
Browse files

add back JNI_Base TruffleBoundary

parent 40025e9b
No related branches found
No related tags found
No related merge requests found
...@@ -25,10 +25,12 @@ package com.oracle.truffle.r.runtime.ffi.jni; ...@@ -25,10 +25,12 @@ package com.oracle.truffle.r.runtime.ffi.jni;
import java.io.IOException; import java.io.IOException;
import java.util.ArrayList; import java.util.ArrayList;
import com.oracle.truffle.api.CompilerDirectives.TruffleBoundary;
import com.oracle.truffle.r.runtime.ffi.BaseRFFI; import com.oracle.truffle.r.runtime.ffi.BaseRFFI;
public class JNI_Base implements BaseRFFI { public class JNI_Base implements BaseRFFI {
public static class JNI_GetpidNode extends GetpidNode { public static class JNI_GetpidNode extends GetpidNode {
@TruffleBoundary
@Override @Override
public int execute() { public int execute() {
return native_getpid(); return native_getpid();
...@@ -36,6 +38,7 @@ public class JNI_Base implements BaseRFFI { ...@@ -36,6 +38,7 @@ public class JNI_Base implements BaseRFFI {
} }
public static class JNI_GetwdNode extends GetwdNode { public static class JNI_GetwdNode extends GetwdNode {
@TruffleBoundary
@Override @Override
public String execute() { public String execute() {
byte[] buf = new byte[4096]; byte[] buf = new byte[4096];
...@@ -53,6 +56,7 @@ public class JNI_Base implements BaseRFFI { ...@@ -53,6 +56,7 @@ public class JNI_Base implements BaseRFFI {
} }
public static class JNI_SetwdNode extends SetwdNode { public static class JNI_SetwdNode extends SetwdNode {
@TruffleBoundary
@Override @Override
public int execute(String dir) { public int execute(String dir) {
return native_setwd(dir); return native_setwd(dir);
...@@ -62,6 +66,7 @@ public class JNI_Base implements BaseRFFI { ...@@ -62,6 +66,7 @@ public class JNI_Base implements BaseRFFI {
public static class JNI_ReadlinkNode extends ReadlinkNode { public static class JNI_ReadlinkNode extends ReadlinkNode {
private static final int EINVAL = 22; private static final int EINVAL = 22;
@TruffleBoundary
@Override @Override
public String execute(String path) throws IOException { public String execute(String path) throws IOException {
int[] errno = new int[]{0}; int[] errno = new int[]{0};
...@@ -79,6 +84,7 @@ public class JNI_Base implements BaseRFFI { ...@@ -79,6 +84,7 @@ public class JNI_Base implements BaseRFFI {
} }
public static class JNI_MkdtempNode extends MkdtempNode { public static class JNI_MkdtempNode extends MkdtempNode {
@TruffleBoundary
@Override @Override
public String execute(String template) { public String execute(String template) {
/* /*
...@@ -99,6 +105,7 @@ public class JNI_Base implements BaseRFFI { ...@@ -99,6 +105,7 @@ public class JNI_Base implements BaseRFFI {
} }
public static class JNI_MkdirNode extends MkdirNode { public static class JNI_MkdirNode extends MkdirNode {
@TruffleBoundary
@Override @Override
public void execute(String dir, int mode) throws IOException { public void execute(String dir, int mode) throws IOException {
int rc = native_mkdir(dir, mode); int rc = native_mkdir(dir, mode);
...@@ -109,6 +116,7 @@ public class JNI_Base implements BaseRFFI { ...@@ -109,6 +116,7 @@ public class JNI_Base implements BaseRFFI {
} }
public static class JNI_ChmodNode extends ChmodNode { public static class JNI_ChmodNode extends ChmodNode {
@TruffleBoundary
@Override @Override
public int execute(String path, int mode) { public int execute(String path, int mode) {
return native_chmod(path, mode); return native_chmod(path, mode);
...@@ -116,6 +124,7 @@ public class JNI_Base implements BaseRFFI { ...@@ -116,6 +124,7 @@ public class JNI_Base implements BaseRFFI {
} }
public static class JNI_StrolNode extends StrolNode { public static class JNI_StrolNode extends StrolNode {
@TruffleBoundary
@Override @Override
public long execute(String s, int base) throws IllegalArgumentException { public long execute(String s, int base) throws IllegalArgumentException {
int[] errno = new int[]{0}; int[] errno = new int[]{0};
...@@ -129,6 +138,7 @@ public class JNI_Base implements BaseRFFI { ...@@ -129,6 +138,7 @@ public class JNI_Base implements BaseRFFI {
} }
public static class JNI_UnameNode extends UnameNode { public static class JNI_UnameNode extends UnameNode {
@TruffleBoundary
@Override @Override
public UtsName execute() { public UtsName execute() {
return JNI_UtsName.get(); return JNI_UtsName.get();
...@@ -136,6 +146,7 @@ public class JNI_Base implements BaseRFFI { ...@@ -136,6 +146,7 @@ public class JNI_Base implements BaseRFFI {
} }
public static class JNI_GlobNode extends GlobNode { public static class JNI_GlobNode extends GlobNode {
@TruffleBoundary
@Override @Override
public ArrayList<String> glob(String pattern) { public ArrayList<String> glob(String pattern) {
return JNI_Glob.glob(pattern); return JNI_Glob.glob(pattern);
......
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