Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Q
QueryR
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Julien Lopez
QueryR
Commits
be8f7a2e
Commit
be8f7a2e
authored
8 years ago
by
Adam Welc
Browse files
Options
Downloads
Patches
Plain Diff
Missing modifications for copying back Java objects on nested upcalls.
parent
deb5c70e
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
com.oracle.truffle.r.native/fficall/src/jni/rffiutils.c
+23
-11
23 additions, 11 deletions
com.oracle.truffle.r.native/fficall/src/jni/rffiutils.c
com.oracle.truffle.r.native/fficall/src/jni/rffiutils.h
+1
-0
1 addition, 0 deletions
com.oracle.truffle.r.native/fficall/src/jni/rffiutils.h
with
24 additions
and
11 deletions
com.oracle.truffle.r.native/fficall/src/jni/rffiutils.c
+
23
−
11
View file @
be8f7a2e
...
...
@@ -75,7 +75,7 @@ static NativeArrayElem *nativeArrayTable;
// hwm of nativeArrayTable
static
int
nativeArrayTableHwm
;
static
int
nativeArrayTableLength
;
static
void
releaseNativeArray
(
JNIEnv
*
env
,
int
index
);
static
void
releaseNativeArray
(
JNIEnv
*
env
,
int
index
,
int
freedata
);
static
int
isEmbedded
=
0
;
void
setEmbedded
()
{
...
...
@@ -160,7 +160,7 @@ jmp_buf *getErrorJmpBuf() {
void
callExit
(
JNIEnv
*
env
)
{
int
oldHwm
=
nativeArrayTableHwmStack
[
callDepth
-
1
];
for
(
int
i
=
oldHwm
;
i
<
nativeArrayTableHwm
;
i
++
)
{
releaseNativeArray
(
env
,
i
);
releaseNativeArray
(
env
,
i
,
1
);
}
nativeArrayTableHwm
=
oldHwm
;
callDepth
--
;
...
...
@@ -173,7 +173,7 @@ void invalidateNativeArray(JNIEnv *env, SEXP oldObj) {
#if TRACE_NATIVE_ARRAYS
fprintf
(
traceFile
,
"invalidateNativeArray(%p): found
\n
"
,
oldObj
);
#endif
releaseNativeArray
(
env
,
i
);
releaseNativeArray
(
env
,
i
,
1
);
nativeArrayTable
[
i
].
obj
=
NULL
;
}
}
...
...
@@ -182,6 +182,14 @@ void invalidateNativeArray(JNIEnv *env, SEXP oldObj) {
#endif
}
void
updateNativeArrays
(
JNIEnv
*
env
)
{
int
oldHwm
=
nativeArrayTableHwmStack
[
callDepth
-
1
];
for
(
int
i
=
oldHwm
;
i
<
nativeArrayTableHwm
;
i
++
)
{
releaseNativeArray
(
env
,
i
,
0
);
}
}
static
void
*
findNativeArray
(
JNIEnv
*
env
,
SEXP
x
)
{
int
i
;
for
(
i
=
0
;
i
<
nativeArrayTableHwm
;
i
++
)
{
...
...
@@ -280,16 +288,16 @@ void *getNativeArray(JNIEnv *thisenv, SEXP x, SEXPTYPE type) {
return
data
;
}
static
void
releaseNativeArray
(
JNIEnv
*
env
,
int
i
)
{
static
void
releaseNativeArray
(
JNIEnv
*
env
,
int
i
,
int
freedata
)
{
NativeArrayElem
cv
=
nativeArrayTable
[
i
];
#if TRACE_NATIVE_ARRAYS
fprintf
(
traceFile
,
"releaseNativeArray(x=%p, ix=%d)
\n
"
,
cv
.
obj
,
i
);
fprintf
(
traceFile
,
"releaseNativeArray(x=%p, ix=%d
, freedata=%d
)
\n
"
,
cv
.
obj
,
i
,
freedata
);
#endif
if
(
cv
.
obj
!=
NULL
)
{
switch
(
cv
.
type
)
{
case
INTSXP
:
{
jintArray
intArray
=
(
jintArray
)
cv
.
jArray
;
(
*
env
)
->
ReleaseIntArrayElements
(
env
,
intArray
,
(
jint
*
)
cv
.
data
,
0
);
(
*
env
)
->
ReleaseIntArrayElements
(
env
,
intArray
,
(
jint
*
)
cv
.
data
,
freedata
?
0
:
JNI_COMMIT
);
break
;
}
...
...
@@ -303,28 +311,32 @@ static void releaseNativeArray(JNIEnv *env, int i) {
internalData
[
i
]
=
data
[
i
]
==
NA_INTEGER
?
255
:
(
jbyte
)
data
[
i
];
}
(
*
env
)
->
ReleaseByteArrayElements
(
env
,
byteArray
,
internalData
,
0
);
free
(
data
);
// was malloc'ed in addNativeArray
if
(
freedata
){
free
(
data
);
// was malloc'ed in addNativeArray
}
break
;
}
case
REALSXP
:
{
jdoubleArray
doubleArray
=
(
jdoubleArray
)
cv
.
jArray
;
(
*
env
)
->
ReleaseDoubleArrayElements
(
env
,
doubleArray
,
(
jdouble
*
)
cv
.
data
,
0
);
(
*
env
)
->
ReleaseDoubleArrayElements
(
env
,
doubleArray
,
(
jdouble
*
)
cv
.
data
,
freedata
?
0
:
JNI_COMMIT
);
break
;
}
case
RAWSXP
:
{
jbyteArray
byteArray
=
(
jbyteArray
)
cv
.
jArray
;
(
*
env
)
->
ReleaseByteArrayElements
(
env
,
byteArray
,
(
jbyte
*
)
cv
.
data
,
0
);
(
*
env
)
->
ReleaseByteArrayElements
(
env
,
byteArray
,
(
jbyte
*
)
cv
.
data
,
freedata
?
0
:
JNI_COMMIT
);
break
;
}
default:
fatalError
(
"releaseNativeArray type"
);
}
// free up the slot
cv
.
obj
=
NULL
;
if
(
freedata
)
{
// free up the slot
cv
.
obj
=
NULL
;
}
}
}
...
...
This diff is collapsed.
Click to expand it.
com.oracle.truffle.r.native/fficall/src/jni/rffiutils.h
+
1
−
0
View file @
be8f7a2e
...
...
@@ -73,6 +73,7 @@ void *getNativeArray(JNIEnv *env, SEXP x, SEXPTYPE type);
// Rare case where an operation changes the internal
// data and thus the old C array should be invalidated
void
invalidateNativeArray
(
JNIEnv
*
env
,
SEXP
oldObj
);
void
updateNativeArrays
(
JNIEnv
*
env
);
void
init_rmath
(
JNIEnv
*
env
);
void
init_variables
(
JNIEnv
*
env
,
jobjectArray
initialValues
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment