1 // prims.cc - Code for core of runtime environment.
3 /* Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003 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
26 #include <java-signal.h>
27 #include <java-threads.h>
31 #include <java/lang/ThreadGroup.h>
34 #ifndef DISABLE_GETENV_PROPERTIES
36 #include <java-props.h>
37 #define PROCESS_GCJ_PROPERTIES process_gcj_properties()
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>
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
;
89 // Stash the argv pointer to benefit native libraries that need it.
90 const char **_Jv_argv
;
97 // _Jv_argc is 0 if not explicitly initialized.
102 _Jv_GetSafeArg (int index
)
104 if (index
>=0 && index
< _Jv_GetNbArgs ())
105 return _Jv_argv
[index
];
111 _Jv_SetArgs (int argc
, const char **argv
)
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
);
126 SIGNAL_HANDLER (catch_segv
)
128 java::lang::NullPointerException
*nullp
129 = new java::lang::NullPointerException
;
130 MAKE_THROW_FRAME (nullp
);
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
;
143 MAKE_THROW_FRAME (arithexception
);
145 throw arithexception
;
152 _Jv_equalUtf8Consts (Utf8Const
* a
, Utf8Const
*b
)
155 _Jv_ushort
*aptr
, *bptr
;
158 if (a
->hash
!= b
->hash
)
161 if (b
->length
!= len
)
163 aptr
= (_Jv_ushort
*)a
->data
;
164 bptr
= (_Jv_ushort
*)b
->data
;
165 len
= (len
+ 1) >> 1;
167 if (*aptr
++ != *bptr
++)
172 /* True iff A is equal to STR.
173 HASH is STR->hashCode().
177 _Jv_equal (Utf8Const
* a
, jstring str
, jint hash
)
179 if (a
->hash
!= (_Jv_ushort
) hash
)
181 jint len
= str
->length();
183 jchar
*sptr
= _Jv_GetStringChars (str
);
184 unsigned char* ptr
= (unsigned char*) a
->data
;
185 unsigned char* limit
= ptr
+ a
->length
;
188 int ch
= UTF8_GET (ptr
, limit
);
197 /* Like _Jv_equal, but stop after N characters. */
199 _Jv_equaln (Utf8Const
*a
, jstring str
, jint n
)
201 jint len
= str
->length();
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
);
217 /* Count the number of Unicode chars encoded in a given Ut8 string. */
219 _Jv_strLengthUtf8(char* str
, int len
)
222 unsigned char* limit
;
225 ptr
= (unsigned char*) str
;
228 for (; ptr
< limit
; str_length
++)
230 if (UTF8_GET (ptr
, limit
) < 0)
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.
240 hashUtf8String (char* str
, int len
)
242 unsigned char* ptr
= (unsigned char*) str
;
243 unsigned char* limit
= ptr
+ len
;
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
;
257 _Jv_makeUtf8Const (char* s
, int len
)
261 Utf8Const
* m
= (Utf8Const
*) _Jv_AllocBytes (sizeof(Utf8Const
) + len
+ 1);
262 memcpy (m
->data
, s
, len
);
265 m
->hash
= hashUtf8String (s
, len
) & 0xFFFF;
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);
281 _Jv_GetStringUTFRegion (string
, 0, string
->length (), m
->data
);
291 _Jv_Abort (const char *function
, const char *file
, int line
,
295 _Jv_Abort (const char *, const char *, int, const char *message
)
300 "libgcj failure: %s\n in function %s, file %s, line %d\n",
301 message
, function
, file
, line
);
303 fprintf (stderr
, "libgcj failure: %s\n", message
);
309 fail_on_finalization (jobject
)
311 JvFail ("object was finalized");
315 _Jv_GCWatch (jobject obj
)
317 _Jv_RegisterFinalizer (obj
, fail_on_finalization
);
321 _Jv_ThrowBadArrayIndex(jint bad_index
)
323 throw new java::lang::ArrayIndexOutOfBoundsException
324 (java::lang::String::valueOf (bad_index
));
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()
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))
349 event
.event_type
= JVMPI_EVENT_OBJECT_ALLOC
;
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
366 (*_Jv_JVMPI_Notify_OBJECT_ALLOC
) (&event
);
370 #else /* !ENABLE_JVMPI */
371 # define jvmpi_notify_alloc(klass,size,obj) /* do nothing */
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.
382 _Jv_AllocObjectNoInitNoFinalizer (jclass klass
, jint size
)
384 jobject obj
= (jobject
) _Jv_AllocObj (size
, klass
);
385 jvmpi_notify_alloc (klass
, size
, obj
);
389 // And now a version that initializes if necessary.
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
);
399 // And now the general version that registers a finalizer if necessary.
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
);
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
420 #ifdef JV_HASH_SYNCHRONIZATION
422 _Jv_AllocPtrFreeObject (jclass klass
, jint size
)
424 _Jv_InitClass (klass
);
426 jobject obj
= (jobject
) _Jv_AllocPtrFreeObj (size
, klass
);
429 // Service JVMPI request.
431 if (__builtin_expect (_Jv_JVMPI_Notify_OBJECT_ALLOC
!= 0, false))
435 event
.event_type
= JVMPI_EVENT_OBJECT_ALLOC
;
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
;
444 (*_Jv_JVMPI_Notify_OBJECT_ALLOC
) (&event
);
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
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
);
475 jsize
*lp
= const_cast<jsize
*> (&obj
->length
);
477 // We know the allocator returns zeroed memory. So don't bother
481 jobject
*ptr
= elements(obj
);
488 // Allocate a new array of primitives. ELTYPE is the type of the
489 // element, COUNT is the size of the array.
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))
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.
512 (__JArray
*) _Jv_AllocPtrFreeObj (size
+ elsize
* count
, klass
);
513 memset((char *)arr
+ size
, 0, elsize
* count
);
515 __JArray
*arr
= (__JArray
*) _Jv_AllocObj (size
+ elsize
* count
, klass
);
516 // Note that we assume we are given zeroed memory by the allocator.
519 jsize
*lp
= const_cast<jsize
*> (&arr
->length
);
526 _Jv_NewArray (jint type
, jint size
)
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.
546 _Jv_NewMultiArrayUnchecked (jclass type
, jint dimensions
, jint
*sizes
)
548 JvAssert (type
->isArray());
549 jclass element_type
= type
->getComponentType();
551 if (element_type
->isPrimitive())
552 result
= _Jv_NewPrimArray (element_type
, sizes
[0]);
554 result
= _Jv_NewObjectArray (sizes
[0], element_type
, NULL
);
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,
570 _Jv_NewMultiArray (jclass type
, jint dimensions
, jint
*sizes
)
572 for (int i
= 0; i
< dimensions
; ++i
)
574 throw new java::lang::NegativeArraySizeException
;
576 return _Jv_NewMultiArrayUnchecked (type
, dimensions
, sizes
);
580 _Jv_NewMultiArray (jclass array_type
, jint dimensions
, ...)
583 jint sizes
[dimensions
];
584 va_start (args
, dimensions
);
585 for (int i
= 0; i
< dimensions
; ++i
)
587 jint size
= va_arg (args
, jint
);
589 throw new java::lang::NegativeArraySizeException
;
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)
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
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
;
636 _Jv_NewArrayClass (cl
, NULL
, (_Jv_VTable
*) array_vtable
);
640 _Jv_FindClassFromSignature (char *sig
, java::lang::ClassLoader
*loader
)
645 return JvPrimClass (byte
);
647 return JvPrimClass (short);
649 return JvPrimClass (int);
651 return JvPrimClass (long);
653 return JvPrimClass (boolean
);
655 return JvPrimClass (char);
657 return JvPrimClass (float);
659 return JvPrimClass (double);
661 return JvPrimClass (void);
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
);
672 jclass klass
= _Jv_FindClassFromSignature (&sig
[1], loader
);
675 return _Jv_GetArrayClass (klass
, loader
);
679 return NULL
; // Placate compiler.
685 JvConvertArgv (int argc
, const char **argv
)
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
722 next_property_key (char *s
, size_t *length
)
728 // Skip over whitespace
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.
739 // Determine the length of the property key.
757 next_property_value (char *s
, size_t *length
)
773 // If we've reached the end, return NULL.
777 // Determine the length of the property value.
796 process_gcj_properties ()
798 char *props
= getenv("GCJ_PROPERTIES");
801 size_t property_count
= 0;
806 // Whip through props quickly in order to count the number of
808 while (p
&& (p
= next_property_key (p
, &length
)))
810 // Skip to the end of the key
813 p
= next_property_value (p
, &length
);
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
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
837 p
= next_property_value (p
, &length
);
839 _Jv_Environment_Properties
[property_count
].value
= p
;
840 _Jv_Environment_Properties
[property_count
].value_length
= length
;
847 memset ((void *) &_Jv_Environment_Properties
[property_count
],
848 0, sizeof (property_pair
));
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
864 _Jv_Utf8Const
*void_signature
;
865 _Jv_Utf8Const
*clinit_name
;
866 _Jv_Utf8Const
*init_name
;
867 _Jv_Utf8Const
*finit_name
;
869 bool runtimeInitialized
= false;
873 _Jv_CreateJavaVM (void* /*vm_args*/)
877 if (runtimeInitialized
)
880 runtimeInitialized
= true;
882 PROCESS_GCJ_PROPERTIES
;
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;
914 no_memory
= new java::lang::OutOfMemoryError
;
916 java::lang::VMThrowable::trace_enabled
= 1;
919 LTDL_SET_PRELOADED_SYMBOLS ();
922 _Jv_platform_initialize ();
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 ();
937 catch (java::lang::VirtualMachineError
*ignore
)
945 _Jv_RunMain (jclass klass
, const char *name
, int argc
, const char **argv
,
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
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);
967 arg_vec
= JvConvertArgv (argc
- 1, argv
+ 1);
970 using namespace gnu::gcj::runtime
;
972 main_thread
= new FirstThread (klass
, arg_vec
);
974 main_thread
= new FirstThread (JvNewStringLatin1 (name
),
977 catch (java::lang::Throwable
*t
)
979 java::lang::System::err
->println (JvNewStringLatin1
980 ("Exception during runtime initialization"));
981 t
->printStackTrace();
985 _Jv_AttachCurrentThread (main_thread
);
986 _Jv_ThreadRun (main_thread
);
989 int status
= (int) java::lang::ThreadGroup::had_uncaught_exception
;
990 runtime
->exit (status
);
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.
1003 parse_heap_size (const char *spec
)
1006 unsigned long val
= strtoul (spec
, &end
, 10);
1007 if (*end
== 'k' || *end
== 'K')
1009 else if (*end
== 'm' || *end
== 'M')
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.
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.
1026 _Jv_SetMaximumHeapSize (const char *arg
)
1028 size_t size
= parse_heap_size (arg
);
1029 _Jv_GCSetMaximumHeapSize (size
);
1035 _Jv_Malloc (jsize size
)
1037 if (__builtin_expect (size
== 0, false))
1039 void *ptr
= malloc ((size_t) size
);
1040 if (__builtin_expect (ptr
== NULL
, false))
1046 _Jv_Realloc (void *ptr
, jsize size
)
1048 if (__builtin_expect (size
== 0, false))
1050 ptr
= realloc (ptr
, (size_t) size
);
1051 if (__builtin_expect (ptr
== NULL
, false))
1057 _Jv_MallocUnchecked (jsize size
)
1059 if (__builtin_expect (size
== 0, false))
1061 return malloc ((size_t) size
);
1065 _Jv_Free (void* 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.
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)
1090 return dividend
/ divisor
;
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)
1106 return dividend
% divisor
;
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)
1122 return dividend
/ divisor
;
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)
1138 return dividend
% divisor
;
1143 // Return true if SELF_KLASS can access a field or method in
1144 // OTHER_KLASS. The field or method's access flags are specified in
1147 _Jv_CheckAccess (jclass self_klass
, jclass other_klass
, jint flags
)
1149 using namespace java::lang::reflect
;
1150 return ((self_klass
== other_klass
)
1151 || ((flags
& Modifier::PUBLIC
) != 0)
1152 || (((flags
& Modifier::PROTECTED
) != 0)
1153 && other_klass
->isAssignableFrom (self_klass
))
1154 || (((flags
& Modifier::PRIVATE
) == 0)
1155 && _Jv_ClassNameSamePackage (self_klass
->name
,
1156 other_klass
->name
)));