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

revert invalid changes in NFI zip and base

parent 864b6dc6
No related branches found
No related tags found
No related merge requests found
......@@ -26,6 +26,7 @@ import java.io.IOException;
import java.util.ArrayList;
import com.oracle.truffle.api.CompilerDirectives.TruffleBoundary;
import com.oracle.truffle.api.interop.java.JavaInterop;
import com.oracle.truffle.r.ffi.impl.interop.base.GlobResult;
import com.oracle.truffle.r.ffi.impl.interop.base.ReadlinkResult;
import com.oracle.truffle.r.ffi.impl.interop.base.StrtolResult;
......@@ -58,7 +59,7 @@ public class TruffleNFI_Base implements BaseRFFI {
@Override
public String execute() {
byte[] buf = new byte[4096];
int result = (int) call(buf, buf.length);
int result = (int) call(JavaInterop.asTruffleObject(buf), buf.length);
if (result == 0) {
return null;
} else {
......@@ -141,7 +142,7 @@ public class TruffleNFI_Base implements BaseRFFI {
byte[] ztbytes = new byte[bytes.length + 1];
System.arraycopy(bytes, 0, ztbytes, 0, bytes.length);
ztbytes[bytes.length] = 0;
int result = (int) call(ztbytes);
int result = (int) call(JavaInterop.asTruffleObject(ztbytes));
if (result == 0) {
return null;
} else {
......
......@@ -25,6 +25,7 @@ package com.oracle.truffle.r.ffi.impl.nfi;
import java.nio.charset.StandardCharsets;
import com.oracle.truffle.api.CompilerDirectives;
import com.oracle.truffle.api.interop.java.JavaInterop;
import com.oracle.truffle.r.ffi.impl.interop.pcre.CaptureNamesResult;
import com.oracle.truffle.r.ffi.impl.interop.pcre.CompileResult;
import com.oracle.truffle.r.runtime.RError;
......@@ -99,7 +100,7 @@ public class TruffleNFI_PCRE implements PCRERFFI {
@Override
public int execute(long code, long extra, String subject, int offset, int options, int[] ovector) {
byte[] subjectBytes = subject.getBytes(StandardCharsets.UTF_8);
return (int) call(code, extra, subjectBytes, subjectBytes.length, offset, options, ovector, ovector.length);
return (int) call(code, extra, JavaInterop.asTruffleObject(subjectBytes), subjectBytes.length, offset, options, ovector, ovector.length);
}
}
......
......@@ -22,6 +22,7 @@
*/
package com.oracle.truffle.r.ffi.impl.nfi;
import com.oracle.truffle.api.interop.java.JavaInterop;
import com.oracle.truffle.r.runtime.ffi.ZipRFFI;
public class TruffleNFI_Zip implements ZipRFFI {
......@@ -35,7 +36,8 @@ public class TruffleNFI_Zip implements ZipRFFI {
@Override
public int execute(byte[] dest, byte[] source) {
long[] destlen = new long[]{dest.length};
return (int) call(dest, destlen, source, source.length);
int result = (int) call(JavaInterop.asTruffleObject(dest), JavaInterop.asTruffleObject(destlen), JavaInterop.asTruffleObject(source), source.length);
return result;
}
}
......@@ -48,7 +50,8 @@ public class TruffleNFI_Zip implements ZipRFFI {
@Override
public int execute(byte[] dest, byte[] source) {
long[] destlen = new long[]{dest.length};
return (int) call(dest, destlen, source, source.length);
int result = (int) call(JavaInterop.asTruffleObject(dest), JavaInterop.asTruffleObject(destlen), JavaInterop.asTruffleObject(source), source.length);
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