2009-03-15 18:02:36 +00:00
|
|
|
/* Copyright (c) 2008-2009, Avian Contributors
|
2008-02-19 18:06:52 +00:00
|
|
|
|
|
|
|
Permission to use, copy, modify, and/or distribute this software
|
|
|
|
for any purpose with or without fee is hereby granted, provided
|
|
|
|
that the above copyright notice and this permission notice appear
|
|
|
|
in all copies.
|
|
|
|
|
|
|
|
There is NO WARRANTY for this software. See license.txt for
|
|
|
|
details. */
|
|
|
|
|
2007-07-06 23:50:26 +00:00
|
|
|
#include "jnienv.h"
|
|
|
|
#include "machine.h"
|
2007-11-26 23:15:53 +00:00
|
|
|
#include "util.h"
|
2007-07-14 17:31:01 +00:00
|
|
|
#include "stream.h"
|
|
|
|
#include "constants.h"
|
2007-09-24 01:39:03 +00:00
|
|
|
#include "processor.h"
|
2007-07-06 23:50:26 +00:00
|
|
|
|
|
|
|
using namespace vm;
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
2007-07-07 18:09:16 +00:00
|
|
|
bool
|
|
|
|
find(Thread* t, Thread* o)
|
|
|
|
{
|
2008-04-11 22:48:05 +00:00
|
|
|
return (t == o)
|
|
|
|
or (t->peer and find(t->peer, o))
|
|
|
|
or (t->child and find(t->child, o));
|
2007-07-07 18:09:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
join(Thread* t, Thread* o)
|
|
|
|
{
|
|
|
|
if (t != o) {
|
|
|
|
o->systemThread->join();
|
2007-07-18 01:33:00 +00:00
|
|
|
o->state = Thread::JoinedState;
|
2007-07-07 18:09:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-11-27 22:23:00 +00:00
|
|
|
unsigned
|
|
|
|
count(Thread* t, Thread* o)
|
|
|
|
{
|
|
|
|
unsigned c = 0;
|
|
|
|
|
|
|
|
if (t != o) ++ c;
|
2008-04-11 22:48:05 +00:00
|
|
|
if (t->peer) c += count(t->peer, o);
|
2007-11-27 22:23:00 +00:00
|
|
|
if (t->child) c += count(t->child, o);
|
|
|
|
|
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
|
|
|
Thread**
|
|
|
|
fill(Thread* t, Thread* o, Thread** array)
|
|
|
|
{
|
|
|
|
if (t != o) *(array++) = t;
|
2008-07-21 20:41:29 +00:00
|
|
|
if (t->peer) array = fill(t->peer, o, array);
|
|
|
|
if (t->child) array = fill(t->child, o, array);
|
2007-11-27 22:23:00 +00:00
|
|
|
|
|
|
|
return array;
|
|
|
|
}
|
|
|
|
|
2007-07-07 18:09:16 +00:00
|
|
|
void
|
|
|
|
dispose(Thread* t, Thread* o, bool remove)
|
|
|
|
{
|
|
|
|
if (remove) {
|
2007-11-27 22:23:00 +00:00
|
|
|
// debug
|
|
|
|
expect(t, find(t->m->rootThread, o));
|
|
|
|
|
|
|
|
unsigned c = count(t->m->rootThread, o);
|
|
|
|
Thread* threads[c];
|
|
|
|
fill(t->m->rootThread, o, threads);
|
|
|
|
// end debug
|
|
|
|
|
2007-07-07 18:09:16 +00:00
|
|
|
if (o->parent) {
|
2007-11-27 23:04:15 +00:00
|
|
|
Thread* previous = 0;
|
2007-11-27 22:23:00 +00:00
|
|
|
for (Thread* p = o->parent->child; p;) {
|
|
|
|
if (p == o) {
|
|
|
|
if (p == o->parent->child) {
|
|
|
|
o->parent->child = p->peer;
|
|
|
|
} else {
|
|
|
|
previous->peer = p->peer;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
previous = p;
|
|
|
|
p = p->peer;
|
2007-07-07 18:09:16 +00:00
|
|
|
}
|
2007-11-27 22:23:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for (Thread* p = o->child; p;) {
|
|
|
|
Thread* next = p->peer;
|
|
|
|
p->peer = o->parent->child;
|
|
|
|
o->parent->child = p;
|
|
|
|
p->parent = o->parent;
|
|
|
|
p = next;
|
2007-07-07 18:09:16 +00:00
|
|
|
}
|
|
|
|
} else if (o->child) {
|
2007-09-24 01:39:03 +00:00
|
|
|
t->m->rootThread = o->child;
|
2007-11-27 22:23:00 +00:00
|
|
|
|
|
|
|
for (Thread* p = o->peer; p;) {
|
|
|
|
Thread* next = p->peer;
|
|
|
|
p->peer = t->m->rootThread;
|
|
|
|
t->m->rootThread = p;
|
|
|
|
p = next;
|
|
|
|
}
|
2007-07-07 18:09:16 +00:00
|
|
|
} else if (o->peer) {
|
2007-09-24 01:39:03 +00:00
|
|
|
t->m->rootThread = o->peer;
|
2007-07-07 18:09:16 +00:00
|
|
|
} else {
|
|
|
|
abort(t);
|
|
|
|
}
|
|
|
|
|
2007-11-27 22:23:00 +00:00
|
|
|
// debug
|
|
|
|
expect(t, not find(t->m->rootThread, o));
|
|
|
|
|
|
|
|
for (unsigned i = 0; i < c; ++i) {
|
|
|
|
expect(t, find(t->m->rootThread, threads[i]));
|
|
|
|
}
|
|
|
|
// end debug
|
2007-07-07 18:09:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
o->dispose();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
joinAll(Thread* m, Thread* o)
|
|
|
|
{
|
|
|
|
for (Thread* p = o->child; p;) {
|
|
|
|
Thread* child = p;
|
|
|
|
p = p->peer;
|
|
|
|
joinAll(m, child);
|
|
|
|
}
|
|
|
|
|
|
|
|
join(m, o);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
disposeAll(Thread* m, Thread* o)
|
|
|
|
{
|
|
|
|
for (Thread* p = o->child; p;) {
|
|
|
|
Thread* child = p;
|
|
|
|
p = p->peer;
|
|
|
|
disposeAll(m, child);
|
|
|
|
}
|
|
|
|
|
|
|
|
dispose(m, o, false);
|
|
|
|
}
|
|
|
|
|
2007-07-06 23:50:26 +00:00
|
|
|
void
|
2007-07-07 18:09:16 +00:00
|
|
|
killZombies(Thread* t, Thread* o)
|
2007-07-06 23:50:26 +00:00
|
|
|
{
|
2007-07-07 18:09:16 +00:00
|
|
|
for (Thread* p = o->child; p;) {
|
|
|
|
Thread* child = p;
|
|
|
|
p = p->peer;
|
|
|
|
killZombies(t, child);
|
|
|
|
}
|
|
|
|
|
2007-07-18 01:33:00 +00:00
|
|
|
switch (o->state) {
|
|
|
|
case Thread::ZombieState:
|
2007-07-07 18:09:16 +00:00
|
|
|
join(t, o);
|
2007-07-18 01:33:00 +00:00
|
|
|
// fall through
|
|
|
|
|
|
|
|
case Thread::JoinedState:
|
2007-07-07 18:09:16 +00:00
|
|
|
dispose(t, o, true);
|
2007-07-18 01:33:00 +00:00
|
|
|
|
|
|
|
default: break;
|
2007-07-07 18:09:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-08-18 21:24:29 +00:00
|
|
|
unsigned
|
|
|
|
footprint(Thread* t)
|
|
|
|
{
|
2008-07-12 01:21:53 +00:00
|
|
|
unsigned n = t->heapOffset + t->heapIndex + t->backupHeapIndex;
|
2007-08-18 21:24:29 +00:00
|
|
|
|
|
|
|
for (Thread* c = t->child; c; c = c->peer) {
|
|
|
|
n += footprint(c);
|
|
|
|
}
|
|
|
|
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
2007-07-07 23:47:35 +00:00
|
|
|
void
|
|
|
|
visitRoots(Thread* t, Heap::Visitor* v)
|
|
|
|
{
|
|
|
|
if (t->state != Thread::ZombieState) {
|
2007-10-28 19:14:53 +00:00
|
|
|
v->visit(&(t->javaThread));
|
|
|
|
v->visit(&(t->exception));
|
2007-07-07 23:47:35 +00:00
|
|
|
|
2007-09-24 01:39:03 +00:00
|
|
|
t->m->processor->visitObjects(t, v);
|
2007-07-07 23:47:35 +00:00
|
|
|
|
|
|
|
for (Thread::Protector* p = t->protector; p; p = p->next) {
|
2007-10-12 17:56:43 +00:00
|
|
|
p->visit(v);
|
2007-07-07 23:47:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (Thread* c = t->child; c; c = c->peer) {
|
|
|
|
visitRoots(c, v);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-07-29 23:32:23 +00:00
|
|
|
void
|
2007-11-02 14:15:06 +00:00
|
|
|
walk(Thread*, Heap::Walker* w, uint32_t* mask, unsigned fixedSize,
|
2008-11-11 15:20:49 +00:00
|
|
|
unsigned arrayElementSize, unsigned arrayLength, unsigned start)
|
2007-11-02 14:15:06 +00:00
|
|
|
{
|
|
|
|
unsigned fixedSizeInWords = ceiling(fixedSize, BytesPerWord);
|
|
|
|
unsigned arrayElementSizeInWords
|
|
|
|
= ceiling(arrayElementSize, BytesPerWord);
|
|
|
|
|
2008-11-11 15:20:49 +00:00
|
|
|
for (unsigned i = start; i < fixedSizeInWords; ++i) {
|
2007-11-02 14:15:06 +00:00
|
|
|
if (mask[i / 32] & (static_cast<uint32_t>(1) << (i % 32))) {
|
|
|
|
if (not w->visit(i)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool arrayObjectElements = false;
|
|
|
|
for (unsigned j = 0; j < arrayElementSizeInWords; ++j) {
|
|
|
|
unsigned k = fixedSizeInWords + j;
|
|
|
|
if (mask[k / 32] & (static_cast<uint32_t>(1) << (k % 32))) {
|
|
|
|
arrayObjectElements = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (arrayObjectElements) {
|
2008-11-11 15:20:49 +00:00
|
|
|
unsigned arrayStart;
|
|
|
|
unsigned elementStart;
|
|
|
|
if (start > fixedSizeInWords) {
|
|
|
|
unsigned s = start - fixedSizeInWords;
|
|
|
|
arrayStart = s / arrayElementSizeInWords;
|
|
|
|
elementStart = s % arrayElementSizeInWords;
|
|
|
|
} else {
|
|
|
|
arrayStart = 0;
|
|
|
|
elementStart = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (unsigned i = arrayStart; i < arrayLength; ++i) {
|
|
|
|
for (unsigned j = elementStart; j < arrayElementSizeInWords; ++j) {
|
2007-11-02 14:15:06 +00:00
|
|
|
unsigned k = fixedSizeInWords + j;
|
|
|
|
if (mask[k / 32] & (static_cast<uint32_t>(1) << (k % 32))) {
|
|
|
|
if (not w->visit
|
|
|
|
(fixedSizeInWords + (i * arrayElementSizeInWords) + j))
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-10-28 01:54:30 +00:00
|
|
|
void
|
|
|
|
finalizerTargetUnreachable(Thread* t, Heap::Visitor* v, object* p)
|
2007-07-29 23:32:23 +00:00
|
|
|
{
|
2007-10-28 19:14:53 +00:00
|
|
|
v->visit(&finalizerTarget(t, *p));
|
2007-07-29 23:32:23 +00:00
|
|
|
|
|
|
|
object finalizer = *p;
|
|
|
|
*p = finalizerNext(t, finalizer);
|
2007-09-24 01:39:03 +00:00
|
|
|
finalizerNext(t, finalizer) = t->m->finalizeQueue;
|
|
|
|
t->m->finalizeQueue = finalizer;
|
2007-07-29 23:32:23 +00:00
|
|
|
}
|
|
|
|
|
2007-07-20 01:07:30 +00:00
|
|
|
void
|
2007-10-28 01:54:30 +00:00
|
|
|
referenceTargetUnreachable(Thread* t, Heap::Visitor* v, object* p)
|
2007-07-20 01:07:30 +00:00
|
|
|
{
|
2007-07-29 23:32:23 +00:00
|
|
|
if (DebugReferences) {
|
|
|
|
fprintf(stderr, "target %p unreachable for reference %p\n",
|
|
|
|
jreferenceTarget(t, *p), *p);
|
|
|
|
}
|
2007-07-21 17:50:26 +00:00
|
|
|
|
2007-10-28 19:14:53 +00:00
|
|
|
v->visit(p);
|
2007-07-20 01:07:30 +00:00
|
|
|
jreferenceTarget(t, *p) = 0;
|
|
|
|
|
2007-07-20 03:18:25 +00:00
|
|
|
if (jreferenceQueue(t, *p)
|
2007-09-24 01:39:03 +00:00
|
|
|
and t->m->heap->status(jreferenceQueue(t, *p)) != Heap::Unreachable)
|
2007-07-20 03:18:25 +00:00
|
|
|
{
|
2007-07-20 01:07:30 +00:00
|
|
|
// queue is reachable - add the reference
|
|
|
|
|
2007-10-28 19:14:53 +00:00
|
|
|
v->visit(&jreferenceQueue(t, *p));
|
2007-07-20 01:07:30 +00:00
|
|
|
|
|
|
|
object q = jreferenceQueue(t, *p);
|
|
|
|
|
2007-11-04 21:15:28 +00:00
|
|
|
set(t, *p, JreferenceJNext, *p);
|
2007-07-20 01:07:30 +00:00
|
|
|
if (referenceQueueFront(t, q)) {
|
2007-11-04 21:15:28 +00:00
|
|
|
set(t, referenceQueueRear(t, q), JreferenceJNext, *p);
|
2007-07-20 01:07:30 +00:00
|
|
|
} else {
|
2007-10-22 17:22:30 +00:00
|
|
|
set(t, q, ReferenceQueueFront, *p);
|
2007-07-20 01:07:30 +00:00
|
|
|
}
|
2007-10-22 17:22:30 +00:00
|
|
|
set(t, q, ReferenceQueueRear, *p);
|
2007-07-20 01:07:30 +00:00
|
|
|
|
|
|
|
jreferenceQueue(t, *p) = 0;
|
|
|
|
}
|
2007-07-29 23:32:23 +00:00
|
|
|
|
2007-11-04 21:15:28 +00:00
|
|
|
*p = jreferenceVmNext(t, *p);
|
2007-07-20 01:07:30 +00:00
|
|
|
}
|
|
|
|
|
2007-07-20 03:18:25 +00:00
|
|
|
void
|
2007-10-28 01:54:30 +00:00
|
|
|
referenceUnreachable(Thread* t, Heap::Visitor* v, object* p)
|
2007-07-20 03:18:25 +00:00
|
|
|
{
|
2007-07-29 23:32:23 +00:00
|
|
|
if (DebugReferences) {
|
|
|
|
fprintf(stderr, "reference %p unreachable (target %p)\n",
|
|
|
|
*p, jreferenceTarget(t, *p));
|
|
|
|
}
|
2007-07-21 17:50:26 +00:00
|
|
|
|
2007-07-20 03:18:25 +00:00
|
|
|
if (jreferenceQueue(t, *p)
|
2007-09-24 01:39:03 +00:00
|
|
|
and t->m->heap->status(jreferenceQueue(t, *p)) != Heap::Unreachable)
|
2007-07-20 03:18:25 +00:00
|
|
|
{
|
|
|
|
// queue is reachable - add the reference
|
2007-10-28 01:54:30 +00:00
|
|
|
referenceTargetUnreachable(t, v, p);
|
2007-07-29 23:32:23 +00:00
|
|
|
} else {
|
2007-11-04 21:15:28 +00:00
|
|
|
*p = jreferenceVmNext(t, *p);
|
2007-07-20 03:18:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-07-20 01:07:30 +00:00
|
|
|
void
|
2007-10-28 01:54:30 +00:00
|
|
|
referenceTargetReachable(Thread* t, Heap::Visitor* v, object* p)
|
2007-07-20 01:07:30 +00:00
|
|
|
{
|
2007-07-29 23:32:23 +00:00
|
|
|
if (DebugReferences) {
|
|
|
|
fprintf(stderr, "target %p reachable for reference %p\n",
|
|
|
|
jreferenceTarget(t, *p), *p);
|
|
|
|
}
|
2007-07-21 17:50:26 +00:00
|
|
|
|
2007-10-28 19:14:53 +00:00
|
|
|
v->visit(p);
|
|
|
|
v->visit(&jreferenceTarget(t, *p));
|
2007-07-20 01:07:30 +00:00
|
|
|
|
2007-09-24 01:39:03 +00:00
|
|
|
if (t->m->heap->status(jreferenceQueue(t, *p)) == Heap::Unreachable) {
|
2007-07-20 01:07:30 +00:00
|
|
|
jreferenceQueue(t, *p) = 0;
|
|
|
|
} else {
|
2007-10-28 19:14:53 +00:00
|
|
|
v->visit(&jreferenceQueue(t, *p));
|
2007-07-20 01:07:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-07-10 01:43:43 +00:00
|
|
|
void
|
|
|
|
postVisit(Thread* t, Heap::Visitor* v)
|
|
|
|
{
|
2007-09-24 01:39:03 +00:00
|
|
|
Machine* m = t->m;
|
2007-10-28 01:54:30 +00:00
|
|
|
bool major = m->heap->collectionType() == Heap::MajorCollection;
|
2007-07-10 01:43:43 +00:00
|
|
|
|
2008-08-11 21:16:55 +00:00
|
|
|
assert(t, m->finalizeQueue == 0);
|
2007-07-29 23:32:23 +00:00
|
|
|
|
2007-07-10 01:43:43 +00:00
|
|
|
object firstNewTenuredFinalizer = 0;
|
|
|
|
object lastNewTenuredFinalizer = 0;
|
|
|
|
|
|
|
|
for (object* p = &(m->finalizers); *p;) {
|
2007-10-28 19:14:53 +00:00
|
|
|
v->visit(p);
|
2007-07-10 01:43:43 +00:00
|
|
|
|
|
|
|
if (m->heap->status(finalizerTarget(t, *p)) == Heap::Unreachable) {
|
|
|
|
// target is unreachable - queue it up for finalization
|
2007-10-28 01:54:30 +00:00
|
|
|
finalizerTargetUnreachable(t, v, p);
|
2007-07-10 01:43:43 +00:00
|
|
|
} else {
|
|
|
|
// target is reachable
|
2007-10-28 19:14:53 +00:00
|
|
|
v->visit(&finalizerTarget(t, *p));
|
2007-07-10 01:43:43 +00:00
|
|
|
|
|
|
|
if (m->heap->status(*p) == Heap::Tenured) {
|
|
|
|
// the finalizer is tenured, so we remove it from
|
|
|
|
// m->finalizers and later add it to m->tenuredFinalizers
|
|
|
|
|
|
|
|
if (lastNewTenuredFinalizer == 0) {
|
|
|
|
lastNewTenuredFinalizer = *p;
|
|
|
|
}
|
|
|
|
|
|
|
|
object finalizer = *p;
|
|
|
|
*p = finalizerNext(t, finalizer);
|
|
|
|
finalizerNext(t, finalizer) = firstNewTenuredFinalizer;
|
|
|
|
firstNewTenuredFinalizer = finalizer;
|
|
|
|
} else {
|
|
|
|
p = &finalizerNext(t, *p);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
object firstNewTenuredWeakReference = 0;
|
|
|
|
object lastNewTenuredWeakReference = 0;
|
|
|
|
|
|
|
|
for (object* p = &(m->weakReferences); *p;) {
|
|
|
|
if (m->heap->status(*p) == Heap::Unreachable) {
|
2007-07-20 03:18:25 +00:00
|
|
|
// reference is unreachable
|
2007-10-28 01:54:30 +00:00
|
|
|
referenceUnreachable(t, v, p);
|
2007-08-14 01:44:47 +00:00
|
|
|
} else if (m->heap->status(jreferenceTarget(t, *p))
|
2007-08-14 00:37:00 +00:00
|
|
|
== Heap::Unreachable)
|
|
|
|
{
|
2007-07-20 03:18:25 +00:00
|
|
|
// target is unreachable
|
2007-10-28 01:54:30 +00:00
|
|
|
referenceTargetUnreachable(t, v, p);
|
2007-07-10 01:43:43 +00:00
|
|
|
} else {
|
|
|
|
// both reference and target are reachable
|
2007-10-28 01:54:30 +00:00
|
|
|
referenceTargetReachable(t, v, p);
|
2007-07-10 01:43:43 +00:00
|
|
|
|
|
|
|
if (m->heap->status(*p) == Heap::Tenured) {
|
|
|
|
// the reference is tenured, so we remove it from
|
|
|
|
// m->weakReferences and later add it to
|
|
|
|
// m->tenuredWeakReferences
|
|
|
|
|
|
|
|
if (lastNewTenuredWeakReference == 0) {
|
|
|
|
lastNewTenuredWeakReference = *p;
|
|
|
|
}
|
|
|
|
|
|
|
|
object reference = *p;
|
2007-11-04 21:15:28 +00:00
|
|
|
*p = jreferenceVmNext(t, reference);
|
|
|
|
jreferenceVmNext(t, reference) = firstNewTenuredWeakReference;
|
2007-07-10 01:43:43 +00:00
|
|
|
firstNewTenuredWeakReference = reference;
|
|
|
|
} else {
|
2007-11-04 21:15:28 +00:00
|
|
|
p = &jreferenceVmNext(t, *p);
|
2007-07-10 01:43:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-10-28 01:54:30 +00:00
|
|
|
if (major) {
|
2007-07-10 01:43:43 +00:00
|
|
|
for (object* p = &(m->tenuredFinalizers); *p;) {
|
2007-10-28 19:14:53 +00:00
|
|
|
v->visit(p);
|
2007-07-10 01:43:43 +00:00
|
|
|
|
|
|
|
if (m->heap->status(finalizerTarget(t, *p)) == Heap::Unreachable) {
|
|
|
|
// target is unreachable - queue it up for finalization
|
2007-10-28 01:54:30 +00:00
|
|
|
finalizerTargetUnreachable(t, v, p);
|
2007-07-10 01:43:43 +00:00
|
|
|
} else {
|
|
|
|
// target is reachable
|
2007-10-28 19:14:53 +00:00
|
|
|
v->visit(&finalizerTarget(t, *p));
|
2007-07-10 01:43:43 +00:00
|
|
|
p = &finalizerNext(t, *p);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (object* p = &(m->tenuredWeakReferences); *p;) {
|
|
|
|
if (m->heap->status(*p) == Heap::Unreachable) {
|
2007-07-20 03:18:25 +00:00
|
|
|
// reference is unreachable
|
2007-10-28 01:54:30 +00:00
|
|
|
referenceUnreachable(t, v, p);
|
2007-08-14 01:44:47 +00:00
|
|
|
} else if (m->heap->status(jreferenceTarget(t, *p))
|
2007-07-10 01:43:43 +00:00
|
|
|
== Heap::Unreachable)
|
|
|
|
{
|
2007-07-20 03:18:25 +00:00
|
|
|
// target is unreachable
|
2007-10-28 01:54:30 +00:00
|
|
|
referenceTargetUnreachable(t, v, p);
|
2007-07-10 01:43:43 +00:00
|
|
|
} else {
|
2007-07-20 03:18:25 +00:00
|
|
|
// both reference and target are reachable
|
2007-10-28 01:54:30 +00:00
|
|
|
referenceTargetReachable(t, v, p);
|
2007-11-04 21:15:28 +00:00
|
|
|
p = &jreferenceVmNext(t, *p);
|
2007-07-10 01:43:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (lastNewTenuredFinalizer) {
|
|
|
|
finalizerNext(t, lastNewTenuredFinalizer) = m->tenuredFinalizers;
|
2007-07-11 13:35:28 +00:00
|
|
|
m->tenuredFinalizers = firstNewTenuredFinalizer;
|
2007-07-10 01:43:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (lastNewTenuredWeakReference) {
|
2008-08-11 21:16:55 +00:00
|
|
|
jreferenceVmNext(t, lastNewTenuredWeakReference)
|
|
|
|
= m->tenuredWeakReferences;
|
2007-07-11 13:35:28 +00:00
|
|
|
m->tenuredWeakReferences = firstNewTenuredWeakReference;
|
2007-07-10 01:43:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-07-07 23:47:35 +00:00
|
|
|
void
|
|
|
|
postCollect(Thread* t)
|
|
|
|
{
|
2007-07-16 23:58:37 +00:00
|
|
|
#ifdef VM_STRESS
|
2008-11-22 21:47:18 +00:00
|
|
|
t->m->heap->free(t->defaultHeap, ThreadHeapSizeInBytes);
|
2007-09-13 03:15:16 +00:00
|
|
|
t->defaultHeap = static_cast<uintptr_t*>
|
2008-11-22 21:47:18 +00:00
|
|
|
(t->m->heap->allocate(ThreadHeapSizeInBytes));
|
2009-03-04 03:05:48 +00:00
|
|
|
memset(t->defaultHeap, 0, ThreadHeapSizeInBytes);
|
2007-07-16 23:58:37 +00:00
|
|
|
#endif
|
|
|
|
|
2009-03-04 03:05:48 +00:00
|
|
|
if (t->heap == t->defaultHeap) {
|
|
|
|
memset(t->defaultHeap, 0, t->heapIndex * BytesPerWord);
|
|
|
|
} else {
|
|
|
|
memset(t->defaultHeap, 0, ThreadHeapSizeInBytes);
|
|
|
|
t->heap = t->defaultHeap;
|
|
|
|
}
|
|
|
|
|
2007-08-23 02:24:25 +00:00
|
|
|
t->heapOffset = 0;
|
2007-08-22 14:50:29 +00:00
|
|
|
t->heapIndex = 0;
|
2007-07-07 23:47:35 +00:00
|
|
|
|
2008-04-09 19:08:13 +00:00
|
|
|
if (t->backupHeap) {
|
|
|
|
t->m->heap->free
|
2008-04-13 18:15:04 +00:00
|
|
|
(t->backupHeap, t->backupHeapSizeInWords * BytesPerWord);
|
2008-04-21 22:36:13 +00:00
|
|
|
t->backupHeap = 0;
|
2008-04-09 19:08:13 +00:00
|
|
|
t->backupHeapIndex = 0;
|
|
|
|
t->backupHeapSizeInWords = 0;
|
|
|
|
}
|
|
|
|
|
2007-07-07 23:47:35 +00:00
|
|
|
for (Thread* c = t->child; c; c = c->peer) {
|
|
|
|
postCollect(c);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-07-06 23:50:26 +00:00
|
|
|
object
|
|
|
|
makeByteArray(Thread* t, const char* format, va_list a)
|
|
|
|
{
|
2007-10-27 00:03:28 +00:00
|
|
|
const int Size = 256;
|
2007-07-06 23:50:26 +00:00
|
|
|
char buffer[Size];
|
|
|
|
|
2007-10-27 00:03:28 +00:00
|
|
|
int r = vsnprintf(buffer, Size - 1, format, a);
|
|
|
|
expect(t, r >= 0 and r < Size - 1);
|
2007-07-06 23:50:26 +00:00
|
|
|
|
2009-03-04 03:05:48 +00:00
|
|
|
object s = makeByteArray(t, strlen(buffer) + 1);
|
2007-07-06 23:50:26 +00:00
|
|
|
memcpy(&byteArrayBody(t, s, 0), buffer, byteArrayLength(t, s));
|
|
|
|
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
2007-10-24 21:05:15 +00:00
|
|
|
object
|
|
|
|
parseUtf8(Thread* t, Stream& s, unsigned length)
|
|
|
|
{
|
2009-03-04 03:05:48 +00:00
|
|
|
object value = makeByteArray(t, length + 1);
|
2007-10-24 21:05:15 +00:00
|
|
|
unsigned vi = 0;
|
2007-10-24 23:05:14 +00:00
|
|
|
for (unsigned si = 0; si < length; ++si) {
|
2007-10-24 21:05:15 +00:00
|
|
|
unsigned a = s.read1();
|
|
|
|
if (a & 0x80) {
|
2007-10-25 23:58:53 +00:00
|
|
|
// todo: handle non-ASCII characters properly
|
|
|
|
if (a & 0x20) {
|
|
|
|
// 3 bytes
|
|
|
|
si += 2;
|
|
|
|
assert(t, si < length);
|
|
|
|
/*unsigned b = */s.read1();
|
|
|
|
/*unsigned c = */s.read1();
|
|
|
|
byteArrayBody(t, value, vi++) = '_';
|
2007-10-24 21:05:15 +00:00
|
|
|
} else {
|
2007-10-25 23:58:53 +00:00
|
|
|
// 2 bytes
|
|
|
|
++ si;
|
|
|
|
assert(t, si < length);
|
|
|
|
unsigned b = s.read1();
|
|
|
|
|
|
|
|
if (a == 0xC0 and b == 0x80) {
|
|
|
|
byteArrayBody(t, value, vi++) = 0;
|
|
|
|
} else {
|
|
|
|
byteArrayBody(t, value, vi++) = '_';
|
|
|
|
}
|
2007-10-24 21:05:15 +00:00
|
|
|
}
|
|
|
|
} else {
|
2007-10-24 23:05:14 +00:00
|
|
|
byteArrayBody(t, value, vi++) = a;
|
2007-10-24 21:05:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (vi < length) {
|
|
|
|
PROTECT(t, value);
|
|
|
|
|
2009-03-04 03:05:48 +00:00
|
|
|
object v = makeByteArray(t, vi + 1);
|
2007-10-24 21:05:15 +00:00
|
|
|
memcpy(&byteArrayBody(t, v, 0), &byteArrayBody(t, value, 0), vi);
|
|
|
|
value = v;
|
|
|
|
}
|
|
|
|
|
|
|
|
byteArrayBody(t, value, vi) = 0;
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
2007-11-05 21:40:17 +00:00
|
|
|
unsigned
|
|
|
|
parsePoolEntry(Thread* t, Stream& s, uint32_t* index, object pool, unsigned i)
|
2007-07-14 17:31:01 +00:00
|
|
|
{
|
|
|
|
PROTECT(t, pool);
|
|
|
|
|
2007-11-05 21:40:17 +00:00
|
|
|
s.setPosition(index[i]);
|
2007-07-14 17:31:01 +00:00
|
|
|
|
2007-11-05 21:40:17 +00:00
|
|
|
switch (s.read1()) {
|
|
|
|
case CONSTANT_Integer:
|
|
|
|
case CONSTANT_Float: {
|
|
|
|
singletonValue(t, pool, i) = s.read4();
|
|
|
|
} return 1;
|
|
|
|
|
|
|
|
case CONSTANT_Long:
|
|
|
|
case CONSTANT_Double: {
|
|
|
|
uint64_t v = s.read8();
|
|
|
|
memcpy(&singletonValue(t, pool, i), &v, 8);
|
|
|
|
} return 2;
|
|
|
|
|
|
|
|
case CONSTANT_Utf8: {
|
|
|
|
if (singletonObject(t, pool, i) == 0) {
|
|
|
|
object value = parseUtf8(t, s, s.read2());
|
|
|
|
set(t, pool, SingletonBody + (i * BytesPerWord), value);
|
|
|
|
}
|
|
|
|
} return 1;
|
2007-07-14 17:31:01 +00:00
|
|
|
|
2007-11-05 21:40:17 +00:00
|
|
|
case CONSTANT_Class: {
|
|
|
|
if (singletonObject(t, pool, i) == 0) {
|
|
|
|
unsigned si = s.read2() - 1;
|
|
|
|
parsePoolEntry(t, s, index, pool, si);
|
|
|
|
|
|
|
|
object value = singletonObject(t, pool, si);
|
|
|
|
set(t, pool, SingletonBody + (i * BytesPerWord), value);
|
|
|
|
}
|
|
|
|
} return 1;
|
2007-07-14 17:31:01 +00:00
|
|
|
|
2007-11-05 21:40:17 +00:00
|
|
|
case CONSTANT_String: {
|
|
|
|
if (singletonObject(t, pool, i) == 0) {
|
|
|
|
unsigned si = s.read2() - 1;
|
|
|
|
parsePoolEntry(t, s, index, pool, si);
|
|
|
|
|
|
|
|
object value = singletonObject(t, pool, si);
|
|
|
|
value = makeString(t, value, 0, byteArrayLength(t, value) - 1, 0);
|
|
|
|
value = intern(t, value);
|
|
|
|
set(t, pool, SingletonBody + (i * BytesPerWord), value);
|
|
|
|
}
|
|
|
|
} return 1;
|
2007-07-14 17:31:01 +00:00
|
|
|
|
2007-11-05 21:40:17 +00:00
|
|
|
case CONSTANT_NameAndType: {
|
|
|
|
if (singletonObject(t, pool, i) == 0) {
|
|
|
|
unsigned ni = s.read2() - 1;
|
|
|
|
unsigned ti = s.read2() - 1;
|
2007-07-14 17:31:01 +00:00
|
|
|
|
2007-11-05 21:40:17 +00:00
|
|
|
parsePoolEntry(t, s, index, pool, ni);
|
|
|
|
parsePoolEntry(t, s, index, pool, ti);
|
|
|
|
|
|
|
|
object name = singletonObject(t, pool, ni);
|
|
|
|
object type = singletonObject(t, pool, ti);
|
|
|
|
object value = makePair(t, name, type);
|
|
|
|
set(t, pool, SingletonBody + (i * BytesPerWord), value);
|
|
|
|
}
|
|
|
|
} return 1;
|
|
|
|
|
|
|
|
case CONSTANT_Fieldref:
|
|
|
|
case CONSTANT_Methodref:
|
|
|
|
case CONSTANT_InterfaceMethodref: {
|
|
|
|
if (singletonObject(t, pool, i) == 0) {
|
|
|
|
unsigned ci = s.read2() - 1;
|
|
|
|
unsigned nti = s.read2() - 1;
|
|
|
|
|
|
|
|
parsePoolEntry(t, s, index, pool, ci);
|
|
|
|
parsePoolEntry(t, s, index, pool, nti);
|
|
|
|
|
|
|
|
object class_ = singletonObject(t, pool, ci);
|
|
|
|
object nameAndType = singletonObject(t, pool, nti);
|
|
|
|
object value = makeReference
|
|
|
|
(t, class_, pairFirst(t, nameAndType), pairSecond(t, nameAndType));
|
|
|
|
set(t, pool, SingletonBody + (i * BytesPerWord), value);
|
|
|
|
}
|
|
|
|
} return 1;
|
2007-07-14 17:31:01 +00:00
|
|
|
|
2007-11-05 21:40:17 +00:00
|
|
|
default: abort(t);
|
|
|
|
}
|
|
|
|
}
|
2007-07-14 17:31:01 +00:00
|
|
|
|
2007-11-05 21:40:17 +00:00
|
|
|
object
|
|
|
|
parsePool(Thread* t, Stream& s)
|
|
|
|
{
|
|
|
|
unsigned count = s.read2() - 1;
|
2007-07-14 17:31:01 +00:00
|
|
|
|
2009-03-04 03:05:48 +00:00
|
|
|
object pool = makeSingletonOfSize(t, count);
|
2008-01-13 22:05:08 +00:00
|
|
|
PROTECT(t, pool);
|
2007-07-14 17:31:01 +00:00
|
|
|
|
2007-11-05 21:40:17 +00:00
|
|
|
if (count) {
|
2008-04-13 18:15:04 +00:00
|
|
|
uint32_t* index = static_cast<uint32_t*>(t->m->heap->allocate(count * 4));
|
2007-07-14 17:31:01 +00:00
|
|
|
|
2007-11-05 21:40:17 +00:00
|
|
|
for (unsigned i = 0; i < count; ++i) {
|
|
|
|
index[i] = s.position();
|
2007-07-14 17:31:01 +00:00
|
|
|
|
2007-11-05 21:40:17 +00:00
|
|
|
switch (s.read1()) {
|
|
|
|
case CONSTANT_Class:
|
|
|
|
case CONSTANT_String:
|
|
|
|
singletonMarkObject(t, pool, i);
|
|
|
|
s.skip(2);
|
|
|
|
break;
|
2007-07-14 17:31:01 +00:00
|
|
|
|
2007-11-05 21:40:17 +00:00
|
|
|
case CONSTANT_Integer:
|
|
|
|
case CONSTANT_Float:
|
|
|
|
s.skip(4);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CONSTANT_NameAndType:
|
2007-07-14 17:31:01 +00:00
|
|
|
case CONSTANT_Fieldref:
|
|
|
|
case CONSTANT_Methodref:
|
2007-11-05 21:40:17 +00:00
|
|
|
case CONSTANT_InterfaceMethodref:
|
|
|
|
singletonMarkObject(t, pool, i);
|
|
|
|
s.skip(4);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CONSTANT_Long:
|
|
|
|
case CONSTANT_Double:
|
|
|
|
s.skip(8);
|
|
|
|
++ i;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CONSTANT_Utf8:
|
|
|
|
singletonMarkObject(t, pool, i);
|
|
|
|
s.skip(s.read2());
|
|
|
|
break;
|
|
|
|
|
|
|
|
default: abort(t);
|
2007-07-14 17:31:01 +00:00
|
|
|
}
|
|
|
|
}
|
2007-11-05 21:40:17 +00:00
|
|
|
|
|
|
|
unsigned end = s.position();
|
|
|
|
|
|
|
|
for (unsigned i = 0; i < count;) {
|
|
|
|
i += parsePoolEntry(t, s, index, pool, i);
|
|
|
|
}
|
|
|
|
|
2008-04-13 18:15:04 +00:00
|
|
|
t->m->heap->free(index, count * 4);
|
2007-11-05 21:40:17 +00:00
|
|
|
|
|
|
|
s.setPosition(end);
|
2007-07-14 17:31:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return pool;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
addInterfaces(Thread* t, object class_, object map)
|
|
|
|
{
|
|
|
|
object table = classInterfaceTable(t, class_);
|
|
|
|
if (table) {
|
|
|
|
unsigned increment = 2;
|
|
|
|
if (classFlags(t, class_) & ACC_INTERFACE) {
|
|
|
|
increment = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
PROTECT(t, map);
|
|
|
|
PROTECT(t, table);
|
|
|
|
|
|
|
|
for (unsigned i = 0; i < arrayLength(t, table); i += increment) {
|
|
|
|
object interface = arrayBody(t, table, i);
|
|
|
|
object name = className(t, interface);
|
|
|
|
hashMapInsertMaybe(t, map, name, interface, byteArrayHash,
|
|
|
|
byteArrayEqual);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
parseInterfaceTable(Thread* t, Stream& s, object class_, object pool)
|
|
|
|
{
|
|
|
|
PROTECT(t, class_);
|
|
|
|
PROTECT(t, pool);
|
|
|
|
|
2007-07-29 18:52:08 +00:00
|
|
|
object map = makeHashMap(t, 0, 0);
|
2007-07-14 17:31:01 +00:00
|
|
|
PROTECT(t, map);
|
|
|
|
|
|
|
|
if (classSuper(t, class_)) {
|
|
|
|
addInterfaces(t, classSuper(t, class_), map);
|
|
|
|
}
|
2007-11-27 22:23:00 +00:00
|
|
|
|
2007-07-14 17:31:01 +00:00
|
|
|
unsigned count = s.read2();
|
|
|
|
for (unsigned i = 0; i < count; ++i) {
|
2007-11-05 21:40:17 +00:00
|
|
|
object name = singletonObject(t, pool, s.read2() - 1);
|
2007-07-14 17:31:01 +00:00
|
|
|
PROTECT(t, name);
|
|
|
|
|
|
|
|
object interface = resolveClass(t, name);
|
|
|
|
PROTECT(t, interface);
|
|
|
|
|
|
|
|
hashMapInsertMaybe(t, map, name, interface, byteArrayHash, byteArrayEqual);
|
|
|
|
|
|
|
|
addInterfaces(t, interface, map);
|
|
|
|
}
|
|
|
|
|
|
|
|
object interfaceTable = 0;
|
|
|
|
if (hashMapSize(t, map)) {
|
|
|
|
unsigned length = hashMapSize(t, map) ;
|
|
|
|
if ((classFlags(t, class_) & ACC_INTERFACE) == 0) {
|
|
|
|
length *= 2;
|
|
|
|
}
|
2009-03-04 03:05:48 +00:00
|
|
|
interfaceTable = makeArray(t, length);
|
2007-07-14 17:31:01 +00:00
|
|
|
PROTECT(t, interfaceTable);
|
|
|
|
|
|
|
|
unsigned i = 0;
|
2008-11-22 23:38:41 +00:00
|
|
|
for (HashMapIterator it(t, map); it.hasMore();) {
|
|
|
|
object interface = resolveClass(t, tripleFirst(t, it.next()));
|
2007-07-14 17:31:01 +00:00
|
|
|
if (UNLIKELY(t->exception)) return;
|
|
|
|
|
2007-10-22 17:22:30 +00:00
|
|
|
set(t, interfaceTable, ArrayBody + (i * BytesPerWord), interface);
|
|
|
|
++ i;
|
2007-07-14 17:31:01 +00:00
|
|
|
|
|
|
|
if ((classFlags(t, class_) & ACC_INTERFACE) == 0) {
|
2007-08-14 00:37:00 +00:00
|
|
|
if (classVirtualTable(t, interface)) {
|
|
|
|
// we'll fill in this table in parseMethodTable():
|
|
|
|
object vtable = makeArray
|
2009-03-04 03:05:48 +00:00
|
|
|
(t, arrayLength(t, classVirtualTable(t, interface)));
|
2007-08-14 00:37:00 +00:00
|
|
|
|
2007-10-22 17:22:30 +00:00
|
|
|
set(t, interfaceTable, ArrayBody + (i * BytesPerWord), vtable);
|
2007-08-14 00:37:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
++i;
|
2007-07-14 17:31:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-10-22 17:22:30 +00:00
|
|
|
set(t, class_, ClassInterfaceTable, interfaceTable);
|
2007-07-14 17:31:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
parseFieldTable(Thread* t, Stream& s, object class_, object pool)
|
|
|
|
{
|
|
|
|
PROTECT(t, class_);
|
|
|
|
PROTECT(t, pool);
|
|
|
|
|
|
|
|
unsigned memberOffset = BytesPerWord;
|
|
|
|
if (classSuper(t, class_)) {
|
|
|
|
memberOffset = classFixedSize(t, classSuper(t, class_));
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned count = s.read2();
|
|
|
|
if (count) {
|
2007-11-02 21:08:14 +00:00
|
|
|
unsigned staticOffset = BytesPerWord * 2;
|
|
|
|
unsigned staticCount = 0;
|
2007-07-14 17:31:01 +00:00
|
|
|
|
2009-03-04 03:05:48 +00:00
|
|
|
object fieldTable = makeArray(t, count);
|
2007-07-14 17:31:01 +00:00
|
|
|
PROTECT(t, fieldTable);
|
|
|
|
|
2009-03-04 03:05:48 +00:00
|
|
|
object staticValueTable = makeIntArray(t, count);
|
2007-10-25 19:20:39 +00:00
|
|
|
PROTECT(t, staticValueTable);
|
|
|
|
|
2007-11-02 21:08:14 +00:00
|
|
|
uint8_t staticTypes[count];
|
|
|
|
|
2007-07-14 17:31:01 +00:00
|
|
|
for (unsigned i = 0; i < count; ++i) {
|
|
|
|
unsigned flags = s.read2();
|
|
|
|
unsigned name = s.read2();
|
|
|
|
unsigned spec = s.read2();
|
|
|
|
|
2007-11-06 15:29:05 +00:00
|
|
|
unsigned value = 0;
|
2007-10-25 19:20:39 +00:00
|
|
|
|
2007-11-05 21:40:17 +00:00
|
|
|
unsigned code = fieldCode
|
|
|
|
(t, byteArrayBody(t, singletonObject(t, pool, spec - 1), 0));
|
|
|
|
|
2007-07-14 17:31:01 +00:00
|
|
|
unsigned attributeCount = s.read2();
|
|
|
|
for (unsigned j = 0; j < attributeCount; ++j) {
|
2007-11-05 21:40:17 +00:00
|
|
|
object name = singletonObject(t, pool, s.read2() - 1);
|
2007-10-25 19:20:39 +00:00
|
|
|
unsigned length = s.read4();
|
|
|
|
|
|
|
|
if (strcmp(reinterpret_cast<const int8_t*>("ConstantValue"),
|
|
|
|
&byteArrayBody(t, name, 0)) == 0)
|
|
|
|
{
|
2007-11-06 15:29:05 +00:00
|
|
|
value = s.read2();
|
2007-10-25 19:20:39 +00:00
|
|
|
} else {
|
|
|
|
s.skip(length);
|
|
|
|
}
|
2007-07-14 17:31:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
object field = makeField
|
|
|
|
(t,
|
2007-07-21 17:50:26 +00:00
|
|
|
0, // vm flags
|
2007-11-02 21:08:14 +00:00
|
|
|
code,
|
2007-07-14 17:31:01 +00:00
|
|
|
flags,
|
|
|
|
0, // offset
|
2007-11-05 21:40:17 +00:00
|
|
|
singletonObject(t, pool, name - 1),
|
|
|
|
singletonObject(t, pool, spec - 1),
|
2007-07-14 17:31:01 +00:00
|
|
|
class_);
|
|
|
|
|
|
|
|
if (flags & ACC_STATIC) {
|
2007-11-02 21:08:14 +00:00
|
|
|
unsigned size = fieldSize(t, code);
|
2008-04-01 00:34:57 +00:00
|
|
|
unsigned excess = (staticOffset % size) % BytesPerWord;
|
2007-11-02 21:08:14 +00:00
|
|
|
if (excess) {
|
|
|
|
staticOffset += BytesPerWord - excess;
|
|
|
|
}
|
|
|
|
|
|
|
|
fieldOffset(t, field) = staticOffset;
|
|
|
|
|
|
|
|
staticOffset += size;
|
|
|
|
|
2007-11-06 15:29:05 +00:00
|
|
|
intArrayBody(t, staticValueTable, staticCount) = value;
|
2007-11-02 21:08:14 +00:00
|
|
|
|
|
|
|
staticTypes[staticCount++] = code;
|
2007-07-14 17:31:01 +00:00
|
|
|
} else {
|
2009-03-03 03:18:15 +00:00
|
|
|
if (flags & ACC_FINAL) {
|
|
|
|
classFlags(t, class_) |= HasFinalMemberFlag;
|
|
|
|
}
|
|
|
|
|
2008-04-01 00:34:57 +00:00
|
|
|
unsigned excess = (memberOffset % fieldSize(t, code)) % BytesPerWord;
|
2007-10-17 01:20:36 +00:00
|
|
|
if (excess) {
|
2007-07-14 17:31:01 +00:00
|
|
|
memberOffset += BytesPerWord - excess;
|
|
|
|
}
|
|
|
|
|
|
|
|
fieldOffset(t, field) = memberOffset;
|
2007-11-02 21:08:14 +00:00
|
|
|
memberOffset += fieldSize(t, code);
|
2007-07-14 17:31:01 +00:00
|
|
|
}
|
|
|
|
|
2007-10-22 17:22:30 +00:00
|
|
|
set(t, fieldTable, ArrayBody + (i * BytesPerWord), field);
|
2007-07-14 17:31:01 +00:00
|
|
|
}
|
|
|
|
|
2007-10-22 17:22:30 +00:00
|
|
|
set(t, class_, ClassFieldTable, fieldTable);
|
2007-07-14 17:31:01 +00:00
|
|
|
|
2007-11-02 21:08:14 +00:00
|
|
|
if (staticCount) {
|
|
|
|
unsigned footprint = ceiling(staticOffset - (BytesPerWord * 2),
|
|
|
|
BytesPerWord);
|
2009-03-04 03:05:48 +00:00
|
|
|
object staticTable = makeSingletonOfSize(t, footprint);
|
2007-11-02 21:08:14 +00:00
|
|
|
|
|
|
|
uint8_t* body = reinterpret_cast<uint8_t*>
|
|
|
|
(&singletonBody(t, staticTable, 0));
|
|
|
|
|
|
|
|
for (unsigned i = 0, offset = 0; i < staticCount; ++i) {
|
|
|
|
unsigned size = fieldSize(t, staticTypes[i]);
|
|
|
|
unsigned excess = offset % size;
|
|
|
|
if (excess) {
|
|
|
|
offset += BytesPerWord - excess;
|
|
|
|
}
|
|
|
|
|
2007-11-06 15:29:05 +00:00
|
|
|
unsigned value = intArrayBody(t, staticValueTable, i);
|
2007-11-02 21:08:14 +00:00
|
|
|
if (value) {
|
|
|
|
switch (staticTypes[i]) {
|
|
|
|
case ByteField:
|
|
|
|
case BooleanField:
|
2007-11-06 15:29:05 +00:00
|
|
|
body[offset] = singletonValue(t, pool, value - 1);
|
2007-11-02 21:08:14 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case CharField:
|
|
|
|
case ShortField:
|
2007-11-06 15:29:05 +00:00
|
|
|
*reinterpret_cast<uint16_t*>(body + offset)
|
|
|
|
= singletonValue(t, pool, value - 1);
|
2007-11-02 21:08:14 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case IntField:
|
|
|
|
case FloatField:
|
2007-11-06 15:29:05 +00:00
|
|
|
*reinterpret_cast<uint32_t*>(body + offset)
|
|
|
|
= singletonValue(t, pool, value - 1);
|
2007-11-02 21:08:14 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case LongField:
|
|
|
|
case DoubleField:
|
2007-11-06 15:29:05 +00:00
|
|
|
memcpy(body + offset, &singletonValue(t, pool, value - 1), 8);
|
2007-11-02 21:08:14 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ObjectField:
|
2007-11-06 15:29:05 +00:00
|
|
|
memcpy(body + offset,
|
|
|
|
&singletonObject(t, pool, value - 1),
|
|
|
|
BytesPerWord);
|
2007-11-02 21:08:14 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default: abort(t);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (staticTypes[i] == ObjectField) {
|
2007-11-05 21:40:17 +00:00
|
|
|
singletonMarkObject(t, staticTable, offset / BytesPerWord);
|
2007-11-02 21:08:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
offset += size;
|
|
|
|
}
|
2007-07-14 17:31:01 +00:00
|
|
|
|
2007-10-22 17:22:30 +00:00
|
|
|
set(t, class_, ClassStaticTable, staticTable);
|
2007-07-14 17:31:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
classFixedSize(t, class_) = pad(memberOffset);
|
|
|
|
|
|
|
|
if (classSuper(t, class_)
|
|
|
|
and memberOffset == classFixedSize(t, classSuper(t, class_)))
|
|
|
|
{
|
2007-10-22 17:22:30 +00:00
|
|
|
set(t, class_, ClassObjectMask,
|
2007-07-14 17:31:01 +00:00
|
|
|
classObjectMask(t, classSuper(t, class_)));
|
|
|
|
} else {
|
|
|
|
object mask = makeIntArray
|
2009-03-04 03:05:48 +00:00
|
|
|
(t, ceiling(classFixedSize(t, class_), 32 * BytesPerWord));
|
2007-07-14 17:31:01 +00:00
|
|
|
intArrayBody(t, mask, 0) = 1;
|
|
|
|
|
2007-08-14 00:37:00 +00:00
|
|
|
object superMask = 0;
|
|
|
|
if (classSuper(t, class_)) {
|
|
|
|
superMask = classObjectMask(t, classSuper(t, class_));
|
|
|
|
if (superMask) {
|
|
|
|
memcpy(&intArrayBody(t, mask, 0),
|
|
|
|
&intArrayBody(t, superMask, 0),
|
|
|
|
ceiling(classFixedSize(t, classSuper(t, class_)),
|
2007-09-15 17:22:22 +00:00
|
|
|
32 * BytesPerWord)
|
2007-08-14 00:37:00 +00:00
|
|
|
* 4);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-07-14 17:31:01 +00:00
|
|
|
bool sawReferenceField = false;
|
2007-08-14 00:37:00 +00:00
|
|
|
object fieldTable = classFieldTable(t, class_);
|
|
|
|
if (fieldTable) {
|
|
|
|
for (int i = arrayLength(t, fieldTable) - 1; i >= 0; --i) {
|
|
|
|
object field = arrayBody(t, fieldTable, i);
|
|
|
|
if ((fieldFlags(t, field) & ACC_STATIC) == 0
|
|
|
|
and fieldCode(t, field) == ObjectField)
|
|
|
|
{
|
|
|
|
unsigned index = fieldOffset(t, field) / BytesPerWord;
|
|
|
|
intArrayBody(t, mask, (index / 32)) |= 1 << (index % 32);
|
|
|
|
sawReferenceField = true;
|
2007-07-14 17:31:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-08-14 00:37:00 +00:00
|
|
|
if (superMask or sawReferenceField) {
|
2007-10-22 17:22:30 +00:00
|
|
|
set(t, class_, ClassObjectMask, mask);
|
2007-07-14 17:31:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
object
|
|
|
|
parseCode(Thread* t, Stream& s, object pool)
|
|
|
|
{
|
2007-07-19 23:45:44 +00:00
|
|
|
PROTECT(t, pool);
|
|
|
|
|
2007-07-14 17:31:01 +00:00
|
|
|
unsigned maxStack = s.read2();
|
|
|
|
unsigned maxLocals = s.read2();
|
|
|
|
unsigned length = s.read4();
|
|
|
|
|
2009-03-04 03:05:48 +00:00
|
|
|
object code = makeCode(t, pool, 0, 0, maxStack, maxLocals, length);
|
2007-07-14 17:31:01 +00:00
|
|
|
s.read(&codeBody(t, code, 0), length);
|
2007-07-16 23:58:37 +00:00
|
|
|
PROTECT(t, code);
|
2007-07-14 17:31:01 +00:00
|
|
|
|
|
|
|
unsigned ehtLength = s.read2();
|
|
|
|
if (ehtLength) {
|
2009-03-04 03:05:48 +00:00
|
|
|
object eht = makeExceptionHandlerTable(t, ehtLength);
|
2007-07-14 17:31:01 +00:00
|
|
|
for (unsigned i = 0; i < ehtLength; ++i) {
|
|
|
|
ExceptionHandler* eh = exceptionHandlerTableBody(t, eht, i);
|
|
|
|
exceptionHandlerStart(eh) = s.read2();
|
|
|
|
exceptionHandlerEnd(eh) = s.read2();
|
|
|
|
exceptionHandlerIp(eh) = s.read2();
|
|
|
|
exceptionHandlerCatchType(eh) = s.read2();
|
|
|
|
}
|
|
|
|
|
2007-10-22 17:22:30 +00:00
|
|
|
set(t, code, CodeExceptionHandlerTable, eht);
|
2007-07-14 17:31:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
unsigned attributeCount = s.read2();
|
|
|
|
for (unsigned j = 0; j < attributeCount; ++j) {
|
2007-11-05 21:40:17 +00:00
|
|
|
object name = singletonObject(t, pool, s.read2() - 1);
|
2007-07-14 17:31:01 +00:00
|
|
|
unsigned length = s.read4();
|
|
|
|
|
|
|
|
if (strcmp(reinterpret_cast<const int8_t*>("LineNumberTable"),
|
|
|
|
&byteArrayBody(t, name, 0)) == 0)
|
|
|
|
{
|
|
|
|
unsigned lntLength = s.read2();
|
2009-03-04 03:05:48 +00:00
|
|
|
object lnt = makeLineNumberTable(t, lntLength);
|
2007-07-14 17:31:01 +00:00
|
|
|
for (unsigned i = 0; i < lntLength; ++i) {
|
|
|
|
LineNumber* ln = lineNumberTableBody(t, lnt, i);
|
|
|
|
lineNumberIp(ln) = s.read2();
|
|
|
|
lineNumberLine(ln) = s.read2();
|
|
|
|
}
|
|
|
|
|
2007-10-22 17:22:30 +00:00
|
|
|
set(t, code, CodeLineNumberTable, lnt);
|
2007-07-14 17:31:01 +00:00
|
|
|
} else {
|
|
|
|
s.skip(length);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return code;
|
|
|
|
}
|
|
|
|
|
2007-09-26 23:23:03 +00:00
|
|
|
void
|
|
|
|
scanMethodSpec(Thread* t, const char* s, unsigned* parameterCount,
|
|
|
|
unsigned* returnCode)
|
|
|
|
{
|
|
|
|
unsigned count = 0;
|
2007-09-28 23:41:03 +00:00
|
|
|
MethodSpecIterator it(t, s);
|
|
|
|
for (; it.hasNext(); it.next()) {
|
2007-09-26 23:23:03 +00:00
|
|
|
++ count;
|
|
|
|
}
|
|
|
|
|
|
|
|
*parameterCount = count;
|
2007-09-28 23:41:03 +00:00
|
|
|
*returnCode = fieldCode(t, *it.returnSpec());
|
2007-09-26 23:23:03 +00:00
|
|
|
}
|
|
|
|
|
2007-07-14 17:31:01 +00:00
|
|
|
void
|
|
|
|
parseMethodTable(Thread* t, Stream& s, object class_, object pool)
|
|
|
|
{
|
|
|
|
PROTECT(t, class_);
|
|
|
|
PROTECT(t, pool);
|
|
|
|
|
2007-07-29 18:52:08 +00:00
|
|
|
object virtualMap = makeHashMap(t, 0, 0);
|
2007-07-14 17:31:01 +00:00
|
|
|
PROTECT(t, virtualMap);
|
|
|
|
|
|
|
|
unsigned virtualCount = 0;
|
|
|
|
unsigned declaredVirtualCount = 0;
|
|
|
|
|
|
|
|
object superVirtualTable = 0;
|
|
|
|
PROTECT(t, superVirtualTable);
|
|
|
|
|
|
|
|
if (classFlags(t, class_) & ACC_INTERFACE) {
|
|
|
|
object itable = classInterfaceTable(t, class_);
|
|
|
|
if (itable) {
|
2007-08-14 00:37:00 +00:00
|
|
|
PROTECT(t, itable);
|
2007-07-14 17:31:01 +00:00
|
|
|
for (unsigned i = 0; i < arrayLength(t, itable); ++i) {
|
|
|
|
object vtable = classVirtualTable(t, arrayBody(t, itable, i));
|
2007-08-14 00:37:00 +00:00
|
|
|
if (vtable) {
|
|
|
|
PROTECT(t, vtable);
|
|
|
|
for (unsigned j = 0; j < arrayLength(t, vtable); ++j) {
|
|
|
|
object method = arrayBody(t, vtable, j);
|
|
|
|
object n = hashMapFindNode
|
|
|
|
(t, virtualMap, method, methodHash, methodEqual);
|
|
|
|
if (n == 0) {
|
|
|
|
method = makeMethod
|
|
|
|
(t,
|
|
|
|
methodVmFlags(t, method),
|
2007-09-26 23:23:03 +00:00
|
|
|
methodReturnCode(t, method),
|
2007-08-14 00:37:00 +00:00
|
|
|
methodParameterCount(t, method),
|
|
|
|
methodParameterFootprint(t, method),
|
|
|
|
methodFlags(t, method),
|
|
|
|
virtualCount++,
|
2008-08-15 18:32:33 +00:00
|
|
|
0,
|
2007-08-14 00:37:00 +00:00
|
|
|
methodName(t, method),
|
|
|
|
methodSpec(t, method),
|
2007-10-12 17:56:43 +00:00
|
|
|
class_,
|
2007-09-25 23:53:11 +00:00
|
|
|
0,
|
2007-08-14 00:37:00 +00:00
|
|
|
0);
|
|
|
|
hashMapInsert(t, virtualMap, method, method, methodHash);
|
|
|
|
}
|
2007-07-14 17:31:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (classSuper(t, class_)) {
|
|
|
|
superVirtualTable = classVirtualTable(t, classSuper(t, class_));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (superVirtualTable) {
|
|
|
|
virtualCount = arrayLength(t, superVirtualTable);
|
|
|
|
for (unsigned i = 0; i < virtualCount; ++i) {
|
|
|
|
object method = arrayBody(t, superVirtualTable, i);
|
|
|
|
hashMapInsert(t, virtualMap, method, method, methodHash);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
object newVirtuals = makeList(t, 0, 0, 0);
|
|
|
|
PROTECT(t, newVirtuals);
|
|
|
|
|
|
|
|
unsigned count = s.read2();
|
|
|
|
if (count) {
|
2009-03-04 03:05:48 +00:00
|
|
|
object methodTable = makeArray(t, count);
|
2007-07-14 17:31:01 +00:00
|
|
|
PROTECT(t, methodTable);
|
|
|
|
|
|
|
|
for (unsigned i = 0; i < count; ++i) {
|
|
|
|
unsigned flags = s.read2();
|
|
|
|
unsigned name = s.read2();
|
|
|
|
unsigned spec = s.read2();
|
|
|
|
|
|
|
|
object code = 0;
|
|
|
|
unsigned attributeCount = s.read2();
|
|
|
|
for (unsigned j = 0; j < attributeCount; ++j) {
|
2007-11-05 21:40:17 +00:00
|
|
|
object name = singletonObject(t, pool, s.read2() - 1);
|
2007-07-14 17:31:01 +00:00
|
|
|
unsigned length = s.read4();
|
|
|
|
|
|
|
|
if (strcmp(reinterpret_cast<const int8_t*>("Code"),
|
|
|
|
&byteArrayBody(t, name, 0)) == 0)
|
|
|
|
{
|
|
|
|
code = parseCode(t, s, pool);
|
|
|
|
} else {
|
|
|
|
s.skip(length);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-09-26 23:23:03 +00:00
|
|
|
const char* specString = reinterpret_cast<const char*>
|
2007-11-05 21:40:17 +00:00
|
|
|
(&byteArrayBody(t, singletonObject(t, pool, spec - 1), 0));
|
2007-07-14 17:31:01 +00:00
|
|
|
|
2007-09-26 23:23:03 +00:00
|
|
|
unsigned parameterCount;
|
|
|
|
unsigned returnCode;
|
|
|
|
scanMethodSpec(t, specString, ¶meterCount, &returnCode);
|
2007-07-14 17:31:01 +00:00
|
|
|
|
2007-11-05 21:40:17 +00:00
|
|
|
object method = t->m->processor->makeMethod
|
|
|
|
(t,
|
|
|
|
0, // vm flags
|
|
|
|
returnCode,
|
|
|
|
parameterCount,
|
2007-11-20 22:24:02 +00:00
|
|
|
parameterFootprint(t, specString, flags & ACC_STATIC),
|
2007-11-05 21:40:17 +00:00
|
|
|
flags,
|
|
|
|
0, // offset
|
|
|
|
singletonObject(t, pool, name - 1),
|
|
|
|
singletonObject(t, pool, spec - 1),
|
|
|
|
class_,
|
|
|
|
code);
|
2007-10-01 15:19:15 +00:00
|
|
|
|
2007-07-14 17:31:01 +00:00
|
|
|
PROTECT(t, method);
|
|
|
|
|
2007-11-05 14:28:46 +00:00
|
|
|
if (methodVirtual(t, method)) {
|
2007-07-14 17:31:01 +00:00
|
|
|
++ declaredVirtualCount;
|
|
|
|
|
|
|
|
object p = hashMapFindNode
|
|
|
|
(t, virtualMap, method, methodHash, methodEqual);
|
|
|
|
|
|
|
|
if (p) {
|
|
|
|
methodOffset(t, method) = methodOffset(t, tripleFirst(t, p));
|
|
|
|
|
2007-10-22 17:22:30 +00:00
|
|
|
set(t, p, TripleSecond, method);
|
2007-07-14 17:31:01 +00:00
|
|
|
} else {
|
|
|
|
methodOffset(t, method) = virtualCount++;
|
|
|
|
|
|
|
|
listAppend(t, newVirtuals, method);
|
|
|
|
|
|
|
|
hashMapInsert(t, virtualMap, method, method, methodHash);
|
|
|
|
}
|
2007-11-05 14:28:46 +00:00
|
|
|
} else {
|
|
|
|
methodOffset(t, method) = i;
|
|
|
|
|
|
|
|
if (strcmp(reinterpret_cast<const int8_t*>("<clinit>"),
|
|
|
|
&byteArrayBody(t, methodName(t, method), 0)) == 0)
|
|
|
|
{
|
|
|
|
methodVmFlags(t, method) |= ClassInitFlag;
|
|
|
|
classVmFlags(t, class_) |= NeedInitFlag;
|
2009-03-03 03:18:15 +00:00
|
|
|
} else if (strcmp(reinterpret_cast<const int8_t*>("<init>"),
|
|
|
|
&byteArrayBody(t, methodName(t, method), 0)) == 0)
|
|
|
|
{
|
|
|
|
methodVmFlags(t, method) |= ConstructorFlag;
|
2007-11-05 14:28:46 +00:00
|
|
|
}
|
2007-07-14 17:31:01 +00:00
|
|
|
}
|
|
|
|
|
2007-10-22 17:22:30 +00:00
|
|
|
set(t, methodTable, ArrayBody + (i * BytesPerWord), method);
|
2007-07-14 17:31:01 +00:00
|
|
|
}
|
|
|
|
|
2007-10-22 17:22:30 +00:00
|
|
|
set(t, class_, ClassMethodTable, methodTable);
|
2007-07-14 17:31:01 +00:00
|
|
|
}
|
|
|
|
|
2008-01-28 15:12:06 +00:00
|
|
|
bool populateInterfaceVtables = false;
|
|
|
|
|
2007-08-14 13:27:10 +00:00
|
|
|
if (declaredVirtualCount == 0
|
|
|
|
and (classFlags(t, class_) & ACC_INTERFACE) == 0)
|
|
|
|
{
|
2008-01-21 23:42:12 +00:00
|
|
|
if (classSuper(t, class_)) {
|
|
|
|
// inherit virtual table from superclass
|
|
|
|
set(t, class_, ClassVirtualTable, superVirtualTable);
|
|
|
|
|
|
|
|
if (classInterfaceTable(t, classSuper(t, class_))
|
|
|
|
and arrayLength(t, classInterfaceTable(t, class_))
|
|
|
|
== arrayLength(t, classInterfaceTable(t, classSuper(t, class_))))
|
|
|
|
{
|
|
|
|
// inherit interface table from superclass
|
|
|
|
set(t, class_, ClassInterfaceTable,
|
|
|
|
classInterfaceTable(t, classSuper(t, class_)));
|
2008-01-28 15:12:06 +00:00
|
|
|
} else {
|
|
|
|
populateInterfaceVtables = true;
|
|
|
|
}
|
2008-01-21 23:42:12 +00:00
|
|
|
} else {
|
2008-01-28 15:12:06 +00:00
|
|
|
// apparently, Object does not have any virtual methods. We
|
|
|
|
// give it a vtable anyway so code doesn't break elsewhere.
|
2009-03-04 03:05:48 +00:00
|
|
|
object vtable = makeArray(t, 0);
|
2008-01-21 23:42:12 +00:00
|
|
|
set(t, class_, ClassVirtualTable, vtable);
|
2007-11-27 22:23:00 +00:00
|
|
|
}
|
2007-07-14 17:31:01 +00:00
|
|
|
} else if (virtualCount) {
|
|
|
|
// generate class vtable
|
|
|
|
|
2009-03-04 03:05:48 +00:00
|
|
|
object vtable = makeArray(t, virtualCount);
|
2007-07-14 17:31:01 +00:00
|
|
|
|
2007-08-14 00:37:00 +00:00
|
|
|
unsigned i = 0;
|
2007-07-14 17:31:01 +00:00
|
|
|
if (classFlags(t, class_) & ACC_INTERFACE) {
|
2007-07-16 23:58:37 +00:00
|
|
|
PROTECT(t, vtable);
|
|
|
|
|
2008-11-22 23:38:41 +00:00
|
|
|
for (HashMapIterator it(t, virtualMap); it.hasMore();) {
|
|
|
|
object method = tripleFirst(t, it.next());
|
2007-08-14 00:37:00 +00:00
|
|
|
assert(t, arrayBody(t, vtable, methodOffset(t, method)) == 0);
|
2007-10-22 17:22:30 +00:00
|
|
|
set(t, vtable, ArrayBody + (methodOffset(t, method) * BytesPerWord),
|
|
|
|
method);
|
2007-08-14 00:37:00 +00:00
|
|
|
++ i;
|
2007-07-14 17:31:01 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (superVirtualTable) {
|
|
|
|
for (; i < arrayLength(t, superVirtualTable); ++i) {
|
|
|
|
object method = arrayBody(t, superVirtualTable, i);
|
|
|
|
method = hashMapFind(t, virtualMap, method, methodHash, methodEqual);
|
|
|
|
|
2007-10-22 17:22:30 +00:00
|
|
|
set(t, vtable, ArrayBody + (i * BytesPerWord), method);
|
2007-07-14 17:31:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (object p = listFront(t, newVirtuals); p; p = pairSecond(t, p)) {
|
2007-10-22 17:22:30 +00:00
|
|
|
set(t, vtable, ArrayBody + (i * BytesPerWord), pairFirst(t, p));
|
|
|
|
++ i;
|
2007-07-14 17:31:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-08-14 00:37:00 +00:00
|
|
|
assert(t, arrayLength(t, vtable) == i);
|
|
|
|
|
2007-10-22 17:22:30 +00:00
|
|
|
set(t, class_, ClassVirtualTable, vtable);
|
2007-07-14 17:31:01 +00:00
|
|
|
|
|
|
|
if ((classFlags(t, class_) & ACC_INTERFACE) == 0) {
|
2008-01-28 15:12:06 +00:00
|
|
|
populateInterfaceVtables = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-03-21 23:42:36 +00:00
|
|
|
if (populateInterfaceVtables) {
|
2008-01-28 15:12:06 +00:00
|
|
|
// generate interface vtables
|
|
|
|
object itable = classInterfaceTable(t, class_);
|
|
|
|
if (itable) {
|
|
|
|
PROTECT(t, itable);
|
|
|
|
|
|
|
|
for (unsigned i = 0; i < arrayLength(t, itable); i += 2) {
|
|
|
|
object ivtable = classVirtualTable(t, arrayBody(t, itable, i));
|
|
|
|
if (ivtable) {
|
|
|
|
object vtable = arrayBody(t, itable, i + 1);
|
2007-07-14 17:31:01 +00:00
|
|
|
|
2008-01-28 15:12:06 +00:00
|
|
|
for (unsigned j = 0; j < arrayLength(t, ivtable); ++j) {
|
|
|
|
object method = arrayBody(t, ivtable, j);
|
|
|
|
method = hashMapFind
|
|
|
|
(t, virtualMap, method, methodHash, methodEqual);
|
2008-03-21 23:42:36 +00:00
|
|
|
|
|
|
|
// note that method may be null in the case of an abstract
|
|
|
|
// class
|
2007-08-14 00:37:00 +00:00
|
|
|
|
2008-01-28 15:12:06 +00:00
|
|
|
set(t, vtable, ArrayBody + (j * BytesPerWord), method);
|
2007-07-14 17:31:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-11-05 21:40:17 +00:00
|
|
|
void
|
|
|
|
updateClassTables(Thread* t, object newClass, object oldClass)
|
|
|
|
{
|
|
|
|
object fieldTable = classFieldTable(t, newClass);
|
|
|
|
if (fieldTable) {
|
|
|
|
for (unsigned i = 0; i < arrayLength(t, fieldTable); ++i) {
|
|
|
|
set(t, arrayBody(t, fieldTable, i), FieldClass, newClass);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (classFlags(t, newClass) & ACC_INTERFACE) {
|
|
|
|
object virtualTable = classVirtualTable(t, newClass);
|
|
|
|
if (virtualTable) {
|
|
|
|
for (unsigned i = 0; i < arrayLength(t, virtualTable); ++i) {
|
|
|
|
if (methodClass(t, arrayBody(t, virtualTable, i)) == oldClass) {
|
|
|
|
set(t, arrayBody(t, virtualTable, i), MethodClass, newClass);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
object methodTable = classMethodTable(t, newClass);
|
|
|
|
if (methodTable) {
|
|
|
|
for (unsigned i = 0; i < arrayLength(t, methodTable); ++i) {
|
|
|
|
set(t, arrayBody(t, methodTable, i), MethodClass, newClass);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-07-14 17:31:01 +00:00
|
|
|
void
|
|
|
|
updateBootstrapClass(Thread* t, object bootstrapClass, object class_)
|
|
|
|
{
|
|
|
|
expect(t, bootstrapClass != class_);
|
|
|
|
|
|
|
|
// verify that the classes have the same layout
|
|
|
|
expect(t, classSuper(t, bootstrapClass) == classSuper(t, class_));
|
2007-11-05 21:40:17 +00:00
|
|
|
|
|
|
|
expect(t, bootstrapClass == arrayBody(t, t->m->types, Machine::ClassType)
|
2009-05-16 08:03:03 +00:00
|
|
|
or classFixedSize(t, bootstrapClass) >= classFixedSize(t, class_));
|
2007-07-14 17:31:01 +00:00
|
|
|
|
|
|
|
PROTECT(t, bootstrapClass);
|
|
|
|
PROTECT(t, class_);
|
|
|
|
|
|
|
|
ENTER(t, Thread::ExclusiveState);
|
|
|
|
|
2007-11-05 15:39:48 +00:00
|
|
|
classVmFlags(t, bootstrapClass) &= ~BootstrapFlag;
|
|
|
|
classVmFlags(t, bootstrapClass) |= classVmFlags(t, class_);
|
2009-05-16 08:03:03 +00:00
|
|
|
classFlags(t, bootstrapClass) |= classFlags(t, class_);
|
2007-07-14 17:31:01 +00:00
|
|
|
|
2007-10-22 17:22:30 +00:00
|
|
|
set(t, bootstrapClass, ClassSuper, classSuper(t, class_));
|
|
|
|
set(t, bootstrapClass, ClassInterfaceTable, classInterfaceTable(t, class_));
|
|
|
|
set(t, bootstrapClass, ClassVirtualTable, classVirtualTable(t, class_));
|
|
|
|
set(t, bootstrapClass, ClassFieldTable, classFieldTable(t, class_));
|
|
|
|
set(t, bootstrapClass, ClassMethodTable, classMethodTable(t, class_));
|
|
|
|
set(t, bootstrapClass, ClassStaticTable, classStaticTable(t, class_));
|
2007-07-14 17:31:01 +00:00
|
|
|
|
2007-11-05 21:40:17 +00:00
|
|
|
updateClassTables(t, bootstrapClass, class_);
|
2007-07-14 17:31:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
object
|
|
|
|
makeArrayClass(Thread* t, unsigned dimensions, object spec,
|
|
|
|
object elementClass)
|
|
|
|
{
|
2007-08-20 02:57:32 +00:00
|
|
|
// todo: arrays should implement Cloneable and Serializable
|
2007-11-05 21:40:17 +00:00
|
|
|
object vtable = classVirtualTable
|
|
|
|
(t, arrayBody(t, t->m->types, Machine::JobjectType));
|
|
|
|
|
2007-12-11 21:26:59 +00:00
|
|
|
object c = t->m->processor->makeClass
|
2007-07-14 17:31:01 +00:00
|
|
|
(t,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
dimensions,
|
|
|
|
2 * BytesPerWord,
|
|
|
|
BytesPerWord,
|
2007-09-24 01:39:03 +00:00
|
|
|
classObjectMask(t, arrayBody(t, t->m->types, Machine::ArrayType)),
|
2007-07-14 17:31:01 +00:00
|
|
|
spec,
|
2007-09-24 01:39:03 +00:00
|
|
|
arrayBody(t, t->m->types, Machine::JobjectType),
|
2007-07-14 17:31:01 +00:00
|
|
|
0,
|
2007-11-05 21:40:17 +00:00
|
|
|
vtable,
|
2007-07-14 17:31:01 +00:00
|
|
|
0,
|
2007-07-30 23:19:05 +00:00
|
|
|
0,
|
2007-08-20 02:57:32 +00:00
|
|
|
elementClass,
|
2007-11-05 21:40:17 +00:00
|
|
|
t->m->loader,
|
|
|
|
arrayLength(t, vtable));
|
2007-12-11 21:26:59 +00:00
|
|
|
|
|
|
|
t->m->processor->initVtable(t, c);
|
|
|
|
|
|
|
|
return c;
|
2007-07-14 17:31:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
object
|
|
|
|
makeArrayClass(Thread* t, object spec)
|
|
|
|
{
|
|
|
|
PROTECT(t, spec);
|
|
|
|
|
|
|
|
const char* s = reinterpret_cast<const char*>(&byteArrayBody(t, spec, 0));
|
|
|
|
const char* start = s;
|
|
|
|
unsigned dimensions = 0;
|
|
|
|
for (; *s == '['; ++s) ++ dimensions;
|
|
|
|
|
|
|
|
object elementSpec;
|
|
|
|
switch (*s) {
|
|
|
|
case 'L': {
|
|
|
|
++ s;
|
|
|
|
const char* elementSpecStart = s;
|
|
|
|
while (*s and *s != ';') ++ s;
|
|
|
|
|
2009-03-04 03:05:48 +00:00
|
|
|
elementSpec = makeByteArray(t, s - elementSpecStart + 1);
|
2007-07-14 17:31:01 +00:00
|
|
|
memcpy(&byteArrayBody(t, elementSpec, 0),
|
|
|
|
&byteArrayBody(t, spec, elementSpecStart - start),
|
|
|
|
s - elementSpecStart);
|
|
|
|
byteArrayBody(t, elementSpec, s - elementSpecStart) = 0;
|
|
|
|
} break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
if (dimensions > 1) {
|
|
|
|
char c = *s;
|
2009-03-04 03:05:48 +00:00
|
|
|
elementSpec = makeByteArray(t, 3);
|
2007-07-14 17:31:01 +00:00
|
|
|
byteArrayBody(t, elementSpec, 0) = '[';
|
|
|
|
byteArrayBody(t, elementSpec, 1) = c;
|
|
|
|
byteArrayBody(t, elementSpec, 2) = 0;
|
|
|
|
-- dimensions;
|
|
|
|
} else {
|
|
|
|
abort(t);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-07-14 18:37:04 +00:00
|
|
|
object elementClass = hashMapFind
|
2007-09-24 01:39:03 +00:00
|
|
|
(t, t->m->bootstrapClassMap, elementSpec, byteArrayHash, byteArrayEqual);
|
2007-07-14 18:37:04 +00:00
|
|
|
|
|
|
|
if (elementClass == 0) {
|
|
|
|
elementClass = resolveClass(t, elementSpec);
|
|
|
|
if (UNLIKELY(t->exception)) return 0;
|
|
|
|
}
|
2007-07-14 17:31:01 +00:00
|
|
|
|
|
|
|
return makeArrayClass(t, dimensions, spec, elementClass);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
removeMonitor(Thread* t, object o)
|
|
|
|
{
|
2008-05-05 13:07:59 +00:00
|
|
|
expect(t, t->state == Thread::ExclusiveState
|
|
|
|
or t->state == Thread::ExitState);
|
2008-05-05 13:04:53 +00:00
|
|
|
|
2008-01-19 20:12:16 +00:00
|
|
|
unsigned hash;
|
|
|
|
if (DebugMonitors) {
|
|
|
|
hash = objectHash(t, o);
|
|
|
|
}
|
|
|
|
|
2007-09-24 01:39:03 +00:00
|
|
|
object p = hashMapRemove(t, t->m->monitorMap, o, objectHash, objectEqual);
|
2007-07-14 17:31:01 +00:00
|
|
|
|
2008-08-11 21:16:55 +00:00
|
|
|
expect(t, p);
|
2007-07-14 17:31:01 +00:00
|
|
|
|
|
|
|
if (DebugMonitors) {
|
|
|
|
fprintf(stderr, "dispose monitor %p for object %x\n",
|
|
|
|
static_cast<System::Monitor*>(pointerValue(t, p)),
|
2008-01-19 20:12:16 +00:00
|
|
|
hash);
|
2007-07-14 17:31:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static_cast<System::Monitor*>(pointerValue(t, p))->dispose();
|
|
|
|
}
|
|
|
|
|
2007-07-29 00:02:32 +00:00
|
|
|
void
|
|
|
|
removeString(Thread* t, object o)
|
|
|
|
{
|
2007-09-24 01:39:03 +00:00
|
|
|
hashMapRemove(t, t->m->stringMap, o, stringHash, objectEqual);
|
|
|
|
}
|
|
|
|
|
2007-11-04 21:15:28 +00:00
|
|
|
void
|
|
|
|
bootClass(Thread* t, Machine::Type type, int superType, uint32_t objectMask,
|
2007-11-05 21:40:17 +00:00
|
|
|
unsigned fixedSize, unsigned arrayElementSize, unsigned vtableLength)
|
2007-11-04 21:15:28 +00:00
|
|
|
{
|
2007-11-06 15:29:05 +00:00
|
|
|
object super = (superType >= 0 ? arrayBody(t, t->m->types, superType) : 0);
|
|
|
|
|
2007-11-04 21:15:28 +00:00
|
|
|
object mask;
|
|
|
|
if (objectMask) {
|
2007-11-06 15:29:05 +00:00
|
|
|
if (super
|
|
|
|
and classObjectMask(t, super)
|
|
|
|
and intArrayBody(t, classObjectMask(t, super), 0)
|
|
|
|
== static_cast<int32_t>(objectMask))
|
|
|
|
{
|
|
|
|
mask = classObjectMask(t, arrayBody(t, t->m->types, superType));
|
|
|
|
} else {
|
2009-03-04 03:05:48 +00:00
|
|
|
mask = makeIntArray(t, 1);
|
2007-11-06 15:29:05 +00:00
|
|
|
intArrayBody(t, mask, 0) = objectMask;
|
|
|
|
}
|
2007-11-04 21:15:28 +00:00
|
|
|
} else {
|
|
|
|
mask = 0;
|
|
|
|
}
|
|
|
|
|
2007-11-06 15:29:05 +00:00
|
|
|
super = (superType >= 0 ? arrayBody(t, t->m->types, superType) : 0);
|
2007-11-04 21:15:28 +00:00
|
|
|
|
2007-11-05 21:40:17 +00:00
|
|
|
object class_ = t->m->processor->makeClass
|
2007-11-05 14:28:46 +00:00
|
|
|
(t, 0, BootstrapFlag, 0, fixedSize, arrayElementSize, mask, 0, super, 0, 0,
|
2007-11-05 21:40:17 +00:00
|
|
|
0, 0, 0, t->m->loader, vtableLength);
|
2007-11-04 21:15:28 +00:00
|
|
|
|
|
|
|
set(t, t->m->types, ArrayBody + (type * BytesPerWord), class_);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2007-11-05 14:28:46 +00:00
|
|
|
bootJavaClass(Thread* t, Machine::Type type, int superType, const char* name,
|
|
|
|
int vtableLength, object bootMethod)
|
2007-11-04 21:15:28 +00:00
|
|
|
{
|
|
|
|
PROTECT(t, bootMethod);
|
|
|
|
|
|
|
|
object n = makeByteArray(t, name);
|
|
|
|
object class_ = arrayBody(t, t->m->types, type);
|
|
|
|
|
|
|
|
set(t, class_, ClassName, n);
|
|
|
|
|
2007-11-05 14:28:46 +00:00
|
|
|
object vtable;
|
|
|
|
if (vtableLength >= 0) {
|
|
|
|
PROTECT(t, class_);
|
|
|
|
|
2009-03-04 03:05:48 +00:00
|
|
|
vtable = makeArray(t, vtableLength);
|
2007-11-05 14:28:46 +00:00
|
|
|
for (int i = 0; i < vtableLength; ++ i) {
|
|
|
|
arrayBody(t, vtable, i) = bootMethod;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
vtable = classVirtualTable(t, arrayBody(t, t->m->types, superType));
|
2007-11-04 21:15:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
set(t, class_, ClassVirtualTable, vtable);
|
|
|
|
|
2007-12-11 21:26:59 +00:00
|
|
|
t->m->processor->initVtable(t, class_);
|
|
|
|
|
2007-11-04 21:15:28 +00:00
|
|
|
hashMapInsert(t, t->m->bootstrapClassMap, n, class_, byteArrayHash);
|
|
|
|
}
|
|
|
|
|
2008-11-28 22:02:45 +00:00
|
|
|
void
|
|
|
|
boot(Thread* t)
|
|
|
|
{
|
|
|
|
Machine* m = t->m;
|
|
|
|
|
2008-11-29 23:08:14 +00:00
|
|
|
m->unsafe = true;
|
|
|
|
|
2008-11-28 22:02:45 +00:00
|
|
|
m->loader = allocate(t, sizeof(void*) * 3, true);
|
|
|
|
|
|
|
|
m->types = allocate(t, pad((TypeCount + 2) * BytesPerWord), true);
|
|
|
|
arrayLength(t, m->types) = TypeCount;
|
|
|
|
|
|
|
|
#include "type-initializations.cpp"
|
|
|
|
|
|
|
|
object arrayClass = arrayBody(t, m->types, Machine::ArrayType);
|
|
|
|
set(t, m->types, 0, arrayClass);
|
|
|
|
|
|
|
|
object loaderClass = arrayBody
|
|
|
|
(t, m->types, Machine::SystemClassLoaderType);
|
|
|
|
set(t, m->loader, 0, loaderClass);
|
|
|
|
|
|
|
|
object objectClass = arrayBody(t, m->types, Machine::JobjectType);
|
|
|
|
|
|
|
|
object classClass = arrayBody(t, m->types, Machine::ClassType);
|
|
|
|
set(t, classClass, 0, classClass);
|
|
|
|
set(t, classClass, ClassSuper, objectClass);
|
|
|
|
|
|
|
|
object intArrayClass = arrayBody(t, m->types, Machine::IntArrayType);
|
|
|
|
set(t, intArrayClass, 0, classClass);
|
|
|
|
set(t, intArrayClass, ClassSuper, objectClass);
|
|
|
|
|
|
|
|
m->unsafe = false;
|
|
|
|
|
2009-05-03 20:57:11 +00:00
|
|
|
classFlags(t, arrayBody(t, m->types, Machine::SingletonType))
|
2008-11-28 22:02:45 +00:00
|
|
|
|= SingletonFlag;
|
|
|
|
|
2009-05-03 20:57:11 +00:00
|
|
|
classFlags(t, arrayBody(t, m->types, Machine::ContinuationType))
|
|
|
|
|= ContinuationFlag;
|
|
|
|
|
2008-11-28 22:02:45 +00:00
|
|
|
classVmFlags(t, arrayBody(t, m->types, Machine::JreferenceType))
|
|
|
|
|= ReferenceFlag;
|
|
|
|
classVmFlags(t, arrayBody(t, m->types, Machine::WeakReferenceType))
|
|
|
|
|= ReferenceFlag | WeakReferenceFlag;
|
|
|
|
classVmFlags(t, arrayBody(t, m->types, Machine::PhantomReferenceType))
|
|
|
|
|= ReferenceFlag | WeakReferenceFlag;
|
|
|
|
|
|
|
|
classVmFlags(t, arrayBody(t, m->types, Machine::JbooleanType))
|
|
|
|
|= PrimitiveFlag;
|
|
|
|
classVmFlags(t, arrayBody(t, m->types, Machine::JbyteType))
|
|
|
|
|= PrimitiveFlag;
|
|
|
|
classVmFlags(t, arrayBody(t, m->types, Machine::JcharType))
|
|
|
|
|= PrimitiveFlag;
|
|
|
|
classVmFlags(t, arrayBody(t, m->types, Machine::JshortType))
|
|
|
|
|= PrimitiveFlag;
|
|
|
|
classVmFlags(t, arrayBody(t, m->types, Machine::JintType))
|
|
|
|
|= PrimitiveFlag;
|
|
|
|
classVmFlags(t, arrayBody(t, m->types, Machine::JlongType))
|
|
|
|
|= PrimitiveFlag;
|
|
|
|
classVmFlags(t, arrayBody(t, m->types, Machine::JfloatType))
|
|
|
|
|= PrimitiveFlag;
|
|
|
|
classVmFlags(t, arrayBody(t, m->types, Machine::JdoubleType))
|
|
|
|
|= PrimitiveFlag;
|
|
|
|
classVmFlags(t, arrayBody(t, m->types, Machine::JvoidType))
|
|
|
|
|= PrimitiveFlag;
|
|
|
|
|
|
|
|
m->bootstrapClassMap = makeHashMap(t, 0, 0);
|
|
|
|
|
2008-12-02 02:38:00 +00:00
|
|
|
m->classMap = makeHashMap(t, 0, 0);
|
2008-11-28 22:02:45 +00:00
|
|
|
|
|
|
|
m->stringMap = makeWeakHashMap(t, 0, 0);
|
|
|
|
|
2008-12-04 02:09:57 +00:00
|
|
|
m->processor->boot(t, 0);
|
|
|
|
|
2009-03-04 03:05:48 +00:00
|
|
|
{ object bootCode = makeCode(t, 0, 0, 0, 0, 0, 1);
|
2008-11-28 22:02:45 +00:00
|
|
|
codeBody(t, bootCode, 0) = impdep1;
|
|
|
|
object bootMethod = makeMethod
|
|
|
|
(t, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, bootCode, 0);
|
|
|
|
PROTECT(t, bootMethod);
|
|
|
|
|
|
|
|
#include "type-java-initializations.cpp"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-10-28 19:14:53 +00:00
|
|
|
class HeapClient: public Heap::Client {
|
|
|
|
public:
|
|
|
|
HeapClient(Machine* m): m(m) { }
|
|
|
|
|
|
|
|
virtual void visitRoots(Heap::Visitor* v) {
|
2008-11-11 15:20:49 +00:00
|
|
|
::visitRoots(m, v);
|
2007-10-28 19:14:53 +00:00
|
|
|
|
|
|
|
postVisit(m->rootThread, v);
|
|
|
|
}
|
|
|
|
|
2008-01-13 22:05:08 +00:00
|
|
|
virtual void collect(void* context, Heap::CollectionType type) {
|
2008-05-05 13:04:53 +00:00
|
|
|
collect(static_cast<Thread*>(context), type);
|
2008-01-13 22:05:08 +00:00
|
|
|
}
|
|
|
|
|
2007-10-28 19:14:53 +00:00
|
|
|
virtual bool isFixed(void* p) {
|
|
|
|
return objectFixed(m->rootThread, static_cast<object>(p));
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual unsigned sizeInWords(void* p) {
|
|
|
|
Thread* t = m->rootThread;
|
|
|
|
|
|
|
|
object o = static_cast<object>(m->heap->follow(mask(p)));
|
|
|
|
|
|
|
|
unsigned n = baseSize(t, o, static_cast<object>
|
|
|
|
(m->heap->follow(objectClass(t, o))));
|
|
|
|
|
|
|
|
if (objectExtended(t, o)) {
|
|
|
|
++ n;
|
|
|
|
}
|
|
|
|
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual unsigned copiedSizeInWords(void* p) {
|
|
|
|
Thread* t = m->rootThread;
|
|
|
|
|
|
|
|
object o = static_cast<object>(m->heap->follow(mask(p)));
|
|
|
|
assert(t, not objectFixed(t, o));
|
|
|
|
|
|
|
|
unsigned n = baseSize(t, o, static_cast<object>
|
|
|
|
(m->heap->follow(objectClass(t, o))));
|
|
|
|
|
|
|
|
if (objectExtended(t, o) or hashTaken(t, o)) {
|
|
|
|
++ n;
|
|
|
|
}
|
|
|
|
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void copy(void* srcp, void* dstp) {
|
|
|
|
Thread* t = m->rootThread;
|
|
|
|
|
|
|
|
object src = static_cast<object>(m->heap->follow(mask(srcp)));
|
|
|
|
assert(t, not objectFixed(t, src));
|
|
|
|
|
|
|
|
object class_ = static_cast<object>
|
|
|
|
(m->heap->follow(objectClass(t, src)));
|
|
|
|
|
|
|
|
unsigned base = baseSize(t, src, class_);
|
|
|
|
unsigned n = extendedSize(t, src, base);
|
|
|
|
|
|
|
|
object dst = static_cast<object>(dstp);
|
|
|
|
|
|
|
|
memcpy(dst, src, n * BytesPerWord);
|
|
|
|
|
|
|
|
if (hashTaken(t, src)) {
|
|
|
|
cast<uintptr_t>(dst, 0) &= PointerMask;
|
|
|
|
cast<uintptr_t>(dst, 0) |= ExtendedMark;
|
|
|
|
extendedWord(t, dst, base) = takeHash(t, src);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void walk(void* p, Heap::Walker* w) {
|
|
|
|
object o = static_cast<object>(m->heap->follow(mask(p)));
|
2008-11-11 15:20:49 +00:00
|
|
|
::walk(m->rootThread, w, o, 0);
|
2007-10-28 19:14:53 +00:00
|
|
|
}
|
|
|
|
|
2008-01-13 22:05:08 +00:00
|
|
|
void dispose() {
|
2008-04-13 18:15:04 +00:00
|
|
|
m->heap->free(this, sizeof(*this));
|
2007-10-28 19:14:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
Machine* m;
|
|
|
|
};
|
|
|
|
|
2007-07-06 23:50:26 +00:00
|
|
|
} // namespace
|
|
|
|
|
|
|
|
namespace vm {
|
|
|
|
|
2008-01-13 22:05:08 +00:00
|
|
|
Machine::Machine(System* system, Heap* heap, Finder* finder,
|
2008-11-11 15:20:49 +00:00
|
|
|
Processor* processor, const char** properties,
|
|
|
|
unsigned propertyCount):
|
2007-09-10 23:33:58 +00:00
|
|
|
vtable(&javaVMVTable),
|
2007-07-06 23:50:26 +00:00
|
|
|
system(system),
|
2008-04-13 18:15:04 +00:00
|
|
|
heapClient(new (heap->allocate(sizeof(HeapClient)))
|
2008-01-13 22:05:08 +00:00
|
|
|
HeapClient(this)),
|
|
|
|
heap(heap),
|
2007-08-10 23:45:47 +00:00
|
|
|
finder(finder),
|
2007-09-24 01:39:03 +00:00
|
|
|
processor(processor),
|
2007-07-06 23:50:26 +00:00
|
|
|
rootThread(0),
|
|
|
|
exclusive(0),
|
2007-09-07 23:20:21 +00:00
|
|
|
jniReferences(0),
|
2008-11-11 15:20:49 +00:00
|
|
|
properties(properties),
|
|
|
|
propertyCount(propertyCount),
|
2007-07-06 23:50:26 +00:00
|
|
|
activeCount(0),
|
|
|
|
liveCount(0),
|
2007-10-28 19:14:53 +00:00
|
|
|
fixedFootprint(0),
|
2007-09-10 23:33:58 +00:00
|
|
|
localThread(0),
|
2007-07-06 23:50:26 +00:00
|
|
|
stateLock(0),
|
|
|
|
heapLock(0),
|
|
|
|
classLock(0),
|
2007-07-20 03:18:25 +00:00
|
|
|
referenceLock(0),
|
2008-01-29 15:19:15 +00:00
|
|
|
libraries(0),
|
2007-07-30 23:19:05 +00:00
|
|
|
loader(0),
|
2008-12-02 02:38:00 +00:00
|
|
|
classMap(0),
|
2007-07-06 23:50:26 +00:00
|
|
|
bootstrapClassMap(0),
|
|
|
|
monitorMap(0),
|
2007-07-29 00:02:32 +00:00
|
|
|
stringMap(0),
|
2007-07-06 23:50:26 +00:00
|
|
|
types(0),
|
2008-08-15 18:32:33 +00:00
|
|
|
jniMethodTable(0),
|
2007-07-06 23:50:26 +00:00
|
|
|
finalizers(0),
|
2007-07-10 01:43:43 +00:00
|
|
|
tenuredFinalizers(0),
|
|
|
|
finalizeQueue(0),
|
2007-07-10 03:04:49 +00:00
|
|
|
weakReferences(0),
|
2007-07-10 01:43:43 +00:00
|
|
|
tenuredWeakReferences(0),
|
2007-08-22 14:50:29 +00:00
|
|
|
unsafe(false),
|
|
|
|
heapPoolIndex(0)
|
2007-07-06 23:50:26 +00:00
|
|
|
{
|
2008-01-13 22:05:08 +00:00
|
|
|
heap->setClient(heapClient);
|
|
|
|
|
2007-09-10 23:33:58 +00:00
|
|
|
populateJNITables(&javaVMVTable, &jniEnvVTable);
|
2007-07-06 23:50:26 +00:00
|
|
|
|
2007-09-10 23:33:58 +00:00
|
|
|
if (not system->success(system->make(&localThread)) or
|
|
|
|
not system->success(system->make(&stateLock)) or
|
2007-07-06 23:50:26 +00:00
|
|
|
not system->success(system->make(&heapLock)) or
|
|
|
|
not system->success(system->make(&classLock)) or
|
2007-09-18 23:30:09 +00:00
|
|
|
not system->success(system->make(&referenceLock)) or
|
2008-11-11 15:20:49 +00:00
|
|
|
not system->success
|
|
|
|
(system->load(&libraries, findProperty(this, "avian.bootstrap"), false)))
|
2007-07-06 23:50:26 +00:00
|
|
|
{
|
|
|
|
system->abort();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Machine::dispose()
|
|
|
|
{
|
2007-09-10 23:33:58 +00:00
|
|
|
localThread->dispose();
|
2007-07-06 23:50:26 +00:00
|
|
|
stateLock->dispose();
|
|
|
|
heapLock->dispose();
|
|
|
|
classLock->dispose();
|
2007-07-20 03:18:25 +00:00
|
|
|
referenceLock->dispose();
|
2007-07-06 23:50:26 +00:00
|
|
|
|
2008-01-29 15:19:15 +00:00
|
|
|
if (libraries) {
|
|
|
|
libraries->disposeAll();
|
2007-07-06 23:50:26 +00:00
|
|
|
}
|
2007-09-07 23:20:21 +00:00
|
|
|
|
|
|
|
for (Reference* r = jniReferences; r;) {
|
2008-01-13 22:05:08 +00:00
|
|
|
Reference* tmp = r;
|
2007-09-07 23:20:21 +00:00
|
|
|
r = r->next;
|
2008-04-13 18:15:04 +00:00
|
|
|
heap->free(tmp, sizeof(*tmp));
|
2007-09-07 23:20:21 +00:00
|
|
|
}
|
2007-10-28 01:54:30 +00:00
|
|
|
|
|
|
|
for (unsigned i = 0; i < heapPoolIndex; ++i) {
|
2008-11-22 21:47:18 +00:00
|
|
|
heap->free(heapPool[i], ThreadHeapSizeInBytes);
|
2007-10-28 01:54:30 +00:00
|
|
|
}
|
|
|
|
|
2008-11-11 15:20:49 +00:00
|
|
|
heap->free(properties, sizeof(const char*) * propertyCount);
|
|
|
|
|
2008-01-13 22:05:08 +00:00
|
|
|
static_cast<HeapClient*>(heapClient)->dispose();
|
2007-10-28 19:14:53 +00:00
|
|
|
|
2008-04-13 18:15:04 +00:00
|
|
|
heap->free(this, sizeof(*this));
|
2007-07-06 23:50:26 +00:00
|
|
|
}
|
|
|
|
|
2007-07-24 01:44:20 +00:00
|
|
|
Thread::Thread(Machine* m, object javaThread, Thread* parent):
|
2007-07-06 23:50:26 +00:00
|
|
|
vtable(&(m->jniEnvVTable)),
|
2007-09-24 01:39:03 +00:00
|
|
|
m(m),
|
2007-07-07 18:09:16 +00:00
|
|
|
parent(parent),
|
|
|
|
peer((parent ? parent->child : 0)),
|
2007-07-06 23:50:26 +00:00
|
|
|
child(0),
|
|
|
|
state(NoState),
|
2007-09-07 23:20:21 +00:00
|
|
|
criticalLevel(0),
|
2007-07-07 18:09:16 +00:00
|
|
|
systemThread(0),
|
|
|
|
javaThread(javaThread),
|
2007-07-06 23:50:26 +00:00
|
|
|
exception(0),
|
|
|
|
heapIndex(0),
|
2007-08-23 02:24:25 +00:00
|
|
|
heapOffset(0),
|
2007-07-28 21:28:25 +00:00
|
|
|
protector(0),
|
2007-10-14 01:18:25 +00:00
|
|
|
runnable(this),
|
2008-01-13 22:05:08 +00:00
|
|
|
defaultHeap(static_cast<uintptr_t*>
|
2008-11-22 21:47:18 +00:00
|
|
|
(m->heap->allocate(ThreadHeapSizeInBytes))),
|
2008-04-09 19:08:13 +00:00
|
|
|
heap(defaultHeap),
|
|
|
|
backupHeap(0),
|
|
|
|
backupHeapIndex(0),
|
2008-04-21 22:36:13 +00:00
|
|
|
backupHeapSizeInWords(0),
|
|
|
|
tracing(false)
|
2007-07-16 23:58:37 +00:00
|
|
|
#ifdef VM_STRESS
|
2007-10-14 01:18:25 +00:00
|
|
|
, stress(false)
|
2007-07-16 23:58:37 +00:00
|
|
|
#endif // VM_STRESS
|
2007-10-25 22:06:05 +00:00
|
|
|
{ }
|
|
|
|
|
|
|
|
void
|
|
|
|
Thread::init()
|
2007-07-06 23:50:26 +00:00
|
|
|
{
|
2009-03-04 03:05:48 +00:00
|
|
|
memset(defaultHeap, 0, ThreadHeapSizeInBytes);
|
|
|
|
|
2007-07-07 18:09:16 +00:00
|
|
|
if (parent == 0) {
|
|
|
|
assert(this, m->rootThread == 0);
|
|
|
|
assert(this, javaThread == 0);
|
|
|
|
|
2007-07-06 23:50:26 +00:00
|
|
|
m->rootThread = this;
|
|
|
|
m->unsafe = true;
|
|
|
|
|
2007-07-28 21:28:25 +00:00
|
|
|
if (not m->system->success(m->system->attach(&runnable))) {
|
2007-07-07 18:09:16 +00:00
|
|
|
abort(this);
|
|
|
|
}
|
|
|
|
|
2008-11-28 22:02:45 +00:00
|
|
|
BootImage* image = 0;
|
|
|
|
const char* imageFunctionName = findProperty(m, "avian.bootimage");
|
|
|
|
if (imageFunctionName) {
|
|
|
|
void* p = m->libraries->resolve(imageFunctionName);
|
|
|
|
if (p) {
|
|
|
|
BootImage* (*function)(unsigned*);
|
|
|
|
memcpy(&function, &p, BytesPerWord);
|
2007-07-06 23:50:26 +00:00
|
|
|
|
2008-11-28 22:02:45 +00:00
|
|
|
unsigned size;
|
|
|
|
image = function(&size);
|
|
|
|
}
|
|
|
|
}
|
2007-07-06 23:50:26 +00:00
|
|
|
|
|
|
|
m->unsafe = false;
|
|
|
|
|
2008-11-28 22:02:45 +00:00
|
|
|
if (image) {
|
2008-12-02 02:38:00 +00:00
|
|
|
m->processor->boot(this, image);
|
2008-11-28 22:02:45 +00:00
|
|
|
} else {
|
|
|
|
boot(this);
|
2007-11-04 21:15:28 +00:00
|
|
|
}
|
2007-07-30 23:19:05 +00:00
|
|
|
|
2007-07-29 18:52:08 +00:00
|
|
|
m->monitorMap = makeWeakHashMap(this, 0, 0);
|
2007-07-06 23:50:26 +00:00
|
|
|
|
2009-03-04 03:05:48 +00:00
|
|
|
m->jniMethodTable = makeVector(this, 0, 0);
|
2007-09-07 23:20:21 +00:00
|
|
|
|
2007-09-10 23:33:58 +00:00
|
|
|
m->localThread->set(this);
|
2007-07-07 18:09:16 +00:00
|
|
|
} else {
|
2007-11-27 22:23:00 +00:00
|
|
|
peer = parent->child;
|
2007-07-07 18:09:16 +00:00
|
|
|
parent->child = this;
|
|
|
|
}
|
2007-09-10 23:33:58 +00:00
|
|
|
|
|
|
|
if (javaThread) {
|
|
|
|
threadPeer(this, javaThread) = reinterpret_cast<jlong>(this);
|
|
|
|
} else {
|
|
|
|
this->javaThread = makeThread
|
2008-07-14 00:21:04 +00:00
|
|
|
(this, reinterpret_cast<int64_t>(this), 0, 0, 0, 0, m->loader, 0);
|
2007-09-10 23:33:58 +00:00
|
|
|
}
|
2007-07-07 18:09:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Thread::exit()
|
|
|
|
{
|
|
|
|
if (state != Thread::ExitState and
|
|
|
|
state != Thread::ZombieState)
|
|
|
|
{
|
|
|
|
enter(this, Thread::ExclusiveState);
|
|
|
|
|
2007-09-24 01:39:03 +00:00
|
|
|
if (m->liveCount == 1) {
|
2007-07-07 18:09:16 +00:00
|
|
|
vm::exit(this);
|
|
|
|
} else {
|
|
|
|
enter(this, Thread::ZombieState);
|
|
|
|
}
|
2007-07-06 23:50:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Thread::dispose()
|
|
|
|
{
|
2007-07-07 18:09:16 +00:00
|
|
|
if (systemThread) {
|
|
|
|
systemThread->dispose();
|
|
|
|
}
|
|
|
|
|
2008-11-22 21:47:18 +00:00
|
|
|
m->heap->free(defaultHeap, ThreadHeapSizeInBytes);
|
2007-07-17 00:23:23 +00:00
|
|
|
|
2008-01-10 01:20:36 +00:00
|
|
|
m->processor->dispose(this);
|
2007-07-06 23:50:26 +00:00
|
|
|
}
|
|
|
|
|
2007-07-07 18:09:16 +00:00
|
|
|
void
|
|
|
|
exit(Thread* t)
|
|
|
|
{
|
|
|
|
enter(t, Thread::ExitState);
|
|
|
|
|
2007-09-24 01:39:03 +00:00
|
|
|
joinAll(t, t->m->rootThread);
|
2007-07-07 18:09:16 +00:00
|
|
|
|
2007-09-24 01:39:03 +00:00
|
|
|
for (object* p = &(t->m->finalizers); *p;) {
|
2007-07-17 01:55:49 +00:00
|
|
|
object f = *p;
|
|
|
|
*p = finalizerNext(t, *p);
|
|
|
|
|
2007-10-22 20:56:27 +00:00
|
|
|
void (*function)(Thread*, object);
|
|
|
|
memcpy(&function, &finalizerFinalize(t, f), BytesPerWord);
|
|
|
|
function(t, finalizerTarget(t, f));
|
2007-07-07 18:09:16 +00:00
|
|
|
}
|
|
|
|
|
2007-09-24 01:39:03 +00:00
|
|
|
for (object* p = &(t->m->tenuredFinalizers); *p;) {
|
2007-07-17 01:55:49 +00:00
|
|
|
object f = *p;
|
|
|
|
*p = finalizerNext(t, *p);
|
|
|
|
|
2007-10-22 20:56:27 +00:00
|
|
|
void (*function)(Thread*, object);
|
|
|
|
memcpy(&function, &finalizerFinalize(t, f), BytesPerWord);
|
|
|
|
function(t, finalizerTarget(t, f));
|
2007-07-11 04:19:26 +00:00
|
|
|
}
|
|
|
|
|
2007-09-24 01:39:03 +00:00
|
|
|
disposeAll(t, t->m->rootThread);
|
2007-07-07 18:09:16 +00:00
|
|
|
}
|
|
|
|
|
2007-07-06 23:50:26 +00:00
|
|
|
void
|
|
|
|
enter(Thread* t, Thread::State s)
|
|
|
|
{
|
2007-07-16 01:03:02 +00:00
|
|
|
stress(t);
|
|
|
|
|
2007-07-06 23:50:26 +00:00
|
|
|
if (s == t->state) return;
|
|
|
|
|
2007-07-18 01:33:00 +00:00
|
|
|
if (t->state == Thread::ExitState) {
|
|
|
|
// once in exit state, we stay that way
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2007-09-24 01:39:03 +00:00
|
|
|
ACQUIRE_RAW(t, t->m->stateLock);
|
2007-07-06 23:50:26 +00:00
|
|
|
|
|
|
|
switch (s) {
|
|
|
|
case Thread::ExclusiveState: {
|
2007-09-24 01:39:03 +00:00
|
|
|
while (t->m->exclusive) {
|
2007-07-06 23:50:26 +00:00
|
|
|
// another thread got here first.
|
2007-07-07 18:09:16 +00:00
|
|
|
ENTER(t, Thread::IdleState);
|
2007-07-06 23:50:26 +00:00
|
|
|
}
|
|
|
|
|
2008-01-18 01:47:32 +00:00
|
|
|
switch (t->state) {
|
|
|
|
case Thread::ActiveState: break;
|
|
|
|
|
|
|
|
case Thread::IdleState: {
|
|
|
|
++ t->m->activeCount;
|
|
|
|
} break;
|
|
|
|
|
|
|
|
default: abort(t);
|
|
|
|
}
|
|
|
|
|
2007-07-06 23:50:26 +00:00
|
|
|
t->state = Thread::ExclusiveState;
|
2007-09-24 01:39:03 +00:00
|
|
|
t->m->exclusive = t;
|
2007-07-06 23:50:26 +00:00
|
|
|
|
2007-09-24 01:39:03 +00:00
|
|
|
while (t->m->activeCount > 1) {
|
|
|
|
t->m->stateLock->wait(t->systemThread, 0);
|
2007-07-06 23:50:26 +00:00
|
|
|
}
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case Thread::IdleState:
|
|
|
|
case Thread::ZombieState: {
|
|
|
|
switch (t->state) {
|
|
|
|
case Thread::ExclusiveState: {
|
2007-09-24 01:39:03 +00:00
|
|
|
assert(t, t->m->exclusive == t);
|
|
|
|
t->m->exclusive = 0;
|
2007-07-06 23:50:26 +00:00
|
|
|
} break;
|
|
|
|
|
|
|
|
case Thread::ActiveState: break;
|
|
|
|
|
|
|
|
default: abort(t);
|
|
|
|
}
|
|
|
|
|
2007-09-24 01:39:03 +00:00
|
|
|
assert(t, t->m->activeCount > 0);
|
|
|
|
-- t->m->activeCount;
|
2007-07-18 01:33:00 +00:00
|
|
|
|
2007-07-06 23:50:26 +00:00
|
|
|
if (s == Thread::ZombieState) {
|
2007-09-24 01:39:03 +00:00
|
|
|
assert(t, t->m->liveCount > 0);
|
|
|
|
-- t->m->liveCount;
|
2007-07-06 23:50:26 +00:00
|
|
|
}
|
|
|
|
t->state = s;
|
|
|
|
|
2007-09-24 01:39:03 +00:00
|
|
|
t->m->stateLock->notifyAll(t->systemThread);
|
2007-07-06 23:50:26 +00:00
|
|
|
} break;
|
|
|
|
|
|
|
|
case Thread::ActiveState: {
|
|
|
|
switch (t->state) {
|
|
|
|
case Thread::ExclusiveState: {
|
2007-09-24 01:39:03 +00:00
|
|
|
assert(t, t->m->exclusive == t);
|
2007-07-06 23:50:26 +00:00
|
|
|
|
|
|
|
t->state = s;
|
2007-09-24 01:39:03 +00:00
|
|
|
t->m->exclusive = 0;
|
2007-07-06 23:50:26 +00:00
|
|
|
|
2007-09-24 01:39:03 +00:00
|
|
|
t->m->stateLock->notifyAll(t->systemThread);
|
2007-07-06 23:50:26 +00:00
|
|
|
} break;
|
|
|
|
|
|
|
|
case Thread::NoState:
|
|
|
|
case Thread::IdleState: {
|
2007-09-24 01:39:03 +00:00
|
|
|
while (t->m->exclusive) {
|
|
|
|
t->m->stateLock->wait(t->systemThread, 0);
|
2007-07-06 23:50:26 +00:00
|
|
|
}
|
|
|
|
|
2007-09-24 01:39:03 +00:00
|
|
|
++ t->m->activeCount;
|
2007-07-06 23:50:26 +00:00
|
|
|
if (t->state == Thread::NoState) {
|
2007-09-24 01:39:03 +00:00
|
|
|
++ t->m->liveCount;
|
2007-07-06 23:50:26 +00:00
|
|
|
}
|
|
|
|
t->state = s;
|
|
|
|
} break;
|
|
|
|
|
|
|
|
default: abort(t);
|
|
|
|
}
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case Thread::ExitState: {
|
|
|
|
switch (t->state) {
|
|
|
|
case Thread::ExclusiveState: {
|
2007-09-24 01:39:03 +00:00
|
|
|
assert(t, t->m->exclusive == t);
|
|
|
|
t->m->exclusive = 0;
|
2007-11-27 22:23:00 +00:00
|
|
|
|
|
|
|
t->m->stateLock->notifyAll(t->systemThread);
|
2007-07-06 23:50:26 +00:00
|
|
|
} break;
|
|
|
|
|
|
|
|
case Thread::ActiveState: break;
|
|
|
|
|
|
|
|
default: abort(t);
|
|
|
|
}
|
2007-07-18 01:33:00 +00:00
|
|
|
|
2007-09-24 01:39:03 +00:00
|
|
|
assert(t, t->m->activeCount > 0);
|
|
|
|
-- t->m->activeCount;
|
2007-07-18 01:33:00 +00:00
|
|
|
|
2007-07-06 23:50:26 +00:00
|
|
|
t->state = s;
|
|
|
|
|
2007-09-24 01:39:03 +00:00
|
|
|
while (t->m->liveCount > 1) {
|
|
|
|
t->m->stateLock->wait(t->systemThread, 0);
|
2007-07-06 23:50:26 +00:00
|
|
|
}
|
|
|
|
} break;
|
|
|
|
|
|
|
|
default: abort(t);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
object
|
2008-01-10 01:20:36 +00:00
|
|
|
allocate2(Thread* t, unsigned sizeInBytes, bool objectMask)
|
|
|
|
{
|
|
|
|
return allocate3
|
2008-01-13 22:05:08 +00:00
|
|
|
(t, t->m->heap,
|
2008-11-22 21:47:18 +00:00
|
|
|
ceiling(sizeInBytes, BytesPerWord) > ThreadHeapSizeInWords ?
|
2008-01-10 01:20:36 +00:00
|
|
|
Machine::FixedAllocation : Machine::MovableAllocation,
|
2008-04-13 18:15:04 +00:00
|
|
|
sizeInBytes, objectMask);
|
2008-01-10 01:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
object
|
|
|
|
allocate3(Thread* t, Allocator* allocator, Machine::AllocationType type,
|
2008-04-13 18:15:04 +00:00
|
|
|
unsigned sizeInBytes, bool objectMask)
|
2007-10-28 01:54:30 +00:00
|
|
|
{
|
2008-04-09 19:08:13 +00:00
|
|
|
if (t->backupHeap) {
|
|
|
|
expect(t, t->backupHeapIndex + ceiling(sizeInBytes, BytesPerWord)
|
|
|
|
<= t->backupHeapSizeInWords);
|
|
|
|
|
|
|
|
object o = reinterpret_cast<object>(t->backupHeap + t->backupHeapIndex);
|
|
|
|
t->backupHeapIndex += ceiling(sizeInBytes, BytesPerWord);
|
|
|
|
cast<object>(o, 0) = 0;
|
|
|
|
return o;
|
2008-04-21 22:36:13 +00:00
|
|
|
} else if (t->tracing) {
|
|
|
|
expect(t, t->heapIndex + ceiling(sizeInBytes, BytesPerWord)
|
2008-11-22 21:47:18 +00:00
|
|
|
<= ThreadHeapSizeInWords);
|
2008-04-21 22:36:13 +00:00
|
|
|
return allocateSmall(t, sizeInBytes);
|
2008-04-09 19:08:13 +00:00
|
|
|
}
|
|
|
|
|
2007-09-24 01:39:03 +00:00
|
|
|
ACQUIRE_RAW(t, t->m->stateLock);
|
2007-07-06 23:50:26 +00:00
|
|
|
|
2007-09-24 01:39:03 +00:00
|
|
|
while (t->m->exclusive and t->m->exclusive != t) {
|
2007-07-06 23:50:26 +00:00
|
|
|
// another thread wants to enter the exclusive state, either for a
|
|
|
|
// collection or some other reason. We give it a chance here.
|
2007-07-07 18:09:16 +00:00
|
|
|
ENTER(t, Thread::IdleState);
|
2007-07-06 23:50:26 +00:00
|
|
|
}
|
2008-11-23 18:48:39 +00:00
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case Machine::MovableAllocation:
|
|
|
|
if (t->heapIndex + ceiling(sizeInBytes, BytesPerWord)
|
|
|
|
> ThreadHeapSizeInWords)
|
2007-10-28 19:14:53 +00:00
|
|
|
{
|
|
|
|
t->heap = 0;
|
2008-11-23 18:48:39 +00:00
|
|
|
if (t->m->heapPoolIndex < ThreadHeapPoolSize) {
|
|
|
|
t->heap = static_cast<uintptr_t*>
|
|
|
|
(t->m->heap->tryAllocate(ThreadHeapSizeInBytes));
|
2009-03-04 03:05:48 +00:00
|
|
|
|
2008-11-23 18:48:39 +00:00
|
|
|
if (t->heap) {
|
2009-03-04 03:05:48 +00:00
|
|
|
memset(t->heap, 0, ThreadHeapSizeInBytes);
|
|
|
|
|
2008-11-23 18:48:39 +00:00
|
|
|
t->m->heapPool[t->m->heapPoolIndex++] = t->heap;
|
|
|
|
t->heapOffset += t->heapIndex;
|
|
|
|
t->heapIndex = 0;
|
|
|
|
}
|
2007-08-22 14:50:29 +00:00
|
|
|
}
|
|
|
|
}
|
2008-11-23 18:48:39 +00:00
|
|
|
break;
|
2007-07-06 23:50:26 +00:00
|
|
|
|
2008-11-23 18:48:39 +00:00
|
|
|
case Machine::FixedAllocation:
|
2008-11-22 21:47:18 +00:00
|
|
|
if (t->m->fixedFootprint + sizeInBytes > FixedFootprintThresholdInBytes) {
|
2007-10-28 19:14:53 +00:00
|
|
|
t->heap = 0;
|
|
|
|
}
|
2008-11-23 18:48:39 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case Machine::ImmortalAllocation:
|
|
|
|
break;
|
2007-10-28 19:14:53 +00:00
|
|
|
}
|
2007-08-22 14:50:29 +00:00
|
|
|
|
2007-10-28 19:14:53 +00:00
|
|
|
if (t->heap == 0) {
|
2008-01-28 15:12:06 +00:00
|
|
|
// fprintf(stderr, "gc");
|
|
|
|
// vmPrintTrace(t);
|
2007-10-28 19:14:53 +00:00
|
|
|
collect(t, Heap::MinorCollection);
|
2007-07-06 23:50:26 +00:00
|
|
|
}
|
2008-01-10 01:20:36 +00:00
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case Machine::MovableAllocation: {
|
|
|
|
return allocateSmall(t, sizeInBytes);
|
|
|
|
}
|
2007-07-06 23:50:26 +00:00
|
|
|
|
2008-01-10 01:20:36 +00:00
|
|
|
case Machine::FixedAllocation: {
|
2007-10-28 19:14:53 +00:00
|
|
|
unsigned total;
|
|
|
|
object o = static_cast<object>
|
|
|
|
(t->m->heap->allocateFixed
|
2008-01-14 23:37:24 +00:00
|
|
|
(allocator, ceiling(sizeInBytes, BytesPerWord), objectMask, &total));
|
2007-10-28 19:14:53 +00:00
|
|
|
|
2009-03-04 03:05:48 +00:00
|
|
|
memset(o, 0, sizeInBytes);
|
|
|
|
|
2007-10-28 19:14:53 +00:00
|
|
|
cast<uintptr_t>(o, 0) = FixedMark;
|
|
|
|
|
|
|
|
t->m->fixedFootprint += total;
|
|
|
|
|
|
|
|
return o;
|
2008-01-10 01:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
case Machine::ImmortalAllocation: {
|
|
|
|
unsigned total;
|
|
|
|
object o = static_cast<object>
|
2008-11-29 02:31:06 +00:00
|
|
|
(t->m->heap->allocateImmortalFixed
|
2008-04-13 18:15:04 +00:00
|
|
|
(allocator, ceiling(sizeInBytes, BytesPerWord), objectMask, &total));
|
2008-01-10 01:20:36 +00:00
|
|
|
|
2009-03-04 03:05:48 +00:00
|
|
|
memset(o, 0, sizeInBytes);
|
|
|
|
|
2008-01-10 01:20:36 +00:00
|
|
|
cast<uintptr_t>(o, 0) = FixedMark;
|
|
|
|
|
|
|
|
return o;
|
|
|
|
}
|
|
|
|
|
|
|
|
default: abort(t);
|
2007-07-06 23:50:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
object
|
|
|
|
makeByteArray(Thread* t, const char* format, ...)
|
|
|
|
{
|
|
|
|
va_list a;
|
|
|
|
va_start(a, format);
|
|
|
|
object s = ::makeByteArray(t, format, a);
|
|
|
|
va_end(a);
|
|
|
|
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
object
|
|
|
|
makeString(Thread* t, const char* format, ...)
|
|
|
|
{
|
|
|
|
va_list a;
|
|
|
|
va_start(a, format);
|
|
|
|
object s = ::makeByteArray(t, format, a);
|
|
|
|
va_end(a);
|
|
|
|
|
2007-07-11 01:38:06 +00:00
|
|
|
return makeString(t, s, 0, byteArrayLength(t, s) - 1, 0);
|
2007-07-06 23:50:26 +00:00
|
|
|
}
|
|
|
|
|
2007-07-08 01:06:32 +00:00
|
|
|
void
|
|
|
|
stringChars(Thread* t, object string, char* chars)
|
|
|
|
{
|
|
|
|
object data = stringData(t, string);
|
|
|
|
if (objectClass(t, data)
|
2007-09-24 01:39:03 +00:00
|
|
|
== arrayBody(t, t->m->types, Machine::ByteArrayType))
|
2007-07-08 01:06:32 +00:00
|
|
|
{
|
|
|
|
memcpy(chars,
|
|
|
|
&byteArrayBody(t, data, stringOffset(t, string)),
|
|
|
|
stringLength(t, string));
|
|
|
|
} else {
|
2007-11-04 21:15:28 +00:00
|
|
|
for (unsigned i = 0; i < stringLength(t, string); ++i) {
|
2007-07-08 01:06:32 +00:00
|
|
|
chars[i] = charArrayBody(t, data, stringOffset(t, string) + i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
chars[stringLength(t, string)] = 0;
|
|
|
|
}
|
|
|
|
|
2008-04-01 23:24:43 +00:00
|
|
|
void
|
2008-04-02 12:57:25 +00:00
|
|
|
stringChars(Thread* t, object string, uint16_t* chars)
|
2008-04-01 23:24:43 +00:00
|
|
|
{
|
|
|
|
object data = stringData(t, string);
|
|
|
|
if (objectClass(t, data)
|
|
|
|
== arrayBody(t, t->m->types, Machine::ByteArrayType))
|
|
|
|
{
|
|
|
|
for (unsigned i = 0; i < stringLength(t, string); ++i) {
|
|
|
|
chars[i] = byteArrayBody(t, data, stringOffset(t, string) + i);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
memcpy(chars,
|
|
|
|
&charArrayBody(t, data, stringOffset(t, string)),
|
2008-04-02 12:57:25 +00:00
|
|
|
stringLength(t, string) * sizeof(uint16_t));
|
2008-04-01 23:24:43 +00:00
|
|
|
}
|
|
|
|
chars[stringLength(t, string)] = 0;
|
|
|
|
}
|
|
|
|
|
2007-07-24 01:44:20 +00:00
|
|
|
bool
|
|
|
|
isAssignableFrom(Thread* t, object a, object b)
|
|
|
|
{
|
2007-11-05 14:28:46 +00:00
|
|
|
if (a == b) return true;
|
|
|
|
|
|
|
|
if (classFlags(t, a) & ACC_INTERFACE) {
|
2007-11-04 23:10:33 +00:00
|
|
|
if (classVmFlags(t, b) & BootstrapFlag) {
|
|
|
|
resolveClass(t, className(t, b));
|
2007-11-05 16:08:08 +00:00
|
|
|
if (UNLIKELY(t->exception)) {
|
|
|
|
t->exception = 0;
|
|
|
|
return false;
|
|
|
|
}
|
2007-11-04 23:10:33 +00:00
|
|
|
}
|
2007-08-20 02:57:32 +00:00
|
|
|
|
2007-07-24 01:44:20 +00:00
|
|
|
for (; b; b = classSuper(t, b)) {
|
|
|
|
object itable = classInterfaceTable(t, b);
|
2007-08-22 04:03:03 +00:00
|
|
|
if (itable) {
|
|
|
|
for (unsigned i = 0; i < arrayLength(t, itable); i += 2) {
|
|
|
|
if (arrayBody(t, itable, i) == a) {
|
|
|
|
return true;
|
|
|
|
}
|
2007-07-24 01:44:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2007-08-20 02:57:32 +00:00
|
|
|
} else if (classArrayDimensions(t, a)) {
|
|
|
|
if (classArrayDimensions(t, b)) {
|
|
|
|
return isAssignableFrom
|
|
|
|
(t, classStaticTable(t, a), classStaticTable(t, b));
|
|
|
|
}
|
2007-07-24 01:44:20 +00:00
|
|
|
} else {
|
|
|
|
for (; b; b = classSuper(t, b)) {
|
|
|
|
if (b == a) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-07-05 20:21:13 +00:00
|
|
|
bool
|
2007-07-24 01:44:20 +00:00
|
|
|
instanceOf(Thread* t, object class_, object o)
|
|
|
|
{
|
|
|
|
if (o == 0) {
|
|
|
|
return false;
|
2007-07-24 03:16:59 +00:00
|
|
|
} else {
|
|
|
|
return isAssignableFrom(t, class_, objectClass(t, o));
|
2007-07-24 01:44:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-07-28 16:10:13 +00:00
|
|
|
object
|
|
|
|
classInitializer(Thread* t, object class_)
|
|
|
|
{
|
|
|
|
for (unsigned i = 0; i < arrayLength(t, classMethodTable(t, class_)); ++i) {
|
|
|
|
object o = arrayBody(t, classMethodTable(t, class_), i);
|
|
|
|
|
|
|
|
if (strcmp(reinterpret_cast<const int8_t*>("<clinit>"),
|
|
|
|
&byteArrayBody(t, methodName(t, o), 0)) == 0)
|
|
|
|
{
|
|
|
|
return o;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
abort(t);
|
|
|
|
}
|
|
|
|
|
2007-07-14 17:31:01 +00:00
|
|
|
unsigned
|
|
|
|
fieldCode(Thread* t, unsigned javaCode)
|
2007-07-06 23:50:26 +00:00
|
|
|
{
|
2007-07-14 17:31:01 +00:00
|
|
|
switch (javaCode) {
|
|
|
|
case 'B':
|
|
|
|
return ByteField;
|
|
|
|
case 'C':
|
|
|
|
return CharField;
|
|
|
|
case 'D':
|
|
|
|
return DoubleField;
|
|
|
|
case 'F':
|
|
|
|
return FloatField;
|
|
|
|
case 'I':
|
|
|
|
return IntField;
|
|
|
|
case 'J':
|
|
|
|
return LongField;
|
|
|
|
case 'S':
|
|
|
|
return ShortField;
|
|
|
|
case 'V':
|
|
|
|
return VoidField;
|
|
|
|
case 'Z':
|
|
|
|
return BooleanField;
|
|
|
|
case 'L':
|
|
|
|
case '[':
|
|
|
|
return ObjectField;
|
2007-07-06 23:50:26 +00:00
|
|
|
|
2007-07-14 17:31:01 +00:00
|
|
|
default: abort(t);
|
|
|
|
}
|
|
|
|
}
|
2007-07-06 23:50:26 +00:00
|
|
|
|
2007-07-14 17:31:01 +00:00
|
|
|
unsigned
|
|
|
|
fieldType(Thread* t, unsigned code)
|
|
|
|
{
|
|
|
|
switch (code) {
|
|
|
|
case VoidField:
|
|
|
|
return VOID_TYPE;
|
|
|
|
case ByteField:
|
|
|
|
case BooleanField:
|
|
|
|
return INT8_TYPE;
|
|
|
|
case CharField:
|
|
|
|
case ShortField:
|
|
|
|
return INT16_TYPE;
|
|
|
|
case DoubleField:
|
|
|
|
return DOUBLE_TYPE;
|
|
|
|
case FloatField:
|
|
|
|
return FLOAT_TYPE;
|
|
|
|
case IntField:
|
|
|
|
return INT32_TYPE;
|
|
|
|
case LongField:
|
|
|
|
return INT64_TYPE;
|
|
|
|
case ObjectField:
|
|
|
|
return POINTER_TYPE;
|
|
|
|
|
|
|
|
default: abort(t);
|
|
|
|
}
|
2007-07-06 23:50:26 +00:00
|
|
|
}
|
|
|
|
|
2007-07-14 17:31:01 +00:00
|
|
|
unsigned
|
|
|
|
primitiveSize(Thread* t, unsigned code)
|
2007-07-11 04:19:26 +00:00
|
|
|
{
|
2007-07-14 17:31:01 +00:00
|
|
|
switch (code) {
|
|
|
|
case VoidField:
|
|
|
|
return 0;
|
|
|
|
case ByteField:
|
|
|
|
case BooleanField:
|
|
|
|
return 1;
|
|
|
|
case CharField:
|
|
|
|
case ShortField:
|
|
|
|
return 2;
|
|
|
|
case FloatField:
|
|
|
|
case IntField:
|
|
|
|
return 4;
|
|
|
|
case DoubleField:
|
|
|
|
case LongField:
|
|
|
|
return 8;
|
2007-07-11 04:19:26 +00:00
|
|
|
|
2007-07-14 17:31:01 +00:00
|
|
|
default: abort(t);
|
|
|
|
}
|
|
|
|
}
|
2007-07-11 04:19:26 +00:00
|
|
|
|
2007-07-30 23:19:05 +00:00
|
|
|
object
|
2007-08-10 23:45:47 +00:00
|
|
|
findLoadedClass(Thread* t, object spec)
|
2007-07-30 23:19:05 +00:00
|
|
|
{
|
|
|
|
PROTECT(t, spec);
|
2007-09-24 01:39:03 +00:00
|
|
|
ACQUIRE(t, t->m->classLock);
|
2007-07-30 23:19:05 +00:00
|
|
|
|
2008-12-02 02:38:00 +00:00
|
|
|
return hashMapFind(t, t->m->classMap, spec, byteArrayHash, byteArrayEqual);
|
2007-07-30 23:19:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
object
|
|
|
|
parseClass(Thread* t, const uint8_t* data, unsigned size)
|
|
|
|
{
|
|
|
|
class Client : public Stream::Client {
|
|
|
|
public:
|
|
|
|
Client(Thread* t): t(t) { }
|
|
|
|
|
2007-11-05 21:40:17 +00:00
|
|
|
virtual void NO_RETURN handleError() {
|
2007-07-30 23:19:05 +00:00
|
|
|
abort(t);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
Thread* t;
|
|
|
|
} client(t);
|
|
|
|
|
|
|
|
Stream s(&client, data, size);
|
|
|
|
|
|
|
|
uint32_t magic = s.read4();
|
2007-08-19 19:45:51 +00:00
|
|
|
expect(t, magic == 0xCAFEBABE);
|
2007-07-30 23:19:05 +00:00
|
|
|
s.read2(); // minor version
|
|
|
|
s.read2(); // major version
|
|
|
|
|
|
|
|
object pool = parsePool(t, s);
|
|
|
|
PROTECT(t, pool);
|
|
|
|
|
|
|
|
unsigned flags = s.read2();
|
|
|
|
unsigned name = s.read2();
|
|
|
|
|
|
|
|
object class_ = makeClass(t,
|
|
|
|
flags,
|
|
|
|
0, // VM flags
|
|
|
|
0, // array dimensions
|
|
|
|
0, // fixed size
|
|
|
|
0, // array size
|
|
|
|
0, // object mask
|
2007-11-05 21:40:17 +00:00
|
|
|
singletonObject(t, pool, name - 1),
|
2007-07-30 23:19:05 +00:00
|
|
|
0, // super
|
|
|
|
0, // interfaces
|
|
|
|
0, // vtable
|
|
|
|
0, // fields
|
|
|
|
0, // methods
|
|
|
|
0, // static table
|
2007-11-05 21:40:17 +00:00
|
|
|
t->m->loader,
|
2009-03-04 03:05:48 +00:00
|
|
|
0);// vtable length
|
2007-07-30 23:19:05 +00:00
|
|
|
PROTECT(t, class_);
|
|
|
|
|
|
|
|
unsigned super = s.read2();
|
|
|
|
if (super) {
|
2007-11-05 21:40:17 +00:00
|
|
|
object sc = resolveClass(t, singletonObject(t, pool, super - 1));
|
2007-07-30 23:19:05 +00:00
|
|
|
if (UNLIKELY(t->exception)) return 0;
|
|
|
|
|
2007-10-22 17:22:30 +00:00
|
|
|
set(t, class_, ClassSuper, sc);
|
2007-07-30 23:19:05 +00:00
|
|
|
|
|
|
|
classVmFlags(t, class_)
|
|
|
|
|= (classVmFlags(t, sc) & (ReferenceFlag | WeakReferenceFlag));
|
|
|
|
}
|
|
|
|
|
|
|
|
parseInterfaceTable(t, s, class_, pool);
|
|
|
|
if (UNLIKELY(t->exception)) return 0;
|
|
|
|
|
|
|
|
parseFieldTable(t, s, class_, pool);
|
|
|
|
if (UNLIKELY(t->exception)) return 0;
|
|
|
|
|
|
|
|
parseMethodTable(t, s, class_, pool);
|
|
|
|
if (UNLIKELY(t->exception)) return 0;
|
|
|
|
|
2007-11-05 21:40:17 +00:00
|
|
|
object vtable = classVirtualTable(t, class_);
|
|
|
|
unsigned vtableLength = (vtable ? arrayLength(t, vtable) : 0);
|
|
|
|
|
|
|
|
object real = t->m->processor->makeClass
|
|
|
|
(t,
|
|
|
|
classFlags(t, class_),
|
|
|
|
classVmFlags(t, class_),
|
|
|
|
classArrayDimensions(t, class_),
|
|
|
|
classFixedSize(t, class_),
|
|
|
|
classArrayElementSize(t, class_),
|
|
|
|
classObjectMask(t, class_),
|
|
|
|
className(t, class_),
|
|
|
|
classSuper(t, class_),
|
|
|
|
classInterfaceTable(t, class_),
|
|
|
|
classVirtualTable(t, class_),
|
|
|
|
classFieldTable(t, class_),
|
|
|
|
classMethodTable(t, class_),
|
|
|
|
classStaticTable(t, class_),
|
|
|
|
classLoader(t, class_),
|
|
|
|
vtableLength);
|
|
|
|
|
2007-12-11 21:26:59 +00:00
|
|
|
t->m->processor->initVtable(t, real);
|
|
|
|
|
2007-11-05 21:40:17 +00:00
|
|
|
updateClassTables(t, real, class_);
|
|
|
|
|
|
|
|
return real;
|
2007-07-30 23:19:05 +00:00
|
|
|
}
|
|
|
|
|
2007-07-14 17:31:01 +00:00
|
|
|
object
|
|
|
|
resolveClass(Thread* t, object spec)
|
|
|
|
{
|
|
|
|
PROTECT(t, spec);
|
2007-09-24 01:39:03 +00:00
|
|
|
ACQUIRE(t, t->m->classLock);
|
2007-07-14 17:31:01 +00:00
|
|
|
|
2008-12-02 02:38:00 +00:00
|
|
|
object class_ = hashMapFind
|
|
|
|
(t, t->m->classMap, spec, byteArrayHash, byteArrayEqual);
|
|
|
|
|
2007-07-14 17:31:01 +00:00
|
|
|
if (class_ == 0) {
|
|
|
|
if (byteArrayBody(t, spec, 0) == '[') {
|
|
|
|
class_ = hashMapFind
|
2007-09-24 01:39:03 +00:00
|
|
|
(t, t->m->bootstrapClassMap, spec, byteArrayHash, byteArrayEqual);
|
2007-07-14 17:31:01 +00:00
|
|
|
|
2007-10-11 22:43:03 +00:00
|
|
|
if (class_) {
|
2007-10-22 17:22:30 +00:00
|
|
|
set(t, class_, ClassVirtualTable,
|
2007-10-11 22:43:03 +00:00
|
|
|
classVirtualTable
|
|
|
|
(t, arrayBody(t, t->m->types, Machine::JobjectType)));
|
|
|
|
} else {
|
2007-07-14 17:31:01 +00:00
|
|
|
class_ = makeArrayClass(t, spec);
|
|
|
|
}
|
|
|
|
} else {
|
2007-08-10 23:45:47 +00:00
|
|
|
char file[byteArrayLength(t, spec) + 6];
|
|
|
|
memcpy(file, &byteArrayBody(t, spec, 0), byteArrayLength(t, spec) - 1);
|
|
|
|
memcpy(file + byteArrayLength(t, spec) - 1, ".class", 7);
|
|
|
|
|
2007-09-24 01:39:03 +00:00
|
|
|
System::Region* region = t->m->finder->find(file);
|
2007-07-14 17:31:01 +00:00
|
|
|
|
2007-09-17 00:13:36 +00:00
|
|
|
if (region) {
|
2007-07-14 17:31:01 +00:00
|
|
|
if (Verbose) {
|
2007-07-24 03:31:28 +00:00
|
|
|
fprintf(stderr, "parsing %s\n", &byteArrayBody(t, spec, 0));
|
2007-07-14 17:31:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// parse class file
|
2007-09-17 00:13:36 +00:00
|
|
|
class_ = parseClass(t, region->start(), region->length());
|
|
|
|
region->dispose();
|
2007-07-14 17:31:01 +00:00
|
|
|
|
2007-07-24 03:31:28 +00:00
|
|
|
if (LIKELY(t->exception == 0)) {
|
|
|
|
if (Verbose) {
|
2007-11-05 21:40:17 +00:00
|
|
|
fprintf(stderr, "done parsing %s: %p\n",
|
|
|
|
&byteArrayBody(t, spec, 0),
|
|
|
|
class_);
|
2007-07-24 03:31:28 +00:00
|
|
|
}
|
2007-07-14 17:31:01 +00:00
|
|
|
|
2007-07-24 03:31:28 +00:00
|
|
|
object bootstrapClass = hashMapFind
|
2007-09-24 01:39:03 +00:00
|
|
|
(t, t->m->bootstrapClassMap, spec, byteArrayHash, byteArrayEqual);
|
2007-07-14 17:31:01 +00:00
|
|
|
|
2007-07-24 03:31:28 +00:00
|
|
|
if (bootstrapClass) {
|
|
|
|
PROTECT(t, bootstrapClass);
|
2007-07-14 17:31:01 +00:00
|
|
|
|
2007-07-24 03:31:28 +00:00
|
|
|
updateBootstrapClass(t, bootstrapClass, class_);
|
|
|
|
class_ = bootstrapClass;
|
|
|
|
}
|
2007-07-14 17:31:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (class_) {
|
2007-07-16 23:58:37 +00:00
|
|
|
PROTECT(t, class_);
|
|
|
|
|
2008-12-02 02:38:00 +00:00
|
|
|
hashMapInsert(t, t->m->classMap, spec, class_, byteArrayHash);
|
2007-07-14 17:31:01 +00:00
|
|
|
} else if (t->exception == 0) {
|
|
|
|
object message = makeString(t, "%s", &byteArrayBody(t, spec, 0));
|
|
|
|
t->exception = makeClassNotFoundException(t, message);
|
|
|
|
}
|
2007-07-11 04:19:26 +00:00
|
|
|
}
|
|
|
|
|
2007-07-14 17:31:01 +00:00
|
|
|
return class_;
|
|
|
|
}
|
|
|
|
|
2007-09-24 01:39:03 +00:00
|
|
|
object
|
|
|
|
resolveMethod(Thread* t, const char* className, const char* methodName,
|
|
|
|
const char* methodSpec)
|
|
|
|
{
|
|
|
|
object class_ = resolveClass(t, makeByteArray(t, "%s", className));
|
|
|
|
if (LIKELY(t->exception == 0)) {
|
|
|
|
PROTECT(t, class_);
|
|
|
|
|
|
|
|
object name = makeByteArray(t, methodName);
|
|
|
|
PROTECT(t, name);
|
|
|
|
|
|
|
|
object spec = makeByteArray(t, methodSpec);
|
|
|
|
object reference = makeReference(t, class_, name, spec);
|
|
|
|
|
|
|
|
return findMethodInClass(t, class_, referenceName(t, reference),
|
|
|
|
referenceSpec(t, reference));
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-07-14 17:31:01 +00:00
|
|
|
object
|
|
|
|
resolveObjectArrayClass(Thread* t, object elementSpec)
|
|
|
|
{
|
|
|
|
PROTECT(t, elementSpec);
|
|
|
|
|
|
|
|
object spec;
|
|
|
|
if (byteArrayBody(t, elementSpec, 0) == '[') {
|
2009-03-04 03:05:48 +00:00
|
|
|
spec = makeByteArray(t, byteArrayLength(t, elementSpec) + 1);
|
2007-09-13 00:21:37 +00:00
|
|
|
byteArrayBody(t, spec, 0) = '[';
|
2007-07-14 17:31:01 +00:00
|
|
|
memcpy(&byteArrayBody(t, spec, 1),
|
|
|
|
&byteArrayBody(t, elementSpec, 0),
|
|
|
|
byteArrayLength(t, elementSpec));
|
|
|
|
} else {
|
2009-03-04 03:05:48 +00:00
|
|
|
spec = makeByteArray(t, byteArrayLength(t, elementSpec) + 3);
|
2007-07-14 17:31:01 +00:00
|
|
|
byteArrayBody(t, spec, 0) = '[';
|
|
|
|
byteArrayBody(t, spec, 1) = 'L';
|
|
|
|
memcpy(&byteArrayBody(t, spec, 2),
|
|
|
|
&byteArrayBody(t, elementSpec, 0),
|
|
|
|
byteArrayLength(t, elementSpec) - 1);
|
|
|
|
byteArrayBody(t, spec, byteArrayLength(t, elementSpec) + 1) = ';';
|
|
|
|
byteArrayBody(t, spec, byteArrayLength(t, elementSpec) + 2) = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return resolveClass(t, spec);
|
|
|
|
}
|
|
|
|
|
|
|
|
object
|
2009-03-04 03:05:48 +00:00
|
|
|
makeObjectArray(Thread* t, object elementClass, unsigned count)
|
2007-07-14 17:31:01 +00:00
|
|
|
{
|
|
|
|
object arrayClass = resolveObjectArrayClass(t, className(t, elementClass));
|
|
|
|
PROTECT(t, arrayClass);
|
|
|
|
|
2009-03-04 03:05:48 +00:00
|
|
|
object array = makeArray(t, count);
|
2007-07-14 17:31:01 +00:00
|
|
|
setObjectClass(t, array, arrayClass);
|
|
|
|
|
|
|
|
return array;
|
|
|
|
}
|
|
|
|
|
2007-09-07 00:21:52 +00:00
|
|
|
object
|
|
|
|
findInTable(Thread* t, object table, object name, object spec,
|
|
|
|
object& (*getName)(Thread*, object),
|
|
|
|
object& (*getSpec)(Thread*, object))
|
|
|
|
{
|
|
|
|
if (table) {
|
|
|
|
for (unsigned i = 0; i < arrayLength(t, table); ++i) {
|
|
|
|
object o = arrayBody(t, table, i);
|
|
|
|
if (strcmp(&byteArrayBody(t, getName(t, o), 0),
|
|
|
|
&byteArrayBody(t, name, 0)) == 0 and
|
|
|
|
strcmp(&byteArrayBody(t, getSpec(t, o), 0),
|
|
|
|
&byteArrayBody(t, spec, 0)) == 0)
|
|
|
|
{
|
|
|
|
return o;
|
|
|
|
}
|
|
|
|
}
|
2008-01-19 00:54:36 +00:00
|
|
|
|
2008-01-19 01:49:30 +00:00
|
|
|
// fprintf(stderr, "%s %s not in\n",
|
|
|
|
// &byteArrayBody(t, name, 0),
|
|
|
|
// &byteArrayBody(t, spec, 0));
|
|
|
|
|
|
|
|
// for (unsigned i = 0; i < arrayLength(t, table); ++i) {
|
|
|
|
// object o = arrayBody(t, table, i);
|
|
|
|
// fprintf(stderr, "\t%s %s\n",
|
|
|
|
// &byteArrayBody(t, getName(t, o), 0),
|
|
|
|
// &byteArrayBody(t, getSpec(t, o), 0));
|
|
|
|
// }
|
2007-09-07 00:21:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
object
|
|
|
|
findInHierarchy(Thread* t, object class_, object name, object spec,
|
|
|
|
object (*find)(Thread*, object, object, object),
|
|
|
|
object (*makeError)(Thread*, object))
|
|
|
|
{
|
|
|
|
object originalClass = class_;
|
|
|
|
PROTECT(t, class_);
|
|
|
|
|
|
|
|
object o = 0;
|
2008-11-11 15:20:49 +00:00
|
|
|
if ((classFlags(t, class_) & ACC_INTERFACE)
|
|
|
|
and classVirtualTable(t, class_))
|
|
|
|
{
|
|
|
|
o = findInTable
|
|
|
|
(t, classVirtualTable(t, class_), name, spec, methodName, methodSpec);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (o == 0) {
|
2007-09-07 00:21:52 +00:00
|
|
|
for (; o == 0 and class_; class_ = classSuper(t, class_)) {
|
|
|
|
o = find(t, class_, name, spec);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (o == 0) {
|
|
|
|
object message = makeString
|
|
|
|
(t, "%s %s not found in %s",
|
|
|
|
&byteArrayBody(t, name, 0),
|
|
|
|
&byteArrayBody(t, spec, 0),
|
|
|
|
&byteArrayBody(t, className(t, originalClass), 0));
|
|
|
|
t->exception = makeError(t, message);
|
|
|
|
}
|
|
|
|
|
|
|
|
return o;
|
|
|
|
}
|
|
|
|
|
2007-11-20 22:24:02 +00:00
|
|
|
unsigned
|
|
|
|
parameterFootprint(Thread* t, const char* s, bool static_)
|
|
|
|
{
|
|
|
|
unsigned footprint = 0;
|
|
|
|
for (MethodSpecIterator it(t, s); it.hasNext();) {
|
|
|
|
switch (*it.next()) {
|
|
|
|
case 'J':
|
|
|
|
case 'D':
|
|
|
|
footprint += 2;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
++ footprint;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (not static_) {
|
|
|
|
++ footprint;
|
|
|
|
}
|
|
|
|
return footprint;
|
|
|
|
}
|
|
|
|
|
2007-07-14 17:31:01 +00:00
|
|
|
void
|
|
|
|
addFinalizer(Thread* t, object target, void (*finalize)(Thread*, object))
|
|
|
|
{
|
|
|
|
PROTECT(t, target);
|
|
|
|
|
2007-09-24 01:39:03 +00:00
|
|
|
ACQUIRE(t, t->m->referenceLock);
|
2007-07-14 17:31:01 +00:00
|
|
|
|
2007-10-22 20:56:27 +00:00
|
|
|
void* function;
|
|
|
|
memcpy(&function, &finalize, BytesPerWord);
|
|
|
|
|
|
|
|
object f = makeFinalizer(t, 0, function, 0);
|
2007-08-14 00:37:00 +00:00
|
|
|
finalizerTarget(t, f) = target;
|
2007-09-24 01:39:03 +00:00
|
|
|
finalizerNext(t, f) = t->m->finalizers;
|
|
|
|
t->m->finalizers = f;
|
2007-07-11 04:19:26 +00:00
|
|
|
}
|
|
|
|
|
2007-07-06 23:50:26 +00:00
|
|
|
System::Monitor*
|
2007-11-27 22:23:00 +00:00
|
|
|
objectMonitor(Thread* t, object o, bool createNew)
|
2007-07-06 23:50:26 +00:00
|
|
|
{
|
2008-01-18 01:27:44 +00:00
|
|
|
assert(t, t->state == Thread::ActiveState);
|
|
|
|
|
2007-09-24 01:39:03 +00:00
|
|
|
object p = hashMapFind(t, t->m->monitorMap, o, objectHash, objectEqual);
|
2007-07-06 23:50:26 +00:00
|
|
|
|
|
|
|
if (p) {
|
2007-07-10 23:34:53 +00:00
|
|
|
if (DebugMonitors) {
|
2007-07-11 04:19:26 +00:00
|
|
|
fprintf(stderr, "found monitor %p for object %x\n",
|
2007-07-10 23:34:53 +00:00
|
|
|
static_cast<System::Monitor*>(pointerValue(t, p)),
|
|
|
|
objectHash(t, o));
|
|
|
|
}
|
2007-07-10 03:04:49 +00:00
|
|
|
|
2007-07-06 23:50:26 +00:00
|
|
|
return static_cast<System::Monitor*>(pointerValue(t, p));
|
2007-11-27 22:23:00 +00:00
|
|
|
} else if (createNew) {
|
2007-07-06 23:50:26 +00:00
|
|
|
PROTECT(t, o);
|
|
|
|
|
|
|
|
ENTER(t, Thread::ExclusiveState);
|
|
|
|
|
2007-11-29 15:03:45 +00:00
|
|
|
p = hashMapFind(t, t->m->monitorMap, o, objectHash, objectEqual);
|
|
|
|
if (p) {
|
|
|
|
if (DebugMonitors) {
|
|
|
|
fprintf(stderr, "found monitor %p for object %x\n",
|
|
|
|
static_cast<System::Monitor*>(pointerValue(t, p)),
|
|
|
|
objectHash(t, o));
|
|
|
|
}
|
|
|
|
|
|
|
|
return static_cast<System::Monitor*>(pointerValue(t, p));
|
|
|
|
}
|
|
|
|
|
2007-07-06 23:50:26 +00:00
|
|
|
System::Monitor* m;
|
2007-09-24 01:39:03 +00:00
|
|
|
System::Status s = t->m->system->make(&m);
|
|
|
|
expect(t, t->m->system->success(s));
|
2007-07-06 23:50:26 +00:00
|
|
|
|
2007-07-10 23:34:53 +00:00
|
|
|
if (DebugMonitors) {
|
2007-07-11 04:19:26 +00:00
|
|
|
fprintf(stderr, "made monitor %p for object %x\n",
|
2007-07-10 23:34:53 +00:00
|
|
|
m,
|
|
|
|
objectHash(t, o));
|
|
|
|
}
|
2007-07-06 23:50:26 +00:00
|
|
|
|
2007-07-14 17:31:01 +00:00
|
|
|
p = makePointer(t, m);
|
2007-09-24 01:39:03 +00:00
|
|
|
hashMapInsert(t, t->m->monitorMap, o, p, objectHash);
|
2007-07-06 23:50:26 +00:00
|
|
|
|
|
|
|
addFinalizer(t, o, removeMonitor);
|
|
|
|
|
|
|
|
return m;
|
2007-11-27 22:23:00 +00:00
|
|
|
} else {
|
|
|
|
return 0;
|
2007-07-06 23:50:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-07-29 00:02:32 +00:00
|
|
|
object
|
|
|
|
intern(Thread* t, object s)
|
|
|
|
{
|
2007-07-29 18:52:08 +00:00
|
|
|
PROTECT(t, s);
|
|
|
|
|
2007-09-24 01:39:03 +00:00
|
|
|
ACQUIRE(t, t->m->referenceLock);
|
2007-07-29 00:02:32 +00:00
|
|
|
|
2007-09-24 01:39:03 +00:00
|
|
|
object n = hashMapFindNode(t, t->m->stringMap, s, stringHash, stringEqual);
|
2007-07-29 00:02:32 +00:00
|
|
|
if (n) {
|
|
|
|
return jreferenceTarget(t, tripleFirst(t, n));
|
|
|
|
} else {
|
2007-09-24 01:39:03 +00:00
|
|
|
hashMapInsert(t, t->m->stringMap, s, 0, stringHash);
|
2007-07-29 00:02:32 +00:00
|
|
|
addFinalizer(t, s, removeString);
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-07-16 01:03:02 +00:00
|
|
|
void
|
|
|
|
collect(Thread* t, Heap::CollectionType type)
|
|
|
|
{
|
2008-05-05 13:04:53 +00:00
|
|
|
ENTER(t, Thread::ExclusiveState);
|
|
|
|
|
2007-12-16 22:41:07 +00:00
|
|
|
#ifdef VM_STRESS
|
|
|
|
bool stress = t->stress;
|
|
|
|
if (not stress) t->stress = true;
|
|
|
|
#endif
|
|
|
|
|
2007-09-24 01:39:03 +00:00
|
|
|
Machine* m = t->m;
|
2007-07-16 01:03:02 +00:00
|
|
|
|
|
|
|
m->unsafe = true;
|
2007-10-28 19:14:53 +00:00
|
|
|
m->heap->collect(type, footprint(m->rootThread));
|
2007-07-16 01:03:02 +00:00
|
|
|
m->unsafe = false;
|
|
|
|
|
|
|
|
postCollect(m->rootThread);
|
|
|
|
|
|
|
|
for (object f = m->finalizeQueue; f; f = finalizerNext(t, f)) {
|
2007-10-22 20:56:27 +00:00
|
|
|
void (*function)(Thread*, object);
|
|
|
|
memcpy(&function, &finalizerFinalize(t, f), BytesPerWord);
|
|
|
|
function(t, finalizerTarget(t, f));
|
2007-07-16 01:03:02 +00:00
|
|
|
}
|
|
|
|
m->finalizeQueue = 0;
|
|
|
|
|
|
|
|
killZombies(t, m->rootThread);
|
2007-08-22 14:50:29 +00:00
|
|
|
|
|
|
|
for (unsigned i = 0; i < m->heapPoolIndex; ++i) {
|
2008-11-22 21:47:18 +00:00
|
|
|
m->heap->free(m->heapPool[i], ThreadHeapSizeInBytes);
|
2007-08-22 14:50:29 +00:00
|
|
|
}
|
|
|
|
m->heapPoolIndex = 0;
|
2007-10-28 01:54:30 +00:00
|
|
|
|
2007-10-28 19:14:53 +00:00
|
|
|
m->fixedFootprint = 0;
|
2007-12-16 22:41:07 +00:00
|
|
|
|
|
|
|
#ifdef VM_STRESS
|
|
|
|
if (not stress) t->stress = false;
|
|
|
|
#endif
|
2007-07-16 01:03:02 +00:00
|
|
|
}
|
|
|
|
|
2008-11-21 23:20:35 +00:00
|
|
|
void
|
|
|
|
walk(Thread* t, Heap::Walker* w, object o, unsigned start)
|
|
|
|
{
|
|
|
|
object class_ = static_cast<object>(t->m->heap->follow(objectClass(t, o)));
|
|
|
|
object objectMask = static_cast<object>
|
|
|
|
(t->m->heap->follow(classObjectMask(t, class_)));
|
|
|
|
|
|
|
|
if (objectMask) {
|
|
|
|
unsigned fixedSize = classFixedSize(t, class_);
|
|
|
|
unsigned arrayElementSize = classArrayElementSize(t, class_);
|
|
|
|
unsigned arrayLength
|
|
|
|
= (arrayElementSize ?
|
|
|
|
cast<uintptr_t>(o, fixedSize - BytesPerWord) : 0);
|
|
|
|
|
|
|
|
uint32_t mask[intArrayLength(t, objectMask)];
|
|
|
|
memcpy(mask, &intArrayBody(t, objectMask, 0),
|
|
|
|
intArrayLength(t, objectMask) * 4);
|
|
|
|
|
|
|
|
::walk(t, w, mask, fixedSize, arrayElementSize, arrayLength, start);
|
2009-05-03 20:57:11 +00:00
|
|
|
} else if (classFlags(t, class_) & SingletonFlag) {
|
2008-11-21 23:20:35 +00:00
|
|
|
unsigned length = singletonLength(t, o);
|
|
|
|
if (length) {
|
|
|
|
::walk(t, w, singletonMask(t, o),
|
|
|
|
(singletonCount(t, o) + 2) * BytesPerWord, 0, 0, start);
|
|
|
|
} else if (start == 0) {
|
|
|
|
w->visit(0);
|
|
|
|
}
|
|
|
|
} else if (start == 0) {
|
|
|
|
w->visit(0);
|
|
|
|
}
|
2009-05-03 20:57:11 +00:00
|
|
|
|
|
|
|
if (classFlags(t, class_) & ContinuationFlag) {
|
|
|
|
t->m->processor->walkContinuationBody(t, w, o, start);
|
|
|
|
}
|
2008-11-21 23:20:35 +00:00
|
|
|
}
|
|
|
|
|
2008-11-11 15:20:49 +00:00
|
|
|
int
|
|
|
|
walkNext(Thread* t, object o, int previous)
|
|
|
|
{
|
|
|
|
class Walker: public Heap::Walker {
|
|
|
|
public:
|
|
|
|
Walker(): value(-1) { }
|
|
|
|
|
|
|
|
bool visit(unsigned offset) {
|
|
|
|
value = offset;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
int value;
|
|
|
|
} walker;
|
|
|
|
|
|
|
|
walk(t, &walker, o, previous + 1);
|
|
|
|
return walker.value;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
visitRoots(Machine* m, Heap::Visitor* v)
|
|
|
|
{
|
|
|
|
v->visit(&(m->loader));
|
2008-12-02 02:38:00 +00:00
|
|
|
v->visit(&(m->classMap));
|
2008-11-11 15:20:49 +00:00
|
|
|
v->visit(&(m->bootstrapClassMap));
|
|
|
|
v->visit(&(m->monitorMap));
|
|
|
|
v->visit(&(m->stringMap));
|
|
|
|
v->visit(&(m->types));
|
|
|
|
v->visit(&(m->jniMethodTable));
|
|
|
|
|
|
|
|
for (Thread* t = m->rootThread; t; t = t->peer) {
|
|
|
|
::visitRoots(t, v);
|
|
|
|
}
|
2009-05-03 20:57:11 +00:00
|
|
|
|
|
|
|
for (Reference* r = m->jniReferences; r; r = r->next) {
|
|
|
|
v->visit(&(r->target));
|
|
|
|
}
|
2008-11-11 15:20:49 +00:00
|
|
|
}
|
|
|
|
|
2007-07-24 03:16:59 +00:00
|
|
|
void
|
|
|
|
printTrace(Thread* t, object exception)
|
|
|
|
{
|
2007-10-12 20:54:37 +00:00
|
|
|
if (exception == 0) {
|
2007-10-13 00:22:52 +00:00
|
|
|
exception = makeNullPointerException(t, 0, makeTrace(t), 0);
|
2007-10-12 20:54:37 +00:00
|
|
|
}
|
2007-10-13 00:22:52 +00:00
|
|
|
|
2007-11-04 21:15:28 +00:00
|
|
|
for (object e = exception; e; e = throwableCause(t, e)) {
|
2007-07-24 03:16:59 +00:00
|
|
|
if (e != exception) {
|
|
|
|
fprintf(stderr, "caused by: ");
|
|
|
|
}
|
|
|
|
|
|
|
|
fprintf(stderr, "%s", &byteArrayBody
|
|
|
|
(t, className(t, objectClass(t, e)), 0));
|
|
|
|
|
2007-11-04 21:15:28 +00:00
|
|
|
if (throwableMessage(t, e)) {
|
|
|
|
object m = throwableMessage(t, e);
|
2007-07-24 03:16:59 +00:00
|
|
|
char message[stringLength(t, m) + 1];
|
|
|
|
stringChars(t, m, message);
|
|
|
|
fprintf(stderr, ": %s\n", message);
|
|
|
|
} else {
|
|
|
|
fprintf(stderr, "\n");
|
|
|
|
}
|
|
|
|
|
2007-11-04 21:15:28 +00:00
|
|
|
object trace = throwableTrace(t, e);
|
2007-07-24 03:16:59 +00:00
|
|
|
for (unsigned i = 0; i < arrayLength(t, trace); ++i) {
|
|
|
|
object e = arrayBody(t, trace, i);
|
|
|
|
const int8_t* class_ = &byteArrayBody
|
|
|
|
(t, className(t, methodClass(t, traceElementMethod(t, e))), 0);
|
|
|
|
const int8_t* method = &byteArrayBody
|
|
|
|
(t, methodName(t, traceElementMethod(t, e)), 0);
|
2007-10-04 22:41:19 +00:00
|
|
|
int line = t->m->processor->lineNumber
|
|
|
|
(t, traceElementMethod(t, e), traceElementIp(t, e));
|
2007-07-24 03:16:59 +00:00
|
|
|
|
|
|
|
fprintf(stderr, " at %s.%s ", class_, method);
|
|
|
|
|
|
|
|
switch (line) {
|
|
|
|
case NativeLine:
|
|
|
|
fprintf(stderr, "(native)\n");
|
|
|
|
break;
|
|
|
|
case UnknownLine:
|
|
|
|
fprintf(stderr, "(unknown line)\n");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
fprintf(stderr, "(line %d)\n", line);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-09-24 01:39:03 +00:00
|
|
|
object
|
2007-11-25 23:00:55 +00:00
|
|
|
makeTrace(Thread* t, Processor::StackWalker* walker)
|
2007-09-24 01:39:03 +00:00
|
|
|
{
|
2007-11-25 23:00:55 +00:00
|
|
|
class Visitor: public Processor::StackVisitor {
|
|
|
|
public:
|
|
|
|
Visitor(Thread* t): t(t), trace(0), index(0), protector(t, &trace) { }
|
2007-09-24 13:46:48 +00:00
|
|
|
|
2007-11-25 23:00:55 +00:00
|
|
|
virtual bool visit(Processor::StackWalker* walker) {
|
|
|
|
if (trace == 0) {
|
2009-03-04 03:05:48 +00:00
|
|
|
trace = makeArray(t, walker->count());
|
2007-11-25 23:00:55 +00:00
|
|
|
}
|
2007-09-24 01:39:03 +00:00
|
|
|
|
2007-11-25 23:00:55 +00:00
|
|
|
object e = makeTraceElement(t, walker->method(), walker->ip());
|
2008-04-23 16:33:31 +00:00
|
|
|
assert(t, index < arrayLength(t, trace));
|
2007-11-25 23:00:55 +00:00
|
|
|
set(t, trace, ArrayBody + (index * BytesPerWord), e);
|
|
|
|
++ index;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
Thread* t;
|
|
|
|
object trace;
|
|
|
|
unsigned index;
|
|
|
|
Thread::SingleProtector protector;
|
|
|
|
} v(t);
|
|
|
|
|
|
|
|
walker->walk(&v);
|
|
|
|
|
2009-03-04 03:05:48 +00:00
|
|
|
return v.trace ? v.trace : makeArray(t, 0);
|
2007-11-25 23:00:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
object
|
2008-04-09 19:08:13 +00:00
|
|
|
makeTrace(Thread* t, Thread* target)
|
2007-11-25 23:00:55 +00:00
|
|
|
{
|
|
|
|
class Visitor: public Processor::StackVisitor {
|
|
|
|
public:
|
|
|
|
Visitor(Thread* t): t(t), trace(0) { }
|
|
|
|
|
|
|
|
virtual bool visit(Processor::StackWalker* walker) {
|
|
|
|
trace = makeTrace(t, walker);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
Thread* t;
|
|
|
|
object trace;
|
|
|
|
} v(t);
|
|
|
|
|
2008-04-09 19:08:13 +00:00
|
|
|
t->m->processor->walkStack(target, &v);
|
2007-09-24 01:39:03 +00:00
|
|
|
|
2009-03-04 03:05:48 +00:00
|
|
|
return v.trace ? v.trace : makeArray(t, 0);
|
2007-09-24 01:39:03 +00:00
|
|
|
}
|
|
|
|
|
2008-06-25 16:28:11 +00:00
|
|
|
void
|
|
|
|
runJavaThread(Thread* t)
|
|
|
|
{
|
|
|
|
object method = resolveMethod(t, "java/lang/Thread", "run", "()V");
|
|
|
|
if (t->exception == 0) {
|
|
|
|
t->m->processor->invoke
|
|
|
|
(t, findMethod(t, method, objectClass(t, t->javaThread)),
|
|
|
|
t->javaThread);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-07-10 01:43:43 +00:00
|
|
|
void
|
|
|
|
noop()
|
|
|
|
{ }
|
|
|
|
|
2007-07-06 23:50:26 +00:00
|
|
|
#include "type-constructors.cpp"
|
|
|
|
|
|
|
|
} // namespace vm
|
2008-01-16 17:30:12 +00:00
|
|
|
|
|
|
|
// for debugging
|
2008-01-16 17:48:14 +00:00
|
|
|
void
|
2008-01-16 17:30:12 +00:00
|
|
|
vmPrintTrace(Thread* t)
|
|
|
|
{
|
|
|
|
class Visitor: public Processor::StackVisitor {
|
|
|
|
public:
|
|
|
|
Visitor(Thread* t): t(t) { }
|
|
|
|
|
|
|
|
virtual bool visit(Processor::StackWalker* walker) {
|
|
|
|
const int8_t* class_ = &byteArrayBody
|
|
|
|
(t, className(t, methodClass(t, walker->method())), 0);
|
|
|
|
const int8_t* method = &byteArrayBody
|
|
|
|
(t, methodName(t, walker->method()), 0);
|
|
|
|
int line = t->m->processor->lineNumber
|
|
|
|
(t, walker->method(), walker->ip());
|
|
|
|
|
|
|
|
fprintf(stderr, " at %s.%s ", class_, method);
|
|
|
|
|
|
|
|
switch (line) {
|
|
|
|
case NativeLine:
|
|
|
|
fprintf(stderr, "(native)\n");
|
|
|
|
break;
|
|
|
|
case UnknownLine:
|
|
|
|
fprintf(stderr, "(unknown line)\n");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
fprintf(stderr, "(line %d)\n", line);
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
Thread* t;
|
|
|
|
} v(t);
|
|
|
|
|
|
|
|
t->m->processor->walkStack(t, &v);
|
|
|
|
}
|