* src/vm/suck.hpp (SuckClasspath): Added as list of classpath entries.
[cacao.git] / src / vm / vm.cpp
1 /* src/vm/vm.cpp - VM startup and shutdown functions
2
3    Copyright (C) 1996-2005, 2006, 2007, 2008
4    CACAOVM - Verein zur Foerderung der freien virtuellen Maschine CACAO
5
6    This file is part of CACAO.
7
8    This program is free software; you can redistribute it and/or
9    modify it under the terms of the GNU General Public License as
10    published by the Free Software Foundation; either version 2, or (at
11    your option) any later version.
12
13    This program is distributed in the hope that it will be useful, but
14    WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16    General Public License for more details.
17
18    You should have received a copy of the GNU General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21    02110-1301, USA.
22
23 */
24
25
26 #include "config.h"
27
28 #include <stdint.h>
29
30 #include <exception>
31
32 #include <assert.h>
33 #include <errno.h>
34 #include <stdlib.h>
35
36 #include "vm/types.h"
37
38 #include "arch.h"
39 #include "md-abi.h"
40
41 #include "vm/jit/abi-asm.h"
42
43 #include "mm/codememory.h"
44 #include "mm/dumpmemory.hpp"
45 #include "mm/gc.hpp"
46 #include "mm/memory.hpp"
47
48 #include "native/jni.hpp"
49 #include "native/llni.h"
50 #include "native/localref.hpp"
51 #include "native/native.hpp"
52
53 #include "native/vm/nativevm.hpp"
54
55 #include "threads/lock.hpp"
56 #include "threads/thread.hpp"
57
58 #include "toolbox/logging.hpp"
59
60 #include "vm/array.hpp"
61
62 #if defined(ENABLE_ASSERTION)
63 #include "vm/assertion.hpp"
64 #endif
65
66 #include "vm/jit/builtin.hpp"
67 #include "vm/classcache.hpp"
68 #include "vm/exceptions.hpp"
69 #include "vm/finalizer.hpp"
70 #include "vm/global.h"
71 #include "vm/globals.hpp"
72 #include "vm/initialize.hpp"
73 #include "vm/options.h"
74 #include "vm/os.hpp"
75 #include "vm/primitive.hpp"
76 #include "vm/properties.hpp"
77 #include "vm/signallocal.hpp"
78 #include "vm/statistics.h"
79 #include "vm/string.hpp"
80 #include "vm/suck.hpp"
81 #include "vm/vm.hpp"
82
83 #include "vm/jit/argument.hpp"
84 #include "vm/jit/asmpart.h"
85 #include "vm/jit/code.hpp"
86
87 #if defined(ENABLE_DISASSEMBLER)
88 # include "vm/jit/disass.h"
89 #endif
90
91 #include "vm/jit/jit.hpp"
92 #include "vm/jit/methodtree.h"
93
94 #if defined(ENABLE_PROFILING)
95 # include "vm/jit/optimizing/profile.h"
96 #endif
97
98 #include "vm/jit/optimizing/recompiler.hpp"
99
100 #if defined(ENABLE_PYTHON)
101 # include "vm/jit/python.h"
102 #endif
103
104 #include "vm/jit/trap.hpp"
105
106 #if defined(ENABLE_JVMTI)
107 # include "native/jvmti/cacaodbg.h"
108 #endif
109
110 #if defined(ENABLE_VMLOG)
111 #include <vmlog_cacao.h>
112 #endif
113
114
115 /**
116  * This is _the_ VM instance.
117  */
118 VM* VM::_vm = NULL;
119
120
121 /* global variables ***********************************************************/
122
123 s4 vms = 0;                             /* number of VMs created              */
124
125 static classinfo *mainclass = NULL;
126
127 #if defined(ENABLE_INTRP)
128 u1 *intrp_main_stack = NULL;
129 #endif
130
131
132 /* define heap sizes **********************************************************/
133
134 #define HEAP_MAXSIZE      128 * 1024 * 1024 /* default 128MB                  */
135 #define HEAP_STARTSIZE      2 * 1024 * 1024 /* default 2MB                    */
136 #define STACK_SIZE               128 * 1024 /* default 64kB                   */
137
138
139 /* define command line options ************************************************/
140
141 enum {
142         OPT_FOO,
143
144         /* Java options */
145
146         OPT_JAR,
147
148         OPT_D32,
149         OPT_D64,
150
151         OPT_CLASSPATH,
152         OPT_D,
153
154         OPT_VERBOSE,
155
156         OPT_VERSION,
157         OPT_SHOWVERSION,
158         OPT_FULLVERSION,
159
160         OPT_HELP,
161         OPT_X,
162         OPT_XX,
163
164         OPT_EA,
165         OPT_DA,
166         OPT_EA_NOARG,
167         OPT_DA_NOARG,
168     
169
170         OPT_ESA,
171         OPT_DSA,
172
173         /* Java non-standard options */
174
175         OPT_JIT,
176         OPT_INTRP,
177
178         OPT_BOOTCLASSPATH,
179         OPT_BOOTCLASSPATH_A,
180         OPT_BOOTCLASSPATH_P,
181
182         OPT_BOOTCLASSPATH_C,
183
184 #if defined(ENABLE_PROFILING)
185         OPT_PROF,
186         OPT_PROF_OPTION,
187 #endif
188
189         OPT_MS,
190         OPT_MX,
191
192         OPT_XCHECK_JNI,
193
194         /* CACAO options */
195
196         OPT_VERBOSE1,
197
198 #if defined(ENABLE_STATISTICS)
199         OPT_TIME,
200         OPT_STAT,
201 #endif
202
203         OPT_LOG,
204         OPT_CHECK,
205         OPT_LOAD,
206         OPT_SHOW,
207         OPT_DEBUGCOLOR,
208
209 #if !defined(NDEBUG)
210         OPT_ALL,
211         OPT_METHOD,
212         OPT_SIGNATURE,
213 #endif
214
215 #if defined(ENABLE_VERIFIER)
216         OPT_NOVERIFY,
217         OPT_XVERIFY_ALL,
218         OPT_XVERIFY_NONE,
219 #if defined(TYPECHECK_VERBOSE)
220         OPT_VERBOSETC,
221 #endif
222 #endif /* defined(ENABLE_VERIFIER) */
223
224         /* optimization options */
225
226 #if defined(ENABLE_LOOP)
227         OPT_OLOOP,
228 #endif
229         
230 #if defined(ENABLE_IFCONV)
231         OPT_IFCONV,
232 #endif
233
234 #if defined(ENABLE_LSRA) || defined(ENABLE_SSA)
235         OPT_LSRA,
236 #endif
237
238 #if defined(ENABLE_INTRP)
239         /* interpreter options */
240
241         OPT_NO_DYNAMIC,
242         OPT_NO_REPLICATION,
243         OPT_NO_QUICKSUPER,
244         OPT_STATIC_SUPERS,
245         OPT_TRACE,
246 #endif
247
248         OPT_SS,
249
250 #ifdef ENABLE_JVMTI
251         OPT_DEBUG,
252         OPT_XRUNJDWP,
253         OPT_NOAGENT,
254         OPT_AGENTLIB,
255         OPT_AGENTPATH,
256 #endif
257
258 #if defined(ENABLE_DEBUG_FILTER)
259         OPT_FILTER_VERBOSECALL_INCLUDE,
260         OPT_FILTER_VERBOSECALL_EXCLUDE,
261         OPT_FILTER_SHOW_METHOD,
262 #endif
263
264         DUMMY
265 };
266
267
268 opt_struct opts[] = {
269         { "foo",               false, OPT_FOO },
270
271         /* Java options */
272
273         { "jar",               false, OPT_JAR },
274
275         { "d32",               false, OPT_D32 },
276         { "d64",               false, OPT_D64 },
277         { "client",            false, OPT_IGNORE },
278         { "server",            false, OPT_IGNORE },
279         { "jvm",               false, OPT_IGNORE },
280         { "hotspot",           false, OPT_IGNORE },
281
282         { "classpath",         true,  OPT_CLASSPATH },
283         { "cp",                true,  OPT_CLASSPATH },
284         { "D",                 true,  OPT_D },
285         { "version",           false, OPT_VERSION },
286         { "showversion",       false, OPT_SHOWVERSION },
287         { "fullversion",       false, OPT_FULLVERSION },
288         { "help",              false, OPT_HELP },
289         { "?",                 false, OPT_HELP },
290         { "X",                 false, OPT_X },
291         { "XX:",               true,  OPT_XX },
292
293         { "ea:",               true,  OPT_EA },
294         { "da:",               true,  OPT_DA },
295         { "ea",                false, OPT_EA_NOARG },
296         { "da",                false, OPT_DA_NOARG },
297
298         { "enableassertions:",  true,  OPT_EA },
299         { "disableassertions:", true,  OPT_DA },
300         { "enableassertions",   false, OPT_EA_NOARG },
301         { "disableassertions",  false, OPT_DA_NOARG },
302
303         { "esa",                     false, OPT_ESA },
304         { "enablesystemassertions",  false, OPT_ESA },
305         { "dsa",                     false, OPT_DSA },
306         { "disablesystemassertions", false, OPT_DSA },
307
308         { "noasyncgc",         false, OPT_IGNORE },
309 #if defined(ENABLE_VERIFIER)
310         { "noverify",          false, OPT_NOVERIFY },
311         { "Xverify:all",       false, OPT_XVERIFY_ALL },
312         { "Xverify:none",      false, OPT_XVERIFY_NONE },
313 #endif
314         { "v",                 false, OPT_VERBOSE1 },
315         { "verbose:",          true,  OPT_VERBOSE },
316
317 #if defined(ENABLE_VERIFIER) && defined(TYPECHECK_VERBOSE)
318         { "verbosetc",         false, OPT_VERBOSETC },
319 #endif
320 #if defined(ENABLE_STATISTICS)
321         { "time",              false, OPT_TIME },
322         { "stat",              false, OPT_STAT },
323 #endif
324         { "log",               true,  OPT_LOG },
325         { "c",                 true,  OPT_CHECK },
326         { "l",                 false, OPT_LOAD },
327
328 #if !defined(NDEBUG)
329         { "all",               false, OPT_ALL },
330         { "sig",               true,  OPT_SIGNATURE },
331 #endif
332
333 #if defined(ENABLE_LOOP)
334         { "oloop",             false, OPT_OLOOP },
335 #endif
336 #if defined(ENABLE_IFCONV)
337         { "ifconv",            false, OPT_IFCONV },
338 #endif
339 #if defined(ENABLE_LSRA)
340         { "lsra",              false, OPT_LSRA },
341 #endif
342 #if  defined(ENABLE_SSA)
343         { "lsra",              true, OPT_LSRA },
344 #endif
345
346 #if defined(ENABLE_INTRP)
347         /* interpreter options */
348
349         { "trace",             false, OPT_TRACE },
350         { "static-supers",     true,  OPT_STATIC_SUPERS },
351         { "no-dynamic",        false, OPT_NO_DYNAMIC },
352         { "no-replication",    false, OPT_NO_REPLICATION },
353         { "no-quicksuper",     false, OPT_NO_QUICKSUPER },
354 #endif
355
356         /* JVMTI Agent Command Line Options */
357 #ifdef ENABLE_JVMTI
358         { "agentlib:",         true,  OPT_AGENTLIB },
359         { "agentpath:",        true,  OPT_AGENTPATH },
360 #endif
361
362         /* Java non-standard options */
363
364         { "Xjit",              false, OPT_JIT },
365         { "Xint",              false, OPT_INTRP },
366         { "Xbootclasspath:",   true,  OPT_BOOTCLASSPATH },
367         { "Xbootclasspath/a:", true,  OPT_BOOTCLASSPATH_A },
368         { "Xbootclasspath/p:", true,  OPT_BOOTCLASSPATH_P },
369         { "Xbootclasspath/c:", true,  OPT_BOOTCLASSPATH_C },
370
371 #ifdef ENABLE_JVMTI
372         { "Xdebug",            false, OPT_DEBUG },
373         { "Xnoagent",          false, OPT_NOAGENT },
374         { "Xrunjdwp",          true,  OPT_XRUNJDWP },
375 #endif 
376
377         { "Xms",               true,  OPT_MS },
378         { "ms",                true,  OPT_MS },
379         { "Xmx",               true,  OPT_MX },
380         { "mx",                true,  OPT_MX },
381         { "Xss",               true,  OPT_SS },
382         { "ss",                true,  OPT_SS },
383
384         { "Xcheck:jni",        false, OPT_XCHECK_JNI },
385
386 #if defined(ENABLE_PROFILING)
387         { "Xprof:",            true,  OPT_PROF_OPTION },
388         { "Xprof",             false, OPT_PROF },
389 #endif
390
391         /* keep these at the end of the list */
392
393 #if !defined(NDEBUG)
394         { "m",                 true,  OPT_METHOD },
395 #endif
396
397         { "s",                 true,  OPT_SHOW },
398         { "debug-color",      false,  OPT_DEBUGCOLOR },
399
400 #if defined(ENABLE_DEBUG_FILTER)
401         { "XXfi",              true,  OPT_FILTER_VERBOSECALL_INCLUDE },
402         { "XXfx",              true,  OPT_FILTER_VERBOSECALL_EXCLUDE },
403         { "XXfm",              true,  OPT_FILTER_SHOW_METHOD },
404 #endif
405
406         { NULL,                false, 0 }
407 };
408
409
410 /* usage ***********************************************************************
411
412    Prints the correct usage syntax to stdout.
413
414 *******************************************************************************/
415
416 void usage(void)
417 {
418         puts("Usage: cacao [-options] classname [arguments]");
419         puts("               (to run a class file)");
420         puts("   or  cacao [-options] -jar jarfile [arguments]");
421         puts("               (to run a standalone jar file)\n");
422
423         puts("where options include:");
424         puts("    -d32                     use 32-bit data model if available");
425         puts("    -d64                     use 64-bit data model if available");
426         puts("    -client                  compatibility (currently ignored)");
427         puts("    -server                  compatibility (currently ignored)");
428         puts("    -jvm                     compatibility (currently ignored)");
429         puts("    -hotspot                 compatibility (currently ignored)\n");
430
431         puts("    -cp <path>               specify a path to look for classes");
432         puts("    -classpath <path>        specify a path to look for classes");
433         puts("    -D<name>=<value>         add an entry to the property list");
434         puts("    -verbose[:class|gc|jni]  enable specific verbose output");
435         puts("    -version                 print product version and exit");
436         puts("    -fullversion             print jpackage-compatible product version and exit");
437         puts("    -showversion             print product version and continue");
438         puts("    -help, -?                print this help message");
439         puts("    -X                       print help on non-standard Java options");
440         puts("    -XX                      print help on debugging options");
441     puts("    -ea[:<packagename>...|:<classname>]");
442     puts("    -enableassertions[:<packagename>...|:<classname>]");
443         puts("                             enable assertions with specified granularity");
444         puts("    -da[:<packagename>...|:<classname>]");
445         puts("    -disableassertions[:<packagename>...|:<classname>]");
446         puts("                             disable assertions with specified granularity");
447         puts("    -esa | -enablesystemassertions");
448         puts("                             enable system assertions");
449         puts("    -dsa | -disablesystemassertions");
450         puts("                             disable system assertions");
451
452 #ifdef ENABLE_JVMTI
453         puts("    -agentlib:<agent-lib-name>=<options>  library to load containg JVMTI agent");
454         puts ("                                         for jdwp help use: -agentlib:jdwp=help");
455         puts("    -agentpath:<path-to-agent>=<options>  path to library containg JVMTI agent");
456 #endif
457
458         /* exit with error code */
459
460         exit(1);
461 }   
462
463
464 static void Xusage(void)
465 {
466 #if defined(ENABLE_JIT)
467         puts("    -Xjit                    JIT mode execution (default)");
468 #endif
469 #if defined(ENABLE_INTRP)
470         puts("    -Xint                    interpreter mode execution");
471 #endif
472         puts("    -Xbootclasspath:<zip/jar files and directories separated by :>");
473     puts("                             value is set as bootstrap class path");
474         puts("    -Xbootclasspath/a:<zip/jar files and directories separated by :>");
475         puts("                             value is appended to the bootstrap class path");
476         puts("    -Xbootclasspath/p:<zip/jar files and directories separated by :>");
477         puts("                             value is prepended to the bootstrap class path");
478         puts("    -Xbootclasspath/c:<zip/jar files and directories separated by :>");
479         puts("                             value is used as Java core library, but the");
480         puts("                             hardcoded VM interface classes are prepended");
481         printf("    -Xms<size>               set the initial size of the heap (default: %dMB)\n", HEAP_STARTSIZE / 1024 / 1024);
482         printf("    -Xmx<size>               set the maximum size of the heap (default: %dMB)\n", HEAP_MAXSIZE / 1024 / 1024);
483         printf("    -Xss<size>               set the thread stack size (default: %dkB)\n", STACK_SIZE / 1024);
484
485 #if defined(ENABLE_PROFILING)
486         puts("    -Xprof[:bb]              collect and print profiling data");
487 #endif
488
489 #if defined(ENABLE_JVMTI)
490     /* -Xdebug option depend on gnu classpath JDWP options. options: 
491          transport=dt_socket,address=<hostname:port>,server=(y|n),suspend(y|n) */
492         puts("    -Xdebug                  enable remote debugging\n");
493         puts("    -Xrunjdwp transport=[dt_socket|...],address=<hostname:port>,server=[y|n],suspend=[y|n]\n");
494         puts("                             enable remote debugging\n");
495 #endif 
496
497         /* exit with error code */
498
499         exit(1);
500 }   
501
502
503 #if 0
504 static void XXusage(void)
505 {
506         puts("    -v                       write state-information");
507 #if !defined(NDEBUG)
508         puts("    -verbose:jit             enable specific verbose output");
509         puts("    -debug-color             colored output for ANSI terms");
510 #endif
511 #ifdef TYPECHECK_VERBOSE
512         puts("    -verbosetc               write debug messages while typechecking");
513 #endif
514 #if defined(ENABLE_VERIFIER)
515         puts("    -noverify                don't verify classfiles");
516 #endif
517 #if defined(ENABLE_STATISTICS)
518         puts("    -time                    measure the runtime");
519         puts("    -stat                    detailed compiler statistics");
520 #endif
521         puts("    -log logfile             specify a name for the logfile");
522         puts("    -c(heck)b(ounds)         don't check array bounds");
523         puts("            s(ync)           don't check for synchronization");
524 #if defined(ENABLE_LOOP)
525         puts("    -oloop                   optimize array accesses in loops");
526 #endif
527         puts("    -l                       don't start the class after loading");
528 #if !defined(NDEBUG)
529         puts("    -all                     compile all methods, no execution");
530         puts("    -m                       compile only a specific method");
531         puts("    -sig                     specify signature for a specific method");
532 #endif
533
534         puts("    -s...                    show...");
535         puts("      (c)onstants            the constant pool");
536         puts("      (m)ethods              class fields and methods");
537         puts("      (u)tf                  the utf - hash");
538         puts("      (i)ntermediate         intermediate representation");
539 #if defined(ENABLE_DISASSEMBLER)
540         puts("      (a)ssembler            disassembled listing");
541         puts("      n(o)ps                 show NOPs in disassembler output");
542 #endif
543         puts("      (d)atasegment          data segment listing");
544
545 #if defined(ENABLE_IFCONV)
546         puts("    -ifconv                  use if-conversion");
547 #endif
548 #if defined(ENABLE_LSRA)
549         puts("    -lsra                    use linear scan register allocation");
550 #endif
551 #if defined(ENABLE_SSA)
552         puts("    -lsra:...                use linear scan register allocation (with SSA)");
553         puts("       (d)ead code elimination");
554         puts("       (c)opy propagation");
555 #endif
556 #if defined(ENABLE_DEBUG_FILTER)
557         puts("    -XXfi <regex>            begin of dynamic scope for verbosecall filter");
558         puts("    -XXfx <regex>            end of dynamic scope for verbosecall filter");
559         puts("    -XXfm <regex>            filter for show options");
560 #endif
561         /* exit with error code */
562
563         exit(1);
564 }
565 #endif
566
567
568 /* version *********************************************************************
569
570    Only prints cacao version information.
571
572 *******************************************************************************/
573
574 static void version(bool opt_exit)
575 {
576         puts("java version \""JAVA_VERSION"\"");
577         puts("CACAO version "VERSION"\n");
578
579         puts("Copyright (C) 1996-2005, 2006, 2007, 2008");
580         puts("CACAOVM - Verein zur Foerderung der freien virtuellen Maschine CACAO");
581         puts("This is free software; see the source for copying conditions.  There is NO");
582         puts("warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.");
583
584         /* exit normally, if requested */
585
586         if (opt_exit)
587                 exit(0);
588 }
589
590
591 /* fullversion *****************************************************************
592
593    Prints a Sun compatible version information (required e.g. by
594    jpackage, www.jpackage.org).
595
596 *******************************************************************************/
597
598 static void fullversion(void)
599 {
600         puts("java full version \"cacao-"JAVA_VERSION"\"");
601
602         /* exit normally */
603
604         exit(0);
605 }
606
607
608 /* forward declarations *******************************************************/
609
610 static char *vm_get_mainclass_from_jar(char *mainstring);
611 #if !defined(NDEBUG)
612 static void  vm_compile_all(void);
613 static void  vm_compile_method(char* mainname);
614 #endif
615
616
617 /**
618  * Implementation for JNI_CreateJavaVM.  This function creates a VM
619  * object.
620  *
621  * @param p_vm
622  * @param p_env
623  * @param vm_args
624  *
625  * @return true on success, false otherwise.
626  */
627 bool VM::create(JavaVM** p_vm, void** p_env, void* vm_args)
628 {
629         JavaVMInitArgs* _vm_args;
630
631         // Get the arguments for the new JVM.
632         _vm_args = (JavaVMInitArgs *) vm_args;
633
634         // Instantiate a new VM.
635         try {
636                 _vm = new VM(_vm_args);
637         }
638         catch (std::exception e) {
639                 // FIXME How can we delete the resources allocated?
640 //              /* release allocated memory */
641 //              FREE(env, _Jv_JNIEnv);
642 //              FREE(vm, _Jv_JavaVM);
643
644                 _vm = NULL;
645
646                 return false;
647         }
648
649         // Return the values.
650
651         *p_vm  = _vm->get_javavm();
652         *p_env = _vm->get_jnienv();
653
654         return true;
655 }
656
657
658 /**
659  * C wrapper for VM::create.
660  */
661 extern "C" {
662         bool VM_create(JavaVM** p_vm, void** p_env, void* vm_args)
663         {
664                 return VM::create(p_vm, p_env, vm_args);
665         }
666 }
667
668
669 /**
670  * VM constructor.
671  */
672 VM::VM(JavaVMInitArgs* vm_args)
673 {
674         // Very first thing to do: we are initializing.
675         _initializing = true;
676
677         // Make ourself globally visible.
678         // XXX Is this a good idea?
679         _vm = this;
680
681         /* create and fill a JavaVM structure */
682
683         _javavm = new JavaVM();
684
685 #if defined(ENABLE_JNI)
686         _javavm->functions = &_Jv_JNIInvokeInterface;
687 #endif
688
689         /* get the VM and Env tables (must be set before vm_create) */
690         /* XXX JVMTI Agents needs a JavaVM  */
691
692         _jnienv = new JNIEnv();
693
694 #if defined(ENABLE_JNI)
695         _jnienv->functions = &_Jv_JNINativeInterface;
696 #endif
697
698         /* actually create the JVM */
699
700         int   len;
701         char *p;
702         char *boot_class_path;
703         char *class_path;
704         int   opt;
705         bool  opt_version;
706         bool  opt_exit;
707
708 #if defined(ENABLE_JVMTI)
709         lt_dlhandle  handle;
710         char *libname, *agentarg;
711         bool jdwp,agentbypath;
712         jdwp = agentbypath = false;
713 #endif
714
715 #if defined(ENABLE_JNI)
716         /* Check the JNI version requested. */
717
718         if (!jni_version_check(vm_args->version))
719                 throw std::exception();
720 #endif
721
722         /* We only support 1 JVM instance. */
723
724         if (vms > 0)
725                 throw std::exception();
726
727         /* Install the exit handler. */
728
729         if (atexit(vm_exit_handler))
730                 os::abort("atexit failed: %s\n", strerror(errno));
731
732         /* Set some options. */
733
734         opt_version       = false;
735         opt_exit          = false;
736
737         opt_heapmaxsize   = HEAP_MAXSIZE;
738         opt_heapstartsize = HEAP_STARTSIZE;
739         opt_stacksize     = STACK_SIZE;
740
741         // First of all, parse the -XX options.
742
743 #if defined(ENABLE_VMLOG)
744         vmlog_cacao_init_options();
745 #endif
746
747         options_xx(vm_args);
748
749         // After -XX options are parsed, print the build-time
750         // configuration, if requested.
751         if (opt_PrintConfig)
752                 print_build_time_config();
753
754 #if defined(ENABLE_VMLOG)
755         vmlog_cacao_init();
756 #endif
757
758         /* We need to check if the actual size of a java.lang.Class object
759            is smaller or equal than the assumption made in
760            src/vm/class.hpp. */
761
762 #warning FIXME We need to check the size of java.lang.Class!!!
763 //      if (sizeof(java_lang_Class) > sizeof(dummy_java_lang_Class))
764 //              vm_abort("vm_create: java_lang_Class structure is bigger than classinfo.object (%d > %d)", sizeof(java_lang_Class), sizeof(dummy_java_lang_Class));
765
766         /* set the VM starttime */
767
768         _starttime = builtin_currenttimemillis();
769
770 #if defined(ENABLE_JVMTI)
771         /* initialize JVMTI related  **********************************************/
772         jvmti = false;
773 #endif
774
775         /* iterate over all passed options */
776
777         while ((opt = options_get(opts, vm_args)) != OPT_DONE) {
778                 switch (opt) {
779                 case OPT_FOO:
780                         opt_foo = true;
781                         break;
782
783                 case OPT_IGNORE:
784                         break;
785                         
786                 case OPT_JAR:
787                         opt_jar = true;
788                         break;
789
790                 case OPT_D32:
791 #if SIZEOF_VOID_P == 8
792                         puts("Running a 32-bit JVM is not supported on this platform.");
793                         exit(1);
794 #endif
795                         break;
796
797                 case OPT_D64:
798 #if SIZEOF_VOID_P == 4
799                         puts("Running a 64-bit JVM is not supported on this platform.");
800                         exit(1);
801 #endif
802                         break;
803
804                 case OPT_CLASSPATH:
805                         /* Forget old classpath and set the argument as new
806                            classpath. */
807
808                         // FIXME Make class_path const char*.
809                         class_path = (char*) _properties.get("java.class.path");
810
811                         p = MNEW(char, strlen(opt_arg) + strlen("0"));
812
813                         strcpy(p, opt_arg);
814
815 #if defined(ENABLE_JAVASE)
816                         _properties.put("java.class.path", p);
817 #endif
818
819                         MFREE(class_path, char, strlen(class_path));
820                         break;
821
822                 case OPT_D:
823                         for (unsigned int i = 0; i < strlen(opt_arg); i++) {
824                                 if (opt_arg[i] == '=') {
825                                         opt_arg[i] = '\0';
826                                         _properties.put(opt_arg, opt_arg + i + 1);
827                                         goto opt_d_done;
828                                 }
829                         }
830
831                         /* if no '=' is given, just create an empty property */
832
833                         _properties.put(opt_arg, "");
834
835                 opt_d_done:
836                         break;
837
838                 case OPT_BOOTCLASSPATH:
839                         /* Forget default bootclasspath and set the argument as
840                            new boot classpath. */
841
842                         // FIXME Make boot_class_path const char*.
843                         boot_class_path = (char*) _properties.get("sun.boot.class.path");
844
845                         p = MNEW(char, strlen(opt_arg) + strlen("0"));
846
847                         strcpy(p, opt_arg);
848
849                         _properties.put("sun.boot.class.path", p);
850                         _properties.put("java.boot.class.path", p);
851
852                         MFREE(boot_class_path, char, strlen(boot_class_path));
853                         break;
854
855                 case OPT_BOOTCLASSPATH_A:
856                         /* Append to bootclasspath. */
857
858                         // FIXME Make boot_class_path const char*.
859                         boot_class_path = (char*) _properties.get("sun.boot.class.path");
860
861                         len = strlen(boot_class_path);
862
863                         // XXX (char*) quick hack
864                         p = (char*) MREALLOC(boot_class_path,
865                                                  char,
866                                                  len + strlen("0"),
867                                                  len + strlen(":") +
868                                                  strlen(opt_arg) + strlen("0"));
869
870                         strcat(p, ":");
871                         strcat(p, opt_arg);
872
873                         _properties.put("sun.boot.class.path", p);
874                         _properties.put("java.boot.class.path", p);
875                         break;
876
877                 case OPT_BOOTCLASSPATH_P:
878                         /* Prepend to bootclasspath. */
879
880                         // FIXME Make boot_class_path const char*.
881                         boot_class_path = (char*) _properties.get("sun.boot.class.path");
882
883                         len = strlen(boot_class_path);
884
885                         p = MNEW(char, strlen(opt_arg) + strlen(":") + len + strlen("0"));
886
887                         strcpy(p, opt_arg);
888                         strcat(p, ":");
889                         strcat(p, boot_class_path);
890
891                         _properties.put("sun.boot.class.path", p);
892                         _properties.put("java.boot.class.path", p);
893
894                         MFREE(boot_class_path, char, len);
895                         break;
896
897                 case OPT_BOOTCLASSPATH_C:
898                         /* Use as Java core library, but prepend VM interface
899                            classes. */
900
901                         // FIXME Make boot_class_path const char*.
902                         boot_class_path = (char*) _properties.get("sun.boot.class.path");
903
904                         len =
905                                 strlen(CACAO_VM_ZIP) +
906                                 strlen(":") +
907                                 strlen(opt_arg) +
908                                 strlen("0");
909
910                         p = MNEW(char, len);
911
912                         strcpy(p, CACAO_VM_ZIP);
913                         strcat(p, ":");
914                         strcat(p, opt_arg);
915
916                         _properties.put("sun.boot.class.path", p);
917                         _properties.put("java.boot.class.path", p);
918
919                         MFREE(boot_class_path, char, strlen(boot_class_path));
920                         break;
921
922 #if defined(ENABLE_JVMTI)
923                 case OPT_DEBUG:
924                         /* this option exists only for compatibility reasons */
925                         break;
926
927                 case OPT_NOAGENT:
928                         /* I don't know yet what Xnoagent should do. This is only for 
929                            compatiblity with eclipse - motse */
930                         break;
931
932                 case OPT_XRUNJDWP:
933                         agentbypath = true;
934                         jvmti       = true;
935                         jdwp        = true;
936
937                         len =
938                                 strlen(CACAO_LIBDIR) +
939                                 strlen("/libjdwp.so=") +
940                                 strlen(opt_arg) +
941                                 strlen("0");
942
943                         agentarg = MNEW(char, len);
944
945                         strcpy(agentarg, CACAO_LIBDIR);
946                         strcat(agentarg, "/libjdwp.so=");
947                         strcat(agentarg, &opt_arg[1]);
948                         break;
949
950                 case OPT_AGENTPATH:
951                         agentbypath = true;
952
953                 case OPT_AGENTLIB:
954                         jvmti = true;
955                         agentarg = opt_arg;
956                         break;
957 #endif
958                         
959                 case OPT_MX:
960                 case OPT_MS:
961                 case OPT_SS:
962                         {
963                                 char c;
964                                 int j;
965
966                                 c = opt_arg[strlen(opt_arg) - 1];
967
968                                 if ((c == 'k') || (c == 'K')) {
969                                         j = atoi(opt_arg) * 1024;
970
971                                 } else if ((c == 'm') || (c == 'M')) {
972                                         j = atoi(opt_arg) * 1024 * 1024;
973
974                                 } else
975                                         j = atoi(opt_arg);
976
977                                 if (opt == OPT_MX)
978                                         opt_heapmaxsize = j;
979                                 else if (opt == OPT_MS)
980                                         opt_heapstartsize = j;
981                                 else
982                                         opt_stacksize = j;
983                         }
984                         break;
985
986                 case OPT_XCHECK_JNI:
987                         // HotSpot compatibility option.
988                         break;
989
990                 case OPT_VERBOSE1:
991                         opt_verbose = true;
992                         break;
993
994                 case OPT_VERBOSE:
995                         if (strcmp("class", opt_arg) == 0) {
996                                 opt_verboseclass = true;
997                         }
998                         else if (strcmp("gc", opt_arg) == 0) {
999                                 opt_verbosegc = true;
1000                         }
1001                         else if (strcmp("jni", opt_arg) == 0) {
1002                                 opt_verbosejni = true;
1003                         }
1004 #if !defined(NDEBUG)
1005                         else if (strcmp("jit", opt_arg) == 0) {
1006                                 opt_verbose = true;
1007                                 loadverbose = true;
1008                                 initverbose = true;
1009                                 compileverbose = true;
1010                         }
1011 #endif
1012                         else {
1013                                 printf("Unknown -verbose option: %s\n", opt_arg);
1014                                 usage();
1015                         }
1016                         break;
1017
1018                 case OPT_DEBUGCOLOR:
1019                         opt_debugcolor = true;
1020                         break;
1021
1022 #if defined(ENABLE_VERIFIER) && defined(TYPECHECK_VERBOSE)
1023                 case OPT_VERBOSETC:
1024                         opt_typecheckverbose = true;
1025                         break;
1026 #endif
1027                                 
1028                 case OPT_VERSION:
1029                         opt_version = true;
1030                         opt_exit    = true;
1031                         break;
1032
1033                 case OPT_FULLVERSION:
1034                         fullversion();
1035                         break;
1036
1037                 case OPT_SHOWVERSION:
1038                         opt_version = true;
1039                         break;
1040
1041 #if defined(ENABLE_VERIFIER)
1042                 case OPT_XVERIFY_ALL:
1043                         opt_verify = true;
1044                         break;
1045
1046                 case OPT_NOVERIFY:
1047                 case OPT_XVERIFY_NONE:
1048                         opt_verify = false;
1049                         break;
1050 #endif
1051
1052 #if defined(ENABLE_STATISTICS)
1053                 case OPT_TIME:
1054                         opt_getcompilingtime = true;
1055                         opt_getloadingtime = true;
1056                         break;
1057                                         
1058                 case OPT_STAT:
1059                         opt_stat = true;
1060                         break;
1061 #endif
1062                                         
1063                 case OPT_LOG:
1064                         log_init(opt_arg);
1065                         break;
1066                         
1067                 case OPT_CHECK:
1068                         for (unsigned int i = 0; i < strlen(opt_arg); i++) {
1069                                 switch (opt_arg[i]) {
1070                                 case 'b':
1071                                         checkbounds = false;
1072                                         break;
1073                                 case 's':
1074                                         checksync = false;
1075                                         break;
1076                                 default:
1077                                         usage();
1078                                 }
1079                         }
1080                         break;
1081                         
1082                 case OPT_LOAD:
1083                         opt_run = false;
1084                         makeinitializations = false;
1085                         break;
1086
1087 #if !defined(NDEBUG)
1088                 case OPT_ALL:
1089                         compileall = true;
1090                         opt_run = false;
1091                         makeinitializations = false;
1092                         break;
1093
1094                 case OPT_METHOD:
1095                         opt_run = false;
1096                         opt_method = opt_arg;
1097                         makeinitializations = false;
1098                         break;
1099
1100                 case OPT_SIGNATURE:
1101                         opt_signature = opt_arg;
1102                         break;
1103 #endif
1104
1105                 case OPT_SHOW:       /* Display options */
1106                         for (unsigned int i = 0; i < strlen(opt_arg); i++) {            
1107                                 switch (opt_arg[i]) {
1108                                 case 'c':
1109                                         showconstantpool = true;
1110                                         break;
1111
1112                                 case 'u':
1113                                         showutf = true;
1114                                         break;
1115
1116                                 case 'm':
1117                                         showmethods = true;
1118                                         break;
1119
1120                                 case 'i':
1121                                         opt_showintermediate = true;
1122                                         compileverbose = true;
1123                                         break;
1124
1125 #if defined(ENABLE_DISASSEMBLER)
1126                                 case 'a':
1127                                         opt_showdisassemble = true;
1128                                         compileverbose = true;
1129                                         break;
1130 #endif
1131
1132                                 case 'd':
1133                                         opt_showddatasegment = true;
1134                                         break;
1135
1136                                 default:
1137                                         usage();
1138                                 }
1139                         }
1140                         break;
1141                         
1142 #if defined(ENABLE_LOOP)
1143                 case OPT_OLOOP:
1144                         opt_loops = true;
1145                         break;
1146 #endif
1147
1148 #if defined(ENABLE_IFCONV)
1149                 case OPT_IFCONV:
1150                         opt_ifconv = true;
1151                         break;
1152 #endif
1153
1154 #if defined(ENABLE_LSRA)
1155                 case OPT_LSRA:
1156                         opt_lsra = true;
1157                         break;
1158 #endif
1159 #if  defined(ENABLE_SSA)
1160                 case OPT_LSRA:
1161                         opt_lsra = true;
1162                         for (unsigned int i = 0; i < strlen(opt_arg); i++) {            
1163                                 switch (opt_arg[i]) {
1164                                 case 'c':
1165                                         opt_ssa_cp = true;
1166                                         break;
1167
1168                                 case 'd':
1169                                         opt_ssa_dce = true;
1170                                         break;
1171
1172                                 case ':':
1173                                         break;
1174
1175                                 default:
1176                                         usage();
1177                                 }
1178                         }
1179                         break;
1180 #endif
1181
1182                 case OPT_HELP:
1183                         usage();
1184                         break;
1185
1186                 case OPT_X:
1187                         Xusage();
1188                         break;
1189
1190                 case OPT_XX:
1191                         /* Already parsed. */
1192                         break;
1193
1194                 case OPT_EA:
1195 #if defined(ENABLE_ASSERTION)
1196                         assertion_ea_da(opt_arg, true);
1197 #endif
1198                         break;
1199
1200                 case OPT_DA:
1201 #if defined(ENABLE_ASSERTION)
1202                         assertion_ea_da(opt_arg, false);
1203 #endif
1204                         break;
1205
1206                 case OPT_EA_NOARG:
1207 #if defined(ENABLE_ASSERTION)
1208                         assertion_user_enabled = true;
1209 #endif
1210                         break;
1211
1212                 case OPT_DA_NOARG:
1213 #if defined(ENABLE_ASSERTION)
1214                         assertion_user_enabled = false;
1215 #endif
1216                         break;
1217
1218                 case OPT_ESA:
1219 #if defined(ENABLE_ASSERTION)
1220                         assertion_system_enabled = true;
1221 #endif
1222                         break;
1223
1224                 case OPT_DSA:
1225 #if defined(ENABLE_ASSERTION)
1226                         assertion_system_enabled = false;
1227 #endif
1228                         break;
1229
1230 #if defined(ENABLE_PROFILING)
1231                 case OPT_PROF_OPTION:
1232                         /* use <= to get the last \0 too */
1233
1234                         for (unsigned int i = 0, j = 0; i <= strlen(opt_arg); i++) {
1235                                 if (opt_arg[i] == ',')
1236                                         opt_arg[i] = '\0';
1237
1238                                 if (opt_arg[i] == '\0') {
1239                                         if (strcmp("bb", opt_arg + j) == 0)
1240                                                 opt_prof_bb = true;
1241
1242                                         else {
1243                                                 printf("Unknown option: -Xprof:%s\n", opt_arg + j);
1244                                                 usage();
1245                                         }
1246
1247                                         /* set k to next char */
1248
1249                                         j = i + 1;
1250                                 }
1251                         }
1252                         /* fall through */
1253
1254                 case OPT_PROF:
1255                         opt_prof = true;
1256                         break;
1257 #endif
1258
1259                 case OPT_JIT:
1260 #if defined(ENABLE_JIT)
1261                         opt_jit = true;
1262 #else
1263                         printf("-Xjit option not enabled.\n");
1264                         exit(1);
1265 #endif
1266                         break;
1267
1268                 case OPT_INTRP:
1269 #if defined(ENABLE_INTRP)
1270                         opt_intrp = true;
1271 #else
1272                         printf("-Xint option not enabled.\n");
1273                         exit(1);
1274 #endif
1275                         break;
1276
1277 #if defined(ENABLE_INTRP)
1278                 case OPT_STATIC_SUPERS:
1279                         opt_static_supers = atoi(opt_arg);
1280                         break;
1281
1282                 case OPT_NO_DYNAMIC:
1283                         opt_no_dynamic = true;
1284                         break;
1285
1286                 case OPT_NO_REPLICATION:
1287                         opt_no_replication = true;
1288                         break;
1289
1290                 case OPT_NO_QUICKSUPER:
1291                         opt_no_quicksuper = true;
1292                         break;
1293
1294                 case OPT_TRACE:
1295                         vm_debug = true;
1296                         break;
1297 #endif
1298
1299 #if defined(ENABLE_DEBUG_FILTER)
1300                 case OPT_FILTER_VERBOSECALL_INCLUDE:
1301                         opt_filter_verbosecall_include = opt_arg;
1302                         break;
1303
1304                 case OPT_FILTER_VERBOSECALL_EXCLUDE:
1305                         opt_filter_verbosecall_exclude = opt_arg;
1306                         break;
1307
1308                 case OPT_FILTER_SHOW_METHOD:
1309                         opt_filter_show_method = opt_arg;
1310                         break;
1311
1312 #endif
1313                 default:
1314                         printf("Unknown option: %s\n",
1315                                    vm_args->options[opt_index].optionString);
1316                         usage();
1317                 }
1318         }
1319
1320         // Print the preliminary run-time VM configuration after options
1321         // are parsed.
1322         if (opt_PrintConfig)
1323                 print_run_time_config();
1324
1325 #if defined(ENABLE_JVMTI)
1326         if (jvmti) {
1327                 jvmti_set_phase(JVMTI_PHASE_ONLOAD);
1328                 jvmti_agentload(agentarg, agentbypath, &handle, &libname);
1329
1330                 if (jdwp)
1331                         MFREE(agentarg, char, strlen(agentarg));
1332
1333                 jvmti_set_phase(JVMTI_PHASE_PRIMORDIAL);
1334         }
1335 #endif
1336
1337         /* initialize the garbage collector */
1338
1339         gc_init(opt_heapmaxsize, opt_heapstartsize);
1340
1341 #if defined(ENABLE_THREADS)
1342         /* AFTER: gc_init */
1343
1344         threads_preinit();
1345         lock_init();
1346 #endif
1347
1348         /* install architecture dependent signal handlers */
1349
1350         if (!signal_init())
1351                 os::abort("vm_create: signal_init failed");
1352
1353 #if defined(ENABLE_INTRP)
1354         /* Allocate main thread stack on the Java heap. */
1355
1356         if (opt_intrp) {
1357                 intrp_main_stack = GCMNEW(u1, opt_stacksize);
1358                 MSET(intrp_main_stack, 0, u1, opt_stacksize);
1359         }
1360 #endif
1361
1362         /* AFTER: threads_preinit */
1363
1364         if (!string_init())
1365                 os::abort("vm_create: string_init failed");
1366
1367         /* AFTER: threads_preinit */
1368
1369         utf8_init();
1370
1371         /* AFTER: thread_preinit */
1372
1373         _suckclasspath.add_from_property("java.endorsed.dirs");
1374
1375         /* Now we have all options handled and we can print the version
1376            information.
1377
1378            AFTER: suck_add_from_property("java.endorsed.dirs"); */
1379
1380         if (opt_version)
1381                 version(opt_exit);
1382
1383         /* AFTER: utf8_init */
1384
1385         // FIXME Make boot_class_path const char*.
1386         boot_class_path = (char*) _properties.get("sun.boot.class.path");
1387         _suckclasspath.add(boot_class_path);
1388
1389         /* initialize the classcache hashtable stuff: lock, hashtable
1390            (must be done _after_ threads_preinit) */
1391
1392         if (!classcache_init())
1393                 os::abort("vm_create: classcache_init failed");
1394
1395         /* Initialize the code memory management. */
1396         /* AFTER: threads_preinit */
1397
1398         codememory_init();
1399
1400         /* initialize the finalizer stuff (must be done _after_
1401            threads_preinit) */
1402
1403         if (!finalizer_init())
1404                 os::abort("vm_create: finalizer_init failed");
1405
1406         /* Initialize the JIT compiler. */
1407
1408         jit_init();
1409         code_init();
1410         methodtree_init();
1411
1412 #if defined(ENABLE_PYTHON)
1413         pythonpass_init();
1414 #endif
1415
1416         /* AFTER: utf8_init, classcache_init */
1417
1418         loader_preinit();
1419         linker_preinit();
1420
1421         // AFTER: loader_preinit, linker_preinit
1422         Primitive::initialize_table();
1423
1424         loader_init();
1425         linker_init();
1426
1427         // AFTER: loader_init, linker_init
1428         Primitive::post_initialize_table();
1429         method_init();
1430
1431 #if defined(ENABLE_JIT)
1432         trap_init();
1433 #endif
1434
1435         if (!builtin_init())
1436                 os::abort("vm_create: builtin_init failed");
1437
1438         /* Register the native methods implemented in the VM. */
1439         /* BEFORE: threads_init */
1440
1441         nativevm_preinit();
1442
1443 #if defined(ENABLE_JNI)
1444         /* Initialize the JNI subsystem (must be done _before_
1445            threads_init, as threads_init can call JNI methods
1446            (e.g. NewGlobalRef). */
1447
1448         if (!jni_init())
1449                 os::abort("vm_create: jni_init failed");
1450 #endif
1451
1452 #if defined(ENABLE_JNI) || defined(ENABLE_HANDLES)
1453         /* Initialize the local reference table for the main thread. */
1454         /* BEFORE: threads_init */
1455
1456         if (!localref_table_init())
1457                 os::abort("vm_create: localref_table_init failed");
1458 #endif
1459
1460         /* Iinitialize some important system classes. */
1461         /* BEFORE: threads_init */
1462
1463         initialize_init();
1464
1465 #if defined(ENABLE_THREADS)
1466         threads_init();
1467 #endif
1468
1469         /* Initialize the native VM subsystem. */
1470         /* AFTER: threads_init (at least for SUN's classes) */
1471
1472         if (!nativevm_init())
1473                 os::abort("vm_create: nativevm_init failed");
1474
1475 #if defined(ENABLE_PROFILING)
1476         /* initialize profiling */
1477
1478         if (!profile_init())
1479                 os::abort("vm_create: profile_init failed");
1480 #endif
1481
1482 #if defined(ENABLE_THREADS)
1483         /* start the signal handler thread */
1484
1485 #if defined(__LINUX__)
1486         /* XXX Remove for exact-GC. */
1487         if (threads_pthreads_implementation_nptl)
1488 #endif
1489                 if (!signal_start_thread())
1490                         os::abort("vm_create: signal_start_thread failed");
1491
1492         /* finally, start the finalizer thread */
1493
1494         if (!finalizer_start_thread())
1495                 os::abort("vm_create: finalizer_start_thread failed");
1496
1497 # if !defined(NDEBUG)
1498         /* start the memory profiling thread */
1499
1500         if (opt_ProfileMemoryUsage || opt_ProfileGCMemoryUsage)
1501                 if (!memory_start_thread())
1502                         os::abort("vm_create: memory_start_thread failed");
1503 # endif
1504
1505         // Start the recompilation thread (must be done before the
1506         // profiling thread).
1507         // FIXME Only works for one recompiler.
1508         _recompiler.start();
1509
1510 # if defined(ENABLE_PROFILING)
1511         /* start the profile sampling thread */
1512
1513 /*      if (opt_prof) */
1514 /*              if (!profile_start_thread()) */
1515 /*                      os::abort("vm_create: profile_start_thread failed"); */
1516 # endif
1517 #endif
1518
1519 #if defined(ENABLE_JVMTI)
1520 # if defined(ENABLE_GC_CACAO)
1521         /* XXX this will not work with the new indirection cells for classloaders!!! */
1522         assert(0);
1523 # endif
1524         if (jvmti) {
1525                 /* add agent library to native library hashtable */
1526                 native_hashtable_library_add(utf_new_char(libname), class_java_lang_Object->classloader, handle);
1527         }
1528 #endif
1529
1530         /* Increment the number of VMs. */
1531
1532         vms++;
1533
1534         // Initialization is done, VM is created.
1535         _created      = true;
1536         _initializing = false;
1537         
1538         // Print the run-time VM configuration after all stuff is set and
1539         // the VM is initialized.
1540         if (opt_PrintConfig)
1541                 print_run_time_config();
1542 }
1543
1544
1545 /**
1546  * Print build-time (default) VM configuration.
1547  */
1548 void VM::print_build_time_config(void)
1549 {
1550         puts("CACAO "VERSION" configure/build options:");
1551         puts("");
1552         puts("  ./configure: "VERSION_CONFIGURE_ARGS"");
1553 #if defined(__VERSION__)
1554         puts("  CC         : "VERSION_CC" ("__VERSION__")");
1555         puts("  CXX        : "VERSION_CXX" ("__VERSION__")");
1556 #else
1557         puts("  CC         : "VERSION_CC"");
1558         puts("  CXX        : "VERSION_CXX"");
1559 #endif
1560         puts("  CFLAGS     : "VERSION_CFLAGS"");
1561         puts("  CXXFLAGS   : "VERSION_CXXFLAGS"");
1562
1563         puts("");
1564
1565         puts("Build-time (default) variables:\n");
1566         printf("  maximum heap size              : %d\n", HEAP_MAXSIZE);
1567         printf("  initial heap size              : %d\n", HEAP_STARTSIZE);
1568         printf("  stack size                     : %d\n", STACK_SIZE);
1569
1570 #if defined(ENABLE_JRE_LAYOUT)
1571         // When we're building with JRE-layout, the default paths are the
1572         // same as the runtime paths.
1573 #else
1574 # if defined(WITH_JAVA_RUNTIME_LIBRARY_GNU_CLASSPATH)
1575         puts("  gnu.classpath.boot.library.path: "JAVA_RUNTIME_LIBRARY_LIBDIR);
1576         puts("  java.boot.class.path           : "CACAO_VM_ZIP":"JAVA_RUNTIME_LIBRARY_CLASSES"");
1577 # elif defined(WITH_JAVA_RUNTIME_LIBRARY_OPENJDK)
1578         puts("  sun.boot.library.path          : "JAVA_RUNTIME_LIBRARY_LIBDIR);
1579         puts("  java.boot.class.path           : "JAVA_RUNTIME_LIBRARY_CLASSES);
1580 # endif
1581 #endif
1582
1583         puts("");
1584 }
1585
1586
1587 /**
1588  * Print run-time VM configuration.
1589  */
1590 void VM::print_run_time_config()
1591 {
1592         puts("Run-time variables:\n");
1593         printf("  maximum heap size              : %d\n", opt_heapmaxsize);
1594         printf("  initial heap size              : %d\n", opt_heapstartsize);
1595         printf("  stack size                     : %d\n", opt_stacksize);
1596
1597 #if defined(WITH_JAVA_RUNTIME_LIBRARY_GNU_CLASSPATH)
1598         printf("  gnu.classpath.boot.library.path: %s\n", _properties.get("gnu.classpath.boot.library.path"));
1599 #elif defined(WITH_JAVA_RUNTIME_LIBRARY_OPENJDK)
1600         printf("  sun.boot.library.path          : %s\n", _properties.get("sun.boot.library.path"));
1601 #endif
1602
1603         printf("  java.boot.class.path           : %s\n", _properties.get("java.boot.class.path"));
1604         printf("  java.class.path                : %s\n", _properties.get("java.class.path"));
1605
1606         puts("");
1607 }
1608
1609
1610 /* vm_run **********************************************************************
1611
1612    Runs the main-method of the passed class.
1613
1614 *******************************************************************************/
1615
1616 void vm_run(JavaVM *vm, JavaVMInitArgs *vm_args)
1617 {
1618         char*                      option;
1619         char*                      mainname;
1620         char*                      p;
1621         utf                       *mainutf;
1622         classinfo                 *mainclass;
1623         java_handle_t             *e;
1624         methodinfo                *m;
1625         java_handle_objectarray_t *oa; 
1626         s4                         oalength;
1627         utf                       *u;
1628         java_handle_t             *s;
1629         int                        status;
1630
1631         // Prevent compiler warnings.
1632         oa = NULL;
1633
1634 #if !defined(NDEBUG)
1635         if (compileall) {
1636                 vm_compile_all();
1637                 return;
1638         }
1639 #endif
1640
1641         /* Get the main class plus it's arguments. */
1642
1643         mainname = NULL;
1644
1645         if (opt_index < vm_args->nOptions) {
1646                 /* Get main-class argument. */
1647
1648                 mainname = vm_args->options[opt_index].optionString;
1649
1650                 /* If the main class argument is a jar file, put it into the
1651                    classpath. */
1652
1653                 if (opt_jar == true) {
1654                         p = MNEW(char, strlen(mainname) + strlen("0"));
1655
1656                         strcpy(p, mainname);
1657
1658 #if defined(ENABLE_JAVASE)
1659                         VM::get_current()->get_properties().put("java.class.path", p);
1660 #endif
1661                 }
1662                 else {
1663                         /* Replace dots with slashes in the class name. */
1664
1665                         for (unsigned int i = 0; i < strlen(mainname); i++)
1666                                 if (mainname[i] == '.')
1667                                         mainname[i] = '/';
1668                 }
1669
1670                 /* Build argument array.  Move index to first argument. */
1671
1672                 opt_index++;
1673
1674                 oalength = vm_args->nOptions - opt_index;
1675
1676                 oa = builtin_anewarray(oalength, class_java_lang_String);
1677
1678                 for (int i = 0; i < oalength; i++) {
1679                         option = vm_args->options[opt_index + i].optionString;
1680
1681                         u = utf_new_char(option);
1682                         s = javastring_new(u);
1683
1684                         array_objectarray_element_set(oa, i, s);
1685                 }
1686         }
1687
1688         /* Do we have a main-class argument? */
1689
1690         if (mainname == NULL)
1691                 usage();
1692
1693 #if !defined(NDEBUG)
1694         if (opt_method != NULL) {
1695                 vm_compile_method(mainname);
1696                 return;
1697         }
1698 #endif
1699
1700         /* set return value to OK */
1701
1702         status = 0;
1703
1704         if (opt_jar == true) {
1705                 /* open jar file with java.util.jar.JarFile */
1706
1707                 mainname = vm_get_mainclass_from_jar(mainname);
1708
1709                 if (mainname == NULL)
1710                         vm_exit(1);
1711         }
1712
1713         /* load the main class */
1714
1715         mainutf = utf_new_char(mainname);
1716
1717 #if defined(ENABLE_JAVAME_CLDC1_1)
1718         mainclass = load_class_bootstrap(mainutf);
1719 #else
1720         mainclass = load_class_from_sysloader(mainutf);
1721 #endif
1722
1723         /* error loading class */
1724
1725         e = exceptions_get_and_clear_exception();
1726
1727         if ((e != NULL) || (mainclass == NULL)) {
1728                 exceptions_throw_noclassdeffounderror_cause(e);
1729                 exceptions_print_stacktrace(); 
1730                 vm_exit(1);
1731         }
1732
1733         if (!link_class(mainclass)) {
1734                 exceptions_print_stacktrace();
1735                 vm_exit(1);
1736         }
1737                         
1738         /* find the `main' method of the main class */
1739
1740         m = class_resolveclassmethod(mainclass,
1741                                                                  utf_new_char("main"), 
1742                                                                  utf_new_char("([Ljava/lang/String;)V"),
1743                                                                  class_java_lang_Object,
1744                                                                  false);
1745
1746         if (exceptions_get_exception()) {
1747                 exceptions_print_stacktrace();
1748                 vm_exit(1);
1749         }
1750
1751         /* there is no main method or it isn't static */
1752
1753         if ((m == NULL) || !(m->flags & ACC_STATIC)) {
1754                 exceptions_clear_exception();
1755                 exceptions_throw_nosuchmethoderror(mainclass,
1756                                                                                    utf_new_char("main"), 
1757                                                                                    utf_new_char("([Ljava/lang/String;)V"));
1758
1759                 exceptions_print_stacktrace();
1760                 vm_exit(1);
1761         }
1762
1763 #ifdef TYPEINFO_DEBUG_TEST
1764         /* test the typeinfo system */
1765         typeinfo_test();
1766 #endif
1767
1768 #if defined(ENABLE_JVMTI)
1769         jvmti_set_phase(JVMTI_PHASE_LIVE);
1770 #endif
1771
1772         /* set ThreadMXBean variables */
1773
1774 //      _Jv_jvm->java_lang_management_ThreadMXBean_ThreadCount++;
1775 //      _Jv_jvm->java_lang_management_ThreadMXBean_TotalStartedThreadCount++;
1776
1777 //      if (_Jv_jvm->java_lang_management_ThreadMXBean_ThreadCount >
1778 //              _Jv_jvm->java_lang_management_ThreadMXBean_PeakThreadCount)
1779 //              _Jv_jvm->java_lang_management_ThreadMXBean_PeakThreadCount =
1780 //                      _Jv_jvm->java_lang_management_ThreadMXBean_ThreadCount;
1781 #warning Move to C++
1782
1783         /* start the main thread */
1784
1785         (void) vm_call_method(m, NULL, oa);
1786
1787         /* exception occurred? */
1788
1789         if (exceptions_get_exception()) {
1790                 exceptions_print_stacktrace();
1791                 status = 1;
1792         }
1793
1794 #if defined(ENABLE_THREADS)
1795     /* Detach the main thread so that it appears to have ended when
1796            the application's main method exits. */
1797
1798         if (!thread_detach_current_thread())
1799                 os::abort("vm_run: Could not detach main thread.");
1800 #endif
1801
1802         /* Destroy the JavaVM. */
1803
1804         (void) vm_destroy(vm);
1805
1806         /* And exit. */
1807
1808         vm_exit(status);
1809 }
1810
1811
1812 /* vm_destroy ******************************************************************
1813
1814    Unloads a Java VM and reclaims its resources.
1815
1816 *******************************************************************************/
1817
1818 int vm_destroy(JavaVM *vm)
1819 {
1820 #if defined(ENABLE_THREADS)
1821         /* Create a a trivial new Java waiter thread called
1822            "DestroyJavaVM". */
1823
1824         JavaVMAttachArgs args;
1825
1826         args.name  = (char*) "DestroyJavaVM";
1827         args.group = NULL;
1828
1829         if (!thread_attach_current_thread(&args, false))
1830                 return 1;
1831
1832         /* Wait until we are the last non-daemon thread. */
1833
1834         threads_join_all_threads();
1835 #endif
1836
1837         /* VM is gone. */
1838
1839 //      _created = false;
1840 #warning Move to C++
1841
1842         /* Everything is ok. */
1843
1844         return 0;
1845 }
1846
1847
1848 /* vm_exit *********************************************************************
1849
1850    Calls java.lang.System.exit(I)V to exit the JavaVM correctly.
1851
1852 *******************************************************************************/
1853
1854 void vm_exit(s4 status)
1855 {
1856         methodinfo *m;
1857
1858         /* signal that we are exiting */
1859
1860 //      _exiting = true;
1861 #warning Move to C++
1862
1863         assert(class_java_lang_System);
1864         assert(class_java_lang_System->state & CLASS_LOADED);
1865
1866 #if defined(ENABLE_JVMTI)
1867         if (jvmti || (dbgcom!=NULL)) {
1868                 jvmti_set_phase(JVMTI_PHASE_DEAD);
1869                 if (jvmti) jvmti_agentunload();
1870         }
1871 #endif
1872
1873         if (!link_class(class_java_lang_System)) {
1874                 exceptions_print_stacktrace();
1875                 exit(1);
1876         }
1877
1878         /* call java.lang.System.exit(I)V */
1879
1880         m = class_resolveclassmethod(class_java_lang_System,
1881                                                                  utf_new_char("exit"),
1882                                                                  utf_int__void,
1883                                                                  class_java_lang_Object,
1884                                                                  true);
1885         
1886         if (m == NULL) {
1887                 exceptions_print_stacktrace();
1888                 exit(1);
1889         }
1890
1891         /* call the exit function with passed exit status */
1892
1893         (void) vm_call_method(m, NULL, status);
1894
1895         /* If we had an exception, just ignore the exception and exit with
1896            the proper code. */
1897
1898         vm_shutdown(status);
1899 }
1900
1901
1902 /* vm_shutdown *****************************************************************
1903
1904    Terminates the system immediately without freeing memory explicitly
1905    (to be used only for abnormal termination).
1906         
1907 *******************************************************************************/
1908
1909 void vm_shutdown(s4 status)
1910 {
1911         if (opt_verbose 
1912 #if defined(ENABLE_STATISTICS)
1913                 || opt_getcompilingtime || opt_stat
1914 #endif
1915            ) 
1916         {
1917                 log_text("CACAO terminated by shutdown");
1918                 dolog("Exit status: %d\n", (s4) status);
1919
1920         }
1921
1922 #if defined(ENABLE_JVMTI)
1923         /* terminate cacaodbgserver */
1924         if (dbgcom!=NULL) {
1925                 mutex_lock(&dbgcomlock);
1926                 dbgcom->running=1;
1927                 mutex_unlock(&dbgcomlock);
1928                 jvmti_cacaodbgserver_quit();
1929         }       
1930 #endif
1931
1932         exit(status);
1933 }
1934
1935
1936 /* vm_exit_handler *************************************************************
1937
1938    The exit_handler function is called upon program termination.
1939
1940    ATTENTION: Don't free system resources here! Some threads may still
1941    be running as this is called from VMRuntime.exit(). The OS does the
1942    cleanup for us.
1943
1944 *******************************************************************************/
1945
1946 void vm_exit_handler(void)
1947 {
1948 #if !defined(NDEBUG)
1949         if (showmethods)
1950                 class_showmethods(mainclass);
1951
1952         if (showconstantpool)
1953                 class_showconstantpool(mainclass);
1954
1955         if (showutf)
1956                 utf_show();
1957
1958 # if defined(ENABLE_PROFILING)
1959         if (opt_prof)
1960                 profile_printstats();
1961 # endif
1962 #endif /* !defined(NDEBUG) */
1963
1964 #if defined(ENABLE_RT_TIMING)
1965         rt_timing_print_time_stats(stderr);
1966 #endif
1967
1968 #if defined(ENABLE_CYCLES_STATS)
1969         builtin_print_cycles_stats(stderr);
1970         stacktrace_print_cycles_stats(stderr);
1971 #endif
1972
1973         if (opt_verbose 
1974 #if defined(ENABLE_STATISTICS)
1975                 || opt_getcompilingtime || opt_stat
1976 #endif
1977            ) 
1978         {
1979                 log_text("CACAO terminated");
1980
1981 #if defined(ENABLE_STATISTICS)
1982                 if (opt_stat) {
1983                         print_stats();
1984 #ifdef TYPECHECK_STATISTICS
1985                         typecheck_print_statistics(get_logfile());
1986 #endif
1987                 }
1988
1989                 if (opt_getcompilingtime)
1990                         print_times();
1991 #endif /* defined(ENABLE_STATISTICS) */
1992         }
1993         /* vm_print_profile(stderr);*/
1994 }
1995
1996
1997 /* vm_abort_disassemble ********************************************************
1998
1999    Prints an error message, disassemble the given code range (if
2000    enabled) and aborts the VM.
2001
2002    IN:
2003        pc.......PC to disassemble
2004            count....number of instructions to disassemble
2005
2006 *******************************************************************************/
2007
2008 void vm_abort_disassemble(void *pc, int count, const char *text, ...)
2009 {
2010         va_list ap;
2011 #if defined(ENABLE_DISASSEMBLER)
2012         int     i;
2013 #endif
2014
2015         /* Print debug message. */
2016
2017         log_start();
2018
2019         va_start(ap, text);
2020         log_vprint(text, ap);
2021         va_end(ap);
2022
2023         log_finish();
2024
2025         /* Print the PC. */
2026
2027 #if SIZEOF_VOID_P == 8
2028         log_println("PC=0x%016lx", pc);
2029 #else
2030         log_println("PC=0x%08x", pc);
2031 #endif
2032
2033 #if defined(ENABLE_DISASSEMBLER)
2034         log_println("machine instructions at PC:");
2035
2036         /* Disassemble the given number of instructions. */
2037
2038         for (i = 0; i < count; i++)
2039                 // FIXME disassinstr should use void*.
2040                 pc = disassinstr((u1*) pc);
2041 #endif
2042
2043         os::abort("Aborting...");
2044 }
2045
2046
2047 /* vm_get_mainclass_from_jar ***************************************************
2048
2049    Gets the name of the main class from a JAR's manifest file.
2050
2051 *******************************************************************************/
2052
2053 static char *vm_get_mainclass_from_jar(char *mainname)
2054 {
2055         classinfo     *c;
2056         java_handle_t *o;
2057         methodinfo    *m;
2058         java_handle_t *s;
2059
2060         c = load_class_from_sysloader(utf_new_char("java/util/jar/JarFile"));
2061
2062         if (c == NULL) {
2063                 exceptions_print_stacktrace();
2064                 return NULL;
2065         }
2066
2067         /* create JarFile object */
2068
2069         o = builtin_new(c);
2070
2071         if (o == NULL) {
2072                 exceptions_print_stacktrace();
2073                 return NULL;
2074         }
2075
2076         m = class_resolveclassmethod(c,
2077                                                                  utf_init, 
2078                                                                  utf_java_lang_String__void,
2079                                                                  class_java_lang_Object,
2080                                                                  true);
2081
2082         if (m == NULL) {
2083                 exceptions_print_stacktrace();
2084                 return NULL;
2085         }
2086
2087         s = javastring_new_from_ascii(mainname);
2088
2089         (void) vm_call_method(m, o, s);
2090
2091         if (exceptions_get_exception()) {
2092                 exceptions_print_stacktrace();
2093                 return NULL;
2094         }
2095
2096         /* get manifest object */
2097
2098         m = class_resolveclassmethod(c,
2099                                                                  utf_new_char("getManifest"), 
2100                                                                  utf_new_char("()Ljava/util/jar/Manifest;"),
2101                                                                  class_java_lang_Object,
2102                                                                  true);
2103
2104         if (m == NULL) {
2105                 exceptions_print_stacktrace();
2106                 return NULL;
2107         }
2108
2109         o = vm_call_method(m, o);
2110
2111         if (o == NULL) {
2112                 fprintf(stderr, "Could not get manifest from %s (invalid or corrupt jarfile?)\n", mainname);
2113                 return NULL;
2114         }
2115
2116
2117         /* get Main Attributes */
2118
2119         LLNI_class_get(o, c);
2120
2121         m = class_resolveclassmethod(c,
2122                                                                  utf_new_char("getMainAttributes"), 
2123                                                                  utf_new_char("()Ljava/util/jar/Attributes;"),
2124                                                                  class_java_lang_Object,
2125                                                                  true);
2126
2127         if (m == NULL) {
2128                 exceptions_print_stacktrace();
2129                 return NULL;
2130         }
2131
2132         o = vm_call_method(m, o);
2133
2134         if (o == NULL) {
2135                 fprintf(stderr, "Could not get main attributes from %s (invalid or corrupt jarfile?)\n", mainname);
2136                 return NULL;
2137         }
2138
2139
2140         /* get property Main-Class */
2141
2142         LLNI_class_get(o, c);
2143
2144         m = class_resolveclassmethod(c,
2145                                                                  utf_new_char("getValue"), 
2146                                                                  utf_new_char("(Ljava/lang/String;)Ljava/lang/String;"),
2147                                                                  class_java_lang_Object,
2148                                                                  true);
2149
2150         if (m == NULL) {
2151                 exceptions_print_stacktrace();
2152                 return NULL;
2153         }
2154
2155         s = javastring_new_from_ascii("Main-Class");
2156
2157         o = vm_call_method(m, o, s);
2158
2159         if (o == NULL) {
2160                 fprintf(stderr, "Failed to load Main-Class manifest attribute from\n");
2161                 fprintf(stderr, "%s\n", mainname);
2162                 return NULL;
2163         }
2164
2165         return javastring_tochar(o);
2166 }
2167
2168
2169 /* vm_compile_all **************************************************************
2170
2171    Compile all methods found in the bootclasspath.
2172
2173 *******************************************************************************/
2174
2175 #if !defined(NDEBUG)
2176 static void vm_compile_all(void)
2177 {
2178         classinfo              *c;
2179         methodinfo             *m;
2180         u4                      slot;
2181         classcache_name_entry  *nmen;
2182         classcache_class_entry *clsen;
2183         s4                      i;
2184
2185         /* create all classes found in the bootclasspath */
2186         /* XXX currently only works with zip/jar's */
2187
2188         loader_load_all_classes();
2189
2190         /* link all classes */
2191
2192         for (slot = 0; slot < hashtable_classcache.size; slot++) {
2193                 nmen = (classcache_name_entry *) hashtable_classcache.ptr[slot];
2194
2195                 for (; nmen; nmen = nmen->hashlink) {
2196                         /* iterate over all class entries */
2197
2198                         for (clsen = nmen->classes; clsen; clsen = clsen->next) {
2199                                 c = clsen->classobj;
2200
2201                                 if (c == NULL)
2202                                         continue;
2203
2204                                 if (!(c->state & CLASS_LINKED)) {
2205                                         if (!link_class(c)) {
2206                                                 fprintf(stderr, "Error linking: ");
2207                                                 utf_fprint_printable_ascii_classname(stderr, c->name);
2208                                                 fprintf(stderr, "\n");
2209
2210                                                 /* print out exception and cause */
2211
2212                                                 exceptions_print_current_exception();
2213
2214                                                 /* goto next class */
2215
2216                                                 continue;
2217                                         }
2218                                 }
2219
2220                                 /* compile all class methods */
2221
2222                                 for (i = 0; i < c->methodscount; i++) {
2223                                         m = &(c->methods[i]);
2224
2225                                         if (m->jcode != NULL) {
2226                                                 if (!jit_compile(m)) {
2227                                                         fprintf(stderr, "Error compiling: ");
2228                                                         utf_fprint_printable_ascii_classname(stderr, c->name);
2229                                                         fprintf(stderr, ".");
2230                                                         utf_fprint_printable_ascii(stderr, m->name);
2231                                                         utf_fprint_printable_ascii(stderr, m->descriptor);
2232                                                         fprintf(stderr, "\n");
2233
2234                                                         /* print out exception and cause */
2235
2236                                                         exceptions_print_current_exception();
2237                                                 }
2238                                         }
2239                                 }
2240                         }
2241                 }
2242         }
2243 }
2244 #endif /* !defined(NDEBUG) */
2245
2246
2247 /* vm_compile_method ***********************************************************
2248
2249    Compile a specific method.
2250
2251 *******************************************************************************/
2252
2253 #if !defined(NDEBUG)
2254 static void vm_compile_method(char* mainname)
2255 {
2256         methodinfo *m;
2257
2258         /* create, load and link the main class */
2259
2260         mainclass = load_class_bootstrap(utf_new_char(mainname));
2261
2262         if (mainclass == NULL)
2263                 exceptions_print_stacktrace();
2264
2265         if (!link_class(mainclass))
2266                 exceptions_print_stacktrace();
2267
2268         if (opt_signature != NULL) {
2269                 m = class_resolveclassmethod(mainclass,
2270                                                                          utf_new_char(opt_method),
2271                                                                          utf_new_char(opt_signature),
2272                                                                          mainclass,
2273                                                                          false);
2274         }
2275         else {
2276                 m = class_resolveclassmethod(mainclass,
2277                                                                          utf_new_char(opt_method),
2278                                                                          NULL,
2279                                                                          mainclass,
2280                                                                          false);
2281         }
2282
2283         if (m == NULL)
2284                 os::abort("vm_compile_method: java.lang.NoSuchMethodException: %s.%s",
2285                                  opt_method, opt_signature ? opt_signature : "");
2286                 
2287         jit_compile(m);
2288 }
2289 #endif /* !defined(NDEBUG) */
2290
2291
2292 /* vm_call_array ***************************************************************
2293
2294    Calls a Java method with a variable number of arguments, passed via
2295    an argument array.
2296
2297    ATTENTION: This function has to be used outside the nativeworld.
2298
2299 *******************************************************************************/
2300
2301 #define VM_CALL_ARRAY(name, type)                                 \
2302 static type vm_call##name##_array(methodinfo *m, uint64_t *array) \
2303 {                                                                 \
2304         methoddesc *md;                                               \
2305         void       *pv;                                               \
2306         type        value;                                            \
2307                                                                   \
2308         assert(m->code != NULL);                                      \
2309                                                                   \
2310         md = m->parseddesc;                                           \
2311         pv = m->code->entrypoint;                                     \
2312                                                                   \
2313         STATISTICS(count_calls_native_to_java++);                     \
2314                                                                   \
2315         value = asm_vm_call_method##name(pv, array, md->memuse);      \
2316                                                                   \
2317         return value;                                                 \
2318 }
2319
2320 static java_handle_t *vm_call_array(methodinfo *m, uint64_t *array)
2321 {
2322         methoddesc    *md;
2323         void          *pv;
2324         java_object_t *o;
2325
2326         assert(m->code != NULL);
2327
2328         md = m->parseddesc;
2329         pv = m->code->entrypoint;
2330
2331         STATISTICS(count_calls_native_to_java++);
2332
2333         o = asm_vm_call_method(pv, array, md->memuse);
2334
2335         if (md->returntype.type == TYPE_VOID)
2336                 o = NULL;
2337
2338         return LLNI_WRAP(o);
2339 }
2340
2341 VM_CALL_ARRAY(_int,    int32_t)
2342 VM_CALL_ARRAY(_long,   int64_t)
2343 VM_CALL_ARRAY(_float,  float)
2344 VM_CALL_ARRAY(_double, double)
2345
2346
2347 /* vm_call_method **************************************************************
2348
2349    Calls a Java method with a variable number of arguments.
2350
2351 *******************************************************************************/
2352
2353 #define VM_CALL_METHOD(name, type)                                  \
2354 type vm_call_method##name(methodinfo *m, java_handle_t *o, ...)     \
2355 {                                                                   \
2356         va_list ap;                                                     \
2357         type    value;                                                  \
2358                                                                     \
2359         va_start(ap, o);                                                \
2360         value = vm_call_method##name##_valist(m, o, ap);                \
2361         va_end(ap);                                                     \
2362                                                                     \
2363         return value;                                                   \
2364 }
2365
2366 VM_CALL_METHOD(,        java_handle_t *)
2367 VM_CALL_METHOD(_int,    int32_t)
2368 VM_CALL_METHOD(_long,   int64_t)
2369 VM_CALL_METHOD(_float,  float)
2370 VM_CALL_METHOD(_double, double)
2371
2372
2373 /* vm_call_method_valist *******************************************************
2374
2375    Calls a Java method with a variable number of arguments, passed via
2376    a va_list.
2377
2378 *******************************************************************************/
2379
2380 #define VM_CALL_METHOD_VALIST(name, type)                               \
2381 type vm_call_method##name##_valist(methodinfo *m, java_handle_t *o,     \
2382                                                                    va_list ap)                          \
2383 {                                                                       \
2384         uint64_t *array;                                                    \
2385         type      value;                                                    \
2386                                                                         \
2387         if (m->code == NULL)                                                \
2388                 if (!jit_compile(m))                                            \
2389                         return 0;                                                   \
2390                                                                         \
2391         THREAD_NATIVEWORLD_EXIT;                                            \
2392                                                                                                                                                 \
2393         DumpMemoryArea dma;                                                                                                     \
2394                                                                         \
2395         array = argument_vmarray_from_valist(m, o, ap);                     \
2396         value = vm_call##name##_array(m, array);                            \
2397                                                                         \
2398         THREAD_NATIVEWORLD_ENTER;                                           \
2399                                                                         \
2400         return value;                                                       \
2401 }
2402
2403 VM_CALL_METHOD_VALIST(,        java_handle_t *)
2404 VM_CALL_METHOD_VALIST(_int,    int32_t)
2405 VM_CALL_METHOD_VALIST(_long,   int64_t)
2406 VM_CALL_METHOD_VALIST(_float,  float)
2407 VM_CALL_METHOD_VALIST(_double, double)
2408
2409
2410 /* vm_call_method_jvalue *******************************************************
2411
2412    Calls a Java method with a variable number of arguments, passed via
2413    a jvalue array.
2414
2415 *******************************************************************************/
2416
2417 #define VM_CALL_METHOD_JVALUE(name, type)                               \
2418 type vm_call_method##name##_jvalue(methodinfo *m, java_handle_t *o,     \
2419                                                            const jvalue *args)                  \
2420 {                                                                       \
2421         uint64_t *array;                                                    \
2422         type      value;                                                    \
2423                                                                         \
2424         if (m->code == NULL)                                                \
2425                 if (!jit_compile(m))                                            \
2426                         return 0;                                                   \
2427                                                                         \
2428         THREAD_NATIVEWORLD_EXIT;                                            \
2429                                                                                                                                                 \
2430         DumpMemoryArea dma;                                                                                                     \
2431                                                                         \
2432         array = argument_vmarray_from_jvalue(m, o, args);                   \
2433         value = vm_call##name##_array(m, array);                            \
2434                                                                         \
2435         THREAD_NATIVEWORLD_ENTER;                                           \
2436                                                                         \
2437         return value;                                                       \
2438 }
2439
2440 VM_CALL_METHOD_JVALUE(,        java_handle_t *)
2441 VM_CALL_METHOD_JVALUE(_int,    int32_t)
2442 VM_CALL_METHOD_JVALUE(_long,   int64_t)
2443 VM_CALL_METHOD_JVALUE(_float,  float)
2444 VM_CALL_METHOD_JVALUE(_double, double)
2445
2446
2447 /* vm_call_method_objectarray **************************************************
2448
2449    Calls a Java method with a variable number if arguments, passed via
2450    an objectarray of boxed values. Returns a boxed value.
2451
2452 *******************************************************************************/
2453
2454 java_handle_t *vm_call_method_objectarray(methodinfo *m, java_handle_t *o,
2455                                                                                   java_handle_objectarray_t *params)
2456 {
2457         uint64_t      *array;
2458         java_handle_t *xptr;
2459         java_handle_t *ro;
2460         imm_union      value;
2461
2462         /* Prevent compiler warnings. */
2463
2464         ro = NULL;
2465
2466         /* compile methods which are not yet compiled */
2467
2468         if (m->code == NULL)
2469                 if (!jit_compile(m))
2470                         return NULL;
2471
2472         /* leave the nativeworld */
2473
2474         THREAD_NATIVEWORLD_EXIT;
2475
2476         // Create new dump memory area.
2477         DumpMemoryArea dma;
2478
2479         /* Fill the argument array from a object-array. */
2480
2481         array = argument_vmarray_from_objectarray(m, o, params);
2482
2483         if (array == NULL) {
2484                 /* enter the nativeworld again */
2485
2486                 THREAD_NATIVEWORLD_ENTER;
2487
2488                 exceptions_throw_illegalargumentexception();
2489
2490                 return NULL;
2491         }
2492
2493         switch (m->parseddesc->returntype.primitivetype) {
2494         case PRIMITIVETYPE_VOID:
2495                 value.a = vm_call_array(m, array);
2496                 break;
2497
2498         case PRIMITIVETYPE_BOOLEAN:
2499         case PRIMITIVETYPE_BYTE:
2500         case PRIMITIVETYPE_CHAR:
2501         case PRIMITIVETYPE_SHORT:
2502         case PRIMITIVETYPE_INT:
2503                 value.i = vm_call_int_array(m, array);
2504                 break;
2505
2506         case PRIMITIVETYPE_LONG:
2507                 value.l = vm_call_long_array(m, array);
2508                 break;
2509
2510         case PRIMITIVETYPE_FLOAT:
2511                 value.f = vm_call_float_array(m, array);
2512                 break;
2513
2514         case PRIMITIVETYPE_DOUBLE:
2515                 value.d = vm_call_double_array(m, array);
2516                 break;
2517
2518         case TYPE_ADR:
2519                 ro = vm_call_array(m, array);
2520                 break;
2521
2522         default:
2523                 os::abort("vm_call_method_objectarray: invalid return type %d", m->parseddesc->returntype.primitivetype);
2524         }
2525
2526         /* enter the nativeworld again */
2527
2528         THREAD_NATIVEWORLD_ENTER;
2529
2530         /* box the return value if necesarry */
2531
2532         if (m->parseddesc->returntype.primitivetype != TYPE_ADR)
2533                 ro = Primitive::box(m->parseddesc->returntype.primitivetype, value);
2534
2535         /* check for an exception */
2536
2537         xptr = exceptions_get_exception();
2538
2539         if (xptr != NULL) {
2540                 /* clear exception pointer, we are calling JIT code again */
2541
2542                 exceptions_clear_exception();
2543
2544                 exceptions_throw_invocationtargetexception(xptr);
2545         }
2546
2547         return ro;
2548 }
2549
2550
2551 /* Legacy C interface *********************************************************/
2552
2553 extern "C" {
2554
2555 JavaVM* VM_get_javavm()      { return VM::get_current()->get_javavm(); }
2556 JNIEnv* VM_get_jnienv()      { return VM::get_current()->get_jnienv(); }
2557 bool    VM_is_initializing() { return VM::get_current()->is_initializing(); }
2558 bool    VM_is_created()      { return VM::get_current()->is_created(); }
2559 int64_t VM_get_starttime()   { return VM::get_current()->get_starttime(); }
2560
2561 void vm_abort(const char* text, ...)
2562 {
2563         va_list ap;
2564
2565         va_start(ap, text);
2566         os::abort(text, ap);
2567         va_end(ap);
2568 }
2569
2570 void vm_abort_errnum(int errnum, const char* text, ...)
2571 {
2572         va_list ap;
2573
2574         va_start(ap, text);
2575         os::abort_errnum(errnum, text, ap);
2576         va_end(ap);
2577 }
2578
2579 void vm_abort_errno(const char* text, ...)
2580 {
2581         va_list ap;
2582
2583         va_start(ap, text);
2584         os::abort_errno(text, ap);
2585         va_end(ap);
2586 }
2587
2588 }
2589
2590
2591 /*
2592  * These are local overrides for various environment variables in Emacs.
2593  * Please do not remove this and leave it at the end of the file, where
2594  * Emacs will automagically detect them.
2595  * ---------------------------------------------------------------------
2596  * Local variables:
2597  * mode: c++
2598  * indent-tabs-mode: t
2599  * c-basic-offset: 4
2600  * tab-width: 4
2601  * End:
2602  * vim:noexpandtab:sw=4:ts=4:
2603  */