mirror of
https://github.com/corda/corda.git
synced 2025-01-05 20:54:13 +00:00
snapshot
This commit is contained in:
parent
7a4cca45c2
commit
b71d5104ba
@ -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() { }
|
||||
|
||||
|
@ -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);
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user