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

Refactor R_GlobalContext as method call to VM

parent 9949be00
No related branches found
No related tags found
No related merge requests found
......@@ -13,9 +13,9 @@
#include <sys/utsname.h>
#include <sys/stat.h>
#include <rffiutils.h>
#include <R_ext/RStartup.h>
#define R_INTERFACE_PTRS
#include <Rinterface.h>
#include <R_ext/RStartup.h>
extern char **environ;
......@@ -70,36 +70,6 @@ static char *get_classpath(char *r_home);
# define JMP_BUF sigjmp_buf
/* Evaluation Context Structure */
typedef struct RCNTXT {
struct RCNTXT *nextcontext; /* The next context up the chain */
int callflag; /* The context "type" */
JMP_BUF cjmpbuf; /* C stack and register information */
int cstacktop; /* Top of the pointer protection stack */
int evaldepth; /* evaluation depth at inception */
SEXP promargs; /* Promises supplied to closure */
SEXP callfun; /* The closure called */
SEXP sysparent; /* environment the closure was called from */
SEXP call; /* The call that effected this context*/
SEXP cloenv; /* The environment */
SEXP conexit; /* Interpreted "on.exit" code */
void (*cend)(void *); /* C "on.exit" thunk */
void *cenddata; /* data for C "on.exit" thunk */
void *vmax; /* top of R_alloc stack */
int intsusp; /* interrupts are suspended */
SEXP handlerstack; /* condition handler stack */
SEXP restartstack; /* stack of available restarts */
void *prstack; /* stack of pending promises */
void *nodestack;
#ifdef BC_INT_STACK
IStackval *intstack;
#endif
SEXP srcref; /* The source line in effect */
int browserfinish; /* should browser finish this context without stopping */
SEXP returnValue; /* only set during on.exit calls */
} RCNTXT, *context;
int Rf_initialize_R(int argc, char *argv[]) {
if (initialized) {
fprintf(stderr, "%s", "R is already initialized\n");
......@@ -201,7 +171,6 @@ int Rf_initialize_R(int argc, char *argv[]) {
(*jniEnv)->SetObjectArrayElement(jniEnv, argsArray, i, arg);
}
// Can't TRACE this upcall as system not initialized
R_GlobalContext = malloc(sizeof(struct RCNTXT));
engine = checkRef(jniEnv, (*jniEnv)->CallStaticObjectMethod(jniEnv, rembeddedClass, initializeMethod, argsArray));
initialized++;
return 0;
......
......@@ -36,6 +36,7 @@ jmethodID getBaseEnvMethodID;
jmethodID getBaseNamespaceMethodID;
jmethodID getNamespaceRegistryMethodID;
jmethodID isInteractiveMethodID;
jmethodID getGlobalContextMethodID;
// R_GlobalEnv et al are not a variables in FASTR as they are RContext specific
SEXP FASTR_GlobalEnv() {
......@@ -58,6 +59,11 @@ SEXP FASTR_NamespaceRegistry() {
return (*env)->CallStaticObjectMethod(env, CallRFFIHelperClass, getNamespaceRegistryMethodID);
}
SEXP FASTR_GlobalContext() {
JNIEnv *env = getEnv();
return (*env)->CallStaticObjectMethod(env, CallRFFIHelperClass, getGlobalContextMethodID);
}
void init_variables(JNIEnv *env, jobjectArray initialValues) {
// initialValues is an array of enums
jclass enumClass = (*env)->GetObjectClass(env, (*env)->GetObjectArrayElement(env, initialValues, 0));
......@@ -75,6 +81,7 @@ void init_variables(JNIEnv *env, jobjectArray initialValues) {
getBaseNamespaceMethodID = checkGetMethodID(env, CallRFFIHelperClass, "getBaseNamespace", "()Ljava/lang/Object;", 1);
getNamespaceRegistryMethodID = checkGetMethodID(env, CallRFFIHelperClass, "getNamespaceRegistry", "()Ljava/lang/Object;", 1);
isInteractiveMethodID = checkGetMethodID(env, CallRFFIHelperClass, "isInteractive", "()I", 1);
getGlobalContextMethodID = checkGetMethodID(env, CallRFFIHelperClass, "getGlobalContext", "()Ljava/lang/Object;", 1);
int length = (*env)->GetArrayLength(env, initialValues);
int index;
......
......@@ -37,19 +37,20 @@ R_EXT_HEADERS_TO_LINK := $(filter-out $(notdir $(R_EXT_HEADERS_LOCAL)),$(R_EXT_H
R_HEADERS := $(wildcard $(GNUR_HOME)/include/*.h)
R_HEADERS_FILENAMES := $(notdir $(R_HEADERS))
#$(info R_HEADERS_FILENAMES=$(R_HEADERS_FILENAMES))
R_HEADERS_LOCAL := src/libintl.h src/Rinternals.h # src/Rinterface.h
R_HEADERS_LOCAL := src/libintl.h src/Rinternals.h src/Rinterface.h
#$(info R_HEADERS_LOCAL=$(R_HEADERS_LOCAL))>
R_HEADERS_TO_LINK := $(filter-out $(notdir $(R_HEADERS_LOCAL)),$(R_HEADERS_FILENAMES))
#$(info R_HEADERS_TO_LINK=$(R_HEADERS_TO_LINK))
all: linked
linked: ed_Rinternals ed_Rinterface ed_GraphicsEngine
linked: ed_Rinternals ed_Rinterface_gcntx ed_Rinterface_interactive ed_GraphicsEngine
mkdir -p R_ext
$(foreach file,$(R_HEADERS_TO_LINK),ln -sf $(GNUR_HOME)/include/$(file) $(file);)
ln -sf src/libintl.h
ed $(GNUR_HOME)/include/Rinternals.h < ed_Rinternals
# ed $(GNUR_HOME)/include/Rinterface.h < ed_Rinterface
ed $(GNUR_HOME)/include/Rinterface.h < ed_Rinterface_gcntx
# ed $(GNUR_HOME)/include/Rinterface.h < ed_Rinterface_interactive
ed $(GNUR_HOME)/include/R_ext/GraphicsEngine.h < ed_GraphicsEngine
$(foreach file,$(R_EXT_HEADERS_TO_LINK),ln -sf $(GNUR_HOME)/include/R_ext/$(file) R_ext/$(file);)
# cp $(R_EXT_HEADERS_LOCAL) R_ext
......
/R_Interactive/
/R_GlobalContext/
i
#ifdef FASTR
LibExtern Rboolean FASTR_Interactive();
#define R_Interactive FASTR_Interactive()
extern void* FASTR_GlobalContext();
#define R_GlobalContext FASTR_GlobalContext()
#else
.
+1
......
......@@ -1127,6 +1127,13 @@ public class CallRFFIHelper {
return x;
}
public static Object getGlobalContext() {
if (RFFIUtils.traceEnabled()) {
RFFIUtils.traceUpCall("getGlobalContext");
}
return unimplemented("getGlobalContext");
}
public static Object getGlobalEnv() {
if (RFFIUtils.traceEnabled()) {
RFFIUtils.traceUpCall("getGlobalEnv");
......
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