2007-07-06 23:50:26 +00:00
|
|
|
#include "builtin.h"
|
|
|
|
#include "machine.h"
|
2007-07-24 01:44:20 +00:00
|
|
|
#include "constants.h"
|
2007-07-07 18:09:16 +00:00
|
|
|
#include "run.h"
|
2007-07-06 15:24:06 +00:00
|
|
|
|
2007-07-24 01:44:20 +00:00
|
|
|
using namespace vm;
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
inline void
|
|
|
|
replace(char a, char b, char* c)
|
|
|
|
{
|
|
|
|
for (; *c; ++c) if (*c == a) *c = b;
|
|
|
|
}
|
|
|
|
|
2007-09-07 00:21:52 +00:00
|
|
|
jstring JNICALL
|
2007-07-27 00:06:05 +00:00
|
|
|
Object_toString(Thread* t, jobject this_)
|
2007-07-07 23:47:35 +00:00
|
|
|
{
|
2007-08-22 04:02:17 +00:00
|
|
|
unsigned hash = objectHash(t, *this_);
|
2007-07-07 23:47:35 +00:00
|
|
|
object s = makeString
|
2007-08-22 04:02:17 +00:00
|
|
|
(t, "%s@0x%x",
|
2007-07-07 23:47:35 +00:00
|
|
|
&byteArrayBody(t, className(t, objectClass(t, *this_)), 0),
|
2007-08-22 04:02:17 +00:00
|
|
|
hash);
|
2007-07-07 23:47:35 +00:00
|
|
|
|
|
|
|
return pushReference(t, s);
|
|
|
|
}
|
|
|
|
|
2007-09-07 00:21:52 +00:00
|
|
|
jclass JNICALL
|
2007-07-27 00:06:05 +00:00
|
|
|
Object_getClass(Thread* t, jobject this_)
|
2007-07-12 23:46:08 +00:00
|
|
|
{
|
|
|
|
return pushReference(t, objectClass(t, *this_));
|
|
|
|
}
|
|
|
|
|
2007-09-07 00:21:52 +00:00
|
|
|
void JNICALL
|
2007-07-27 00:06:05 +00:00
|
|
|
Object_wait(Thread* t, jobject this_, jlong milliseconds)
|
2007-07-07 23:47:35 +00:00
|
|
|
{
|
|
|
|
vm::wait(t, *this_, milliseconds);
|
|
|
|
}
|
|
|
|
|
2007-09-07 00:21:52 +00:00
|
|
|
void JNICALL
|
2007-07-27 00:06:05 +00:00
|
|
|
Object_notify(Thread* t, jobject this_)
|
2007-07-07 23:47:35 +00:00
|
|
|
{
|
2007-08-13 00:50:25 +00:00
|
|
|
notify(t, *this_);
|
2007-07-07 23:47:35 +00:00
|
|
|
}
|
|
|
|
|
2007-09-07 00:21:52 +00:00
|
|
|
void JNICALL
|
2007-07-27 00:06:05 +00:00
|
|
|
Object_notifyAll(Thread* t, jobject this_)
|
2007-07-07 23:47:35 +00:00
|
|
|
{
|
2007-08-13 00:50:25 +00:00
|
|
|
notifyAll(t, *this_);
|
|
|
|
}
|
|
|
|
|
2007-09-07 00:21:52 +00:00
|
|
|
jint JNICALL
|
2007-08-13 00:50:25 +00:00
|
|
|
Object_hashCode(Thread* t, jobject this_)
|
|
|
|
{
|
|
|
|
return objectHash(t, *this_);
|
2007-07-07 23:47:35 +00:00
|
|
|
}
|
|
|
|
|
2007-09-07 00:21:52 +00:00
|
|
|
jobject JNICALL
|
2007-08-15 01:14:55 +00:00
|
|
|
Object_clone(Thread* t, jclass, jobject o)
|
|
|
|
{
|
|
|
|
object clone = make(t, objectClass(t, *o));
|
2007-09-07 00:21:52 +00:00
|
|
|
memcpy(reinterpret_cast<void**>(clone) + 1,
|
|
|
|
reinterpret_cast<void**>(*o) + 1,
|
2007-08-15 01:14:55 +00:00
|
|
|
(baseSize(t, *o, objectClass(t, *o)) - 1) * BytesPerWord);
|
|
|
|
return pushReference(t, clone);
|
|
|
|
}
|
|
|
|
|
2007-09-07 00:21:52 +00:00
|
|
|
jclass JNICALL
|
2007-08-10 23:45:47 +00:00
|
|
|
ClassLoader_defineClass(Thread* t, jclass, jbyteArray b, jint offset,
|
|
|
|
jint length)
|
|
|
|
{
|
|
|
|
uint8_t* buffer = static_cast<uint8_t*>(t->vm->system->allocate(length));
|
|
|
|
memcpy(buffer, &byteArrayBody(t, *b, offset), length);
|
|
|
|
object c = parseClass(t, buffer, length);
|
|
|
|
t->vm->system->free(buffer);
|
|
|
|
return pushReference(t, c);
|
|
|
|
}
|
|
|
|
|
|
|
|
jclass
|
|
|
|
search(Thread* t, jstring name, object (*op)(Thread*, object),
|
|
|
|
bool replaceDots)
|
2007-07-24 01:44:20 +00:00
|
|
|
{
|
|
|
|
if (LIKELY(name)) {
|
|
|
|
object n = makeByteArray(t, stringLength(t, *name) + 1, false);
|
|
|
|
char* s = reinterpret_cast<char*>(&byteArrayBody(t, n, 0));
|
|
|
|
stringChars(t, *name, s);
|
|
|
|
|
2007-08-10 23:45:47 +00:00
|
|
|
if (replaceDots) {
|
|
|
|
replace('.', '/', s);
|
|
|
|
}
|
2007-07-24 01:44:20 +00:00
|
|
|
|
2007-08-10 23:45:47 +00:00
|
|
|
object r = op(t, n);
|
2007-07-24 01:44:20 +00:00
|
|
|
if (t->exception) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-08-10 23:45:47 +00:00
|
|
|
return pushReference(t, r);
|
2007-07-24 01:44:20 +00:00
|
|
|
} else {
|
|
|
|
t->exception = makeNullPointerException(t);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-09-07 00:21:52 +00:00
|
|
|
jclass JNICALL
|
2007-08-10 23:45:47 +00:00
|
|
|
SystemClassLoader_findLoadedClass(Thread* t, jclass, jstring name)
|
2007-07-30 23:19:05 +00:00
|
|
|
{
|
2007-08-10 23:45:47 +00:00
|
|
|
return search(t, name, findLoadedClass, true);
|
2007-07-30 23:19:05 +00:00
|
|
|
}
|
|
|
|
|
2007-09-07 00:21:52 +00:00
|
|
|
jclass JNICALL
|
2007-08-10 23:45:47 +00:00
|
|
|
SystemClassLoader_findClass(Thread* t, jclass, jstring name)
|
2007-07-30 23:19:05 +00:00
|
|
|
{
|
2007-08-10 23:45:47 +00:00
|
|
|
return search(t, name, resolveClass, true);
|
2007-07-30 23:19:05 +00:00
|
|
|
}
|
|
|
|
|
2007-09-07 00:21:52 +00:00
|
|
|
jboolean JNICALL
|
2007-08-10 23:45:47 +00:00
|
|
|
SystemClassLoader_resourceExists(Thread* t, jclass, jstring name)
|
2007-07-30 23:19:05 +00:00
|
|
|
{
|
2007-08-10 23:45:47 +00:00
|
|
|
if (LIKELY(name)) {
|
|
|
|
char n[stringLength(t, *name) + 1];
|
|
|
|
stringChars(t, *name, n);
|
|
|
|
return t->vm->finder->exists(n);
|
|
|
|
} else {
|
|
|
|
t->exception = makeNullPointerException(t);
|
|
|
|
return 0;
|
|
|
|
}
|
2007-07-30 23:19:05 +00:00
|
|
|
}
|
|
|
|
|
2007-09-07 00:21:52 +00:00
|
|
|
jobject JNICALL
|
2007-08-13 00:50:25 +00:00
|
|
|
ObjectInputStream_makeInstance(Thread* t, jclass, jclass c)
|
|
|
|
{
|
|
|
|
return pushReference(t, make(t, *c));
|
|
|
|
}
|
|
|
|
|
2007-09-07 00:21:52 +00:00
|
|
|
jclass JNICALL
|
2007-07-28 16:55:24 +00:00
|
|
|
Class_primitiveClass(Thread* t, jclass, jchar name)
|
|
|
|
{
|
|
|
|
switch (name) {
|
|
|
|
case 'B':
|
|
|
|
return pushReference(t, arrayBody(t, t->vm->types, Machine::JbyteType));
|
|
|
|
case 'C':
|
|
|
|
return pushReference(t, arrayBody(t, t->vm->types, Machine::JcharType));
|
|
|
|
case 'D':
|
|
|
|
return pushReference(t, arrayBody(t, t->vm->types, Machine::JdoubleType));
|
|
|
|
case 'F':
|
|
|
|
return pushReference(t, arrayBody(t, t->vm->types, Machine::JfloatType));
|
|
|
|
case 'I':
|
|
|
|
return pushReference(t, arrayBody(t, t->vm->types, Machine::JintType));
|
2007-07-29 23:32:23 +00:00
|
|
|
case 'J':
|
2007-07-28 16:55:24 +00:00
|
|
|
return pushReference(t, arrayBody(t, t->vm->types, Machine::JlongType));
|
|
|
|
case 'S':
|
|
|
|
return pushReference(t, arrayBody(t, t->vm->types, Machine::JshortType));
|
|
|
|
case 'V':
|
|
|
|
return pushReference(t, arrayBody(t, t->vm->types, Machine::JvoidType));
|
2007-07-29 23:32:23 +00:00
|
|
|
case 'Z':
|
|
|
|
return pushReference(t, arrayBody(t, t->vm->types, Machine::JbooleanType));
|
2007-07-28 16:55:24 +00:00
|
|
|
default:
|
|
|
|
t->exception = makeIllegalArgumentException(t);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-09-07 00:21:52 +00:00
|
|
|
void JNICALL
|
2007-08-01 23:48:36 +00:00
|
|
|
Class_initialize(Thread* t, jobject this_)
|
|
|
|
{
|
2007-08-23 03:30:37 +00:00
|
|
|
initClass(t, *this_);
|
2007-08-01 23:48:36 +00:00
|
|
|
}
|
|
|
|
|
2007-09-07 00:21:52 +00:00
|
|
|
jboolean JNICALL
|
2007-07-27 00:06:05 +00:00
|
|
|
Class_isAssignableFrom(Thread* t, jobject this_, jclass that)
|
2007-07-24 01:44:20 +00:00
|
|
|
{
|
|
|
|
if (LIKELY(that)) {
|
|
|
|
return vm::isAssignableFrom(t, *this_, *that);
|
|
|
|
} else {
|
|
|
|
t->exception = makeNullPointerException(t);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-09-07 00:21:52 +00:00
|
|
|
jlong JNICALL
|
2007-08-18 17:15:03 +00:00
|
|
|
Field_getPrimitive(Thread* t, jclass, jobject instance, jint code, jint offset)
|
|
|
|
{
|
|
|
|
switch (code) {
|
|
|
|
case ByteField:
|
|
|
|
return cast<int8_t>(*instance, offset);
|
|
|
|
case BooleanField:
|
|
|
|
return cast<uint8_t>(*instance, offset);
|
|
|
|
case CharField:
|
|
|
|
return cast<uint16_t>(*instance, offset);
|
|
|
|
case ShortField:
|
|
|
|
return cast<int16_t>(*instance, offset);
|
|
|
|
case IntField:
|
|
|
|
return cast<int32_t>(*instance, offset);
|
|
|
|
case LongField:
|
|
|
|
return cast<int64_t>(*instance, offset);
|
|
|
|
case FloatField:
|
|
|
|
return cast<uint32_t>(*instance, offset);
|
|
|
|
case DoubleField:
|
|
|
|
return cast<uint64_t>(*instance, offset);
|
|
|
|
default:
|
|
|
|
abort(t);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-09-07 00:21:52 +00:00
|
|
|
jobject JNICALL
|
2007-08-18 17:15:03 +00:00
|
|
|
Field_getObject(Thread* t, jclass, jobject instance, jint offset)
|
2007-07-24 01:44:20 +00:00
|
|
|
{
|
2007-08-18 17:15:03 +00:00
|
|
|
return pushReference(t, cast<object>(*instance, offset));
|
|
|
|
}
|
2007-07-24 01:44:20 +00:00
|
|
|
|
2007-09-07 00:21:52 +00:00
|
|
|
void JNICALL
|
2007-08-18 17:15:03 +00:00
|
|
|
Field_setPrimitive(Thread* t, jclass, jobject instance, jint code, jint offset,
|
|
|
|
jlong value)
|
|
|
|
{
|
|
|
|
switch (code) {
|
|
|
|
case ByteField:
|
|
|
|
cast<int8_t>(*instance, offset) = static_cast<int8_t>(value);
|
|
|
|
break;
|
|
|
|
case BooleanField:
|
|
|
|
cast<uint8_t>(*instance, offset) = static_cast<uint8_t>(value);
|
|
|
|
break;
|
|
|
|
case CharField:
|
|
|
|
cast<uint16_t>(*instance, offset) = static_cast<uint16_t>(value);
|
|
|
|
break;
|
|
|
|
case ShortField:
|
|
|
|
cast<int16_t>(*instance, offset) = static_cast<int16_t>(value);
|
|
|
|
break;
|
|
|
|
case IntField:
|
|
|
|
cast<int32_t>(*instance, offset) = static_cast<int32_t>(value);
|
|
|
|
break;
|
|
|
|
case LongField:
|
|
|
|
cast<int64_t>(*instance, offset) = static_cast<int64_t>(value);
|
|
|
|
break;
|
|
|
|
case FloatField:
|
|
|
|
cast<uint32_t>(*instance, offset) = static_cast<uint32_t>(value);
|
|
|
|
break;
|
|
|
|
case DoubleField:
|
|
|
|
cast<uint64_t>(*instance, offset) = static_cast<uint64_t>(value);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
abort(t);
|
2007-07-27 23:56:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-09-07 00:21:52 +00:00
|
|
|
void JNICALL
|
2007-08-18 17:53:30 +00:00
|
|
|
Field_setObject(Thread* t, jclass, jobject instance, jint offset,
|
2007-08-18 17:15:03 +00:00
|
|
|
jobject value)
|
2007-07-27 23:56:19 +00:00
|
|
|
{
|
2007-08-18 17:53:30 +00:00
|
|
|
set(t, cast<object>(*instance, offset), (value ? *value : 0));
|
2007-07-24 01:44:20 +00:00
|
|
|
}
|
|
|
|
|
2007-09-07 00:21:52 +00:00
|
|
|
jobject JNICALL
|
2007-07-27 02:39:53 +00:00
|
|
|
Constructor_make(Thread* t, jclass, jclass c)
|
|
|
|
{
|
2007-08-20 02:57:32 +00:00
|
|
|
return pushReference(t, make(t, *c));
|
2007-07-27 02:39:53 +00:00
|
|
|
}
|
|
|
|
|
2007-09-07 00:21:52 +00:00
|
|
|
jobject JNICALL
|
2007-07-30 23:19:05 +00:00
|
|
|
Method_getCaller(Thread* t, jclass)
|
|
|
|
{
|
|
|
|
return pushReference
|
|
|
|
(t, frameMethod(t, frameNext(t, frameNext(t, t->frame))));
|
|
|
|
}
|
|
|
|
|
2007-09-07 00:21:52 +00:00
|
|
|
jobject JNICALL
|
2007-08-18 17:53:30 +00:00
|
|
|
Method_invoke(Thread* t, jclass, jobject method, jobject instance,
|
|
|
|
jobjectArray arguments)
|
2007-07-24 01:44:20 +00:00
|
|
|
{
|
2007-08-18 17:53:30 +00:00
|
|
|
object v = run2(t, *method, (instance ? *instance : 0), *arguments);
|
|
|
|
if (t->exception) {
|
|
|
|
t->exception = makeInvocationTargetException(t, t->exception);
|
2007-07-24 01:44:20 +00:00
|
|
|
}
|
2007-08-18 17:53:30 +00:00
|
|
|
return pushReference(t, v);
|
2007-07-24 01:44:20 +00:00
|
|
|
}
|
|
|
|
|
2007-09-07 00:21:52 +00:00
|
|
|
jint JNICALL
|
2007-08-19 20:24:26 +00:00
|
|
|
Array_getLength(Thread* t, jclass, jobject array)
|
2007-07-27 02:39:53 +00:00
|
|
|
{
|
|
|
|
if (LIKELY(array)) {
|
|
|
|
object a = *array;
|
|
|
|
unsigned elementSize = classArrayElementSize(t, objectClass(t, a));
|
|
|
|
|
|
|
|
if (LIKELY(elementSize)) {
|
|
|
|
return cast<uintptr_t>(a, BytesPerWord);
|
|
|
|
} else {
|
|
|
|
t->exception = makeIllegalArgumentException(t);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
t->exception = makeNullPointerException(t);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-09-07 00:21:52 +00:00
|
|
|
jobject JNICALL
|
2007-07-27 02:39:53 +00:00
|
|
|
Array_makeObjectArray(Thread* t, jclass, jclass elementType, jint length)
|
|
|
|
{
|
|
|
|
return pushReference(t, makeObjectArray(t, *elementType, length, true));
|
|
|
|
}
|
|
|
|
|
2007-09-07 00:21:52 +00:00
|
|
|
jint JNICALL
|
2007-08-18 17:15:03 +00:00
|
|
|
Float_floatToRawIntBits(Thread*, jclass, jfloat v)
|
|
|
|
{
|
|
|
|
int32_t r; memcpy(&r, &v, 4);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2007-09-07 00:21:52 +00:00
|
|
|
jfloat JNICALL
|
2007-08-18 17:15:03 +00:00
|
|
|
Float_intBitsToFloat(Thread*, jclass, jint v)
|
|
|
|
{
|
|
|
|
jfloat r; memcpy(&r, &v, 4);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2007-09-07 00:21:52 +00:00
|
|
|
jlong JNICALL
|
2007-08-18 17:15:03 +00:00
|
|
|
Double_doubleToRawLongBits(Thread*, jclass, jdouble v)
|
|
|
|
{
|
|
|
|
int64_t r; memcpy(&r, &v, 8);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2007-09-07 00:21:52 +00:00
|
|
|
jdouble JNICALL
|
2007-08-18 17:15:03 +00:00
|
|
|
Double_longBitsToDouble(Thread*, jclass, jlong v)
|
|
|
|
{
|
|
|
|
jdouble r; memcpy(&r, &v, 8);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2007-09-07 00:21:52 +00:00
|
|
|
jobject JNICALL
|
2007-07-29 00:02:32 +00:00
|
|
|
String_intern(Thread* t, jobject this_)
|
|
|
|
{
|
|
|
|
return pushReference(t, intern(t, *this_));
|
|
|
|
}
|
|
|
|
|
2007-09-07 00:21:52 +00:00
|
|
|
jstring JNICALL
|
2007-08-27 13:46:17 +00:00
|
|
|
System_getVMProperty(Thread* t, jclass, jint code)
|
|
|
|
{
|
|
|
|
enum {
|
|
|
|
JavaClassPath = 1
|
|
|
|
};
|
|
|
|
|
|
|
|
switch (code) {
|
|
|
|
case JavaClassPath:
|
|
|
|
return pushReference(t, makeString(t, "%s", t->vm->finder->path()));
|
|
|
|
|
|
|
|
default:
|
|
|
|
t->exception = makeRuntimeException(t, 0);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-09-07 00:21:52 +00:00
|
|
|
void JNICALL
|
2007-07-27 00:06:05 +00:00
|
|
|
System_arraycopy(Thread* t, jclass, jobject src, jint srcOffset, jobject dst,
|
|
|
|
jint dstOffset, jint length)
|
2007-07-06 15:24:06 +00:00
|
|
|
{
|
2007-07-07 23:47:35 +00:00
|
|
|
if (LIKELY(src and dst)) {
|
|
|
|
object s = *src;
|
|
|
|
object d = *dst;
|
|
|
|
|
|
|
|
if (LIKELY(objectClass(t, s) == objectClass(t, d))) {
|
|
|
|
unsigned elementSize = classArrayElementSize(t, objectClass(t, s));
|
|
|
|
|
|
|
|
if (LIKELY(elementSize)) {
|
2007-07-14 17:31:01 +00:00
|
|
|
intptr_t sl = cast<uintptr_t>(s, BytesPerWord);
|
|
|
|
intptr_t dl = cast<uintptr_t>(d, BytesPerWord);
|
2007-07-07 23:47:35 +00:00
|
|
|
if (LIKELY(srcOffset >= 0 and srcOffset + length <= sl and
|
2007-07-11 01:38:06 +00:00
|
|
|
dstOffset >= 0 and dstOffset + length <= dl))
|
2007-07-07 23:47:35 +00:00
|
|
|
{
|
2007-07-14 17:31:01 +00:00
|
|
|
uint8_t* sbody = &cast<uint8_t>(s, 2 * BytesPerWord);
|
|
|
|
uint8_t* dbody = &cast<uint8_t>(d, 2 * BytesPerWord);
|
2007-07-22 03:47:08 +00:00
|
|
|
if (src == dst) {
|
|
|
|
memmove(dbody + (dstOffset * elementSize),
|
|
|
|
sbody + (srcOffset * elementSize),
|
|
|
|
length * elementSize);
|
|
|
|
} else {
|
|
|
|
memcpy(dbody + (dstOffset * elementSize),
|
|
|
|
sbody + (srcOffset * elementSize),
|
|
|
|
length * elementSize);
|
|
|
|
}
|
2007-07-07 23:47:35 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
t->exception = makeNullPointerException(t);
|
|
|
|
return;
|
|
|
|
}
|
2007-07-06 15:24:06 +00:00
|
|
|
|
2007-07-07 23:47:35 +00:00
|
|
|
t->exception = makeArrayStoreException(t);
|
2007-07-06 15:24:06 +00:00
|
|
|
}
|
|
|
|
|
2007-09-07 00:21:52 +00:00
|
|
|
jint JNICALL
|
2007-08-13 00:50:25 +00:00
|
|
|
System_identityHashCode(Thread* t, jclass, jobject o)
|
|
|
|
{
|
|
|
|
if (LIKELY(o)) {
|
|
|
|
return objectHash(t, *o);
|
|
|
|
} else {
|
|
|
|
t->exception = makeNullPointerException(t);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-09-07 00:21:52 +00:00
|
|
|
void JNICALL
|
2007-09-12 01:13:05 +00:00
|
|
|
Runtime_load(Thread* t, jclass, jstring name, jboolean mapName)
|
2007-07-21 17:50:26 +00:00
|
|
|
{
|
2007-09-12 01:13:05 +00:00
|
|
|
char n[stringLength(t, *name) + 1];
|
|
|
|
stringChars(t, *name, n);
|
2007-07-21 17:50:26 +00:00
|
|
|
|
2007-09-12 01:13:05 +00:00
|
|
|
for (System::Library* lib = t->vm->libraries; lib; lib = lib->next()) {
|
|
|
|
if (lib->matches(n, mapName)) {
|
|
|
|
// already loaded
|
|
|
|
return;
|
2007-07-21 17:50:26 +00:00
|
|
|
}
|
2007-09-12 01:13:05 +00:00
|
|
|
}
|
2007-07-21 17:50:26 +00:00
|
|
|
|
2007-09-12 01:13:05 +00:00
|
|
|
System::Library* lib;
|
|
|
|
if (LIKELY(t->vm->system->success
|
|
|
|
(t->vm->system->load(&lib, n, mapName, t->vm->libraries))))
|
|
|
|
{
|
|
|
|
t->vm->libraries = lib;
|
2007-07-21 17:50:26 +00:00
|
|
|
} else {
|
2007-09-12 01:13:05 +00:00
|
|
|
object message = makeString(t, "library not found: %s", n);
|
2007-09-13 00:21:37 +00:00
|
|
|
t->exception = makeUnsatisfiedLinkError(t, message);
|
2007-07-21 17:50:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-09-07 00:21:52 +00:00
|
|
|
void JNICALL
|
2007-07-27 00:06:05 +00:00
|
|
|
Runtime_gc(Thread* t, jobject)
|
2007-07-20 03:18:25 +00:00
|
|
|
{
|
|
|
|
ENTER(t, Thread::ExclusiveState);
|
|
|
|
|
|
|
|
collect(t, Heap::MajorCollection);
|
|
|
|
}
|
|
|
|
|
2007-09-07 00:21:52 +00:00
|
|
|
void JNICALL
|
2007-07-27 00:06:05 +00:00
|
|
|
Runtime_exit(Thread* t, jobject, jint code)
|
2007-07-21 17:50:26 +00:00
|
|
|
{
|
|
|
|
t->vm->system->exit(code);
|
|
|
|
}
|
|
|
|
|
2007-09-07 00:21:52 +00:00
|
|
|
jlong JNICALL
|
2007-07-27 02:39:53 +00:00
|
|
|
Runtime_freeMemory(Thread*, jobject)
|
|
|
|
{
|
|
|
|
// todo
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-09-07 00:21:52 +00:00
|
|
|
jobject JNICALL
|
2007-07-27 00:06:05 +00:00
|
|
|
Throwable_trace(Thread* t, jclass, jint skipCount)
|
2007-07-06 15:24:06 +00:00
|
|
|
{
|
|
|
|
int frame = t->frame;
|
|
|
|
while (skipCount-- and frame >= 0) {
|
|
|
|
frame = frameNext(t, frame);
|
|
|
|
}
|
|
|
|
|
2007-08-14 01:44:47 +00:00
|
|
|
// skip Throwable constructors
|
|
|
|
while (frame >= 0
|
|
|
|
and isAssignableFrom
|
|
|
|
(t, arrayBody(t, t->vm->types, Machine::ThrowableType),
|
|
|
|
methodClass(t, frameMethod(t, frame)))
|
|
|
|
and strcmp(reinterpret_cast<const int8_t*>("<init>"),
|
|
|
|
&byteArrayBody(t, methodName(t, frameMethod(t, frame)), 0))
|
|
|
|
== 0)
|
2007-07-06 15:24:06 +00:00
|
|
|
{
|
2007-08-14 01:44:47 +00:00
|
|
|
frame = frameNext(t, frame);
|
2007-07-06 15:24:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return pushReference(t, makeTrace(t, frame));
|
|
|
|
}
|
|
|
|
|
2007-09-07 00:21:52 +00:00
|
|
|
jarray JNICALL
|
2007-07-27 00:06:05 +00:00
|
|
|
Throwable_resolveTrace(Thread* t, jclass, jobject trace)
|
2007-07-14 17:31:01 +00:00
|
|
|
{
|
2007-07-14 18:37:04 +00:00
|
|
|
unsigned length = arrayLength(t, *trace);
|
|
|
|
object array = makeObjectArray
|
|
|
|
(t, arrayBody(t, t->vm->types, Machine::StackTraceElementType),
|
|
|
|
length, true);
|
|
|
|
PROTECT(t, array);
|
|
|
|
|
|
|
|
object e = 0;
|
|
|
|
PROTECT(t, e);
|
|
|
|
|
|
|
|
object class_ = 0;
|
|
|
|
PROTECT(t, class_);
|
|
|
|
|
|
|
|
for (unsigned i = 0; i < length; ++i) {
|
|
|
|
e = arrayBody(t, *trace, i);
|
|
|
|
|
|
|
|
class_ = className(t, methodClass(t, traceElementMethod(t, e)));
|
|
|
|
class_ = makeString(t, class_, 0, byteArrayLength(t, class_) - 1, 0);
|
|
|
|
|
|
|
|
object method = methodName(t, traceElementMethod(t, e));
|
|
|
|
method = makeString(t, method, 0, byteArrayLength(t, method) - 1, 0);
|
|
|
|
|
|
|
|
unsigned line = lineNumber
|
|
|
|
(t, traceElementMethod(t, e), traceElementIp(t, e));
|
|
|
|
|
|
|
|
object ste = makeStackTraceElement(t, class_, method, 0, line);
|
|
|
|
set(t, objectArrayBody(t, array, i), ste);
|
|
|
|
}
|
|
|
|
|
|
|
|
return pushReference(t, array);
|
2007-07-14 17:31:01 +00:00
|
|
|
}
|
|
|
|
|
2007-09-07 00:21:52 +00:00
|
|
|
jobject JNICALL
|
2007-07-27 00:06:05 +00:00
|
|
|
Thread_currentThread(Thread* t, jclass)
|
|
|
|
{
|
|
|
|
return pushReference(t, t->javaThread);
|
|
|
|
}
|
|
|
|
|
2007-09-07 00:21:52 +00:00
|
|
|
jlong JNICALL
|
2007-07-28 21:28:25 +00:00
|
|
|
Thread_doStart(Thread* t, jobject this_)
|
2007-07-07 18:09:16 +00:00
|
|
|
{
|
2007-07-28 21:28:25 +00:00
|
|
|
Thread* p = new (t->vm->system->allocate(sizeof(Thread)))
|
|
|
|
Thread(t->vm, *this_, t);
|
2007-07-07 18:09:16 +00:00
|
|
|
|
2007-07-28 21:28:25 +00:00
|
|
|
enter(p, Thread::ActiveState);
|
2007-07-07 18:09:16 +00:00
|
|
|
|
2007-07-30 01:27:42 +00:00
|
|
|
if (t->vm->system->success(t->vm->system->start(&(p->runnable)))) {
|
|
|
|
return reinterpret_cast<jlong>(p);
|
|
|
|
} else {
|
2007-07-28 21:28:25 +00:00
|
|
|
p->exit();
|
2007-07-30 01:27:42 +00:00
|
|
|
return 0;
|
2007-07-07 18:09:16 +00:00
|
|
|
}
|
|
|
|
}
|
2007-07-16 23:58:37 +00:00
|
|
|
|
2007-09-07 00:21:52 +00:00
|
|
|
void JNICALL
|
2007-07-28 21:28:25 +00:00
|
|
|
Thread_interrupt(Thread* t, jclass, jlong peer)
|
|
|
|
{
|
|
|
|
interrupt(t, reinterpret_cast<Thread*>(peer));
|
|
|
|
}
|
|
|
|
|
2007-09-07 00:21:52 +00:00
|
|
|
jlong JNICALL
|
2007-08-10 23:45:47 +00:00
|
|
|
ResourceInputStream_open(Thread* t, jclass, jstring path)
|
|
|
|
{
|
|
|
|
if (LIKELY(path)) {
|
|
|
|
char p[stringLength(t, *path) + 1];
|
|
|
|
stringChars(t, *path, p);
|
|
|
|
|
|
|
|
return reinterpret_cast<jlong>(t->vm->finder->find(p));
|
|
|
|
} else {
|
|
|
|
t->exception = makeNullPointerException(t);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-09-07 00:21:52 +00:00
|
|
|
jint JNICALL
|
2007-08-10 23:45:47 +00:00
|
|
|
ResourceInputStream_read(Thread*, jclass, jlong peer, jint position)
|
|
|
|
{
|
|
|
|
Finder::Data* d = reinterpret_cast<Finder::Data*>(peer);
|
|
|
|
if (position >= static_cast<jint>(d->length())) {
|
|
|
|
return -1;
|
|
|
|
} else {
|
|
|
|
return d->start()[position];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-09-07 00:21:52 +00:00
|
|
|
jint JNICALL
|
2007-08-10 23:45:47 +00:00
|
|
|
ResourceInputStream_read2(Thread* t, jclass, jlong peer, jint position,
|
|
|
|
jbyteArray b, jint offset, jint length)
|
|
|
|
{
|
2007-09-13 00:21:37 +00:00
|
|
|
if (length == 0) return 0;
|
|
|
|
|
2007-08-10 23:45:47 +00:00
|
|
|
Finder::Data* d = reinterpret_cast<Finder::Data*>(peer);
|
|
|
|
if (length > static_cast<jint>(d->length()) - position) {
|
|
|
|
length = static_cast<jint>(d->length()) - position;
|
|
|
|
}
|
2007-09-13 00:21:37 +00:00
|
|
|
if (length <= 0) {
|
2007-08-10 23:45:47 +00:00
|
|
|
return -1;
|
|
|
|
} else {
|
|
|
|
memcpy(&byteArrayBody(t, *b, offset), d->start() + position, length);
|
|
|
|
return length;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-09-07 00:21:52 +00:00
|
|
|
void JNICALL
|
2007-08-10 23:45:47 +00:00
|
|
|
ResourceInputStream_close(Thread*, jclass, jlong peer)
|
|
|
|
{
|
|
|
|
reinterpret_cast<Finder::Data*>(peer)->dispose();
|
|
|
|
}
|
|
|
|
|
2007-07-27 00:06:05 +00:00
|
|
|
} // namespace
|
|
|
|
|
|
|
|
namespace vm {
|
|
|
|
|
2007-07-06 15:24:06 +00:00
|
|
|
void
|
2007-07-27 00:06:05 +00:00
|
|
|
populateBuiltinMap(Thread* t, object map)
|
2007-07-06 15:24:06 +00:00
|
|
|
{
|
|
|
|
struct {
|
|
|
|
const char* key;
|
|
|
|
void* value;
|
|
|
|
} builtins[] = {
|
2007-07-24 03:16:59 +00:00
|
|
|
{ "Java_java_lang_Class_isAssignableFrom",
|
2007-07-27 00:06:05 +00:00
|
|
|
reinterpret_cast<void*>(::Class_isAssignableFrom) },
|
2007-07-29 23:32:23 +00:00
|
|
|
{ "Java_java_lang_Class_primitiveClass",
|
|
|
|
reinterpret_cast<void*>(::Class_primitiveClass) },
|
2007-08-01 23:48:36 +00:00
|
|
|
{ "Java_java_lang_Class_initialize",
|
|
|
|
reinterpret_cast<void*>(::Class_initialize) },
|
2007-07-24 01:44:20 +00:00
|
|
|
|
2007-07-30 23:19:05 +00:00
|
|
|
{ "Java_java_lang_ClassLoader_defineClass",
|
|
|
|
reinterpret_cast<void*>(::ClassLoader_defineClass) },
|
|
|
|
|
2007-08-27 13:46:17 +00:00
|
|
|
{ "Java_java_lang_System_getVMProperty",
|
|
|
|
reinterpret_cast<void*>(::System_getVMProperty) },
|
2007-07-16 23:58:37 +00:00
|
|
|
{ "Java_java_lang_System_arraycopy",
|
2007-07-27 00:06:05 +00:00
|
|
|
reinterpret_cast<void*>(::System_arraycopy) },
|
2007-07-21 17:50:26 +00:00
|
|
|
|
2007-07-30 23:19:05 +00:00
|
|
|
{ "Java_java_lang_SystemClassLoader_findClass",
|
|
|
|
reinterpret_cast<void*>(::SystemClassLoader_findClass) },
|
|
|
|
{ "Java_java_lang_SystemClassLoader_findLoadedClass",
|
|
|
|
reinterpret_cast<void*>(::SystemClassLoader_findLoadedClass) },
|
2007-08-10 23:45:47 +00:00
|
|
|
{ "Java_java_lang_SystemClassLoader_resourceExists",
|
|
|
|
reinterpret_cast<void*>(::SystemClassLoader_resourceExists) },
|
2007-07-30 23:19:05 +00:00
|
|
|
|
2007-09-12 01:13:05 +00:00
|
|
|
{ "Java_java_lang_Runtime_load",
|
|
|
|
reinterpret_cast<void*>(::Runtime_load) },
|
2007-07-21 17:50:26 +00:00
|
|
|
{ "Java_java_lang_Runtime_gc",
|
2007-07-27 00:06:05 +00:00
|
|
|
reinterpret_cast<void*>(::Runtime_gc) },
|
2007-08-19 19:45:51 +00:00
|
|
|
{ "Java_java_lang_Runtime_exit",
|
2007-07-27 00:06:05 +00:00
|
|
|
reinterpret_cast<void*>(::Runtime_exit) },
|
2007-08-19 19:45:51 +00:00
|
|
|
{ "Java_java_lang_Runtime_freeMemory",
|
|
|
|
reinterpret_cast<void*>(::Runtime_freeMemory) },
|
2007-07-16 23:58:37 +00:00
|
|
|
|
2007-07-29 00:02:32 +00:00
|
|
|
{ "Java_java_lang_String_intern",
|
|
|
|
reinterpret_cast<void*>(::String_intern) },
|
|
|
|
|
2007-07-21 22:36:51 +00:00
|
|
|
{ "Java_java_lang_Thread_doStart",
|
2007-07-28 21:28:25 +00:00
|
|
|
reinterpret_cast<void*>(::Thread_doStart) },
|
|
|
|
{ "Java_java_lang_Thread_interrupt",
|
|
|
|
reinterpret_cast<void*>(::Thread_interrupt) },
|
2007-07-21 20:44:39 +00:00
|
|
|
{ "Java_java_lang_Thread_currentThread",
|
2007-07-27 00:06:05 +00:00
|
|
|
reinterpret_cast<void*>(::Thread_currentThread) },
|
2007-07-16 23:58:37 +00:00
|
|
|
|
|
|
|
{ "Java_java_lang_Throwable_resolveTrace",
|
2007-07-27 00:06:05 +00:00
|
|
|
reinterpret_cast<void*>(::Throwable_resolveTrace) },
|
2007-07-16 23:58:37 +00:00
|
|
|
{ "Java_java_lang_Throwable_trace",
|
2007-07-27 00:06:05 +00:00
|
|
|
reinterpret_cast<void*>(::Throwable_trace) },
|
2007-07-16 23:58:37 +00:00
|
|
|
|
2007-08-18 17:53:30 +00:00
|
|
|
{ "Java_java_lang_Float_floatToRawIntBits",
|
|
|
|
reinterpret_cast<void*>(::Float_floatToRawIntBits) },
|
|
|
|
{ "Java_java_lang_Float_intBitsToFloat",
|
|
|
|
reinterpret_cast<void*>(::Float_intBitsToFloat) },
|
|
|
|
|
|
|
|
{ "Java_java_lang_Double_doubleToRawLongBits",
|
|
|
|
reinterpret_cast<void*>(::Double_doubleToRawLongBits) },
|
|
|
|
{ "Java_java_lang_Double_longBitsToDouble",
|
|
|
|
reinterpret_cast<void*>(::Double_longBitsToDouble) },
|
|
|
|
|
2007-07-12 23:46:08 +00:00
|
|
|
{ "Java_java_lang_Object_getClass",
|
2007-07-27 00:06:05 +00:00
|
|
|
reinterpret_cast<void*>(::Object_getClass) },
|
2007-07-07 23:47:35 +00:00
|
|
|
{ "Java_java_lang_Object_notify",
|
2007-07-27 00:06:05 +00:00
|
|
|
reinterpret_cast<void*>(::Object_notify) },
|
2007-07-07 23:47:35 +00:00
|
|
|
{ "Java_java_lang_Object_notifyAll",
|
2007-07-27 00:06:05 +00:00
|
|
|
reinterpret_cast<void*>(::Object_notifyAll) },
|
2007-07-16 23:58:37 +00:00
|
|
|
{ "Java_java_lang_Object_toString",
|
2007-07-27 00:06:05 +00:00
|
|
|
reinterpret_cast<void*>(::Object_toString) },
|
2007-07-16 23:58:37 +00:00
|
|
|
{ "Java_java_lang_Object_wait",
|
2007-07-27 00:06:05 +00:00
|
|
|
reinterpret_cast<void*>(::Object_wait) },
|
2007-08-13 00:50:25 +00:00
|
|
|
{ "Java_java_lang_Object_hashCode",
|
|
|
|
reinterpret_cast<void*>(::Object_hashCode) },
|
2007-08-15 01:14:55 +00:00
|
|
|
{ "Java_java_lang_Object_clone",
|
|
|
|
reinterpret_cast<void*>(::Object_clone) },
|
2007-07-16 23:58:37 +00:00
|
|
|
|
2007-07-27 02:39:53 +00:00
|
|
|
{ "Java_java_lang_reflect_Array_getLength",
|
|
|
|
reinterpret_cast<void*>(::Array_getLength) },
|
|
|
|
{ "Java_java_lang_reflect_Array_makeObjectArray",
|
|
|
|
reinterpret_cast<void*>(::Array_makeObjectArray) },
|
|
|
|
|
|
|
|
{ "Java_java_lang_reflect_Constructor_make",
|
|
|
|
reinterpret_cast<void*>(::Constructor_make) },
|
|
|
|
|
2007-08-18 17:15:03 +00:00
|
|
|
{ "Java_java_lang_reflect_Field_getPrimitive",
|
|
|
|
reinterpret_cast<void*>(::Field_getPrimitive) },
|
|
|
|
{ "Java_java_lang_reflect_Field_getObject",
|
|
|
|
reinterpret_cast<void*>(::Field_getObject) },
|
|
|
|
{ "Java_java_lang_reflect_Field_setPrimitive",
|
|
|
|
reinterpret_cast<void*>(::Field_setPrimitive) },
|
|
|
|
{ "Java_java_lang_reflect_Field_setObject",
|
|
|
|
reinterpret_cast<void*>(::Field_setObject) },
|
2007-07-24 03:16:59 +00:00
|
|
|
|
2007-07-30 23:19:05 +00:00
|
|
|
{ "Java_java_lang_reflect_Method_getCaller",
|
|
|
|
reinterpret_cast<void*>(::Method_getCaller) },
|
2007-07-24 03:16:59 +00:00
|
|
|
{ "Java_java_lang_reflect_Method_invoke",
|
2007-07-27 00:06:05 +00:00
|
|
|
reinterpret_cast<void*>(::Method_invoke) },
|
2007-07-24 03:16:59 +00:00
|
|
|
|
2007-08-10 23:45:47 +00:00
|
|
|
{ "Java_java_net_URL_00024ResourceInputStream_open",
|
|
|
|
reinterpret_cast<void*>(::ResourceInputStream_open) },
|
2007-08-19 19:45:51 +00:00
|
|
|
{ "Java_java_net_URL_00024ResourceInputStream_read__JI",
|
2007-08-10 23:45:47 +00:00
|
|
|
reinterpret_cast<void*>(::ResourceInputStream_read) },
|
2007-08-19 19:45:51 +00:00
|
|
|
{ "Java_java_net_URL_00024ResourceInputStream_read__JI_3BII",
|
2007-08-10 23:45:47 +00:00
|
|
|
reinterpret_cast<void*>(::ResourceInputStream_read2) },
|
|
|
|
{ "Java_java_net_URL_00024ResourceInputStream_close",
|
|
|
|
reinterpret_cast<void*>(::ResourceInputStream_close) },
|
|
|
|
|
2007-08-13 00:50:25 +00:00
|
|
|
{ "Java_java_io_ObjectInputStream_makeInstance",
|
|
|
|
reinterpret_cast<void*>(::ObjectInputStream_makeInstance) },
|
|
|
|
|
2007-07-06 15:24:06 +00:00
|
|
|
{ 0, 0 }
|
|
|
|
};
|
|
|
|
|
|
|
|
for (unsigned i = 0; builtins[i].key; ++i) {
|
|
|
|
object key = makeByteArray(t, builtins[i].key);
|
|
|
|
PROTECT(t, key);
|
|
|
|
object value = makePointer(t, builtins[i].value);
|
|
|
|
|
|
|
|
hashMapInsert(t, map, key, value, byteArrayHash);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace vm
|