corda/src/builtin.cpp

256 lines
6.1 KiB
C++
Raw Normal View History

2007-07-06 23:50:26 +00:00
#include "builtin.h"
#include "machine.h"
2007-07-07 18:09:16 +00:00
#include "run.h"
namespace vm {
namespace builtin {
2007-07-07 23:47:35 +00:00
jstring
toString(Thread* t, jobject this_)
{
object s = makeString
(t, "%s@%p",
&byteArrayBody(t, className(t, objectClass(t, *this_)), 0),
*this_);
return pushReference(t, s);
}
jclass
getClass(Thread* t, jobject this_)
{
return pushReference(t, objectClass(t, *this_));
}
2007-07-07 23:47:35 +00:00
void
wait(Thread* t, jobject this_, jlong milliseconds)
{
vm::wait(t, *this_, milliseconds);
}
void
notify(Thread* t, jobject this_)
{
vm::notify(t, *this_);
}
void
notifyAll(Thread* t, jobject this_)
{
vm::notifyAll(t, *this_);
}
2007-07-11 01:38:06 +00:00
void
sleep(Thread* t, jlong milliseconds)
{
if (milliseconds == 0) milliseconds = INT64_MAX;
ENTER(t, Thread::IdleState);
t->vm->system->sleep(milliseconds);
}
void
2007-07-06 23:18:40 +00:00
loadLibrary(Thread* t, jstring nameString)
{
if (LIKELY(nameString)) {
object n = *nameString;
char name[stringLength(t, n) + 1];
stringChars(t, n, name);
System::Library* lib;
if (LIKELY(t->vm->system->success
(t->vm->system->load(&lib, name, t->vm->libraries))))
{
t->vm->libraries = lib;
} else {
object message = makeString(t, "library not found: %s", name);
t->exception = makeRuntimeException(t, message);
}
} else {
t->exception = makeNullPointerException(t);
}
}
2007-07-07 23:47:35 +00:00
void
arraycopy(Thread* t, jobject src, jint srcOffset, jobject dst, jint dstOffset,
jint length)
{
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)) {
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
{
uint8_t* sbody = &cast<uint8_t>(s, 2 * BytesPerWord);
uint8_t* dbody = &cast<uint8_t>(d, 2 * BytesPerWord);
2007-07-11 01:38:06 +00:00
memcpy(dbody + (dstOffset * elementSize),
sbody + (srcOffset * elementSize),
2007-07-07 23:47:35 +00:00
length * elementSize);
return;
}
}
}
} else {
t->exception = makeNullPointerException(t);
return;
}
2007-07-07 23:47:35 +00:00
t->exception = makeArrayStoreException(t);
}
jobject
2007-07-06 23:18:40 +00:00
trace(Thread* t, jint skipCount)
{
int frame = t->frame;
while (skipCount-- and frame >= 0) {
frame = frameNext(t, frame);
}
if (methodClass(t, frameMethod(t, frame))
== arrayBody(t, t->vm->types, Machine::ThrowableType))
{
// skip Throwable constructors
while (strcmp(reinterpret_cast<const int8_t*>("<init>"),
&byteArrayBody(t, methodName(t, frameMethod(t, frame)), 0))
== 0)
{
frame = frameNext(t, frame);
}
}
return pushReference(t, makeTrace(t, frame));
}
jarray
resolveTrace(Thread* t, jobject trace)
{
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-07 18:09:16 +00:00
void
start(Thread* t, jobject this_)
{
Thread* p = reinterpret_cast<Thread*>(threadPeer(t, *this_));
if (p) {
object message = makeString(t, "thread already started");
t->exception = makeIllegalStateException(t, message);
} else {
p = new (t->vm->system->allocate(sizeof(Thread)))
Thread(t->vm, t->vm->system, *this_, t);
enter(p, Thread::ActiveState);
class Runnable: public System::Runnable {
public:
2007-07-11 01:38:06 +00:00
Runnable(System* s, Thread* t): s(s), t(t) { }
2007-07-07 18:09:16 +00:00
virtual void run(System::Thread* st) {
t->systemThread = st;
vm::run(t, "java/lang/Thread", "run", "()V", t->javaThread);
t->exit();
}
2007-07-11 01:38:06 +00:00
virtual void dispose() {
s->free(this);
}
System* s;
2007-07-07 18:09:16 +00:00
Thread* t;
2007-07-11 01:38:06 +00:00
}* r = new (t->vm->system->allocate(sizeof(Runnable)))
Runnable(t->vm->system, p);
2007-07-07 18:09:16 +00:00
2007-07-11 01:38:06 +00:00
if (not t->vm->system->success(t->vm->system->start(r))) {
2007-07-07 18:09:16 +00:00
p->exit();
object message = makeString(t, "unable to start native thread");
t->exception = makeRuntimeException(t, message);
}
}
}
void
populate(Thread* t, object map)
{
struct {
const char* key;
void* value;
} builtins[] = {
{ "Java_java_lang_System_arraycopy",
reinterpret_cast<void*>(arraycopy) },
{ "Java_java_lang_System_loadLibrary",
reinterpret_cast<void*>(loadLibrary) },
{ "Java_java_lang_Thread_start",
reinterpret_cast<void*>(start) },
{ "Java_java_lang_Thread_sleep",
reinterpret_cast<void*>(sleep) },
{ "Java_java_lang_Throwable_resolveTrace",
reinterpret_cast<void*>(resolveTrace) },
{ "Java_java_lang_Throwable_trace",
reinterpret_cast<void*>(trace) },
{ "Java_java_lang_Object_getClass",
reinterpret_cast<void*>(getClass) },
2007-07-07 23:47:35 +00:00
{ "Java_java_lang_Object_notify",
reinterpret_cast<void*>(notify) },
{ "Java_java_lang_Object_notifyAll",
reinterpret_cast<void*>(notifyAll) },
{ "Java_java_lang_Object_toString",
reinterpret_cast<void*>(toString) },
{ "Java_java_lang_Object_wait",
reinterpret_cast<void*>(wait) },
{ 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 builtin
} // namespace vm