More bug fixing
[libfirm] / ir / be / bejavacoal.c
1
2 #ifdef HAVE_CONFIG_H
3 #include "config.h"
4 #endif
5
6 #ifdef WITH_LIBCORE
7 #include <libcore/lc_opts.h>
8 #include <libcore/lc_opts_enum.h>
9 #endif /* WITH_LIBCORE */
10
11 #ifdef _WIN32
12 #include <windows.h>
13 #else
14 #include <dlfcn.h>
15 #endif
16
17 #include <signal.h>
18 #include <stdlib.h>
19 #include <assert.h>
20 #include <stdio.h>
21
22 #include "bejavacoal.h"
23
24 /* Path to the jar file. A little OS dependent convenience. */
25 #ifdef _WIN32
26 static char jar_file[512] = "y:\\user\\hack\\public\\coal.jar";
27 #else
28 static char jar_file[512] = "/ben/hack/public/coal.jar";
29 #endif
30
31 static char cls_name[256] = "coalescing/mst/safe/Algo";
32
33 /* Name of teh JVM dll/so */
34 static char jvm_lib[512] = { 0 };
35
36 #ifdef WITH_LIBCORE
37 static const lc_opt_table_entry_t options[] = {
38         LC_OPT_ENT_STR      ("jvm",  "absolute path to jvm dll",                    jvm_lib, sizeof(jvm_lib)),
39         LC_OPT_ENT_STR      ("jar",  "jar file of the coalescer",                   jar_file, sizeof(jar_file)),
40         LC_OPT_ENT_STR      ("cls",  "name of the class providing the factory",     cls_name, sizeof(cls_name)),
41         { NULL }
42 };
43
44 void be_java_coal_register_options(lc_opt_entry_t *grp)
45 {
46         lc_opt_entry_t *jc_grp = lc_opt_get_grp(grp, "jc");
47         lc_opt_add_table(jc_grp, options);
48 }
49 #endif
50
51 #ifdef WITH_JVM
52 #include <jni.h>
53
54 typedef struct _jni_env_t {
55         JavaVM *jvm;
56         JNIEnv *jni;
57 } jni_env_t;
58 #endif
59
60 /*
61
62         Ugly code to retrieve the JVM dll/so file.
63
64 */
65
66 #ifdef _WIN32
67 /* Win32 version */
68 static void *find_jvm_symbol(const char *vmlibpath, const char *sym)
69 {
70         HINSTANCE hVM = LoadLibrary(vmlibpath);
71         return hVM ? GetProcAddress(hVM, sym) : NULL;
72 }
73
74 #define JRE_KEY "SOFTWARE\\JavaSoft\\Java Development Kit"
75
76 static char *locate_jvm_lib(char *path, size_t path_len)
77 {
78         char version[32];
79         char buf[256];
80         DWORD version_len = sizeof(version);
81         DWORD dwPathLen = path_len;
82         HKEY hKey;
83
84         RegOpenKeyEx(HKEY_LOCAL_MACHINE, JRE_KEY, 0, KEY_QUERY_VALUE, &hKey);
85         RegQueryValueEx(hKey, "CurrentVersion", NULL, NULL, (LPBYTE) version, &version_len);
86         RegCloseKey(hKey);
87
88         _snprintf(buf, sizeof(buf), JRE_KEY "\\%s", version);
89         RegOpenKeyEx(HKEY_LOCAL_MACHINE, buf, 0, KEY_QUERY_VALUE, &hKey);
90         RegQueryValueEx(hKey, "JavaHome", NULL, NULL, (LPBYTE) path, &dwPathLen);
91         RegCloseKey(hKey);
92
93         strncat(path, "\\jre\\bin\\server\\jvm.dll", path_len);
94         return path;
95 }
96
97 #else
98 /* Unix version */
99 static void *find_jvm_symbol(const char *vmlibpath, const char *sym)
100 {
101         void *libVM = dlopen(vmlibpath, RTLD_LAZY);
102         return libVM ? dlsym(libVM, sym) : NULL;
103 }
104
105 static char *locate_jvm_lib(char *path, size_t n)
106 {
107         return NULL;
108 }
109 #endif
110
111 #ifdef WITH_JVM
112 static int start_vm(jni_env_t *env, int argc, char *argv[])
113 {
114         int i;
115         long ret;
116         JavaVMInitArgs args;
117         JavaVMOption *opts;
118
119         long (JNICALL * create_func)(JavaVM **, void **, void *) = find_jvm_symbol(jvm_lib, "JNI_CreateJavaVM");
120
121         if(!create_func) {
122                 fprintf(stderr, "could not find JVM creation function\n");
123                 exit(1);
124         }
125
126         memset(&args, 0, sizeof(args));
127         opts = malloc(argc * sizeof(opts[0]));
128         for(i = 0; i < argc; ++i) {
129                 opts[i].optionString = argv[i];
130                 opts[i].extraInfo    = NULL;
131         }
132
133         args.version  = JNI_VERSION_1_4;
134         args.nOptions = argc;
135         args.options  = opts;
136         args.ignoreUnrecognized = JNI_FALSE;
137
138         ret = create_func(&env->jvm, (void **) &env->jni, &args);
139         free(opts);
140         if(ret != JNI_OK) {
141                 fprintf(stderr, "JNI_CreateJavaVM returned errrocode %ld\n" , ret);
142                 return 0;
143         }
144
145         return 1;
146 }
147
148 static void stop_vm(jni_env_t *env)
149 {
150         JavaVM *jvm = env->jvm;
151         (*jvm)->DetachCurrentThread(jvm);
152         (*jvm)->DestroyJavaVM(jvm);
153 }
154
155 static int jvm_inited = 0;
156 static jni_env_t env;
157 void (*old_int_handler)(int);
158 void (*old_abrt_handler)(int);
159
160 static void sig_jvm_destroy_at_exit(int signal)
161 {
162         if(jvm_inited)
163                 stop_vm(&env);
164
165         switch(signal) {
166         case SIGABRT:
167                 old_abrt_handler(signal);
168                 break;
169         case SIGINT:
170                 old_int_handler(signal);
171                 break;
172         default:;
173         }
174 }
175
176 static void jvm_destroy_at_exit(void)
177 {
178         sig_jvm_destroy_at_exit(0);
179 }
180
181 static jni_env_t *get_jvm(void)
182 {
183         char cp_param[512];
184         char *args[1];
185
186         if(!jvm_inited) {
187                 /* Find the dll */
188                 if(strlen(jvm_lib) == 0) {
189                         if(!locate_jvm_lib(jvm_lib, sizeof(jvm_lib))) {
190                                 fprintf(stderr, "could not find jvm library\n");
191                                 exit(1);
192                         }
193                 }
194
195                 snprintf(cp_param, sizeof(cp_param), "-Djava.class.path=%s", jar_file);
196                 args[0] = cp_param;
197                 if(!start_vm(&env, sizeof(args) / sizeof(args[0]), args)) {
198                         fprintf(stderr, "Couldn't initialize java VM\n");
199                         abort();
200                 }
201                 jvm_inited = 1;
202                 old_int_handler  = signal(SIGINT,  sig_jvm_destroy_at_exit);
203                 old_abrt_handler = signal(SIGABRT, sig_jvm_destroy_at_exit);
204                 atexit(jvm_destroy_at_exit);
205         }
206
207         return &env;
208 }
209
210 static void check(jni_env_t *env, const char *file, int line)
211 {
212         JNIEnv *jni = env->jni;
213         jboolean exc = (*jni)->ExceptionCheck(jni);
214         if(exc) {
215                 fprintf(stderr, "%s:%d: ", file, line);
216                 (*jni)->ExceptionDescribe(jni);
217                 (*jni)->ExceptionClear(jni);
218                 stop_vm(env);
219                 abort();
220         }
221 }
222
223 #define CHECK(env) check(env, __FILE__, __LINE__)
224
225 enum {
226         mth_add_int_edge,
227         mth_add_aff_edge,
228         mth_set_color,
229         mth_set_debug,
230         mth_get_color,
231         mth_forbid_color,
232         mth_coalesce,
233         mth_dump,
234         mth_finish,
235         mth_last
236 };
237
238 struct _mth_info_t {
239         const char *name;
240         const char *sig;
241 };
242
243 static const struct _mth_info_t mthis[mth_last] = {
244         { "addIntEdge",  "(II)V"                   }, /* public void addIntEdge(int, int); */
245         { "addAffEdge",  "(III)V"                  }, /* public void addAffEdge(int, int, int); */
246         { "setColor",    "(II)V"                   }, /* public void setColor(int, int); */
247         { "setDebug",    "(ILjava/lang/String;)V"  }, /* public void setDebug(int, String); */
248         { "getColor",    "(I)I"                    }, /* public int getColor(int); */
249         { "forbidColor", "(II)V"                   }, /* public void forbidColor(int, int); */
250         { "coalesce",    "()V"                     }, /* public void coalesce(); */
251         { "dump",        "(Ljava/lang/String;)V"   }, /* public void dump(String); */
252         { "finish",      "()V"                     }  /* public void finish(); */
253 };
254
255 /* public static coalescing.Extern createExtern(java.lang.String, int, int, int); */
256 static const struct _mth_info_t mthi_factory = {
257         "createExtern", "(Ljava/lang/String;III)Lcoalescing/Extern;"
258 };
259
260 struct _be_java_coal_t {
261         jni_env_t *env;
262         jclass    cls;
263         jobject   obj;
264
265         jmethodID mth_ids[mth_last];
266 };
267
268 static void jc_call_void(be_java_coal_t *c, int mth_index, ...)
269 {
270         JNIEnv *jni   = c->env->jni;
271         jmethodID mid = c->mth_ids[mth_index];
272
273         va_list args;
274
275         va_start(args, mth_index);
276         (*jni)->CallVoidMethodV(jni, c->obj, mid, args);
277         CHECK(c->env);
278         va_end(args);
279 }
280
281 static int jc_call_int(be_java_coal_t *c, int mth_index, ...)
282 {
283         JNIEnv *jni   = c->env->jni;
284         jmethodID mid = c->mth_ids[mth_index];
285
286         int res;
287         va_list args;
288
289         va_start(args, mth_index);
290         res = (*jni)->CallIntMethodV(jni, c->obj, mid, args);
291         CHECK(c->env);
292         va_end(args);
293
294         return res;
295 }
296
297 be_java_coal_t *be_java_coal_init(const char *graph_name, int n_nodes, int n_regs, int dbg_level)
298 {
299         be_java_coal_t *c;
300         jni_env_t *env = get_jvm();
301         JNIEnv *jni = env->jni;
302         jmethodID fact;
303         jclass cls;
304         jstring str;
305         int i;
306
307         c = malloc(sizeof(c[0]));
308         memset(c, 0, sizeof(c[0]));
309         c->env = env;
310
311         /* Find the class we are are looking for. */
312         cls = (*jni)->FindClass(jni, cls_name);
313         CHECK(env);
314
315         /* Get the static factory method. */
316         fact = (*jni)->GetStaticMethodID(jni, cls, mthi_factory.name, mthi_factory.sig);
317         CHECK(env);
318
319         /* Call the factory. */
320         str = (*jni)->NewStringUTF(jni, graph_name);
321         CHECK(env);
322         c->obj = (*jni)->CallStaticObjectMethod(jni, cls, fact, str, n_nodes, n_regs, dbg_level);
323         CHECK(env);
324         c->cls = (*jni)->GetObjectClass(jni, c->obj);
325
326         /* Reference the created object. */
327         c->obj = (*jni)->NewGlobalRef(jni, c->obj);
328         CHECK(env);
329
330         /* Lookup the member methods of the object. */
331         for(i = 0; i < mth_last; ++i) {
332                 c->mth_ids[i] = (*jni)->GetMethodID(jni, c->cls, mthis[i].name, mthis[i].sig);
333                 CHECK(env);
334         }
335
336         return c;
337 }
338
339 void be_java_coal_destroy(be_java_coal_t *c) {
340         JNIEnv *jni = c->env->jni;
341         jc_call_void(c, mth_finish);
342         (*jni)->DeleteGlobalRef(jni, c->obj);
343         free(c);
344 }
345
346 void be_java_coal_add_int_edge(be_java_coal_t *c, int n, int m)
347 {
348         jc_call_void(c, mth_add_int_edge, (jint) n, (jint) m);
349 }
350
351 void be_java_coal_add_aff_edge(be_java_coal_t *c, int n, int m, int weight)
352 {
353         jc_call_void(c, mth_add_aff_edge, (jint) n, (jint) m, (jint) weight);
354 }
355
356 void be_java_coal_set_color(be_java_coal_t *c, int n, int col)
357 {
358         jc_call_void(c, mth_set_color, (jint) n, (jint) col);
359 }
360
361 void be_java_coal_set_debug(be_java_coal_t *c, int n, const char *dbg)
362 {
363         JNIEnv *jni   = c->env->jni;
364         jmethodID mid = c->mth_ids[mth_set_debug];
365         jstring str;
366
367         str = (*jni)->NewStringUTF(jni, dbg);
368         CHECK(c->env);
369         (*jni)->CallVoidMethod(jni, c->obj, mid, (jint) n, str);
370         CHECK(c->env);
371 }
372
373 void be_java_coal_forbid_color(be_java_coal_t *c, int n, int col)
374 {
375         jc_call_void(c, mth_forbid_color, (jint) n, (jint) col);
376 }
377
378 void be_java_coal_coalesce(be_java_coal_t *c)
379 {
380         jc_call_void(c, mth_coalesce);
381 }
382
383 void be_java_coal_dump(be_java_coal_t *c, const char *fn)
384 {
385         JNIEnv *jni   = c->env->jni;
386         jmethodID mid = c->mth_ids[mth_dump];
387         jstring str;
388
389         str = (*jni)->NewStringUTF(jni, fn);
390         CHECK(c->env);
391         (*jni)->CallVoidMethod(jni, c->obj, mid, str);
392         CHECK(c->env);
393 }
394
395 int be_java_coal_get_color(be_java_coal_t *c, int n)
396 {
397         return jc_call_int(c, mth_get_color, (jint) n);
398 }
399
400 #else
401
402 be_java_coal_t *be_java_coal_init(const char *graph_name, int n_nodes, int n_regs, int dbg_level)
403 {
404         assert(0 && "use --enable-jvm");
405         return NULL;
406 }
407
408 void be_java_coal_destroy(be_java_coal_t *c)
409 {
410         assert(0 && "use --enable-jvm");
411 }
412
413
414 void be_java_coal_add_int_edge(be_java_coal_t *c, int n, int m)
415 {
416         assert(0 && "use --enable-jvm");
417 }
418
419 void be_java_coal_add_aff_edge(be_java_coal_t *c, int n, int m, int weight)
420 {
421         assert(0 && "use --enable-jvm");
422 }
423
424 void be_java_coal_set_color(be_java_coal_t *c, int n, int col)
425 {
426         assert(0 && "use --enable-jvm");
427 }
428
429 void be_java_coal_set_debug(be_java_coal_t *c, int n, const char *dbg)
430 {
431         assert(0 && "use --enable-jvm");
432 }
433
434 void be_java_coal_forbid_color(be_java_coal_t *c, int n, int col)
435 {
436         assert(0 && "use --enable-jvm");
437 }
438
439 void be_java_coal_coalesce(be_java_coal_t *c)
440 {
441         assert(0 && "use --enable-jvm");
442 }
443
444 void be_java_coal_dump(be_java_coal_t *c, const char *fn)
445 {
446         assert(0 && "use --enable-jvm");
447 }
448
449 int be_java_coal_get_color(be_java_coal_t *c, int n)
450 {
451         assert(0 && "use --enable-jvm");
452         return -1;
453 }
454
455
456 #endif /* WITH_JVM */