This commit is contained in:
Joel Dice 2007-11-01 13:24:09 -06:00
parent 7a4cca45c2
commit b71d5104ba
3 changed files with 8 additions and 5 deletions

View File

@ -11,7 +11,7 @@ public class Method<T> extends AccessibleObject implements Member {
private byte[] spec;
private Class<T> class_;
private Object code;
private long compiled;
private Object compiled;
private Method() { }

View File

@ -786,9 +786,9 @@ namesPointer(const char* s)
unsigned
sizeOf(const char* type, Object* declarations)
{
if (equal(type, "object")) {
return BytesPerWord;
} else if (equal(type, "intptr_t")) {
if (equal(type, "object")
or equal(type, "intptr_t") or equal(type, "uintptr_t"))
{
return BytesPerWord;
} else if (equal(type, "unsigned") or equal(type, "int")) {
return sizeof(int);

View File

@ -17,6 +17,9 @@
(object staticTable)
(object loader))
(type singleton
(array uintptr_t body))
(type classLoader java/lang/ClassLoader
(extends jobject)
(object parent))
@ -60,7 +63,7 @@
(object spec)
(object class)
(object code)
(uint64_t compiled))
(object compiled))
(type nativeMethodData
(void* function)