diff options
Diffstat (limited to 'tests/nbody-java/java_util_Comparator.c')
-rw-r--r-- | tests/nbody-java/java_util_Comparator.c | 76 |
1 files changed, 76 insertions, 0 deletions
diff --git a/tests/nbody-java/java_util_Comparator.c b/tests/nbody-java/java_util_Comparator.c new file mode 100644 index 00000000..1cfb17a1 --- /dev/null +++ b/tests/nbody-java/java_util_Comparator.c @@ -0,0 +1,76 @@ +#include "xmlvm.h" + +#include "java_util_Comparator.h" + +__TIB_DEFINITION_java_util_Comparator __TIB_java_util_Comparator = { + 0, // classInitializationBegan + 0, // classInitialized + -1, // initializerThreadId + __INIT_java_util_Comparator, // classInitializer + "java.util.Comparator", // className + "java.util", // package + JAVA_NULL, // enclosingClassName + JAVA_NULL, // enclosingMethodName + "<T:Ljava/lang/Object;>Ljava/lang/Object;", // signature + (__TIB_DEFINITION_TEMPLATE*) &__TIB_java_lang_Object, // extends + -1, // sizeInstance + XMLVM_TYPE_INTERFACE}; + +JAVA_OBJECT __CLASS_java_util_Comparator; +JAVA_OBJECT __CLASS_java_util_Comparator_1ARRAY; +JAVA_OBJECT __CLASS_java_util_Comparator_2ARRAY; +JAVA_OBJECT __CLASS_java_util_Comparator_3ARRAY; + +static XMLVM_FIELD_REFLECTION_DATA __field_reflection_data[] = { +}; + +static XMLVM_METHOD_REFLECTION_DATA __method_reflection_data[] = { +}; + +void __INIT_java_util_Comparator() +{ + staticInitializerLock(&__TIB_java_util_Comparator); + + // While the static initializer mutex is locked, locally store the value of + // whether class initialization began or not + int initBegan = __TIB_java_util_Comparator.classInitializationBegan; + + // Whether or not class initialization had already began, it has begun now + __TIB_java_util_Comparator.classInitializationBegan = 1; + + staticInitializerUnlock(&__TIB_java_util_Comparator); + + JAVA_LONG curThreadId = (JAVA_LONG)pthread_self(); + if (initBegan) { + if (__TIB_java_util_Comparator.initializerThreadId != curThreadId) { + // Busy wait until the other thread finishes initializing this class + while (!__TIB_java_util_Comparator.classInitialized) { + // do nothing + } + } + } else { + __TIB_java_util_Comparator.initializerThreadId = curThreadId; + XMLVM_CLASS_USED("java.util.Comparator") + __INIT_IMPL_java_util_Comparator(); + } +} + +void __INIT_IMPL_java_util_Comparator() +{ + __TIB_java_util_Comparator.numInterfaces = 0; + __TIB_java_util_Comparator.declaredFields = &__field_reflection_data[0]; + __TIB_java_util_Comparator.numDeclaredFields = sizeof(__field_reflection_data) / sizeof(XMLVM_FIELD_REFLECTION_DATA); + //__TIB_java_util_Comparator.methodDispatcherFunc = method_dispatcher; + __TIB_java_util_Comparator.declaredMethods = &__method_reflection_data[0]; + __TIB_java_util_Comparator.numDeclaredMethods = sizeof(__method_reflection_data) / sizeof(XMLVM_METHOD_REFLECTION_DATA); + + __CLASS_java_util_Comparator = XMLVM_CREATE_CLASS_OBJECT(&__TIB_java_util_Comparator); + __TIB_java_util_Comparator.clazz = __CLASS_java_util_Comparator; + __TIB_java_util_Comparator.baseType = JAVA_NULL; + __CLASS_java_util_Comparator_1ARRAY = XMLVM_CREATE_ARRAY_CLASS_OBJECT(__CLASS_java_util_Comparator); + __CLASS_java_util_Comparator_2ARRAY = XMLVM_CREATE_ARRAY_CLASS_OBJECT(__CLASS_java_util_Comparator_1ARRAY); + __CLASS_java_util_Comparator_3ARRAY = XMLVM_CREATE_ARRAY_CLASS_OBJECT(__CLASS_java_util_Comparator_2ARRAY); + + __TIB_java_util_Comparator.classInitialized = 1; +} + |