reindented source
[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         int result = 0;
120         long (JNICALL * create_func)(JavaVM **, void **, void *) = find_jvm_symbol(jvm_lib, "JNI_CreateJavaVM");
121
122         if(!create_func) {
123                 fprintf(stderr, "could not find JVM creation function\n");
124                 exit(1);
125         }
126
127         memset(&args, 0, sizeof(args));
128         opts = malloc(argc * sizeof(opts[0]));
129         for(i = 0; i < argc; ++i) {
130                 opts[i].optionString = argv[i];
131                 opts[i].extraInfo    = NULL;
132         }
133
134         args.version  = JNI_VERSION_1_4;
135         args.nOptions = argc;
136         args.options  = opts;
137         args.ignoreUnrecognized = JNI_FALSE;
138
139         ret = create_func(&env->jvm, (void **) &env->jni, &args);
140         free(opts);
141         if(ret != JNI_OK) {
142                 fprintf(stderr, "JNI_CreateJavaVM returned errrocode %d\n" , ret);
143                 return 0;
144         }
145
146         return 1;
147 }
148
149 static void stop_vm(jni_env_t *env)
150 {
151         JavaVM *jvm = env->jvm;
152         (*jvm)->DetachCurrentThread(jvm);
153         (*jvm)->DestroyJavaVM(jvm);
154 }
155
156 static int jvm_inited = 0;
157 static jni_env_t env;
158 void (*old_int_handler)(int);
159 void (*old_abrt_handler)(int);
160
161 static void sig_jvm_destroy_at_exit(int signal)
162 {
163         if(jvm_inited)
164                 stop_vm(&env);
165
166         switch(signal) {
167         case SIGABRT:
168                 old_abrt_handler(signal);
169                 break;
170         case SIGINT:
171                 old_int_handler(signal);
172                 break;
173         default:;
174         }
175 }
176
177 static void jvm_destroy_at_exit(void)
178 {
179         sig_jvm_destroy_at_exit(0);
180 }
181
182 static jni_env_t *get_jvm(void)
183 {
184         char cp_param[512];
185         char *args[1];
186
187         if(!jvm_inited) {
188                 /* Find the dll */
189                 if(strlen(jvm_lib) == 0) {
190                         if(!locate_jvm_lib(jvm_lib, sizeof(jvm_lib))) {
191                                 fprintf(stderr, "could not find jvm library\n");
192                                 exit(1);
193                         }
194                 }
195
196                 snprintf(cp_param, sizeof(cp_param), "-Djava.class.path=%s", jar_file);
197                 args[0] = cp_param;
198                 if(!start_vm(&env, sizeof(args) / sizeof(args[0], args), args)) {
199                         fprintf(stderr, "Couldn't initialize java VM\n");
200                         abort();
201                 }
202                 jvm_inited = 1;
203                 old_int_handler  = signal(SIGINT,  sig_jvm_destroy_at_exit);
204                 old_abrt_handler = signal(SIGABRT, sig_jvm_destroy_at_exit);
205                 atexit(jvm_destroy_at_exit);
206         }
207
208         return &env;
209 }
210
211 static void check(jni_env_t *env, const char *file, int line)
212 {
213         JNIEnv *jni = env->jni;
214         jboolean exc = (*jni)->ExceptionCheck(jni);
215         if(exc) {
216                 fprintf(stderr, "%s:%d: ", file, line);
217                 (*jni)->ExceptionDescribe(jni);
218                 (*jni)->ExceptionClear(jni);
219                 stop_vm(env);
220                 abort();
221         }
222 }
223
224 #define CHECK(env) check(env, __FILE__, __LINE__)
225
226 enum {
227         mth_add_int_edge,
228         mth_add_aff_edge,
229         mth_set_color,
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         { "getColor",    "(I)I"                    }, /* public int getColor(int); */
248         { "forbidColor", "(II)V"                   }, /* public void forbidColor(int, int); */
249         { "coalesce",    "()V"                     }, /* public void coalesce(); */
250         { "dump",        "(Ljava/lang/String;)V"   }, /* public void dump(String); */
251         { "finish",      "()V"                     }  /* public void finish(); */
252 };
253
254 /* public static coalescing.Extern createExtern(java.lang.String, int, int, int); */
255 static const struct _mth_info_t mthi_factory = {
256         "createExtern", "(Ljava/lang/String;III)Lcoalescing/Extern;"
257 };
258
259 struct _be_java_coal_t {
260         jni_env_t *env;
261         jclass    cls;
262         jobject   obj;
263
264         jmethodID mth_ids[mth_last];
265 };
266
267 static void jc_call_void(be_java_coal_t *c, int mth_index, ...)
268 {
269         JNIEnv *jni   = c->env->jni;
270         jmethodID mid = c->mth_ids[mth_index];
271
272         va_list args;
273
274         va_start(args, mth_index);
275         (*jni)->CallVoidMethodV(jni, c->obj, mid, args);
276         CHECK(c->env);
277         va_end(args);
278 }
279
280 static int jc_call_int(be_java_coal_t *c, int mth_index, ...)
281 {
282         JNIEnv *jni   = c->env->jni;
283         jmethodID mid = c->mth_ids[mth_index];
284
285         int res;
286         va_list args;
287
288         va_start(args, mth_index);
289         res = (*jni)->CallIntMethodV(jni, c->obj, mid, args);
290         CHECK(c->env);
291         va_end(args);
292
293         return res;
294 }
295
296 be_java_coal_t *be_java_coal_init(const char *graph_name, int n_nodes, int n_regs, int dbg_level)
297 {
298         be_java_coal_t *c;
299         jni_env_t *env = get_jvm();
300         JNIEnv *jni = env->jni;
301         jmethodID fact;
302         jclass cls;
303         jstring str;
304         int i;
305
306         c = malloc(sizeof(c[0]));
307         memset(c, 0, sizeof(c[0]));
308         c->env = env;
309
310         /* Find the class we are are looking for. */
311         cls = (*jni)->FindClass(jni, cls_name);
312         CHECK(env);
313
314         /* Get the static factory method. */
315         fact = (*jni)->GetStaticMethodID(jni, cls, mthi_factory.name, mthi_factory.sig);
316         CHECK(env);
317
318         /* Call the factory. */
319         str = (*jni)->NewStringUTF(jni, graph_name);
320         CHECK(env);
321         c->obj = (*jni)->CallStaticObjectMethod(jni, cls, fact, str, n_nodes, n_regs, dbg_level);
322         CHECK(env);
323         c->cls = (*jni)->GetObjectClass(jni, c->obj);
324
325         /* Reference the created object. */
326         c->obj = (*jni)->NewGlobalRef(jni, c->obj);
327         CHECK(env);
328
329         /* Lookup the member methods of the object. */
330         for(i = 0; i < mth_last; ++i) {
331                 c->mth_ids[i] = (*jni)->GetMethodID(jni, c->cls, mthis[i].name, mthis[i].sig);
332                 CHECK(env);
333         }
334
335         return c;
336 }
337
338 void be_java_coal_destroy(be_java_coal_t *c) {
339         JNIEnv *jni = c->env->jni;
340         jc_call_void(c, mth_finish);
341         (*jni)->DeleteGlobalRef(jni, c->obj);
342         free(c);
343 }
344
345 void be_java_coal_add_int_edge(be_java_coal_t *c, int n, int m)
346 {
347         jc_call_void(c, mth_add_int_edge, (jint) n, (jint) m);
348 }
349
350 void be_java_coal_add_aff_edge(be_java_coal_t *c, int n, int m, int weight)
351 {
352         jc_call_void(c, mth_add_aff_edge, (jint) n, (jint) m, (jint) weight);
353 }
354
355 void be_java_coal_set_color(be_java_coal_t *c, int n, int col)
356 {
357         jc_call_void(c, mth_set_color, (jint) n, (jint) col);
358 }
359
360 void be_java_coal_forbid_color(be_java_coal_t *c, int n, int col)
361 {
362         jc_call_void(c, mth_forbid_color, (jint) n, (jint) col);
363 }
364
365 void be_java_coal_coalesce(be_java_coal_t *c)
366 {
367         jc_call_void(c, mth_coalesce);
368 }
369
370 void be_java_coal_dump(be_java_coal_t *c, const char *fn)
371 {
372         JNIEnv *jni   = c->env->jni;
373         jmethodID mid = c->mth_ids[mth_dump];
374         jstring str;
375
376         str = (*jni)->NewStringUTF(jni, fn);
377         CHECK(c->env);
378         (*jni)->CallVoidMethod(jni, c->obj, mid, str);
379         CHECK(c->env);
380 }
381
382 int be_java_coal_get_color(be_java_coal_t *c, int n)
383 {
384         return jc_call_int(c, mth_get_color, (jint) n);
385 }
386
387 #else
388
389 be_java_coal_t *be_java_coal_init(const char *graph_name, int n_nodes, int n_regs, int dbg_level)
390 {
391         assert(0 && "use --enable-jvm");
392         return NULL;
393 }
394
395 void be_java_coal_destroy(be_java_coal_t *c)
396 {
397         assert(0 && "use --enable-jvm");
398 }
399
400
401 void be_java_coal_add_int_edge(be_java_coal_t *c, int n, int m)
402 {
403         assert(0 && "use --enable-jvm");
404 }
405
406 void be_java_coal_add_aff_edge(be_java_coal_t *c, int n, int m, int weight)
407 {
408         assert(0 && "use --enable-jvm");
409 }
410
411 void be_java_coal_set_color(be_java_coal_t *c, int n, int col)
412 {
413         assert(0 && "use --enable-jvm");
414 }
415
416 void be_java_coal_forbid_color(be_java_coal_t *c, int n, int col)
417 {
418         assert(0 && "use --enable-jvm");
419 }
420
421 void be_java_coal_coalesce(be_java_coal_t *c)
422 {
423         assert(0 && "use --enable-jvm");
424 }
425
426 void be_java_coal_dump(be_java_coal_t *c, const char *fn)
427 {
428         assert(0 && "use --enable-jvm");
429 }
430
431 int be_java_coal_get_color(be_java_coal_t *c, int n)
432 {
433         assert(0 && "use --enable-jvm");
434         return -1;
435 }
436
437
438 #endif /* WITH_JVM */