emscripten/tests/nbody-java/java_lang_IndexOutOfBoundsE...

198 строки
8.5 KiB
C

#include "xmlvm.h"
#include "java_lang_String.h"
#include "java_lang_IndexOutOfBoundsException.h"
#define XMLVM_CURRENT_CLASS_NAME IndexOutOfBoundsException
#define XMLVM_CURRENT_PKG_CLASS_NAME java_lang_IndexOutOfBoundsException
__TIB_DEFINITION_java_lang_IndexOutOfBoundsException __TIB_java_lang_IndexOutOfBoundsException = {
0, // classInitializationBegan
0, // classInitialized
-1, // initializerThreadId
__INIT_java_lang_IndexOutOfBoundsException, // classInitializer
"java.lang.IndexOutOfBoundsException", // className
"java.lang", // package
JAVA_NULL, // enclosingClassName
JAVA_NULL, // enclosingMethodName
JAVA_NULL, // signature
(__TIB_DEFINITION_TEMPLATE*) &__TIB_java_lang_RuntimeException, // extends
sizeof(java_lang_IndexOutOfBoundsException), // sizeInstance
XMLVM_TYPE_CLASS};
JAVA_OBJECT __CLASS_java_lang_IndexOutOfBoundsException;
JAVA_OBJECT __CLASS_java_lang_IndexOutOfBoundsException_1ARRAY;
JAVA_OBJECT __CLASS_java_lang_IndexOutOfBoundsException_2ARRAY;
JAVA_OBJECT __CLASS_java_lang_IndexOutOfBoundsException_3ARRAY;
//XMLVM_BEGIN_IMPLEMENTATION
//XMLVM_END_IMPLEMENTATION
static JAVA_LONG _STATIC_java_lang_IndexOutOfBoundsException_serialVersionUID;
#include "xmlvm-reflection.h"
static XMLVM_FIELD_REFLECTION_DATA __field_reflection_data[] = {
};
static XMLVM_CONSTRUCTOR_REFLECTION_DATA __constructor_reflection_data[] = {
};
static JAVA_OBJECT constructor_dispatcher(JAVA_OBJECT constructor, JAVA_OBJECT arguments)
{
XMLVM_NOT_IMPLEMENTED();
}
static XMLVM_METHOD_REFLECTION_DATA __method_reflection_data[] = {
};
static JAVA_OBJECT method_dispatcher(JAVA_OBJECT method, JAVA_OBJECT receiver, JAVA_OBJECT arguments)
{
XMLVM_NOT_IMPLEMENTED();
}
void __INIT_java_lang_IndexOutOfBoundsException()
{
staticInitializerLock(&__TIB_java_lang_IndexOutOfBoundsException);
// While the static initializer mutex is locked, locally store the value of
// whether class initialization began or not
int initBegan = __TIB_java_lang_IndexOutOfBoundsException.classInitializationBegan;
// Whether or not class initialization had already began, it has begun now
__TIB_java_lang_IndexOutOfBoundsException.classInitializationBegan = 1;
staticInitializerUnlock(&__TIB_java_lang_IndexOutOfBoundsException);
JAVA_LONG curThreadId = (JAVA_LONG)pthread_self();
if (initBegan) {
if (__TIB_java_lang_IndexOutOfBoundsException.initializerThreadId != curThreadId) {
// Busy wait until the other thread finishes initializing this class
while (!__TIB_java_lang_IndexOutOfBoundsException.classInitialized) {
// do nothing
}
}
} else {
__TIB_java_lang_IndexOutOfBoundsException.initializerThreadId = curThreadId;
XMLVM_CLASS_USED("java.lang.IndexOutOfBoundsException")
__INIT_IMPL_java_lang_IndexOutOfBoundsException();
}
}
void __INIT_IMPL_java_lang_IndexOutOfBoundsException()
{
// Initialize base class if necessary
XMLVM_CLASS_INIT(java_lang_RuntimeException)
__TIB_java_lang_IndexOutOfBoundsException.newInstanceFunc = __NEW_INSTANCE_java_lang_IndexOutOfBoundsException;
// Copy vtable from base class
XMLVM_MEMCPY(__TIB_java_lang_IndexOutOfBoundsException.vtable, __TIB_java_lang_RuntimeException.vtable, sizeof(__TIB_java_lang_RuntimeException.vtable));
// Initialize vtable for this class
// Initialize interface information
__TIB_java_lang_IndexOutOfBoundsException.numImplementedInterfaces = 1;
__TIB_java_lang_IndexOutOfBoundsException.implementedInterfaces = (__TIB_DEFINITION_TEMPLATE* (*)[1]) XMLVM_MALLOC(sizeof(__TIB_DEFINITION_TEMPLATE*) * 1);
// Initialize interfaces if necessary and assign tib to implementedInterfaces
XMLVM_CLASS_INIT(java_io_Serializable)
__TIB_java_lang_IndexOutOfBoundsException.implementedInterfaces[0][0] = &__TIB_java_io_Serializable;
// Initialize itable for this class
__TIB_java_lang_IndexOutOfBoundsException.itableBegin = &__TIB_java_lang_IndexOutOfBoundsException.itable[0];
_STATIC_java_lang_IndexOutOfBoundsException_serialVersionUID = 234122996006267687;
__TIB_java_lang_IndexOutOfBoundsException.declaredFields = &__field_reflection_data[0];
__TIB_java_lang_IndexOutOfBoundsException.numDeclaredFields = sizeof(__field_reflection_data) / sizeof(XMLVM_FIELD_REFLECTION_DATA);
__TIB_java_lang_IndexOutOfBoundsException.constructorDispatcherFunc = constructor_dispatcher;
__TIB_java_lang_IndexOutOfBoundsException.declaredConstructors = &__constructor_reflection_data[0];
__TIB_java_lang_IndexOutOfBoundsException.numDeclaredConstructors = sizeof(__constructor_reflection_data) / sizeof(XMLVM_CONSTRUCTOR_REFLECTION_DATA);
__TIB_java_lang_IndexOutOfBoundsException.methodDispatcherFunc = method_dispatcher;
__TIB_java_lang_IndexOutOfBoundsException.declaredMethods = &__method_reflection_data[0];
__TIB_java_lang_IndexOutOfBoundsException.numDeclaredMethods = sizeof(__method_reflection_data) / sizeof(XMLVM_METHOD_REFLECTION_DATA);
__CLASS_java_lang_IndexOutOfBoundsException = XMLVM_CREATE_CLASS_OBJECT(&__TIB_java_lang_IndexOutOfBoundsException);
__TIB_java_lang_IndexOutOfBoundsException.clazz = __CLASS_java_lang_IndexOutOfBoundsException;
__TIB_java_lang_IndexOutOfBoundsException.baseType = JAVA_NULL;
__CLASS_java_lang_IndexOutOfBoundsException_1ARRAY = XMLVM_CREATE_ARRAY_CLASS_OBJECT(__CLASS_java_lang_IndexOutOfBoundsException);
__CLASS_java_lang_IndexOutOfBoundsException_2ARRAY = XMLVM_CREATE_ARRAY_CLASS_OBJECT(__CLASS_java_lang_IndexOutOfBoundsException_1ARRAY);
__CLASS_java_lang_IndexOutOfBoundsException_3ARRAY = XMLVM_CREATE_ARRAY_CLASS_OBJECT(__CLASS_java_lang_IndexOutOfBoundsException_2ARRAY);
//XMLVM_BEGIN_WRAPPER[__INIT_java_lang_IndexOutOfBoundsException]
//XMLVM_END_WRAPPER
__TIB_java_lang_IndexOutOfBoundsException.classInitialized = 1;
}
void __DELETE_java_lang_IndexOutOfBoundsException(void* me, void* client_data)
{
//XMLVM_BEGIN_WRAPPER[__DELETE_java_lang_IndexOutOfBoundsException]
//XMLVM_END_WRAPPER
}
void __INIT_INSTANCE_MEMBERS_java_lang_IndexOutOfBoundsException(JAVA_OBJECT me, int derivedClassWillRegisterFinalizer)
{
__INIT_INSTANCE_MEMBERS_java_lang_RuntimeException(me, 0 || derivedClassWillRegisterFinalizer);
//XMLVM_BEGIN_WRAPPER[__INIT_INSTANCE_MEMBERS_java_lang_IndexOutOfBoundsException]
//XMLVM_END_WRAPPER
}
JAVA_OBJECT __NEW_java_lang_IndexOutOfBoundsException()
{ XMLVM_CLASS_INIT(java_lang_IndexOutOfBoundsException)
java_lang_IndexOutOfBoundsException* me = (java_lang_IndexOutOfBoundsException*) XMLVM_MALLOC(sizeof(java_lang_IndexOutOfBoundsException));
me->tib = &__TIB_java_lang_IndexOutOfBoundsException;
__INIT_INSTANCE_MEMBERS_java_lang_IndexOutOfBoundsException(me, 0);
//XMLVM_BEGIN_WRAPPER[__NEW_java_lang_IndexOutOfBoundsException]
//XMLVM_END_WRAPPER
return me;
}
JAVA_OBJECT __NEW_INSTANCE_java_lang_IndexOutOfBoundsException()
{
JAVA_OBJECT me = JAVA_NULL;
me = __NEW_java_lang_IndexOutOfBoundsException();
java_lang_IndexOutOfBoundsException___INIT___(me);
return me;
}
JAVA_LONG java_lang_IndexOutOfBoundsException_GET_serialVersionUID()
{
XMLVM_CLASS_INIT(java_lang_IndexOutOfBoundsException)
return _STATIC_java_lang_IndexOutOfBoundsException_serialVersionUID;
}
void java_lang_IndexOutOfBoundsException_PUT_serialVersionUID(JAVA_LONG v)
{
XMLVM_CLASS_INIT(java_lang_IndexOutOfBoundsException)
_STATIC_java_lang_IndexOutOfBoundsException_serialVersionUID = v;
}
void java_lang_IndexOutOfBoundsException___INIT___(JAVA_OBJECT me)
{
//XMLVM_BEGIN_WRAPPER[java_lang_IndexOutOfBoundsException___INIT___]
XMLVM_ENTER_METHOD("java.lang.IndexOutOfBoundsException", "<init>", "?")
XMLVMElem _r0;
_r0.o = me;
XMLVM_SOURCE_POSITION("IndexOutOfBoundsException.java", 33)
XMLVM_CHECK_NPE(0)
java_lang_RuntimeException___INIT___(_r0.o);
XMLVM_SOURCE_POSITION("IndexOutOfBoundsException.java", 34)
XMLVM_EXIT_METHOD()
return;
//XMLVM_END_WRAPPER
}
void java_lang_IndexOutOfBoundsException___INIT____java_lang_String(JAVA_OBJECT me, JAVA_OBJECT n1)
{
//XMLVM_BEGIN_WRAPPER[java_lang_IndexOutOfBoundsException___INIT____java_lang_String]
XMLVM_ENTER_METHOD("java.lang.IndexOutOfBoundsException", "<init>", "?")
XMLVMElem _r0;
XMLVMElem _r1;
_r0.o = me;
_r1.o = n1;
XMLVM_SOURCE_POSITION("IndexOutOfBoundsException.java", 44)
XMLVM_CHECK_NPE(0)
java_lang_RuntimeException___INIT____java_lang_String(_r0.o, _r1.o);
XMLVM_SOURCE_POSITION("IndexOutOfBoundsException.java", 45)
XMLVM_EXIT_METHOD()
return;
//XMLVM_END_WRAPPER
}