* gcj/cni.h: CNI now expands to Compiled Native Interface.
[official-gcc.git] / libjava / prims.cc
blob8d9cc6d97d7f2c7070b3b9ceaa4627608dcdafcf
1 // prims.cc - Code for core of runtime environment.
3 /* Copyright (C) 1998, 1999, 2000, 2001, 2002 Free Software Foundation
5 This file is part of libgcj.
7 This software is copyrighted work licensed under the terms of the
8 Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
9 details. */
11 #include <config.h>
12 #include <platform.h>
14 #include <stdlib.h>
15 #include <stdarg.h>
16 #include <stdio.h>
17 #include <string.h>
18 #include <signal.h>
20 #ifdef HAVE_UNISTD_H
21 #include <unistd.h>
22 #endif
24 #include <gcj/cni.h>
25 #include <jvm.h>
26 #include <java-signal.h>
27 #include <java-threads.h>
29 #ifdef ENABLE_JVMPI
30 #include <jvmpi.h>
31 #include <java/lang/ThreadGroup.h>
32 #endif
34 #ifndef DISABLE_GETENV_PROPERTIES
35 #include <ctype.h>
36 #include <java-props.h>
37 #define PROCESS_GCJ_PROPERTIES process_gcj_properties()
38 #else
39 #define PROCESS_GCJ_PROPERTIES
40 #endif // DISABLE_GETENV_PROPERTIES
42 #include <java/lang/Class.h>
43 #include <java/lang/ClassLoader.h>
44 #include <java/lang/Runtime.h>
45 #include <java/lang/String.h>
46 #include <java/lang/Thread.h>
47 #include <java/lang/ThreadGroup.h>
48 #include <java/lang/ArrayIndexOutOfBoundsException.h>
49 #include <java/lang/ArithmeticException.h>
50 #include <java/lang/ClassFormatError.h>
51 #include <java/lang/InternalError.h>
52 #include <java/lang/NegativeArraySizeException.h>
53 #include <java/lang/NullPointerException.h>
54 #include <java/lang/OutOfMemoryError.h>
55 #include <java/lang/System.h>
56 #include <java/lang/VMThrowable.h>
57 #include <java/lang/reflect/Modifier.h>
58 #include <java/io/PrintStream.h>
59 #include <java/lang/UnsatisfiedLinkError.h>
60 #include <java/lang/VirtualMachineError.h>
61 #include <gnu/gcj/runtime/VMClassLoader.h>
62 #include <gnu/gcj/runtime/FinalizerThread.h>
63 #include <gnu/gcj/runtime/FirstThread.h>
65 #ifdef USE_LTDL
66 #include <ltdl.h>
67 #endif
69 // We allocate a single OutOfMemoryError exception which we keep
70 // around for use if we run out of memory.
71 static java::lang::OutOfMemoryError *no_memory;
73 // Largest representable size_t.
74 #define SIZE_T_MAX ((size_t) (~ (size_t) 0))
76 static const char *no_properties[] = { NULL };
78 // Properties set at compile time.
79 const char **_Jv_Compiler_Properties = no_properties;
81 // The JAR file to add to the beginning of java.class.path.
82 const char *_Jv_Jar_Class_Path;
84 #ifndef DISABLE_GETENV_PROPERTIES
85 // Property key/value pairs.
86 property_pair *_Jv_Environment_Properties;
87 #endif
89 // Stash the argv pointer to benefit native libraries that need it.
90 const char **_Jv_argv;
91 int _Jv_argc;
93 // Argument support.
94 int
95 _Jv_GetNbArgs (void)
97 // _Jv_argc is 0 if not explicitly initialized.
98 return _Jv_argc;
101 const char *
102 _Jv_GetSafeArg (int index)
104 if (index >=0 && index < _Jv_GetNbArgs ())
105 return _Jv_argv[index];
106 else
107 return "";
110 void
111 _Jv_SetArgs (int argc, const char **argv)
113 _Jv_argc = argc;
114 _Jv_argv = argv;
117 #ifdef ENABLE_JVMPI
118 // Pointer to JVMPI notification functions.
119 void (*_Jv_JVMPI_Notify_OBJECT_ALLOC) (JVMPI_Event *event);
120 void (*_Jv_JVMPI_Notify_THREAD_START) (JVMPI_Event *event);
121 void (*_Jv_JVMPI_Notify_THREAD_END) (JVMPI_Event *event);
122 #endif
125 #ifdef HANDLE_SEGV
126 SIGNAL_HANDLER (catch_segv)
128 java::lang::NullPointerException *nullp
129 = new java::lang::NullPointerException;
130 MAKE_THROW_FRAME (nullp);
131 throw nullp;
133 #endif
135 #ifdef HANDLE_FPE
136 SIGNAL_HANDLER (catch_fpe)
138 java::lang::ArithmeticException *arithexception
139 = new java::lang::ArithmeticException (JvNewStringLatin1 ("/ by zero"));
140 #ifdef HANDLE_DIVIDE_OVERFLOW
141 HANDLE_DIVIDE_OVERFLOW;
142 #else
143 MAKE_THROW_FRAME (arithexception);
144 #endif
145 throw arithexception;
147 #endif
151 jboolean
152 _Jv_equalUtf8Consts (Utf8Const* a, Utf8Const *b)
154 int len;
155 _Jv_ushort *aptr, *bptr;
156 if (a == b)
157 return true;
158 if (a->hash != b->hash)
159 return false;
160 len = a->length;
161 if (b->length != len)
162 return false;
163 aptr = (_Jv_ushort *)a->data;
164 bptr = (_Jv_ushort *)b->data;
165 len = (len + 1) >> 1;
166 while (--len >= 0)
167 if (*aptr++ != *bptr++)
168 return false;
169 return true;
172 /* True iff A is equal to STR.
173 HASH is STR->hashCode().
176 jboolean
177 _Jv_equal (Utf8Const* a, jstring str, jint hash)
179 if (a->hash != (_Jv_ushort) hash)
180 return false;
181 jint len = str->length();
182 jint i = 0;
183 jchar *sptr = _Jv_GetStringChars (str);
184 unsigned char* ptr = (unsigned char*) a->data;
185 unsigned char* limit = ptr + a->length;
186 for (;; i++, sptr++)
188 int ch = UTF8_GET (ptr, limit);
189 if (i == len)
190 return ch < 0;
191 if (ch != *sptr)
192 return false;
194 return true;
197 /* Like _Jv_equal, but stop after N characters. */
198 jboolean
199 _Jv_equaln (Utf8Const *a, jstring str, jint n)
201 jint len = str->length();
202 jint i = 0;
203 jchar *sptr = _Jv_GetStringChars (str);
204 unsigned char* ptr = (unsigned char*) a->data;
205 unsigned char* limit = ptr + a->length;
206 for (; n-- > 0; i++, sptr++)
208 int ch = UTF8_GET (ptr, limit);
209 if (i == len)
210 return ch < 0;
211 if (ch != *sptr)
212 return false;
214 return true;
217 /* Count the number of Unicode chars encoded in a given Ut8 string. */
219 _Jv_strLengthUtf8(char* str, int len)
221 unsigned char* ptr;
222 unsigned char* limit;
223 int str_length;
225 ptr = (unsigned char*) str;
226 limit = ptr + len;
227 str_length = 0;
228 for (; ptr < limit; str_length++)
230 if (UTF8_GET (ptr, limit) < 0)
231 return (-1);
233 return (str_length);
236 /* Calculate a hash value for a string encoded in Utf8 format.
237 * This returns the same hash value as specified or java.lang.String.hashCode.
239 static jint
240 hashUtf8String (char* str, int len)
242 unsigned char* ptr = (unsigned char*) str;
243 unsigned char* limit = ptr + len;
244 jint hash = 0;
246 for (; ptr < limit;)
248 int ch = UTF8_GET (ptr, limit);
249 /* Updated specification from
250 http://www.javasoft.com/docs/books/jls/clarify.html. */
251 hash = (31 * hash) + ch;
253 return hash;
256 _Jv_Utf8Const *
257 _Jv_makeUtf8Const (char* s, int len)
259 if (len < 0)
260 len = strlen (s);
261 Utf8Const* m = (Utf8Const*) _Jv_AllocBytes (sizeof(Utf8Const) + len + 1);
262 memcpy (m->data, s, len);
263 m->data[len] = 0;
264 m->length = len;
265 m->hash = hashUtf8String (s, len) & 0xFFFF;
266 return (m);
269 _Jv_Utf8Const *
270 _Jv_makeUtf8Const (jstring string)
272 jint hash = string->hashCode ();
273 jint len = _Jv_GetStringUTFLength (string);
275 Utf8Const* m = (Utf8Const*)
276 _Jv_AllocBytes (sizeof(Utf8Const) + len + 1);
278 m->hash = hash;
279 m->length = len;
281 _Jv_GetStringUTFRegion (string, 0, string->length (), m->data);
282 m->data[len] = 0;
284 return m;
289 #ifdef DEBUG
290 void
291 _Jv_Abort (const char *function, const char *file, int line,
292 const char *message)
293 #else
294 void
295 _Jv_Abort (const char *, const char *, int, const char *message)
296 #endif
298 #ifdef DEBUG
299 fprintf (stderr,
300 "libgcj failure: %s\n in function %s, file %s, line %d\n",
301 message, function, file, line);
302 #else
303 fprintf (stderr, "libgcj failure: %s\n", message);
304 #endif
305 abort ();
308 static void
309 fail_on_finalization (jobject)
311 JvFail ("object was finalized");
314 void
315 _Jv_GCWatch (jobject obj)
317 _Jv_RegisterFinalizer (obj, fail_on_finalization);
320 void
321 _Jv_ThrowBadArrayIndex(jint bad_index)
323 throw new java::lang::ArrayIndexOutOfBoundsException
324 (java::lang::String::valueOf (bad_index));
327 void
328 _Jv_ThrowNullPointerException ()
330 throw new java::lang::NullPointerException;
333 // Explicitly throw a no memory exception.
334 // The collector calls this when it encounters an out-of-memory condition.
335 void _Jv_ThrowNoMemory()
337 throw no_memory;
340 #ifdef ENABLE_JVMPI
341 static void
342 jvmpi_notify_alloc(jclass klass, jint size, jobject obj)
344 // Service JVMPI allocation request.
345 if (__builtin_expect (_Jv_JVMPI_Notify_OBJECT_ALLOC != 0, false))
347 JVMPI_Event event;
349 event.event_type = JVMPI_EVENT_OBJECT_ALLOC;
350 event.env_id = NULL;
351 event.u.obj_alloc.arena_id = 0;
352 event.u.obj_alloc.class_id = (jobjectID) klass;
353 event.u.obj_alloc.is_array = 0;
354 event.u.obj_alloc.size = size;
355 event.u.obj_alloc.obj_id = (jobjectID) obj;
357 // FIXME: This doesn't look right for the Boehm GC. A GC may
358 // already be in progress. _Jv_DisableGC () doesn't wait for it.
359 // More importantly, I don't see the need for disabling GC, since we
360 // blatantly have a pointer to obj on our stack, ensuring that the
361 // object can't be collected. Even for a nonconservative collector,
362 // it appears to me that this must be true, since we are about to
363 // return obj. Isn't this whole approach way too intrusive for
364 // a useful profiling interface? - HB
365 _Jv_DisableGC ();
366 (*_Jv_JVMPI_Notify_OBJECT_ALLOC) (&event);
367 _Jv_EnableGC ();
370 #else /* !ENABLE_JVMPI */
371 # define jvmpi_notify_alloc(klass,size,obj) /* do nothing */
372 #endif
374 // Allocate a new object of class KLASS. SIZE is the size of the object
375 // to allocate. You might think this is redundant, but it isn't; some
376 // classes, such as String, aren't of fixed size.
377 // First a version that assumes that we have no finalizer, and that
378 // the class is already initialized.
379 // If we know that JVMPI is disabled, this can be replaced by a direct call
380 // to the allocator for the appropriate GC.
381 jobject
382 _Jv_AllocObjectNoInitNoFinalizer (jclass klass, jint size)
384 jobject obj = (jobject) _Jv_AllocObj (size, klass);
385 jvmpi_notify_alloc (klass, size, obj);
386 return obj;
389 // And now a version that initializes if necessary.
390 jobject
391 _Jv_AllocObjectNoFinalizer (jclass klass, jint size)
393 _Jv_InitClass (klass);
394 jobject obj = (jobject) _Jv_AllocObj (size, klass);
395 jvmpi_notify_alloc (klass, size, obj);
396 return obj;
399 // And now the general version that registers a finalizer if necessary.
400 jobject
401 _Jv_AllocObject (jclass klass, jint size)
403 jobject obj = _Jv_AllocObjectNoFinalizer (klass, size);
405 // We assume that the compiler only generates calls to this routine
406 // if there really is an interesting finalizer.
407 // Unfortunately, we still have to the dynamic test, since there may
408 // be cni calls to this routine.
409 // Note that on IA64 get_finalizer() returns the starting address of the
410 // function, not a function pointer. Thus this still works.
411 if (klass->vtable->get_finalizer ()
412 != java::lang::Object::class$.vtable->get_finalizer ())
413 _Jv_RegisterFinalizer (obj, _Jv_FinalizeObject);
414 return obj;
417 // A version of the above that assumes the object contains no pointers,
418 // and requires no finalization. This can't happen if we need pointers
419 // to locks.
420 #ifdef JV_HASH_SYNCHRONIZATION
421 jobject
422 _Jv_AllocPtrFreeObject (jclass klass, jint size)
424 _Jv_InitClass (klass);
426 jobject obj = (jobject) _Jv_AllocPtrFreeObj (size, klass);
428 #ifdef ENABLE_JVMPI
429 // Service JVMPI request.
431 if (__builtin_expect (_Jv_JVMPI_Notify_OBJECT_ALLOC != 0, false))
433 JVMPI_Event event;
435 event.event_type = JVMPI_EVENT_OBJECT_ALLOC;
436 event.env_id = NULL;
437 event.u.obj_alloc.arena_id = 0;
438 event.u.obj_alloc.class_id = (jobjectID) klass;
439 event.u.obj_alloc.is_array = 0;
440 event.u.obj_alloc.size = size;
441 event.u.obj_alloc.obj_id = (jobjectID) obj;
443 _Jv_DisableGC ();
444 (*_Jv_JVMPI_Notify_OBJECT_ALLOC) (&event);
445 _Jv_EnableGC ();
447 #endif
449 return obj;
451 #endif /* JV_HASH_SYNCHRONIZATION */
454 // Allocate a new array of Java objects. Each object is of type
455 // `elementClass'. `init' is used to initialize each slot in the
456 // array.
457 jobjectArray
458 _Jv_NewObjectArray (jsize count, jclass elementClass, jobject init)
460 if (__builtin_expect (count < 0, false))
461 throw new java::lang::NegativeArraySizeException;
463 JvAssert (! elementClass->isPrimitive ());
465 // Ensure that elements pointer is properly aligned.
466 jobjectArray obj = NULL;
467 size_t size = (size_t) elements (obj);
468 size += count * sizeof (jobject);
470 jclass klass = _Jv_GetArrayClass (elementClass,
471 elementClass->getClassLoaderInternal());
473 obj = (jobjectArray) _Jv_AllocArray (size, klass);
474 // Cast away const.
475 jsize *lp = const_cast<jsize *> (&obj->length);
476 *lp = count;
477 // We know the allocator returns zeroed memory. So don't bother
478 // zeroing it again.
479 if (init)
481 jobject *ptr = elements(obj);
482 while (--count >= 0)
483 *ptr++ = init;
485 return obj;
488 // Allocate a new array of primitives. ELTYPE is the type of the
489 // element, COUNT is the size of the array.
490 jobject
491 _Jv_NewPrimArray (jclass eltype, jint count)
493 int elsize = eltype->size();
494 if (__builtin_expect (count < 0, false))
495 throw new java::lang::NegativeArraySizeException;
497 JvAssert (eltype->isPrimitive ());
498 jobject dummy = NULL;
499 size_t size = (size_t) _Jv_GetArrayElementFromElementType (dummy, eltype);
501 // Check for overflow.
502 if (__builtin_expect ((size_t) count >
503 (SIZE_T_MAX - size) / elsize, false))
504 throw no_memory;
506 jclass klass = _Jv_GetArrayClass (eltype, 0);
508 # ifdef JV_HASH_SYNCHRONIZATION
509 // Since the vtable is always statically allocated,
510 // these are completely pointerfree! Make sure the GC doesn't touch them.
511 __JArray *arr =
512 (__JArray*) _Jv_AllocPtrFreeObj (size + elsize * count, klass);
513 memset((char *)arr + size, 0, elsize * count);
514 # else
515 __JArray *arr = (__JArray*) _Jv_AllocObj (size + elsize * count, klass);
516 // Note that we assume we are given zeroed memory by the allocator.
517 # endif
518 // Cast away const.
519 jsize *lp = const_cast<jsize *> (&arr->length);
520 *lp = count;
522 return arr;
525 jobject
526 _Jv_NewArray (jint type, jint size)
528 switch (type)
530 case 4: return JvNewBooleanArray (size);
531 case 5: return JvNewCharArray (size);
532 case 6: return JvNewFloatArray (size);
533 case 7: return JvNewDoubleArray (size);
534 case 8: return JvNewByteArray (size);
535 case 9: return JvNewShortArray (size);
536 case 10: return JvNewIntArray (size);
537 case 11: return JvNewLongArray (size);
539 throw new java::lang::InternalError
540 (JvNewStringLatin1 ("invalid type code in _Jv_NewArray"));
543 // Allocate a possibly multi-dimensional array but don't check that
544 // any array length is <0.
545 static jobject
546 _Jv_NewMultiArrayUnchecked (jclass type, jint dimensions, jint *sizes)
548 JvAssert (type->isArray());
549 jclass element_type = type->getComponentType();
550 jobject result;
551 if (element_type->isPrimitive())
552 result = _Jv_NewPrimArray (element_type, sizes[0]);
553 else
554 result = _Jv_NewObjectArray (sizes[0], element_type, NULL);
556 if (dimensions > 1)
558 JvAssert (! element_type->isPrimitive());
559 JvAssert (element_type->isArray());
560 jobject *contents = elements ((jobjectArray) result);
561 for (int i = 0; i < sizes[0]; ++i)
562 contents[i] = _Jv_NewMultiArrayUnchecked (element_type, dimensions - 1,
563 sizes + 1);
566 return result;
569 jobject
570 _Jv_NewMultiArray (jclass type, jint dimensions, jint *sizes)
572 for (int i = 0; i < dimensions; ++i)
573 if (sizes[i] < 0)
574 throw new java::lang::NegativeArraySizeException;
576 return _Jv_NewMultiArrayUnchecked (type, dimensions, sizes);
579 jobject
580 _Jv_NewMultiArray (jclass array_type, jint dimensions, ...)
582 va_list args;
583 jint sizes[dimensions];
584 va_start (args, dimensions);
585 for (int i = 0; i < dimensions; ++i)
587 jint size = va_arg (args, jint);
588 if (size < 0)
589 throw new java::lang::NegativeArraySizeException;
590 sizes[i] = size;
592 va_end (args);
594 return _Jv_NewMultiArrayUnchecked (array_type, dimensions, sizes);
599 // Ensure 8-byte alignment, for hash synchronization.
600 #define DECLARE_PRIM_TYPE(NAME) \
601 _Jv_ArrayVTable _Jv_##NAME##VTable; \
602 java::lang::Class _Jv_##NAME##Class __attribute__ ((aligned (8)));
604 DECLARE_PRIM_TYPE(byte)
605 DECLARE_PRIM_TYPE(short)
606 DECLARE_PRIM_TYPE(int)
607 DECLARE_PRIM_TYPE(long)
608 DECLARE_PRIM_TYPE(boolean)
609 DECLARE_PRIM_TYPE(char)
610 DECLARE_PRIM_TYPE(float)
611 DECLARE_PRIM_TYPE(double)
612 DECLARE_PRIM_TYPE(void)
614 void
615 _Jv_InitPrimClass (jclass cl, char *cname, char sig, int len,
616 _Jv_ArrayVTable *array_vtable)
618 using namespace java::lang::reflect;
620 _Jv_InitNewClassFields (cl);
622 // We must set the vtable for the class; the Java constructor
623 // doesn't do this.
624 (*(_Jv_VTable **) cl) = java::lang::Class::class$.vtable;
626 // Initialize the fields we care about. We do this in the same
627 // order they are declared in Class.h.
628 cl->name = _Jv_makeUtf8Const ((char *) cname, -1);
629 cl->accflags = Modifier::PUBLIC | Modifier::FINAL | Modifier::ABSTRACT;
630 cl->method_count = sig;
631 cl->size_in_bytes = len;
632 cl->vtable = JV_PRIMITIVE_VTABLE;
633 cl->state = JV_STATE_DONE;
634 cl->depth = -1;
635 if (sig != 'V')
636 _Jv_NewArrayClass (cl, NULL, (_Jv_VTable *) array_vtable);
639 jclass
640 _Jv_FindClassFromSignature (char *sig, java::lang::ClassLoader *loader)
642 switch (*sig)
644 case 'B':
645 return JvPrimClass (byte);
646 case 'S':
647 return JvPrimClass (short);
648 case 'I':
649 return JvPrimClass (int);
650 case 'J':
651 return JvPrimClass (long);
652 case 'Z':
653 return JvPrimClass (boolean);
654 case 'C':
655 return JvPrimClass (char);
656 case 'F':
657 return JvPrimClass (float);
658 case 'D':
659 return JvPrimClass (double);
660 case 'V':
661 return JvPrimClass (void);
662 case 'L':
664 int i;
665 for (i = 1; sig[i] && sig[i] != ';'; ++i)
667 _Jv_Utf8Const *name = _Jv_makeUtf8Const (&sig[1], i - 1);
668 return _Jv_FindClass (name, loader);
670 case '[':
672 jclass klass = _Jv_FindClassFromSignature (&sig[1], loader);
673 if (! klass)
674 return NULL;
675 return _Jv_GetArrayClass (klass, loader);
679 return NULL; // Placate compiler.
684 JArray<jstring> *
685 JvConvertArgv (int argc, const char **argv)
687 if (argc < 0)
688 argc = 0;
689 jobjectArray ar = JvNewObjectArray(argc, &StringClass, NULL);
690 jobject *ptr = elements(ar);
691 jbyteArray bytes = NULL;
692 for (int i = 0; i < argc; i++)
694 const char *arg = argv[i];
695 int len = strlen (arg);
696 if (bytes == NULL || bytes->length < len)
697 bytes = JvNewByteArray (len);
698 jbyte *bytePtr = elements (bytes);
699 // We assume jbyte == char.
700 memcpy (bytePtr, arg, len);
702 // Now convert using the default encoding.
703 *ptr++ = new java::lang::String (bytes, 0, len);
705 return (JArray<jstring>*) ar;
708 // FIXME: These variables are static so that they will be
709 // automatically scanned by the Boehm collector. This is needed
710 // because with qthreads the collector won't scan the initial stack --
711 // it will only scan the qthreads stacks.
713 // Command line arguments.
714 static JArray<jstring> *arg_vec;
716 // The primary thread.
717 static java::lang::Thread *main_thread;
719 #ifndef DISABLE_GETENV_PROPERTIES
721 static char *
722 next_property_key (char *s, size_t *length)
724 size_t l = 0;
726 JvAssert (s);
728 // Skip over whitespace
729 while (isspace (*s))
730 s++;
732 // If we've reached the end, return NULL. Also return NULL if for
733 // some reason we've come across a malformed property string.
734 if (*s == 0
735 || *s == ':'
736 || *s == '=')
737 return NULL;
739 // Determine the length of the property key.
740 while (s[l] != 0
741 && ! isspace (s[l])
742 && s[l] != ':'
743 && s[l] != '=')
745 if (s[l] == '\\'
746 && s[l+1] != 0)
747 l++;
748 l++;
751 *length = l;
753 return s;
756 static char *
757 next_property_value (char *s, size_t *length)
759 size_t l = 0;
761 JvAssert (s);
763 while (isspace (*s))
764 s++;
766 if (*s == ':'
767 || *s == '=')
768 s++;
770 while (isspace (*s))
771 s++;
773 // If we've reached the end, return NULL.
774 if (*s == 0)
775 return NULL;
777 // Determine the length of the property value.
778 while (s[l] != 0
779 && ! isspace (s[l])
780 && s[l] != ':'
781 && s[l] != '=')
783 if (s[l] == '\\'
784 && s[l+1] != 0)
785 l += 2;
786 else
787 l++;
790 *length = l;
792 return s;
795 static void
796 process_gcj_properties ()
798 char *props = getenv("GCJ_PROPERTIES");
799 char *p = props;
800 size_t length;
801 size_t property_count = 0;
803 if (NULL == props)
804 return;
806 // Whip through props quickly in order to count the number of
807 // property values.
808 while (p && (p = next_property_key (p, &length)))
810 // Skip to the end of the key
811 p += length;
813 p = next_property_value (p, &length);
814 if (p)
815 p += length;
817 property_count++;
820 // Allocate an array of property value/key pairs.
821 _Jv_Environment_Properties =
822 (property_pair *) malloc (sizeof(property_pair)
823 * (property_count + 1));
825 // Go through the properties again, initializing _Jv_Properties
826 // along the way.
827 p = props;
828 property_count = 0;
829 while (p && (p = next_property_key (p, &length)))
831 _Jv_Environment_Properties[property_count].key = p;
832 _Jv_Environment_Properties[property_count].key_length = length;
834 // Skip to the end of the key
835 p += length;
837 p = next_property_value (p, &length);
839 _Jv_Environment_Properties[property_count].value = p;
840 _Jv_Environment_Properties[property_count].value_length = length;
842 if (p)
843 p += length;
845 property_count++;
847 memset ((void *) &_Jv_Environment_Properties[property_count],
848 0, sizeof (property_pair));
850 size_t i = 0;
852 // Null terminate the strings.
853 while (_Jv_Environment_Properties[i].key)
855 _Jv_Environment_Properties[i].key[_Jv_Environment_Properties[i].key_length] = 0;
856 _Jv_Environment_Properties[i++].value[_Jv_Environment_Properties[i].value_length] = 0;
860 #endif // DISABLE_GETENV_PROPERTIES
862 namespace gcj
864 _Jv_Utf8Const *void_signature;
865 _Jv_Utf8Const *clinit_name;
866 _Jv_Utf8Const *init_name;
867 _Jv_Utf8Const *finit_name;
869 bool runtimeInitialized = false;
872 jint
873 _Jv_CreateJavaVM (void* /*vm_args*/)
875 using namespace gcj;
877 if (runtimeInitialized)
878 return -1;
880 runtimeInitialized = true;
882 PROCESS_GCJ_PROPERTIES;
884 _Jv_InitThreads ();
885 _Jv_InitGC ();
886 _Jv_InitializeSyncMutex ();
888 /* Initialize Utf8 constants declared in jvm.h. */
889 void_signature = _Jv_makeUtf8Const ("()V", 3);
890 clinit_name = _Jv_makeUtf8Const ("<clinit>", 8);
891 init_name = _Jv_makeUtf8Const ("<init>", 6);
892 finit_name = _Jv_makeUtf8Const ("finit$", 6);
894 /* Initialize built-in classes to represent primitive TYPEs. */
895 _Jv_InitPrimClass (&_Jv_byteClass, "byte", 'B', 1, &_Jv_byteVTable);
896 _Jv_InitPrimClass (&_Jv_shortClass, "short", 'S', 2, &_Jv_shortVTable);
897 _Jv_InitPrimClass (&_Jv_intClass, "int", 'I', 4, &_Jv_intVTable);
898 _Jv_InitPrimClass (&_Jv_longClass, "long", 'J', 8, &_Jv_longVTable);
899 _Jv_InitPrimClass (&_Jv_booleanClass, "boolean", 'Z', 1, &_Jv_booleanVTable);
900 _Jv_InitPrimClass (&_Jv_charClass, "char", 'C', 2, &_Jv_charVTable);
901 _Jv_InitPrimClass (&_Jv_floatClass, "float", 'F', 4, &_Jv_floatVTable);
902 _Jv_InitPrimClass (&_Jv_doubleClass, "double", 'D', 8, &_Jv_doubleVTable);
903 _Jv_InitPrimClass (&_Jv_voidClass, "void", 'V', 0, &_Jv_voidVTable);
905 // Turn stack trace generation off while creating exception objects.
906 _Jv_InitClass (&java::lang::VMThrowable::class$);
907 java::lang::VMThrowable::trace_enabled = 0;
909 INIT_SEGV;
910 #ifdef HANDLE_FPE
911 INIT_FPE;
912 #endif
914 no_memory = new java::lang::OutOfMemoryError;
916 java::lang::VMThrowable::trace_enabled = 1;
918 #ifdef USE_LTDL
919 LTDL_SET_PRELOADED_SYMBOLS ();
920 #endif
922 _Jv_platform_initialize ();
924 _Jv_JNI_Init ();
926 _Jv_GCInitializeFinalizers (&::gnu::gcj::runtime::FinalizerThread::finalizerReady);
928 // Start the GC finalizer thread. A VirtualMachineError can be
929 // thrown by the runtime if, say, threads aren't available. In this
930 // case finalizers simply won't run.
933 using namespace gnu::gcj::runtime;
934 FinalizerThread *ft = new FinalizerThread ();
935 ft->start ();
937 catch (java::lang::VirtualMachineError *ignore)
941 return 0;
944 void
945 _Jv_RunMain (jclass klass, const char *name, int argc, const char **argv,
946 bool is_jar)
948 _Jv_SetArgs (argc, argv);
950 java::lang::Runtime *runtime = NULL;
954 // Set this very early so that it is seen when java.lang.System
955 // is initialized.
956 if (is_jar)
957 _Jv_Jar_Class_Path = strdup (name);
958 _Jv_CreateJavaVM (NULL);
960 // Get the Runtime here. We want to initialize it before searching
961 // for `main'; that way it will be set up if `main' is a JNI method.
962 runtime = java::lang::Runtime::getRuntime ();
964 #ifdef DISABLE_MAIN_ARGS
965 arg_vec = JvConvertArgv (0, 0);
966 #else
967 arg_vec = JvConvertArgv (argc - 1, argv + 1);
968 #endif
970 using namespace gnu::gcj::runtime;
971 if (klass)
972 main_thread = new FirstThread (klass, arg_vec);
973 else
974 main_thread = new FirstThread (JvNewStringLatin1 (name),
975 arg_vec, is_jar);
977 catch (java::lang::Throwable *t)
979 java::lang::System::err->println (JvNewStringLatin1
980 ("Exception during runtime initialization"));
981 t->printStackTrace();
982 runtime->exit (1);
985 _Jv_AttachCurrentThread (main_thread);
986 _Jv_ThreadRun (main_thread);
987 _Jv_ThreadWait ();
989 int status = (int) java::lang::ThreadGroup::had_uncaught_exception;
990 runtime->exit (status);
993 void
994 JvRunMain (jclass klass, int argc, const char **argv)
996 _Jv_RunMain (klass, NULL, argc, argv, false);
1001 // Parse a string and return a heap size.
1002 static size_t
1003 parse_heap_size (const char *spec)
1005 char *end;
1006 unsigned long val = strtoul (spec, &end, 10);
1007 if (*end == 'k' || *end == 'K')
1008 val *= 1024;
1009 else if (*end == 'm' || *end == 'M')
1010 val *= 1048576;
1011 return (size_t) val;
1014 // Set the initial heap size. This might be ignored by the GC layer.
1015 // This must be called before _Jv_RunMain.
1016 void
1017 _Jv_SetInitialHeapSize (const char *arg)
1019 size_t size = parse_heap_size (arg);
1020 _Jv_GCSetInitialHeapSize (size);
1023 // Set the maximum heap size. This might be ignored by the GC layer.
1024 // This must be called before _Jv_RunMain.
1025 void
1026 _Jv_SetMaximumHeapSize (const char *arg)
1028 size_t size = parse_heap_size (arg);
1029 _Jv_GCSetMaximumHeapSize (size);
1034 void *
1035 _Jv_Malloc (jsize size)
1037 if (__builtin_expect (size == 0, false))
1038 size = 1;
1039 void *ptr = malloc ((size_t) size);
1040 if (__builtin_expect (ptr == NULL, false))
1041 throw no_memory;
1042 return ptr;
1045 void *
1046 _Jv_Realloc (void *ptr, jsize size)
1048 if (__builtin_expect (size == 0, false))
1049 size = 1;
1050 ptr = realloc (ptr, (size_t) size);
1051 if (__builtin_expect (ptr == NULL, false))
1052 throw no_memory;
1053 return ptr;
1056 void *
1057 _Jv_MallocUnchecked (jsize size)
1059 if (__builtin_expect (size == 0, false))
1060 size = 1;
1061 return malloc ((size_t) size);
1064 void
1065 _Jv_Free (void* ptr)
1067 return free (ptr);
1072 // In theory, these routines can be #ifdef'd away on machines which
1073 // support divide overflow signals. However, we never know if some
1074 // code might have been compiled with "-fuse-divide-subroutine", so we
1075 // always include them in libgcj.
1077 jint
1078 _Jv_divI (jint dividend, jint divisor)
1080 if (__builtin_expect (divisor == 0, false))
1082 java::lang::ArithmeticException *arithexception
1083 = new java::lang::ArithmeticException (JvNewStringLatin1 ("/ by zero"));
1084 throw arithexception;
1087 if (dividend == (jint) 0x80000000L && divisor == -1)
1088 return dividend;
1090 return dividend / divisor;
1093 jint
1094 _Jv_remI (jint dividend, jint divisor)
1096 if (__builtin_expect (divisor == 0, false))
1098 java::lang::ArithmeticException *arithexception
1099 = new java::lang::ArithmeticException (JvNewStringLatin1 ("/ by zero"));
1100 throw arithexception;
1103 if (dividend == (jint) 0x80000000L && divisor == -1)
1104 return 0;
1106 return dividend % divisor;
1109 jlong
1110 _Jv_divJ (jlong dividend, jlong divisor)
1112 if (__builtin_expect (divisor == 0, false))
1114 java::lang::ArithmeticException *arithexception
1115 = new java::lang::ArithmeticException (JvNewStringLatin1 ("/ by zero"));
1116 throw arithexception;
1119 if (dividend == (jlong) 0x8000000000000000LL && divisor == -1)
1120 return dividend;
1122 return dividend / divisor;
1125 jlong
1126 _Jv_remJ (jlong dividend, jlong divisor)
1128 if (__builtin_expect (divisor == 0, false))
1130 java::lang::ArithmeticException *arithexception
1131 = new java::lang::ArithmeticException (JvNewStringLatin1 ("/ by zero"));
1132 throw arithexception;
1135 if (dividend == (jlong) 0x8000000000000000LL && divisor == -1)
1136 return 0;
1138 return dividend % divisor;