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

more debug info for embedding

parent 46a82407
No related branches found
No related tags found
No related merge requests found
...@@ -60,7 +60,7 @@ static void setupOverrides(void); ...@@ -60,7 +60,7 @@ static void setupOverrides(void);
static void *dlopen_jvmlib(char *libpath); static void *dlopen_jvmlib(char *libpath);
static JNIEnv* getEnv(); static JNIEnv* getEnv();
static jmethodID checkGetMethodID(JNIEnv *env, jclass klass, const char *name, const char *sig, int isStatic); static jmethodID checkGetMethodID(JNIEnv *env, jclass klass, const char *name, const char *sig, int isStatic);
static jclass checkFindClass(JNIEnv *env, const char *name); static jclass checkFindClass(JNIEnv *env, const char *name, const char* vm_cp);
static int process_vmargs(int argc, char *argv[], char *vmargv[], char *uargv[]); static int process_vmargs(int argc, char *argv[], char *vmargv[], char *uargv[]);
static char **update_environ_with_java_home(void); static char **update_environ_with_java_home(void);
static void print_environ(char **env); static void print_environ(char **env);
...@@ -224,9 +224,9 @@ static int initializeFastR(int argc, char *argv[], int setupRmainloop) { ...@@ -224,9 +224,9 @@ static int initializeFastR(int argc, char *argv[], int setupRmainloop) {
return 1; return 1;
} }
rInterfaceCallbacksClass = checkFindClass(jniEnv, "com/oracle/truffle/r/runtime/RInterfaceCallbacks"); rInterfaceCallbacksClass = checkFindClass(jniEnv, "com/oracle/truffle/r/runtime/RInterfaceCallbacks", vm_cp);
rembeddedClass = checkFindClass(jniEnv, "com/oracle/truffle/r/engine/shell/REmbedded"); rembeddedClass = checkFindClass(jniEnv, "com/oracle/truffle/r/engine/shell/REmbedded", vm_cp);
jclass stringClass = checkFindClass(jniEnv, "java/lang/String"); jclass stringClass = checkFindClass(jniEnv, "java/lang/String", vm_cp);
jmethodID initializeMethod = checkGetMethodID(jniEnv, rembeddedClass, "initializeR", "([Ljava/lang/String;Z)V", 1); jmethodID initializeMethod = checkGetMethodID(jniEnv, rembeddedClass, "initializeR", "([Ljava/lang/String;Z)V", 1);
jobjectArray argsArray = (*jniEnv)->NewObjectArray(jniEnv, argc, stringClass, NULL); jobjectArray argsArray = (*jniEnv)->NewObjectArray(jniEnv, argc, stringClass, NULL);
for (int i = 0; i < argc; i++) { for (int i = 0; i < argc; i++) {
...@@ -578,13 +578,16 @@ static jmethodID checkGetMethodID(JNIEnv *env, jclass klass, const char *name, c ...@@ -578,13 +578,16 @@ static jmethodID checkGetMethodID(JNIEnv *env, jclass klass, const char *name, c
return methodID; return methodID;
} }
static jclass checkFindClass(JNIEnv *env, const char *name) { static jclass checkFindClass(JNIEnv *env, const char *name, const char* vm_cp) {
jclass klass = (*env)->FindClass(env, name); jclass klass = (*env)->FindClass(env, name);
if (klass == NULL) { if (klass == NULL) {
char buf[1024]; char buf[16384];
strcpy(buf, "failed to find class "); strcpy(buf, "failed to find class ");
strcat(buf, name); strcat(buf, name);
strcat(buf, " in classpath ");
strcat(buf, vm_cp);
strcat(buf, ".\nDid you set R_HOME to the correct location?"); strcat(buf, ".\nDid you set R_HOME to the correct location?");
(*env)->ExceptionDescribe(env);
(*env)->FatalError(env, buf); (*env)->FatalError(env, buf);
} }
return (*env)->NewGlobalRef(env, klass); return (*env)->NewGlobalRef(env, klass);
......
...@@ -40,6 +40,11 @@ dir="$( cd -P "$( dirname "$source" )" && pwd )" ...@@ -40,6 +40,11 @@ dir="$( cd -P "$( dirname "$source" )" && pwd )"
: ${R_HOME?"R_HOME must point to FastR directory"} : ${R_HOME?"R_HOME must point to FastR directory"}
: ${NFI_LIB?"NFI_LIB must point to libtrufflenfi.so located in mxbuild directory of Truffle"} : ${NFI_LIB?"NFI_LIB must point to libtrufflenfi.so located in mxbuild directory of Truffle"}
echo "R_HOME: $R_HOME"
echo "NFI_LIB: $NFI_LIB"
echo "Rclasspath: "
$dir/../../bin/execRextras/Rclasspath
echo "Testing 'main' embedding example..." echo "Testing 'main' embedding example..."
(cd $dir/bin; ./main -Dtruffle.nfi.library=$NFI_LIB --vanilla < $dir/src/main.input > $dir/main.actual.output 2>&1) (cd $dir/bin; ./main -Dtruffle.nfi.library=$NFI_LIB --vanilla < $dir/src/main.input > $dir/main.actual.output 2>&1)
if ! diff -q $dir/main.actual.output $dir/src/main.expected.output > /dev/null 2>&1; then if ! diff -q $dir/main.actual.output $dir/src/main.expected.output > /dev/null 2>&1; then
......
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