1. UI - 조이스틱 UIManager에 추가 및 Scene에서 호출 방식 변경 2. UI - 경험치 바 앞에 레벨 아이콘 추가 3. 몬스터 죽었을때 경험치로 변경 4. 경험치 바와 레벨 아이콘 연동 Todo 1. 투사체 공격 만들기 2. 몬스터가 플레이어 쫓아오게 만들기 3. 몬스터를 카메라 외각에서 다량으로 생성하는 기능 추가하기 4. 몬스터가 캐릭터 공격시 체력 닳게 하기 5. 메뉴 UI 만들기 6. 레벨업시 획득 스킬 UI 만들기 7. 체력바 UI 만들기 8. 공격시 데미지 띄우는 UI 만들기
22896 lines
961 KiB
C++
22896 lines
961 KiB
C++
#include "pch-cpp.hpp"
|
|
|
|
|
|
|
|
|
|
|
|
template <typename R>
|
|
struct VirtualFuncInvoker0
|
|
{
|
|
typedef R (*Func)(void*, const RuntimeMethod*);
|
|
|
|
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
|
|
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
|
|
}
|
|
};
|
|
struct InterfaceActionInvoker0
|
|
{
|
|
typedef void (*Action)(void*, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
|
|
((Action)invokeData.methodPtr)(obj, invokeData.method);
|
|
}
|
|
};
|
|
template <typename T1>
|
|
struct InterfaceActionInvoker1
|
|
{
|
|
typedef void (*Action)(void*, T1, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
|
|
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
|
|
}
|
|
};
|
|
template <typename T1>
|
|
struct InterfaceActionInvoker1Invoker;
|
|
template <typename T1>
|
|
struct InterfaceActionInvoker1Invoker<T1*>
|
|
{
|
|
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1* p1)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
|
|
void* params[1] = { p1 };
|
|
invokeData.method->invoker_method(il2cpp_codegen_get_method_pointer(invokeData.method), invokeData.method, obj, params, params[0]);
|
|
}
|
|
};
|
|
template <typename T1, typename T2>
|
|
struct InterfaceActionInvoker2
|
|
{
|
|
typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
|
|
((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
|
|
}
|
|
};
|
|
template <typename T1, typename T2>
|
|
struct InterfaceActionInvoker2Invoker;
|
|
template <typename T1, typename T2>
|
|
struct InterfaceActionInvoker2Invoker<T1, T2*>
|
|
{
|
|
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2* p2)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
|
|
void* params[2] = { &p1, p2 };
|
|
invokeData.method->invoker_method(il2cpp_codegen_get_method_pointer(invokeData.method), invokeData.method, obj, params, params[1]);
|
|
}
|
|
};
|
|
template <typename T1, typename T2>
|
|
struct InterfaceActionInvoker2Invoker<T1*, T2*>
|
|
{
|
|
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1* p1, T2* p2)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
|
|
void* params[2] = { p1, p2 };
|
|
invokeData.method->invoker_method(il2cpp_codegen_get_method_pointer(invokeData.method), invokeData.method, obj, params, params[1]);
|
|
}
|
|
};
|
|
template <typename R>
|
|
struct InterfaceFuncInvoker0
|
|
{
|
|
typedef R (*Func)(void*, const RuntimeMethod*);
|
|
|
|
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
|
|
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
|
|
}
|
|
};
|
|
template <typename R, typename T1>
|
|
struct InterfaceFuncInvoker1Invoker;
|
|
template <typename R, typename T1>
|
|
struct InterfaceFuncInvoker1Invoker<R, T1*>
|
|
{
|
|
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1* p1)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
|
|
R ret;
|
|
void* params[1] = { p1 };
|
|
invokeData.method->invoker_method(il2cpp_codegen_get_method_pointer(invokeData.method), invokeData.method, obj, params, &ret);
|
|
return ret;
|
|
}
|
|
};
|
|
template <typename R, typename T1, typename T2>
|
|
struct InterfaceFuncInvoker2
|
|
{
|
|
typedef R (*Func)(void*, T1, T2, const RuntimeMethod*);
|
|
|
|
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
|
|
return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
|
|
}
|
|
};
|
|
template <typename R, typename T1, typename T2>
|
|
struct InterfaceFuncInvoker2Invoker;
|
|
template <typename R, typename T1, typename T2>
|
|
struct InterfaceFuncInvoker2Invoker<R, T1*, T2*>
|
|
{
|
|
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1* p1, T2* p2)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
|
|
R ret;
|
|
void* params[2] = { p1, p2 };
|
|
invokeData.method->invoker_method(il2cpp_codegen_get_method_pointer(invokeData.method), invokeData.method, obj, params, &ret);
|
|
return ret;
|
|
}
|
|
};
|
|
template <typename T1>
|
|
struct InvokerActionInvoker1;
|
|
template <typename T1>
|
|
struct InvokerActionInvoker1<T1*>
|
|
{
|
|
static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1)
|
|
{
|
|
void* params[1] = { p1 };
|
|
method->invoker_method(methodPtr, method, obj, params, params[0]);
|
|
}
|
|
};
|
|
|
|
struct Dictionary_2_t9FA6D82CAFC18769F7515BB51D1C56DAE09381C3;
|
|
struct Dictionary_2_tE1603CE612C16451D1E56FF4D4859D4FE4087C28;
|
|
struct ICollection_1_tB388ED908E2D241F56264CA971F25D9ADC1ADEC3;
|
|
struct IEnumerator_1_t75CB2681E18F7F2791528FA2CA60361FDB5DA08D;
|
|
struct IKeyedCollection_2_tDE9FC926FFB5ED2A3546B72DDB931B8B52FF21D9;
|
|
struct IList_1_t8AC59FFD0F90EC2DAD4C3FA39B2A5851F9D2987A;
|
|
struct VariantCollection_2_t3F934CEFED36CEC5846014E6FFE1242CD6299312;
|
|
struct VariantKeyedCollection_3_t69DAD887BA8D10C65905B0A506F0142BAFC74383;
|
|
struct VariantList_2_tAB497803D00E2F1AE7B18CD9FC2983370DE3418C;
|
|
struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031;
|
|
struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB;
|
|
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C;
|
|
struct IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832;
|
|
struct StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF;
|
|
struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248;
|
|
struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB;
|
|
struct __Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC;
|
|
struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263;
|
|
struct ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129;
|
|
struct ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F;
|
|
struct Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235;
|
|
struct Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B;
|
|
struct CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57;
|
|
struct CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D;
|
|
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0;
|
|
struct DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A;
|
|
struct IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220;
|
|
struct IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA;
|
|
struct IFormatProvider_tC202922D43BFF3525109ABF3FB79625F5646AB52;
|
|
struct IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82;
|
|
struct MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553;
|
|
struct NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A;
|
|
struct NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472;
|
|
struct SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6;
|
|
struct String_t;
|
|
struct StringBuilder_t;
|
|
struct TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4;
|
|
struct Type_t;
|
|
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915;
|
|
|
|
IL2CPP_EXTERN_C RuntimeClass* ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* HashHelpers_t285C6E63B4A4E8D837BDBC63DE4E2D23C85467D4_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IFormattable_t235A539BD9771E1E118DB99384BA8385D2F971CA_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* StringBuilder_t_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral3DCC6243286938BE75C3FA773B9BA71160A2E869;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral491788442E76F5D7830F0DBFCF8EDD98854F636F;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralC00660333703C551EA80371B54D0ADCEB74C33B4;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralCBA4B5B3BCCC1DB07C8FA58231CDB1B11CCE0488;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralE310274B02A605A3985345944A620D7D2E019A1A;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Vector_1__ctor_mEA86543744A54FCE590FDBF012FAE9037A5F1606_RuntimeMethod_var;
|
|
struct CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D_marshaled_com;
|
|
struct CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D_marshaled_pinvoke;
|
|
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_com;
|
|
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_pinvoke;
|
|
struct Exception_t_marshaled_com;
|
|
struct Exception_t_marshaled_pinvoke;
|
|
|
|
struct __Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC;
|
|
|
|
IL2CPP_EXTERN_C_BEGIN
|
|
IL2CPP_EXTERN_C_END
|
|
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
struct U3CGetEnumeratorU3Ed__10_tB82E52AC48538ABE56B53AE1591A32949295AC89 : public RuntimeObject {};
|
|
struct VariantCollection_2_t3F934CEFED36CEC5846014E6FFE1242CD6299312 : public RuntimeObject
|
|
{
|
|
RuntimeObject* ___U3CimplementationU3Ek__BackingField;
|
|
};
|
|
struct VariantList_2_tAB497803D00E2F1AE7B18CD9FC2983370DE3418C : public RuntimeObject
|
|
{
|
|
RuntimeObject* ___U3CimplementationU3Ek__BackingField;
|
|
};
|
|
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0 : public RuntimeObject
|
|
{
|
|
bool ___m_isReadOnly;
|
|
int32_t ___cultureID;
|
|
int32_t ___parent_lcid;
|
|
int32_t ___datetime_index;
|
|
int32_t ___number_index;
|
|
int32_t ___default_calendar_type;
|
|
bool ___m_useUserOverride;
|
|
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___numInfo;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___dateTimeInfo;
|
|
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* ___textInfo;
|
|
String_t* ___m_name;
|
|
String_t* ___englishname;
|
|
String_t* ___nativename;
|
|
String_t* ___iso3lang;
|
|
String_t* ___iso2lang;
|
|
String_t* ___win3lang;
|
|
String_t* ___territory;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___native_calendar_names;
|
|
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* ___compareInfo;
|
|
void* ___textinfo_data;
|
|
int32_t ___m_dataItem;
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* ___calendar;
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___parent_culture;
|
|
bool ___constructed;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___cached_serialized_form;
|
|
CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D* ___m_cultureData;
|
|
bool ___m_isInherited;
|
|
};
|
|
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_pinvoke
|
|
{
|
|
int32_t ___m_isReadOnly;
|
|
int32_t ___cultureID;
|
|
int32_t ___parent_lcid;
|
|
int32_t ___datetime_index;
|
|
int32_t ___number_index;
|
|
int32_t ___default_calendar_type;
|
|
int32_t ___m_useUserOverride;
|
|
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___numInfo;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___dateTimeInfo;
|
|
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* ___textInfo;
|
|
char* ___m_name;
|
|
char* ___englishname;
|
|
char* ___nativename;
|
|
char* ___iso3lang;
|
|
char* ___iso2lang;
|
|
char* ___win3lang;
|
|
char* ___territory;
|
|
char** ___native_calendar_names;
|
|
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* ___compareInfo;
|
|
void* ___textinfo_data;
|
|
int32_t ___m_dataItem;
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* ___calendar;
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_pinvoke* ___parent_culture;
|
|
int32_t ___constructed;
|
|
Il2CppSafeArray* ___cached_serialized_form;
|
|
CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D_marshaled_pinvoke* ___m_cultureData;
|
|
int32_t ___m_isInherited;
|
|
};
|
|
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_com
|
|
{
|
|
int32_t ___m_isReadOnly;
|
|
int32_t ___cultureID;
|
|
int32_t ___parent_lcid;
|
|
int32_t ___datetime_index;
|
|
int32_t ___number_index;
|
|
int32_t ___default_calendar_type;
|
|
int32_t ___m_useUserOverride;
|
|
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___numInfo;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___dateTimeInfo;
|
|
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* ___textInfo;
|
|
Il2CppChar* ___m_name;
|
|
Il2CppChar* ___englishname;
|
|
Il2CppChar* ___nativename;
|
|
Il2CppChar* ___iso3lang;
|
|
Il2CppChar* ___iso2lang;
|
|
Il2CppChar* ___win3lang;
|
|
Il2CppChar* ___territory;
|
|
Il2CppChar** ___native_calendar_names;
|
|
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* ___compareInfo;
|
|
void* ___textinfo_data;
|
|
int32_t ___m_dataItem;
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* ___calendar;
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_com* ___parent_culture;
|
|
int32_t ___constructed;
|
|
Il2CppSafeArray* ___cached_serialized_form;
|
|
CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D_marshaled_com* ___m_cultureData;
|
|
int32_t ___m_isInherited;
|
|
};
|
|
struct MemberInfo_t : public RuntimeObject
|
|
{
|
|
};
|
|
struct NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472 : public RuntimeObject
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___numberGroupSizes;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___currencyGroupSizes;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___percentGroupSizes;
|
|
String_t* ___positiveSign;
|
|
String_t* ___negativeSign;
|
|
String_t* ___numberDecimalSeparator;
|
|
String_t* ___numberGroupSeparator;
|
|
String_t* ___currencyGroupSeparator;
|
|
String_t* ___currencyDecimalSeparator;
|
|
String_t* ___currencySymbol;
|
|
String_t* ___ansiCurrencySymbol;
|
|
String_t* ___nanSymbol;
|
|
String_t* ___positiveInfinitySymbol;
|
|
String_t* ___negativeInfinitySymbol;
|
|
String_t* ___percentDecimalSeparator;
|
|
String_t* ___percentGroupSeparator;
|
|
String_t* ___percentSymbol;
|
|
String_t* ___perMilleSymbol;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___nativeDigits;
|
|
int32_t ___m_dataItem;
|
|
int32_t ___numberDecimalDigits;
|
|
int32_t ___currencyDecimalDigits;
|
|
int32_t ___currencyPositivePattern;
|
|
int32_t ___currencyNegativePattern;
|
|
int32_t ___numberNegativePattern;
|
|
int32_t ___percentPositivePattern;
|
|
int32_t ___percentNegativePattern;
|
|
int32_t ___percentDecimalDigits;
|
|
int32_t ___digitSubstitution;
|
|
bool ___isReadOnly;
|
|
bool ___m_useUserOverride;
|
|
bool ___m_isInvariant;
|
|
bool ___validForParseAsNumber;
|
|
bool ___validForParseAsCurrency;
|
|
};
|
|
struct String_t : public RuntimeObject
|
|
{
|
|
int32_t ____stringLength;
|
|
Il2CppChar ____firstChar;
|
|
};
|
|
struct StringBuilder_t : public RuntimeObject
|
|
{
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___m_ChunkChars;
|
|
StringBuilder_t* ___m_ChunkPrevious;
|
|
int32_t ___m_ChunkLength;
|
|
int32_t ___m_ChunkOffset;
|
|
int32_t ___m_MaxCapacity;
|
|
};
|
|
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F : public RuntimeObject
|
|
{
|
|
};
|
|
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_pinvoke
|
|
{
|
|
};
|
|
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_com
|
|
{
|
|
};
|
|
typedef Il2CppFullySharedGenericStruct NoAllocEnumerator_1_tA40C8A9AE3376A8BA7E34711AA94E666443DB696;
|
|
struct VariantKeyedCollection_3_t69DAD887BA8D10C65905B0A506F0142BAFC74383 : public VariantCollection_2_t3F934CEFED36CEC5846014E6FFE1242CD6299312
|
|
{
|
|
RuntimeObject* ___U3CimplementationU3Ek__BackingField;
|
|
};
|
|
struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22
|
|
{
|
|
bool ___m_value;
|
|
};
|
|
struct Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3
|
|
{
|
|
uint8_t ___m_value;
|
|
};
|
|
struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17
|
|
{
|
|
Il2CppChar ___m_value;
|
|
};
|
|
struct Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F
|
|
{
|
|
double ___m_value;
|
|
};
|
|
struct Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175
|
|
{
|
|
int16_t ___m_value;
|
|
};
|
|
struct Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C
|
|
{
|
|
int32_t ___m_value;
|
|
};
|
|
struct Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3
|
|
{
|
|
int64_t ___m_value;
|
|
};
|
|
struct IntPtr_t
|
|
{
|
|
void* ___m_value;
|
|
};
|
|
struct Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A
|
|
{
|
|
union
|
|
{
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
uint8_t ___byte_0;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
uint8_t ___byte_0_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___byte_1_OffsetPadding[1];
|
|
uint8_t ___byte_1;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___byte_1_OffsetPadding_forAlignmentOnly[1];
|
|
uint8_t ___byte_1_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___byte_2_OffsetPadding[2];
|
|
uint8_t ___byte_2;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___byte_2_OffsetPadding_forAlignmentOnly[2];
|
|
uint8_t ___byte_2_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___byte_3_OffsetPadding[3];
|
|
uint8_t ___byte_3;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___byte_3_OffsetPadding_forAlignmentOnly[3];
|
|
uint8_t ___byte_3_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___byte_4_OffsetPadding[4];
|
|
uint8_t ___byte_4;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___byte_4_OffsetPadding_forAlignmentOnly[4];
|
|
uint8_t ___byte_4_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___byte_5_OffsetPadding[5];
|
|
uint8_t ___byte_5;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___byte_5_OffsetPadding_forAlignmentOnly[5];
|
|
uint8_t ___byte_5_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___byte_6_OffsetPadding[6];
|
|
uint8_t ___byte_6;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___byte_6_OffsetPadding_forAlignmentOnly[6];
|
|
uint8_t ___byte_6_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___byte_7_OffsetPadding[7];
|
|
uint8_t ___byte_7;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___byte_7_OffsetPadding_forAlignmentOnly[7];
|
|
uint8_t ___byte_7_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___byte_8_OffsetPadding[8];
|
|
uint8_t ___byte_8;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___byte_8_OffsetPadding_forAlignmentOnly[8];
|
|
uint8_t ___byte_8_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___byte_9_OffsetPadding[9];
|
|
uint8_t ___byte_9;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___byte_9_OffsetPadding_forAlignmentOnly[9];
|
|
uint8_t ___byte_9_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___byte_10_OffsetPadding[10];
|
|
uint8_t ___byte_10;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___byte_10_OffsetPadding_forAlignmentOnly[10];
|
|
uint8_t ___byte_10_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___byte_11_OffsetPadding[11];
|
|
uint8_t ___byte_11;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___byte_11_OffsetPadding_forAlignmentOnly[11];
|
|
uint8_t ___byte_11_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___byte_12_OffsetPadding[12];
|
|
uint8_t ___byte_12;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___byte_12_OffsetPadding_forAlignmentOnly[12];
|
|
uint8_t ___byte_12_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___byte_13_OffsetPadding[13];
|
|
uint8_t ___byte_13;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___byte_13_OffsetPadding_forAlignmentOnly[13];
|
|
uint8_t ___byte_13_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___byte_14_OffsetPadding[14];
|
|
uint8_t ___byte_14;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___byte_14_OffsetPadding_forAlignmentOnly[14];
|
|
uint8_t ___byte_14_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___byte_15_OffsetPadding[15];
|
|
uint8_t ___byte_15;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___byte_15_OffsetPadding_forAlignmentOnly[15];
|
|
uint8_t ___byte_15_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
int8_t ___sbyte_0;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
int8_t ___sbyte_0_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___sbyte_1_OffsetPadding[1];
|
|
int8_t ___sbyte_1;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___sbyte_1_OffsetPadding_forAlignmentOnly[1];
|
|
int8_t ___sbyte_1_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___sbyte_2_OffsetPadding[2];
|
|
int8_t ___sbyte_2;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___sbyte_2_OffsetPadding_forAlignmentOnly[2];
|
|
int8_t ___sbyte_2_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___sbyte_3_OffsetPadding[3];
|
|
int8_t ___sbyte_3;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___sbyte_3_OffsetPadding_forAlignmentOnly[3];
|
|
int8_t ___sbyte_3_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___sbyte_4_OffsetPadding[4];
|
|
int8_t ___sbyte_4;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___sbyte_4_OffsetPadding_forAlignmentOnly[4];
|
|
int8_t ___sbyte_4_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___sbyte_5_OffsetPadding[5];
|
|
int8_t ___sbyte_5;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___sbyte_5_OffsetPadding_forAlignmentOnly[5];
|
|
int8_t ___sbyte_5_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___sbyte_6_OffsetPadding[6];
|
|
int8_t ___sbyte_6;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___sbyte_6_OffsetPadding_forAlignmentOnly[6];
|
|
int8_t ___sbyte_6_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___sbyte_7_OffsetPadding[7];
|
|
int8_t ___sbyte_7;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___sbyte_7_OffsetPadding_forAlignmentOnly[7];
|
|
int8_t ___sbyte_7_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___sbyte_8_OffsetPadding[8];
|
|
int8_t ___sbyte_8;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___sbyte_8_OffsetPadding_forAlignmentOnly[8];
|
|
int8_t ___sbyte_8_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___sbyte_9_OffsetPadding[9];
|
|
int8_t ___sbyte_9;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___sbyte_9_OffsetPadding_forAlignmentOnly[9];
|
|
int8_t ___sbyte_9_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___sbyte_10_OffsetPadding[10];
|
|
int8_t ___sbyte_10;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___sbyte_10_OffsetPadding_forAlignmentOnly[10];
|
|
int8_t ___sbyte_10_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___sbyte_11_OffsetPadding[11];
|
|
int8_t ___sbyte_11;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___sbyte_11_OffsetPadding_forAlignmentOnly[11];
|
|
int8_t ___sbyte_11_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___sbyte_12_OffsetPadding[12];
|
|
int8_t ___sbyte_12;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___sbyte_12_OffsetPadding_forAlignmentOnly[12];
|
|
int8_t ___sbyte_12_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___sbyte_13_OffsetPadding[13];
|
|
int8_t ___sbyte_13;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___sbyte_13_OffsetPadding_forAlignmentOnly[13];
|
|
int8_t ___sbyte_13_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___sbyte_14_OffsetPadding[14];
|
|
int8_t ___sbyte_14;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___sbyte_14_OffsetPadding_forAlignmentOnly[14];
|
|
int8_t ___sbyte_14_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___sbyte_15_OffsetPadding[15];
|
|
int8_t ___sbyte_15;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___sbyte_15_OffsetPadding_forAlignmentOnly[15];
|
|
int8_t ___sbyte_15_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
uint16_t ___uint16_0;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
uint16_t ___uint16_0_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___uint16_1_OffsetPadding[2];
|
|
uint16_t ___uint16_1;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___uint16_1_OffsetPadding_forAlignmentOnly[2];
|
|
uint16_t ___uint16_1_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___uint16_2_OffsetPadding[4];
|
|
uint16_t ___uint16_2;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___uint16_2_OffsetPadding_forAlignmentOnly[4];
|
|
uint16_t ___uint16_2_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___uint16_3_OffsetPadding[6];
|
|
uint16_t ___uint16_3;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___uint16_3_OffsetPadding_forAlignmentOnly[6];
|
|
uint16_t ___uint16_3_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___uint16_4_OffsetPadding[8];
|
|
uint16_t ___uint16_4;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___uint16_4_OffsetPadding_forAlignmentOnly[8];
|
|
uint16_t ___uint16_4_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___uint16_5_OffsetPadding[10];
|
|
uint16_t ___uint16_5;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___uint16_5_OffsetPadding_forAlignmentOnly[10];
|
|
uint16_t ___uint16_5_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___uint16_6_OffsetPadding[12];
|
|
uint16_t ___uint16_6;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___uint16_6_OffsetPadding_forAlignmentOnly[12];
|
|
uint16_t ___uint16_6_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___uint16_7_OffsetPadding[14];
|
|
uint16_t ___uint16_7;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___uint16_7_OffsetPadding_forAlignmentOnly[14];
|
|
uint16_t ___uint16_7_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
int16_t ___int16_0;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
int16_t ___int16_0_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___int16_1_OffsetPadding[2];
|
|
int16_t ___int16_1;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___int16_1_OffsetPadding_forAlignmentOnly[2];
|
|
int16_t ___int16_1_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___int16_2_OffsetPadding[4];
|
|
int16_t ___int16_2;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___int16_2_OffsetPadding_forAlignmentOnly[4];
|
|
int16_t ___int16_2_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___int16_3_OffsetPadding[6];
|
|
int16_t ___int16_3;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___int16_3_OffsetPadding_forAlignmentOnly[6];
|
|
int16_t ___int16_3_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___int16_4_OffsetPadding[8];
|
|
int16_t ___int16_4;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___int16_4_OffsetPadding_forAlignmentOnly[8];
|
|
int16_t ___int16_4_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___int16_5_OffsetPadding[10];
|
|
int16_t ___int16_5;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___int16_5_OffsetPadding_forAlignmentOnly[10];
|
|
int16_t ___int16_5_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___int16_6_OffsetPadding[12];
|
|
int16_t ___int16_6;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___int16_6_OffsetPadding_forAlignmentOnly[12];
|
|
int16_t ___int16_6_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___int16_7_OffsetPadding[14];
|
|
int16_t ___int16_7;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___int16_7_OffsetPadding_forAlignmentOnly[14];
|
|
int16_t ___int16_7_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
uint32_t ___uint32_0;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
uint32_t ___uint32_0_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___uint32_1_OffsetPadding[4];
|
|
uint32_t ___uint32_1;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___uint32_1_OffsetPadding_forAlignmentOnly[4];
|
|
uint32_t ___uint32_1_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___uint32_2_OffsetPadding[8];
|
|
uint32_t ___uint32_2;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___uint32_2_OffsetPadding_forAlignmentOnly[8];
|
|
uint32_t ___uint32_2_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___uint32_3_OffsetPadding[12];
|
|
uint32_t ___uint32_3;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___uint32_3_OffsetPadding_forAlignmentOnly[12];
|
|
uint32_t ___uint32_3_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
int32_t ___int32_0;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
int32_t ___int32_0_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___int32_1_OffsetPadding[4];
|
|
int32_t ___int32_1;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___int32_1_OffsetPadding_forAlignmentOnly[4];
|
|
int32_t ___int32_1_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___int32_2_OffsetPadding[8];
|
|
int32_t ___int32_2;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___int32_2_OffsetPadding_forAlignmentOnly[8];
|
|
int32_t ___int32_2_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___int32_3_OffsetPadding[12];
|
|
int32_t ___int32_3;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___int32_3_OffsetPadding_forAlignmentOnly[12];
|
|
int32_t ___int32_3_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
uint64_t ___uint64_0;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
uint64_t ___uint64_0_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___uint64_1_OffsetPadding[8];
|
|
uint64_t ___uint64_1;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___uint64_1_OffsetPadding_forAlignmentOnly[8];
|
|
uint64_t ___uint64_1_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
int64_t ___int64_0;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
int64_t ___int64_0_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___int64_1_OffsetPadding[8];
|
|
int64_t ___int64_1;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___int64_1_OffsetPadding_forAlignmentOnly[8];
|
|
int64_t ___int64_1_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
float ___single_0;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
float ___single_0_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___single_1_OffsetPadding[4];
|
|
float ___single_1;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___single_1_OffsetPadding_forAlignmentOnly[4];
|
|
float ___single_1_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___single_2_OffsetPadding[8];
|
|
float ___single_2;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___single_2_OffsetPadding_forAlignmentOnly[8];
|
|
float ___single_2_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___single_3_OffsetPadding[12];
|
|
float ___single_3;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___single_3_OffsetPadding_forAlignmentOnly[12];
|
|
float ___single_3_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
double ___double_0;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
double ___double_0_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___double_1_OffsetPadding[8];
|
|
double ___double_1;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___double_1_OffsetPadding_forAlignmentOnly[8];
|
|
double ___double_1_forAlignmentOnly;
|
|
};
|
|
};
|
|
};
|
|
struct SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5
|
|
{
|
|
int8_t ___m_value;
|
|
};
|
|
struct Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C
|
|
{
|
|
float ___m_value;
|
|
};
|
|
struct UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455
|
|
{
|
|
uint16_t ___m_value;
|
|
};
|
|
struct UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B
|
|
{
|
|
uint32_t ___m_value;
|
|
};
|
|
struct UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF
|
|
{
|
|
uint64_t ___m_value;
|
|
};
|
|
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
};
|
|
uint8_t Void_t4861ACF8F4594C3437BB48B6E56783494B843915__padding[1];
|
|
};
|
|
};
|
|
struct Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A ___register;
|
|
};
|
|
struct Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A ___register;
|
|
};
|
|
struct Vector_1_t4FB40153F5AFF7BFDFB20E1BCB98343E42252AD2
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A ___register;
|
|
};
|
|
struct Exception_t : public RuntimeObject
|
|
{
|
|
String_t* ____className;
|
|
String_t* ____message;
|
|
RuntimeObject* ____data;
|
|
Exception_t* ____innerException;
|
|
String_t* ____helpURL;
|
|
RuntimeObject* ____stackTrace;
|
|
String_t* ____stackTraceString;
|
|
String_t* ____remoteStackTraceString;
|
|
int32_t ____remoteStackIndex;
|
|
RuntimeObject* ____dynamicMethods;
|
|
int32_t ____HResult;
|
|
String_t* ____source;
|
|
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager;
|
|
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces;
|
|
IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832* ___native_trace_ips;
|
|
int32_t ___caught_in_unmanaged;
|
|
};
|
|
struct Exception_t_marshaled_pinvoke
|
|
{
|
|
char* ____className;
|
|
char* ____message;
|
|
RuntimeObject* ____data;
|
|
Exception_t_marshaled_pinvoke* ____innerException;
|
|
char* ____helpURL;
|
|
Il2CppIUnknown* ____stackTrace;
|
|
char* ____stackTraceString;
|
|
char* ____remoteStackTraceString;
|
|
int32_t ____remoteStackIndex;
|
|
Il2CppIUnknown* ____dynamicMethods;
|
|
int32_t ____HResult;
|
|
char* ____source;
|
|
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager;
|
|
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces;
|
|
Il2CppSafeArray* ___native_trace_ips;
|
|
int32_t ___caught_in_unmanaged;
|
|
};
|
|
struct Exception_t_marshaled_com
|
|
{
|
|
Il2CppChar* ____className;
|
|
Il2CppChar* ____message;
|
|
RuntimeObject* ____data;
|
|
Exception_t_marshaled_com* ____innerException;
|
|
Il2CppChar* ____helpURL;
|
|
Il2CppIUnknown* ____stackTrace;
|
|
Il2CppChar* ____stackTraceString;
|
|
Il2CppChar* ____remoteStackTraceString;
|
|
int32_t ____remoteStackIndex;
|
|
Il2CppIUnknown* ____dynamicMethods;
|
|
int32_t ____HResult;
|
|
Il2CppChar* ____source;
|
|
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager;
|
|
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces;
|
|
Il2CppSafeArray* ___native_trace_ips;
|
|
int32_t ___caught_in_unmanaged;
|
|
};
|
|
struct RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B
|
|
{
|
|
intptr_t ___value;
|
|
};
|
|
struct VectorSizeHelper_tC26CEAD1B0D88F765A24D653A74900C4C7FEBD18
|
|
{
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 ____placeholder;
|
|
uint8_t ____byte;
|
|
};
|
|
struct VectorSizeHelper_tF54ACCE947CB8A38047BEB642392A4E7345A157D
|
|
{
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A ____placeholder;
|
|
uint8_t ____byte;
|
|
};
|
|
struct VectorSizeHelper_tAB183E4966E0B97A19A75D213EDAE51037A6BF3C
|
|
{
|
|
Vector_1_t4FB40153F5AFF7BFDFB20E1BCB98343E42252AD2 ____placeholder;
|
|
uint8_t ____byte;
|
|
};
|
|
struct SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 : public Exception_t
|
|
{
|
|
};
|
|
struct Type_t : public MemberInfo_t
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B ____impl;
|
|
};
|
|
struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
|
|
{
|
|
String_t* ____paramName;
|
|
};
|
|
struct IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
|
|
{
|
|
};
|
|
struct NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
|
|
{
|
|
};
|
|
struct ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129 : public ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263
|
|
{
|
|
};
|
|
struct ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F : public ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263
|
|
{
|
|
RuntimeObject* ____actualValue;
|
|
};
|
|
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_StaticFields
|
|
{
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___invariant_culture_info;
|
|
RuntimeObject* ___shared_table_lock;
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___default_current_culture;
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___s_DefaultThreadCurrentUICulture;
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___s_DefaultThreadCurrentCulture;
|
|
Dictionary_2_t9FA6D82CAFC18769F7515BB51D1C56DAE09381C3* ___shared_by_number;
|
|
Dictionary_2_tE1603CE612C16451D1E56FF4D4859D4FE4087C28* ___shared_by_name;
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___s_UserPreferredCultureInfoInAppX;
|
|
bool ___IsTaiwanSku;
|
|
};
|
|
struct NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472_StaticFields
|
|
{
|
|
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___invariantInfo;
|
|
};
|
|
struct String_t_StaticFields
|
|
{
|
|
String_t* ___Empty;
|
|
};
|
|
struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_StaticFields
|
|
{
|
|
String_t* ___TrueString;
|
|
String_t* ___FalseString;
|
|
};
|
|
struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17_StaticFields
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___s_categoryForLatin1;
|
|
};
|
|
struct Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489_StaticFields
|
|
{
|
|
int32_t ___s_count;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 ___s_zero;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 ___s_one;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 ___s_allOnes;
|
|
};
|
|
struct Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A_StaticFields
|
|
{
|
|
int32_t ___s_count;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A ___s_zero;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A ___s_one;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A ___s_allOnes;
|
|
};
|
|
struct Type_t_StaticFields
|
|
{
|
|
Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235* ___s_defaultBinder;
|
|
Il2CppChar ___Delimiter;
|
|
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___EmptyTypes;
|
|
RuntimeObject* ___Missing;
|
|
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterAttribute;
|
|
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterName;
|
|
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterNameIgnoreCase;
|
|
};
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
struct __Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) uint8_t m_Items[1];
|
|
|
|
inline uint8_t* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + il2cpp_array_calc_byte_offset(this, index);
|
|
}
|
|
inline uint8_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + il2cpp_array_calc_byte_offset(this, index);
|
|
}
|
|
};
|
|
|
|
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NoAllocEnumerator_1__ctor_m3DF218190D5E522C71CCB35C1A6214B1969A14B1_gshared (NoAllocEnumerator_1_tA40C8A9AE3376A8BA7E34711AA94E666443DB696* __this, RuntimeObject* ___0_list, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Vector_1_get_Count_m6DF09E4443FC90521D33C892BE69D32B04D85A15_gshared_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Vector_1__ctor_mDA4A6115C4120BFDD773FD4D3753FD3EC2B10427_gshared (Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489* __this, uint16_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Vector_1__ctor_m8212BCFF76673CC904541B2D9AF39E5FF124B359_gshared (Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489* __this, void* ___0_dataPointer, int32_t ___1_offset, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Vector_1__ctor_m46ADEA122EFBA7AEF487716891A8ADD284FD12E3_gshared (Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489* __this, void* ___0_dataPointer, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Vector_1__ctor_m48CD7847B9597F3193C9C0BA97ED64E276F4340A_gshared (Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489* __this, Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* ___0_existingRegister, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Vector_1_get_Item_m248FFF521980A3A43D237B8C5CA2ABD5C62D4D27_gshared (Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Vector_1_Equals_m729FD34A0F43A7C8A8DF285BCED9B5B31D579FE8_gshared (Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489* __this, Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 ___0_other, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Vector_1_Equals_mD7F4E0B493DD44E2685BC17F8D6EAD92342CBC29_gshared_inline (Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Vector_1_ScalarEquals_m4E13E30219B0D2AADB58AD6E5CB2B54B9FCBFAAE_gshared_inline (uint16_t ___0_left, uint16_t ___1_right, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Vector_1_GetHashCode_m3C7CFE908C6BB2DC94F94F7615F2D1AF0E2777D9_gshared (Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Vector_1_ToString_mA9FEB41834880EF7C7688EB8C3F83286697B0BC7_gshared (Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489* __this, String_t* ___0_format, RuntimeObject* ___1_formatProvider, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Vector_1_ToString_m2444D8FDCF0568D259DAE989EB7BCC77D37B2D6D_gshared (Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Vector_1_op_Equality_mB42F3DAE52C3BC7579B302E623196C45A5DEAC6B_gshared_inline (Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 ___0_left, Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 ___1_right, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Vector_1__ctor_mEA86543744A54FCE590FDBF012FAE9037A5F1606_gshared (Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A* __this, Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* ___0_existingRegister, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Vector_1_InitializeCount_m43BBDDA05FDAB290038584331DB79CB33C523B83_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint16_t Vector_1_GetOneValue_m7E814AFD17E4D390C12EF731DA01203D262D9953_gshared_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint16_t Vector_1_GetAllBitsSetValue_m854DE079EA89F97089D3EF29D7C31F081F420580_gshared_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Vector_1_get_Count_mC75C8C6E913E7FF8A3D10467D6DADE41711EF3CC_gshared_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Vector_1__ctor_m1B5D6A9264B4450B3C14BD8FF9430354A337F2D6_gshared (Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A* __this, uint64_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Vector_1__ctor_mB3EB022FA5067096F41350560FA447FBA16BFF2B_gshared (Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A* __this, void* ___0_dataPointer, int32_t ___1_offset, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Vector_1__ctor_mBEC18AF78DE340D929AD22019717DE9ED57A4CCA_gshared (Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A* __this, void* ___0_dataPointer, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Vector_1_get_Item_m685EA4A01E8AF51DC7B5F78DE0583F8FD4997C99_gshared (Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Vector_1_Equals_mAE01D42B31EB54893DC4DB1BE8A99216AF784C27_gshared (Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A* __this, Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A ___0_other, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Vector_1_Equals_mE275DCDE4DC3B6FB30AB80ACEAC8363207BA9BEC_gshared_inline (Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Vector_1_ScalarEquals_m73081D1B852400C74618D0A814BBED2FE272175D_gshared_inline (uint64_t ___0_left, uint64_t ___1_right, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Vector_1_GetHashCode_mEC951E56E2DC500CF877DFAD5542E0920B73B00A_gshared (Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Vector_1_ToString_m8F20119DB8CF7117F2D6E4D165C4A843F7D3586C_gshared (Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A* __this, String_t* ___0_format, RuntimeObject* ___1_formatProvider, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Vector_1_ToString_m3EBF88D3E195BD2C4B0D1CCBD9F71E32233CA4F4_gshared (Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Vector_1_op_Equality_mD4D4AE7733CACE50CA2FCFFFB0A16818EEC01293_gshared_inline (Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A ___0_left, Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A ___1_right, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Vector_1_InitializeCount_mE29E088973A17B81B830C30831075135FC8E263A_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint64_t Vector_1_GetOneValue_mE2DE5D8CFC8D7A4990743C160CD1C4ED71CDA288_gshared_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint64_t Vector_1_GetAllBitsSetValue_m99E582A6A7DA5089B26FE42E5F8FDE26A6005ED0_gshared_inline (const RuntimeMethod* method) ;
|
|
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2 (RuntimeObject* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* __this, String_t* ___0_paramName, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotSupportedException__ctor_m1398D0CDE19B36AA3DE9392879738C1EA2439CDF (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* __this, String_t* ___0_paramName, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m34A925BA55EC4CE4253404E363B5F6A53EB51CA3 (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* __this, const RuntimeMethod* method) ;
|
|
inline void NoAllocEnumerator_1__ctor_m3DF218190D5E522C71CCB35C1A6214B1969A14B1 (NoAllocEnumerator_1_tA40C8A9AE3376A8BA7E34711AA94E666443DB696* __this, RuntimeObject* ___0_list, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NoAllocEnumerator_1_tA40C8A9AE3376A8BA7E34711AA94E666443DB696*, RuntimeObject*, const RuntimeMethod*))NoAllocEnumerator_1__ctor_m3DF218190D5E522C71CCB35C1A6214B1969A14B1_gshared)(__this, ___0_list, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57 (RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B ___0_handle, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC (Type_t* ___0_left, Type_t* ___1_right, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* __this, String_t* ___0_message, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Vector_get_IsHardwareAccelerated_m783509258751EBED64CBD9F387EC1BB4A15088AA (const RuntimeMethod* method) ;
|
|
inline int32_t Vector_1_get_Count_m6DF09E4443FC90521D33C892BE69D32B04D85A15_inline (const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (const RuntimeMethod*))Vector_1_get_Count_m6DF09E4443FC90521D33C892BE69D32B04D85A15_gshared_inline)(method);
|
|
}
|
|
inline void Vector_1__ctor_mDA4A6115C4120BFDD773FD4D3753FD3EC2B10427 (Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489* __this, uint16_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489*, uint16_t, const RuntimeMethod*))Vector_1__ctor_mDA4A6115C4120BFDD773FD4D3753FD3EC2B10427_gshared)(__this, ___0_value, method);
|
|
}
|
|
inline void Vector_1__ctor_m8212BCFF76673CC904541B2D9AF39E5FF124B359 (Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489* __this, void* ___0_dataPointer, int32_t ___1_offset, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489*, void*, int32_t, const RuntimeMethod*))Vector_1__ctor_m8212BCFF76673CC904541B2D9AF39E5FF124B359_gshared)(__this, ___0_dataPointer, ___1_offset, method);
|
|
}
|
|
inline void Vector_1__ctor_m46ADEA122EFBA7AEF487716891A8ADD284FD12E3 (Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489* __this, void* ___0_dataPointer, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489*, void*, const RuntimeMethod*))Vector_1__ctor_m46ADEA122EFBA7AEF487716891A8ADD284FD12E3_gshared)(__this, ___0_dataPointer, method);
|
|
}
|
|
inline void Vector_1__ctor_m48CD7847B9597F3193C9C0BA97ED64E276F4340A (Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489* __this, Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* ___0_existingRegister, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489*, Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*, const RuntimeMethod*))Vector_1__ctor_m48CD7847B9597F3193C9C0BA97ED64E276F4340A_gshared)(__this, ___0_existingRegister, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SR_Format_m9E8DC9AEFDC34AC67473EFAEAB78C5066C1A0D09 (String_t* ___0_resourceFormat, RuntimeObject* ___1_p1, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IndexOutOfRangeException__ctor_mFD06819F05B815BE2D6E826D4E04F4C449D0A425 (IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82* __this, String_t* ___0_message, const RuntimeMethod* method) ;
|
|
inline uint16_t Vector_1_get_Item_m248FFF521980A3A43D237B8C5CA2ABD5C62D4D27 (Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
return (( uint16_t (*) (Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489*, int32_t, const RuntimeMethod*))Vector_1_get_Item_m248FFF521980A3A43D237B8C5CA2ABD5C62D4D27_gshared)(__this, ___0_index, method);
|
|
}
|
|
inline bool Vector_1_Equals_m729FD34A0F43A7C8A8DF285BCED9B5B31D579FE8 (Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489* __this, Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 ___0_other, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489*, Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489, const RuntimeMethod*))Vector_1_Equals_m729FD34A0F43A7C8A8DF285BCED9B5B31D579FE8_gshared)(__this, ___0_other, method);
|
|
}
|
|
inline bool Vector_1_Equals_mD7F4E0B493DD44E2685BC17F8D6EAD92342CBC29_inline (Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489*, RuntimeObject*, const RuntimeMethod*))Vector_1_Equals_mD7F4E0B493DD44E2685BC17F8D6EAD92342CBC29_gshared_inline)(__this, ___0_obj, method);
|
|
}
|
|
inline bool Vector_1_ScalarEquals_m4E13E30219B0D2AADB58AD6E5CB2B54B9FCBFAAE_inline (uint16_t ___0_left, uint16_t ___1_right, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (uint16_t, uint16_t, const RuntimeMethod*))Vector_1_ScalarEquals_m4E13E30219B0D2AADB58AD6E5CB2B54B9FCBFAAE_gshared_inline)(___0_left, ___1_right, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Byte_GetHashCode_mB42A844E310593D124CE92EBA90F3755C9B10678 (uint8_t* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7 (int32_t ___0_h1, int32_t ___1_h2, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SByte_GetHashCode_mE61E9B0D1D93EF3E4E2B6282FF940FFA2E471FFF (int8_t* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UInt16_GetHashCode_m534E5103D0DA9C6FCED4F2F007993D3E38165200 (uint16_t* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int16_GetHashCode_mCD0A167AC8E6ACC2235F12E00C0F9BDC6ED3B6E1 (int16_t* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UInt32_GetHashCode_mB9A03A037C079ADF0E61516BECA1AB05F92266BC (uint32_t* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int32_GetHashCode_m253D60FF7527A483E91004B7A2366F13E225E295 (int32_t* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UInt64_GetHashCode_m65D9FD0102B6B01BF38D986F060F0BDBC29B4F92 (uint64_t* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int64_GetHashCode_mDB050BE2AC244D92B14D1DF725AAD279CDC48496 (int64_t* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Single_GetHashCode_mC3F1E099D1CF165C2D71FBCC5EF6A6792F9021D2 (float* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Double_GetHashCode_m3761FC05AD24D97A68FA1E8412A9454DF3880E32_inline (double* __this, const RuntimeMethod* method) ;
|
|
inline int32_t Vector_1_GetHashCode_m3C7CFE908C6BB2DC94F94F7615F2D1AF0E2777D9 (Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489*, const RuntimeMethod*))Vector_1_GetHashCode_m3C7CFE908C6BB2DC94F94F7615F2D1AF0E2777D9_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* CultureInfo_get_CurrentCulture_m8A4580F49DDD7E9DB34C699965423DB8E3BBA9A5 (const RuntimeMethod* method) ;
|
|
inline String_t* Vector_1_ToString_mA9FEB41834880EF7C7688EB8C3F83286697B0BC7 (Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489* __this, String_t* ___0_format, RuntimeObject* ___1_formatProvider, const RuntimeMethod* method)
|
|
{
|
|
return (( String_t* (*) (Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489*, String_t*, RuntimeObject*, const RuntimeMethod*))Vector_1_ToString_mA9FEB41834880EF7C7688EB8C3F83286697B0BC7_gshared)(__this, ___0_format, ___1_formatProvider, method);
|
|
}
|
|
inline String_t* Vector_1_ToString_m2444D8FDCF0568D259DAE989EB7BCC77D37B2D6D (Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( String_t* (*) (Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489*, const RuntimeMethod*))Vector_1_ToString_m2444D8FDCF0568D259DAE989EB7BCC77D37B2D6D_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_m1D99713357DE05DAFA296633639DB55F8C30587D (StringBuilder_t* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* NumberFormatInfo_GetInstance_m705987E5E7D3E5EC5C5DD2D088FBC9BCBA0FC31F (RuntimeObject* ___0_formatProvider, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* NumberFormatInfo_get_NumberGroupSeparator_m0556B092AA471513B1EDC31C047712226D39BEB6_inline (NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1 (StringBuilder_t* __this, Il2CppChar ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D (StringBuilder_t* __this, String_t* ___0_value, const RuntimeMethod* method) ;
|
|
inline bool Vector_1_op_Equality_mB42F3DAE52C3BC7579B302E623196C45A5DEAC6B_inline (Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 ___0_left, Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 ___1_right, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489, Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489, const RuntimeMethod*))Vector_1_op_Equality_mB42F3DAE52C3BC7579B302E623196C45A5DEAC6B_gshared_inline)(___0_left, ___1_right, method);
|
|
}
|
|
inline void Vector_1__ctor_mEA86543744A54FCE590FDBF012FAE9037A5F1606 (Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A* __this, Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* ___0_existingRegister, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A*, Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*, const RuntimeMethod*))Vector_1__ctor_mEA86543744A54FCE590FDBF012FAE9037A5F1606_gshared)(__this, ___0_existingRegister, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint8_t ConstantHelper_GetByteWithAllBitsSet_m38E318296F5FB9BAE51C97C1AE058716CFC889D7_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int8_t ConstantHelper_GetSByteWithAllBitsSet_mB6B97526769DCCB7B78CCF446F28AAB0D1B5CAE3_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint16_t ConstantHelper_GetUInt16WithAllBitsSet_mD3E13D933A06059499F0E0CBE6798D72D175464A_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int16_t ConstantHelper_GetInt16WithAllBitsSet_m70C5F99E624490970E2D4093FE6E800D1849DDFC_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t ConstantHelper_GetUInt32WithAllBitsSet_m78CBFE0C29CF227C16D2A9021972A0D54744BCAF_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ConstantHelper_GetInt32WithAllBitsSet_m245101340DDE7277600327D319DF86F1FFEA4FD0_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint64_t ConstantHelper_GetUInt64WithAllBitsSet_mB7F3E046EE6B1B20C552BF7CF619416E239A5A96_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t ConstantHelper_GetInt64WithAllBitsSet_m56A9AB64BA5DDD9ECC99424875824591DEFD5C40_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float ConstantHelper_GetSingleWithAllBitsSet_m66FC11C0680F744EB8315278910061C9535818C0_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR double ConstantHelper_GetDoubleWithAllBitsSet_mF43AF77A6C93B7590B35B20458E80F2BC66AD5F2_inline (const RuntimeMethod* method) ;
|
|
inline int32_t Vector_1_InitializeCount_m43BBDDA05FDAB290038584331DB79CB33C523B83 (const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (const RuntimeMethod*))Vector_1_InitializeCount_m43BBDDA05FDAB290038584331DB79CB33C523B83_gshared)(method);
|
|
}
|
|
inline uint16_t Vector_1_GetOneValue_m7E814AFD17E4D390C12EF731DA01203D262D9953_inline (const RuntimeMethod* method)
|
|
{
|
|
return (( uint16_t (*) (const RuntimeMethod*))Vector_1_GetOneValue_m7E814AFD17E4D390C12EF731DA01203D262D9953_gshared_inline)(method);
|
|
}
|
|
inline uint16_t Vector_1_GetAllBitsSetValue_m854DE079EA89F97089D3EF29D7C31F081F420580_inline (const RuntimeMethod* method)
|
|
{
|
|
return (( uint16_t (*) (const RuntimeMethod*))Vector_1_GetAllBitsSetValue_m854DE079EA89F97089D3EF29D7C31F081F420580_gshared_inline)(method);
|
|
}
|
|
inline int32_t Vector_1_get_Count_mC75C8C6E913E7FF8A3D10467D6DADE41711EF3CC_inline (const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (const RuntimeMethod*))Vector_1_get_Count_mC75C8C6E913E7FF8A3D10467D6DADE41711EF3CC_gshared_inline)(method);
|
|
}
|
|
inline void Vector_1__ctor_m1B5D6A9264B4450B3C14BD8FF9430354A337F2D6 (Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A* __this, uint64_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A*, uint64_t, const RuntimeMethod*))Vector_1__ctor_m1B5D6A9264B4450B3C14BD8FF9430354A337F2D6_gshared)(__this, ___0_value, method);
|
|
}
|
|
inline void Vector_1__ctor_mB3EB022FA5067096F41350560FA447FBA16BFF2B (Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A* __this, void* ___0_dataPointer, int32_t ___1_offset, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A*, void*, int32_t, const RuntimeMethod*))Vector_1__ctor_mB3EB022FA5067096F41350560FA447FBA16BFF2B_gshared)(__this, ___0_dataPointer, ___1_offset, method);
|
|
}
|
|
inline void Vector_1__ctor_mBEC18AF78DE340D929AD22019717DE9ED57A4CCA (Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A* __this, void* ___0_dataPointer, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A*, void*, const RuntimeMethod*))Vector_1__ctor_mBEC18AF78DE340D929AD22019717DE9ED57A4CCA_gshared)(__this, ___0_dataPointer, method);
|
|
}
|
|
inline uint64_t Vector_1_get_Item_m685EA4A01E8AF51DC7B5F78DE0583F8FD4997C99 (Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
return (( uint64_t (*) (Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A*, int32_t, const RuntimeMethod*))Vector_1_get_Item_m685EA4A01E8AF51DC7B5F78DE0583F8FD4997C99_gshared)(__this, ___0_index, method);
|
|
}
|
|
inline bool Vector_1_Equals_mAE01D42B31EB54893DC4DB1BE8A99216AF784C27 (Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A* __this, Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A ___0_other, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A*, Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A, const RuntimeMethod*))Vector_1_Equals_mAE01D42B31EB54893DC4DB1BE8A99216AF784C27_gshared)(__this, ___0_other, method);
|
|
}
|
|
inline bool Vector_1_Equals_mE275DCDE4DC3B6FB30AB80ACEAC8363207BA9BEC_inline (Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A*, RuntimeObject*, const RuntimeMethod*))Vector_1_Equals_mE275DCDE4DC3B6FB30AB80ACEAC8363207BA9BEC_gshared_inline)(__this, ___0_obj, method);
|
|
}
|
|
inline bool Vector_1_ScalarEquals_m73081D1B852400C74618D0A814BBED2FE272175D_inline (uint64_t ___0_left, uint64_t ___1_right, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (uint64_t, uint64_t, const RuntimeMethod*))Vector_1_ScalarEquals_m73081D1B852400C74618D0A814BBED2FE272175D_gshared_inline)(___0_left, ___1_right, method);
|
|
}
|
|
inline int32_t Vector_1_GetHashCode_mEC951E56E2DC500CF877DFAD5542E0920B73B00A (Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A*, const RuntimeMethod*))Vector_1_GetHashCode_mEC951E56E2DC500CF877DFAD5542E0920B73B00A_gshared)(__this, method);
|
|
}
|
|
inline String_t* Vector_1_ToString_m8F20119DB8CF7117F2D6E4D165C4A843F7D3586C (Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A* __this, String_t* ___0_format, RuntimeObject* ___1_formatProvider, const RuntimeMethod* method)
|
|
{
|
|
return (( String_t* (*) (Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A*, String_t*, RuntimeObject*, const RuntimeMethod*))Vector_1_ToString_m8F20119DB8CF7117F2D6E4D165C4A843F7D3586C_gshared)(__this, ___0_format, ___1_formatProvider, method);
|
|
}
|
|
inline String_t* Vector_1_ToString_m3EBF88D3E195BD2C4B0D1CCBD9F71E32233CA4F4 (Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( String_t* (*) (Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A*, const RuntimeMethod*))Vector_1_ToString_m3EBF88D3E195BD2C4B0D1CCBD9F71E32233CA4F4_gshared)(__this, method);
|
|
}
|
|
inline bool Vector_1_op_Equality_mD4D4AE7733CACE50CA2FCFFFB0A16818EEC01293_inline (Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A ___0_left, Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A ___1_right, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A, Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A, const RuntimeMethod*))Vector_1_op_Equality_mD4D4AE7733CACE50CA2FCFFFB0A16818EEC01293_gshared_inline)(___0_left, ___1_right, method);
|
|
}
|
|
inline int32_t Vector_1_InitializeCount_mE29E088973A17B81B830C30831075135FC8E263A (const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (const RuntimeMethod*))Vector_1_InitializeCount_mE29E088973A17B81B830C30831075135FC8E263A_gshared)(method);
|
|
}
|
|
inline uint64_t Vector_1_GetOneValue_mE2DE5D8CFC8D7A4990743C160CD1C4ED71CDA288_inline (const RuntimeMethod* method)
|
|
{
|
|
return (( uint64_t (*) (const RuntimeMethod*))Vector_1_GetOneValue_mE2DE5D8CFC8D7A4990743C160CD1C4ED71CDA288_gshared_inline)(method);
|
|
}
|
|
inline uint64_t Vector_1_GetAllBitsSetValue_m99E582A6A7DA5089B26FE42E5F8FDE26A6005ED0_inline (const RuntimeMethod* method)
|
|
{
|
|
return (( uint64_t (*) (const RuntimeMethod*))Vector_1_GetAllBitsSetValue_m99E582A6A7DA5089B26FE42E5F8FDE26A6005ED0_gshared_inline)(method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t BitConverter_DoubleToInt64Bits_m4F42741818550F9956B5FBAF88C051F4DE5B0AE6_inline (double ___0_value, const RuntimeMethod* method) ;
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 50479
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VariantCollection_2__ctor_mB9950B9BC16ABBE01E0378930E0890DF8159171B_gshared (VariantCollection_2_t3F934CEFED36CEC5846014E6FFE1242CD6299312* __this, RuntimeObject* ___0_implementation, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantCollection.cs:9>
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantCollection.cs:11>
|
|
RuntimeObject* L_0 = ___0_implementation;
|
|
if (L_0)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantCollection.cs:13>
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCBA4B5B3BCCC1DB07C8FA58231CDB1B11CCE0488)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantCollection.cs:16>
|
|
RuntimeObject* L_2 = ___0_implementation;
|
|
(( void (*) (VariantCollection_2_t3F934CEFED36CEC5846014E6FFE1242CD6299312*, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 1)))(__this, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 1));
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantCollection.cs:17>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 50480
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* VariantCollection_2_get_implementation_mD0FAC6AEEEA9B23D7DA8BCA711D4E8F80C061BDE_gshared (VariantCollection_2_t3F934CEFED36CEC5846014E6FFE1242CD6299312* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantCollection.cs:19>
|
|
RuntimeObject* L_0 = __this->___U3CimplementationU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 50481
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VariantCollection_2_set_implementation_m312D1372BEAD85DF8989AB604D9BD1F0A2FB8F41_gshared (VariantCollection_2_t3F934CEFED36CEC5846014E6FFE1242CD6299312* __this, RuntimeObject* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantCollection.cs:19>
|
|
RuntimeObject* L_0 = ___0_value;
|
|
__this->___U3CimplementationU3Ek__BackingField = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CimplementationU3Ek__BackingField), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 50482
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t VariantCollection_2_get_Count_mDB2341447FEE2C5DBEF46FAA60BE9D9E0166F934_gshared (VariantCollection_2_t3F934CEFED36CEC5846014E6FFE1242CD6299312* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantCollection.cs:21>
|
|
RuntimeObject* L_0;
|
|
L_0 = (( RuntimeObject* (*) (VariantCollection_2_t3F934CEFED36CEC5846014E6FFE1242CD6299312*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = InterfaceFuncInvoker0< int32_t >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 0), L_0);
|
|
return L_1;
|
|
}
|
|
}
|
|
// Method Definition Index: 50483
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool VariantCollection_2_get_IsReadOnly_m3B05DB072EF6C988AA3A4D977AC42136D8845C3C_gshared (VariantCollection_2_t3F934CEFED36CEC5846014E6FFE1242CD6299312* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantCollection.cs:23>
|
|
RuntimeObject* L_0;
|
|
L_0 = (( RuntimeObject* (*) (VariantCollection_2_t3F934CEFED36CEC5846014E6FFE1242CD6299312*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
|
|
NullCheck(L_0);
|
|
bool L_1;
|
|
L_1 = InterfaceFuncInvoker0< bool >::Invoke(1, il2cpp_rgctx_data(method->klass->rgctx_data, 0), L_0);
|
|
return L_1;
|
|
}
|
|
}
|
|
// Method Definition Index: 50484
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* VariantCollection_2_System_Collections_IEnumerable_GetEnumerator_mDA4B86C74CAB5F27B7C7DA0E14C3D115FDAA0D58_gshared (VariantCollection_2_t3F934CEFED36CEC5846014E6FFE1242CD6299312* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantCollection.cs:27>
|
|
RuntimeObject* L_0;
|
|
L_0 = (( RuntimeObject* (*) (VariantCollection_2_t3F934CEFED36CEC5846014E6FFE1242CD6299312*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 6)))(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 6));
|
|
return (RuntimeObject*)L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 50485
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* VariantCollection_2_GetEnumerator_m085EBA9068848ABD652DCB94B497DA2D744D635C_gshared (VariantCollection_2_t3F934CEFED36CEC5846014E6FFE1242CD6299312* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
U3CGetEnumeratorU3Ed__10_tB82E52AC48538ABE56B53AE1591A32949295AC89* L_0 = (U3CGetEnumeratorU3Ed__10_tB82E52AC48538ABE56B53AE1591A32949295AC89*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 8));
|
|
(( void (*) (U3CGetEnumeratorU3Ed__10_tB82E52AC48538ABE56B53AE1591A32949295AC89*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 9)))(L_0, 0, il2cpp_rgctx_method(method->klass->rgctx_data, 9));
|
|
U3CGetEnumeratorU3Ed__10_tB82E52AC48538ABE56B53AE1591A32949295AC89* L_1 = L_0;
|
|
NullCheck(L_1);
|
|
il2cpp_codegen_write_instance_field_data<VariantCollection_2_t3F934CEFED36CEC5846014E6FFE1242CD6299312*>(L_1, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 8),2), __this);
|
|
return (RuntimeObject*)L_1;
|
|
}
|
|
}
|
|
// Method Definition Index: 50486
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VariantCollection_2_Add_mF688A5FAF05973A83EE76E47029F5E5126D7B082_gshared (VariantCollection_2_t3F934CEFED36CEC5846014E6FFE1242CD6299312* __this, Il2CppFullySharedGenericAny ___0_item, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_TBase_tD7833CF0057B03C50139A082BCCE415CFDA8DE50 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 10));
|
|
const Il2CppFullySharedGenericAny L_0 = alloca(SizeOf_TBase_tD7833CF0057B03C50139A082BCCE415CFDA8DE50);
|
|
const Il2CppFullySharedGenericAny L_4 = L_0;
|
|
const uint32_t SizeOf_TImplementation_t6EF8A3FC52E8E82F776512FE295CB7C6B7701CBB = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 11));
|
|
const Il2CppFullySharedGenericAny L_6 = alloca(SizeOf_TImplementation_t6EF8A3FC52E8E82F776512FE295CB7C6B7701CBB);
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantCollection.cs:40>
|
|
il2cpp_codegen_memcpy(L_0, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 10)) ? ___0_item : &___0_item), SizeOf_TBase_tD7833CF0057B03C50139A082BCCE415CFDA8DE50);
|
|
RuntimeObject* L_1 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 10), L_0);
|
|
if (((RuntimeObject*)IsInst((RuntimeObject*)L_1, il2cpp_rgctx_data(method->klass->rgctx_data, 11))))
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantCollection.cs:42>
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_2 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NotSupportedException__ctor_m1398D0CDE19B36AA3DE9392879738C1EA2439CDF(L_2, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, method);
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantCollection.cs:45>
|
|
RuntimeObject* L_3;
|
|
L_3 = (( RuntimeObject* (*) (VariantCollection_2_t3F934CEFED36CEC5846014E6FFE1242CD6299312*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
|
|
il2cpp_codegen_memcpy(L_4, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 10)) ? ___0_item : &___0_item), SizeOf_TBase_tD7833CF0057B03C50139A082BCCE415CFDA8DE50);
|
|
RuntimeObject* L_5 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 10), L_4);
|
|
void* L_7 = UnBox_Any(L_5, il2cpp_rgctx_data(method->klass->rgctx_data, 11), L_6);
|
|
NullCheck(L_3);
|
|
InterfaceActionInvoker1Invoker< Il2CppFullySharedGenericAny >::Invoke(2, il2cpp_rgctx_data(method->klass->rgctx_data, 0), L_3, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 11)) ? (((Il2CppFullySharedGenericAny)(Il2CppFullySharedGenericAny*)L_7)): *(void**)(((Il2CppFullySharedGenericAny)(Il2CppFullySharedGenericAny*)L_7))));
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantCollection.cs:46>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 50487
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VariantCollection_2_Clear_m67C1BBB86DB25A83D65F1115A75EA0C7B86C9FA7_gshared (VariantCollection_2_t3F934CEFED36CEC5846014E6FFE1242CD6299312* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantCollection.cs:50>
|
|
RuntimeObject* L_0;
|
|
L_0 = (( RuntimeObject* (*) (VariantCollection_2_t3F934CEFED36CEC5846014E6FFE1242CD6299312*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
|
|
NullCheck(L_0);
|
|
InterfaceActionInvoker0::Invoke(3, il2cpp_rgctx_data(method->klass->rgctx_data, 0), L_0);
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantCollection.cs:51>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 50488
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool VariantCollection_2_Contains_m51D5092CCFA939B79E6393F486B20F178D2422D1_gshared (VariantCollection_2_t3F934CEFED36CEC5846014E6FFE1242CD6299312* __this, Il2CppFullySharedGenericAny ___0_item, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_TBase_tD7833CF0057B03C50139A082BCCE415CFDA8DE50 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 10));
|
|
const Il2CppFullySharedGenericAny L_0 = alloca(SizeOf_TBase_tD7833CF0057B03C50139A082BCCE415CFDA8DE50);
|
|
const Il2CppFullySharedGenericAny L_4 = L_0;
|
|
const uint32_t SizeOf_TImplementation_t6EF8A3FC52E8E82F776512FE295CB7C6B7701CBB = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 11));
|
|
const Il2CppFullySharedGenericAny L_6 = alloca(SizeOf_TImplementation_t6EF8A3FC52E8E82F776512FE295CB7C6B7701CBB);
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantCollection.cs:55>
|
|
il2cpp_codegen_memcpy(L_0, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 10)) ? ___0_item : &___0_item), SizeOf_TBase_tD7833CF0057B03C50139A082BCCE415CFDA8DE50);
|
|
RuntimeObject* L_1 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 10), L_0);
|
|
if (((RuntimeObject*)IsInst((RuntimeObject*)L_1, il2cpp_rgctx_data(method->klass->rgctx_data, 11))))
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantCollection.cs:57>
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_2 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NotSupportedException__ctor_m1398D0CDE19B36AA3DE9392879738C1EA2439CDF(L_2, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, method);
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantCollection.cs:60>
|
|
RuntimeObject* L_3;
|
|
L_3 = (( RuntimeObject* (*) (VariantCollection_2_t3F934CEFED36CEC5846014E6FFE1242CD6299312*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
|
|
il2cpp_codegen_memcpy(L_4, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 10)) ? ___0_item : &___0_item), SizeOf_TBase_tD7833CF0057B03C50139A082BCCE415CFDA8DE50);
|
|
RuntimeObject* L_5 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 10), L_4);
|
|
void* L_7 = UnBox_Any(L_5, il2cpp_rgctx_data(method->klass->rgctx_data, 11), L_6);
|
|
NullCheck(L_3);
|
|
bool L_8;
|
|
L_8 = InterfaceFuncInvoker1Invoker< bool, Il2CppFullySharedGenericAny >::Invoke(4, il2cpp_rgctx_data(method->klass->rgctx_data, 0), L_3, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 11)) ? (((Il2CppFullySharedGenericAny)(Il2CppFullySharedGenericAny*)L_7)): *(void**)(((Il2CppFullySharedGenericAny)(Il2CppFullySharedGenericAny*)L_7))));
|
|
return L_8;
|
|
}
|
|
}
|
|
// Method Definition Index: 50489
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool VariantCollection_2_Remove_m25835BF60542B7B71347DE824A0391A0B4FE5572_gshared (VariantCollection_2_t3F934CEFED36CEC5846014E6FFE1242CD6299312* __this, Il2CppFullySharedGenericAny ___0_item, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_TBase_tD7833CF0057B03C50139A082BCCE415CFDA8DE50 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 10));
|
|
const Il2CppFullySharedGenericAny L_0 = alloca(SizeOf_TBase_tD7833CF0057B03C50139A082BCCE415CFDA8DE50);
|
|
const Il2CppFullySharedGenericAny L_4 = L_0;
|
|
const uint32_t SizeOf_TImplementation_t6EF8A3FC52E8E82F776512FE295CB7C6B7701CBB = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 11));
|
|
const Il2CppFullySharedGenericAny L_6 = alloca(SizeOf_TImplementation_t6EF8A3FC52E8E82F776512FE295CB7C6B7701CBB);
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantCollection.cs:65>
|
|
il2cpp_codegen_memcpy(L_0, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 10)) ? ___0_item : &___0_item), SizeOf_TBase_tD7833CF0057B03C50139A082BCCE415CFDA8DE50);
|
|
RuntimeObject* L_1 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 10), L_0);
|
|
if (((RuntimeObject*)IsInst((RuntimeObject*)L_1, il2cpp_rgctx_data(method->klass->rgctx_data, 11))))
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantCollection.cs:67>
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_2 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NotSupportedException__ctor_m1398D0CDE19B36AA3DE9392879738C1EA2439CDF(L_2, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, method);
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantCollection.cs:70>
|
|
RuntimeObject* L_3;
|
|
L_3 = (( RuntimeObject* (*) (VariantCollection_2_t3F934CEFED36CEC5846014E6FFE1242CD6299312*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
|
|
il2cpp_codegen_memcpy(L_4, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 10)) ? ___0_item : &___0_item), SizeOf_TBase_tD7833CF0057B03C50139A082BCCE415CFDA8DE50);
|
|
RuntimeObject* L_5 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 10), L_4);
|
|
void* L_7 = UnBox_Any(L_5, il2cpp_rgctx_data(method->klass->rgctx_data, 11), L_6);
|
|
NullCheck(L_3);
|
|
bool L_8;
|
|
L_8 = InterfaceFuncInvoker1Invoker< bool, Il2CppFullySharedGenericAny >::Invoke(6, il2cpp_rgctx_data(method->klass->rgctx_data, 0), L_3, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 11)) ? (((Il2CppFullySharedGenericAny)(Il2CppFullySharedGenericAny*)L_7)): *(void**)(((Il2CppFullySharedGenericAny)(Il2CppFullySharedGenericAny*)L_7))));
|
|
return L_8;
|
|
}
|
|
}
|
|
// Method Definition Index: 50490
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VariantCollection_2_CopyTo_m0C35E49779EC09D78FBE485A3EFF83CA1D02F504_gshared (VariantCollection_2_t3F934CEFED36CEC5846014E6FFE1242CD6299312* __this, __Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* ___0_array, int32_t ___1_arrayIndex, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_TImplementation_t6EF8A3FC52E8E82F776512FE295CB7C6B7701CBB = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 11));
|
|
const uint32_t SizeOf_TBase_tD7833CF0057B03C50139A082BCCE415CFDA8DE50 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 10));
|
|
const Il2CppFullySharedGenericAny L_20 = alloca(SizeOf_TBase_tD7833CF0057B03C50139A082BCCE415CFDA8DE50);
|
|
const Il2CppFullySharedGenericAny L_18 = alloca(SizeOf_TImplementation_t6EF8A3FC52E8E82F776512FE295CB7C6B7701CBB);
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantCollection.cs:75>
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* L_0 = ___0_array;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantCollection.cs:77>
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantCollection.cs:80>
|
|
int32_t L_2 = ___1_arrayIndex;
|
|
if ((((int32_t)L_2) >= ((int32_t)0)))
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantCollection.cs:82>
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC00660333703C551EA80371B54D0ADCEB74C33B4)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantCollection.cs:85>
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* L_4 = ___0_array;
|
|
NullCheck(L_4);
|
|
int32_t L_5 = ___1_arrayIndex;
|
|
int32_t L_6;
|
|
L_6 = (( int32_t (*) (VariantCollection_2_t3F934CEFED36CEC5846014E6FFE1242CD6299312*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 17)))(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_4)->max_length)), L_5))) >= ((int32_t)L_6)))
|
|
{
|
|
goto IL_0030;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantCollection.cs:87>
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_7 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
ArgumentException__ctor_m34A925BA55EC4CE4253404E363B5F6A53EB51CA3(L_7, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, method);
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantCollection.cs:90>
|
|
int32_t L_8;
|
|
L_8 = (( int32_t (*) (VariantCollection_2_t3F934CEFED36CEC5846014E6FFE1242CD6299312*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 17)))(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* L_9 = (__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC*)(__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 18), (uint32_t)L_8);
|
|
V_0 = L_9;
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantCollection.cs:91>
|
|
RuntimeObject* L_10;
|
|
L_10 = (( RuntimeObject* (*) (VariantCollection_2_t3F934CEFED36CEC5846014E6FFE1242CD6299312*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* L_11 = V_0;
|
|
NullCheck(L_10);
|
|
InterfaceActionInvoker2< __Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC*, int32_t >::Invoke(5, il2cpp_rgctx_data(method->klass->rgctx_data, 0), L_10, L_11, 0);
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantCollection.cs:93>
|
|
V_1 = 0;
|
|
goto IL_006b;
|
|
}
|
|
|
|
IL_004d:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantCollection.cs:95>
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* L_12 = ___0_array;
|
|
int32_t L_13 = V_1;
|
|
int32_t L_14 = ___1_arrayIndex;
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* L_15 = V_0;
|
|
int32_t L_16 = V_1;
|
|
NullCheck(L_15);
|
|
int32_t L_17 = L_16;
|
|
il2cpp_codegen_memcpy(L_18, (L_15)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_17)), SizeOf_TImplementation_t6EF8A3FC52E8E82F776512FE295CB7C6B7701CBB);
|
|
RuntimeObject* L_19 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 11), L_18);
|
|
void* L_21 = UnBox_Any(L_19, il2cpp_rgctx_data(method->klass->rgctx_data, 10), L_20);
|
|
NullCheck(L_12);
|
|
il2cpp_codegen_memcpy((L_12)->GetAddressAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add(L_13, L_14)))), (((Il2CppFullySharedGenericAny)(Il2CppFullySharedGenericAny*)L_21)), SizeOf_TBase_tD7833CF0057B03C50139A082BCCE415CFDA8DE50);
|
|
Il2CppCodeGenWriteBarrierForClass(il2cpp_rgctx_data(method->klass->rgctx_data, 10), (void**)(L_12)->GetAddressAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add(L_13, L_14)))), (void*)(((Il2CppFullySharedGenericAny)(Il2CppFullySharedGenericAny*)L_21)));
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantCollection.cs:93>
|
|
int32_t L_22 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_22, 1));
|
|
}
|
|
|
|
IL_006b:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantCollection.cs:93>
|
|
int32_t L_23 = V_1;
|
|
int32_t L_24;
|
|
L_24 = (( int32_t (*) (VariantCollection_2_t3F934CEFED36CEC5846014E6FFE1242CD6299312*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 17)))(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
|
|
if ((((int32_t)L_23) < ((int32_t)L_24)))
|
|
{
|
|
goto IL_004d;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantCollection.cs:97>
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 50498
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VariantKeyedCollection_3__ctor_mEB4B10C634BF11E99DFF8DBAE17EF0E8D952094E_gshared (VariantKeyedCollection_3_t69DAD887BA8D10C65905B0A506F0142BAFC74383* __this, RuntimeObject* ___0_implementation, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantKeyedCollection.cs:8>
|
|
RuntimeObject* L_0 = ___0_implementation;
|
|
(( void (*) (VariantCollection_2_t3F934CEFED36CEC5846014E6FFE1242CD6299312*, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 1)))((VariantCollection_2_t3F934CEFED36CEC5846014E6FFE1242CD6299312*)__this, (RuntimeObject*)L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 1));
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantKeyedCollection.cs:10>
|
|
RuntimeObject* L_1 = ___0_implementation;
|
|
(( void (*) (VariantKeyedCollection_3_t69DAD887BA8D10C65905B0A506F0142BAFC74383*, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 4)))(__this, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 4));
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantKeyedCollection.cs:11>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 50499
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VariantKeyedCollection_3_get_Item_m03B559B33C7A3108B512B28A5CC31FB06BE239F0_gshared (VariantKeyedCollection_3_t69DAD887BA8D10C65905B0A506F0142BAFC74383* __this, Il2CppFullySharedGenericAny ___0_key, Il2CppFullySharedGenericAny* il2cppRetVal, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_TKey_t26385A633ACB7981365C0F85E0D2C35ADC6119E8 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 6));
|
|
const uint32_t SizeOf_TBase_t780F24312932913027AAF834AD96E57F85737242 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 9));
|
|
const Il2CppFullySharedGenericAny L_4 = alloca(SizeOf_TBase_t780F24312932913027AAF834AD96E57F85737242);
|
|
const uint32_t SizeOf_TImplementation_t14F79F01B61D13790E166EE987B709491743F051 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 8));
|
|
const Il2CppFullySharedGenericAny L_2 = alloca(SizeOf_TImplementation_t14F79F01B61D13790E166EE987B709491743F051);
|
|
const Il2CppFullySharedGenericAny L_1 = alloca(SizeOf_TKey_t26385A633ACB7981365C0F85E0D2C35ADC6119E8);
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantKeyedCollection.cs:13>
|
|
RuntimeObject* L_0;
|
|
L_0 = (( RuntimeObject* (*) (VariantKeyedCollection_3_t69DAD887BA8D10C65905B0A506F0142BAFC74383*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 5)))(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
|
|
il2cpp_codegen_memcpy(L_1, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 6)) ? ___0_key : &___0_key), SizeOf_TKey_t26385A633ACB7981365C0F85E0D2C35ADC6119E8);
|
|
NullCheck(L_0);
|
|
InterfaceActionInvoker2Invoker< Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny* >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 0), L_0, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 6)) ? L_1: *(void**)L_1), (Il2CppFullySharedGenericAny*)L_2);
|
|
RuntimeObject* L_3 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 8), L_2);
|
|
void* L_5 = UnBox_Any(L_3, il2cpp_rgctx_data(method->klass->rgctx_data, 9), L_4);
|
|
il2cpp_codegen_memcpy(il2cppRetVal, (((Il2CppFullySharedGenericAny)(Il2CppFullySharedGenericAny*)L_5)), SizeOf_TBase_t780F24312932913027AAF834AD96E57F85737242);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 50500
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* VariantKeyedCollection_3_get_implementation_mE32A2E70BB0B3E4D9E718C00505BAD9FB040A3E3_gshared (VariantKeyedCollection_3_t69DAD887BA8D10C65905B0A506F0142BAFC74383* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantKeyedCollection.cs:15>
|
|
RuntimeObject* L_0 = __this->___U3CimplementationU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 50501
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VariantKeyedCollection_3_set_implementation_m3DE83A422971B54AF8DB75B90B52156D139CD5EF_gshared (VariantKeyedCollection_3_t69DAD887BA8D10C65905B0A506F0142BAFC74383* __this, RuntimeObject* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantKeyedCollection.cs:15>
|
|
RuntimeObject* L_0 = ___0_value;
|
|
__this->___U3CimplementationU3Ek__BackingField = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CimplementationU3Ek__BackingField), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 50502
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool VariantKeyedCollection_3_TryGetValue_m94CA6B67AB93538553D07D5AD39823DBE1E6E497_gshared (VariantKeyedCollection_3_t69DAD887BA8D10C65905B0A506F0142BAFC74383* __this, Il2CppFullySharedGenericAny ___0_key, Il2CppFullySharedGenericAny* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_TImplementation_t14F79F01B61D13790E166EE987B709491743F051 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 8));
|
|
const uint32_t SizeOf_TKey_t26385A633ACB7981365C0F85E0D2C35ADC6119E8 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 6));
|
|
const uint32_t SizeOf_TBase_t780F24312932913027AAF834AD96E57F85737242 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 9));
|
|
const Il2CppFullySharedGenericAny L_6 = alloca(SizeOf_TBase_t780F24312932913027AAF834AD96E57F85737242);
|
|
const Il2CppFullySharedGenericAny L_4 = alloca(SizeOf_TImplementation_t14F79F01B61D13790E166EE987B709491743F051);
|
|
const Il2CppFullySharedGenericAny L_1 = alloca(SizeOf_TKey_t26385A633ACB7981365C0F85E0D2C35ADC6119E8);
|
|
Il2CppFullySharedGenericAny V_0 = alloca(SizeOf_TImplementation_t14F79F01B61D13790E166EE987B709491743F051);
|
|
memset(V_0, 0, SizeOf_TImplementation_t14F79F01B61D13790E166EE987B709491743F051);
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantKeyedCollection.cs:20>
|
|
RuntimeObject* L_0;
|
|
L_0 = (( RuntimeObject* (*) (VariantKeyedCollection_3_t69DAD887BA8D10C65905B0A506F0142BAFC74383*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 5)))(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
|
|
il2cpp_codegen_memcpy(L_1, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 6)) ? ___0_key : &___0_key), SizeOf_TKey_t26385A633ACB7981365C0F85E0D2C35ADC6119E8);
|
|
NullCheck(L_0);
|
|
bool L_2;
|
|
L_2 = InterfaceFuncInvoker2Invoker< bool, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny* >::Invoke(2, il2cpp_rgctx_data(method->klass->rgctx_data, 0), L_0, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 6)) ? L_1: *(void**)L_1), (Il2CppFullySharedGenericAny*)V_0);
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantKeyedCollection.cs:21>
|
|
Il2CppFullySharedGenericAny* L_3 = ___1_value;
|
|
il2cpp_codegen_memcpy(L_4, V_0, SizeOf_TImplementation_t14F79F01B61D13790E166EE987B709491743F051);
|
|
RuntimeObject* L_5 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 8), L_4);
|
|
void* L_7 = UnBox_Any(L_5, il2cpp_rgctx_data(method->klass->rgctx_data, 9), L_6);
|
|
il2cpp_codegen_memcpy((Il2CppFullySharedGenericAny*)L_3, (((Il2CppFullySharedGenericAny)(Il2CppFullySharedGenericAny*)L_7)), SizeOf_TBase_t780F24312932913027AAF834AD96E57F85737242);
|
|
Il2CppCodeGenWriteBarrierForClass(il2cpp_rgctx_data(method->klass->rgctx_data, 9), (void**)(Il2CppFullySharedGenericAny*)L_3, (void*)(((Il2CppFullySharedGenericAny)(Il2CppFullySharedGenericAny*)L_7)));
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantKeyedCollection.cs:22>
|
|
return L_2;
|
|
}
|
|
}
|
|
// Method Definition Index: 50503
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool VariantKeyedCollection_3_Contains_m417C369A48052C752C4E58E3A530641EC996893A_gshared (VariantKeyedCollection_3_t69DAD887BA8D10C65905B0A506F0142BAFC74383* __this, Il2CppFullySharedGenericAny ___0_key, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_TKey_t26385A633ACB7981365C0F85E0D2C35ADC6119E8 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 6));
|
|
const Il2CppFullySharedGenericAny L_1 = alloca(SizeOf_TKey_t26385A633ACB7981365C0F85E0D2C35ADC6119E8);
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantKeyedCollection.cs:27>
|
|
RuntimeObject* L_0;
|
|
L_0 = (( RuntimeObject* (*) (VariantKeyedCollection_3_t69DAD887BA8D10C65905B0A506F0142BAFC74383*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 5)))(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
|
|
il2cpp_codegen_memcpy(L_1, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 6)) ? ___0_key : &___0_key), SizeOf_TKey_t26385A633ACB7981365C0F85E0D2C35ADC6119E8);
|
|
NullCheck(L_0);
|
|
bool L_2;
|
|
L_2 = InterfaceFuncInvoker1Invoker< bool, Il2CppFullySharedGenericAny >::Invoke(3, il2cpp_rgctx_data(method->klass->rgctx_data, 0), L_0, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 6)) ? L_1: *(void**)L_1));
|
|
return L_2;
|
|
}
|
|
}
|
|
// Method Definition Index: 50504
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool VariantKeyedCollection_3_Remove_m6BBE8F6698A7D0E2A700AD48843A16438394A6FD_gshared (VariantKeyedCollection_3_t69DAD887BA8D10C65905B0A506F0142BAFC74383* __this, Il2CppFullySharedGenericAny ___0_key, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_TKey_t26385A633ACB7981365C0F85E0D2C35ADC6119E8 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 6));
|
|
const Il2CppFullySharedGenericAny L_1 = alloca(SizeOf_TKey_t26385A633ACB7981365C0F85E0D2C35ADC6119E8);
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantKeyedCollection.cs:32>
|
|
RuntimeObject* L_0;
|
|
L_0 = (( RuntimeObject* (*) (VariantKeyedCollection_3_t69DAD887BA8D10C65905B0A506F0142BAFC74383*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 5)))(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
|
|
il2cpp_codegen_memcpy(L_1, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 6)) ? ___0_key : &___0_key), SizeOf_TKey_t26385A633ACB7981365C0F85E0D2C35ADC6119E8);
|
|
NullCheck(L_0);
|
|
bool L_2;
|
|
L_2 = InterfaceFuncInvoker1Invoker< bool, Il2CppFullySharedGenericAny >::Invoke(4, il2cpp_rgctx_data(method->klass->rgctx_data, 0), L_0, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 6)) ? L_1: *(void**)L_1));
|
|
return L_2;
|
|
}
|
|
}
|
|
// Method Definition Index: 50505
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VariantKeyedCollection_3_Unity_VisualScripting_IKeyedCollectionU3CTKeyU2CTBaseU3E_get_Item_mFE1ED47DBF4D960EC91B0050BF2EDBDD7E54FA2F_gshared (VariantKeyedCollection_3_t69DAD887BA8D10C65905B0A506F0142BAFC74383* __this, int32_t ___0_index, Il2CppFullySharedGenericAny* il2cppRetVal, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_TBase_t780F24312932913027AAF834AD96E57F85737242 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 9));
|
|
const Il2CppFullySharedGenericAny L_4 = alloca(SizeOf_TBase_t780F24312932913027AAF834AD96E57F85737242);
|
|
const uint32_t SizeOf_TImplementation_t14F79F01B61D13790E166EE987B709491743F051 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 8));
|
|
const Il2CppFullySharedGenericAny L_2 = alloca(SizeOf_TImplementation_t14F79F01B61D13790E166EE987B709491743F051);
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantKeyedCollection.cs:35>
|
|
RuntimeObject* L_0;
|
|
L_0 = (( RuntimeObject* (*) (VariantKeyedCollection_3_t69DAD887BA8D10C65905B0A506F0142BAFC74383*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 5)))(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
|
|
int32_t L_1 = ___0_index;
|
|
NullCheck(L_0);
|
|
InterfaceActionInvoker2Invoker< int32_t, Il2CppFullySharedGenericAny* >::Invoke(1, il2cpp_rgctx_data(method->klass->rgctx_data, 0), L_0, L_1, (Il2CppFullySharedGenericAny*)L_2);
|
|
RuntimeObject* L_3 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 8), L_2);
|
|
void* L_5 = UnBox_Any(L_3, il2cpp_rgctx_data(method->klass->rgctx_data, 9), L_4);
|
|
il2cpp_codegen_memcpy(il2cppRetVal, (((Il2CppFullySharedGenericAny)(Il2CppFullySharedGenericAny*)L_5)), SizeOf_TBase_t780F24312932913027AAF834AD96E57F85737242);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 50506
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VariantList_2__ctor_mFEF1F864622802E7DD13CFFCA7E9478E182B8C8A_gshared (VariantList_2_tAB497803D00E2F1AE7B18CD9FC2983370DE3418C* __this, RuntimeObject* ___0_implementation, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantList.cs:9>
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantList.cs:11>
|
|
RuntimeObject* L_0 = ___0_implementation;
|
|
if (L_0)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantList.cs:13>
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCBA4B5B3BCCC1DB07C8FA58231CDB1B11CCE0488)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantList.cs:16>
|
|
RuntimeObject* L_2 = ___0_implementation;
|
|
(( void (*) (VariantList_2_tAB497803D00E2F1AE7B18CD9FC2983370DE3418C*, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 1)))(__this, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 1));
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantList.cs:17>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 50507
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VariantList_2_get_Item_mCDEB5DC7A0508E3590B51B1318018A016A58B547_gshared (VariantList_2_tAB497803D00E2F1AE7B18CD9FC2983370DE3418C* __this, int32_t ___0_index, Il2CppFullySharedGenericAny* il2cppRetVal, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_TBase_t5A9E39870167E4BFCD7985567AF7771C39337963 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5));
|
|
const Il2CppFullySharedGenericAny L_4 = alloca(SizeOf_TBase_t5A9E39870167E4BFCD7985567AF7771C39337963);
|
|
const uint32_t SizeOf_TImplementation_tB6B52ED8FFB461E6FC6D870BD4BBE07B97BCB969 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 4));
|
|
const Il2CppFullySharedGenericAny L_2 = alloca(SizeOf_TImplementation_tB6B52ED8FFB461E6FC6D870BD4BBE07B97BCB969);
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantList.cs:23>
|
|
RuntimeObject* L_0;
|
|
L_0 = (( RuntimeObject* (*) (VariantList_2_tAB497803D00E2F1AE7B18CD9FC2983370DE3418C*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 2)))(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 2));
|
|
int32_t L_1 = ___0_index;
|
|
NullCheck(L_0);
|
|
InterfaceActionInvoker2Invoker< int32_t, Il2CppFullySharedGenericAny* >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 0), L_0, L_1, (Il2CppFullySharedGenericAny*)L_2);
|
|
RuntimeObject* L_3 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 4), L_2);
|
|
void* L_5 = UnBox_Any(L_3, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_4);
|
|
il2cpp_codegen_memcpy(il2cppRetVal, (((Il2CppFullySharedGenericAny)(Il2CppFullySharedGenericAny*)L_5)), SizeOf_TBase_t5A9E39870167E4BFCD7985567AF7771C39337963);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 50508
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VariantList_2_set_Item_mBAA266F50F51DDBB57BA7401047F4405DEAE1CFB_gshared (VariantList_2_tAB497803D00E2F1AE7B18CD9FC2983370DE3418C* __this, int32_t ___0_index, Il2CppFullySharedGenericAny ___1_value, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_TBase_t5A9E39870167E4BFCD7985567AF7771C39337963 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5));
|
|
const Il2CppFullySharedGenericAny L_0 = alloca(SizeOf_TBase_t5A9E39870167E4BFCD7985567AF7771C39337963);
|
|
const Il2CppFullySharedGenericAny L_5 = L_0;
|
|
const uint32_t SizeOf_TImplementation_tB6B52ED8FFB461E6FC6D870BD4BBE07B97BCB969 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 4));
|
|
const Il2CppFullySharedGenericAny L_7 = alloca(SizeOf_TImplementation_tB6B52ED8FFB461E6FC6D870BD4BBE07B97BCB969);
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantList.cs:27>
|
|
il2cpp_codegen_memcpy(L_0, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5)) ? ___1_value : &___1_value), SizeOf_TBase_t5A9E39870167E4BFCD7985567AF7771C39337963);
|
|
RuntimeObject* L_1 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5), L_0);
|
|
if (((RuntimeObject*)IsInst((RuntimeObject*)L_1, il2cpp_rgctx_data(method->klass->rgctx_data, 4))))
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantList.cs:29>
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_2 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NotSupportedException__ctor_m1398D0CDE19B36AA3DE9392879738C1EA2439CDF(L_2, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, method);
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantList.cs:32>
|
|
RuntimeObject* L_3;
|
|
L_3 = (( RuntimeObject* (*) (VariantList_2_tAB497803D00E2F1AE7B18CD9FC2983370DE3418C*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 2)))(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 2));
|
|
int32_t L_4 = ___0_index;
|
|
il2cpp_codegen_memcpy(L_5, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5)) ? ___1_value : &___1_value), SizeOf_TBase_t5A9E39870167E4BFCD7985567AF7771C39337963);
|
|
RuntimeObject* L_6 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5), L_5);
|
|
void* L_8 = UnBox_Any(L_6, il2cpp_rgctx_data(method->klass->rgctx_data, 4), L_7);
|
|
NullCheck(L_3);
|
|
InterfaceActionInvoker2Invoker< int32_t, Il2CppFullySharedGenericAny >::Invoke(1, il2cpp_rgctx_data(method->klass->rgctx_data, 0), L_3, L_4, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 4)) ? (((Il2CppFullySharedGenericAny)(Il2CppFullySharedGenericAny*)L_8)): *(void**)(((Il2CppFullySharedGenericAny)(Il2CppFullySharedGenericAny*)L_8))));
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantList.cs:33>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 50509
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* VariantList_2_get_implementation_m6C4E0300A29992822DAFAD4D37D02536D1495AE8_gshared (VariantList_2_tAB497803D00E2F1AE7B18CD9FC2983370DE3418C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantList.cs:36>
|
|
RuntimeObject* L_0 = __this->___U3CimplementationU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 50510
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VariantList_2_set_implementation_m1509016008B7749B89D1E7A6E14F0B3EA34E4074_gshared (VariantList_2_tAB497803D00E2F1AE7B18CD9FC2983370DE3418C* __this, RuntimeObject* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantList.cs:36>
|
|
RuntimeObject* L_0 = ___0_value;
|
|
__this->___U3CimplementationU3Ek__BackingField = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CimplementationU3Ek__BackingField), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 50511
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t VariantList_2_get_Count_mEDD445BCCF95594A2727ECBC99EB4A52B29D50B4_gshared (VariantList_2_tAB497803D00E2F1AE7B18CD9FC2983370DE3418C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantList.cs:38>
|
|
RuntimeObject* L_0;
|
|
L_0 = (( RuntimeObject* (*) (VariantList_2_tAB497803D00E2F1AE7B18CD9FC2983370DE3418C*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 2)))(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 2));
|
|
NullCheck((RuntimeObject*)L_0);
|
|
int32_t L_1;
|
|
L_1 = InterfaceFuncInvoker0< int32_t >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 8), (RuntimeObject*)L_0);
|
|
return L_1;
|
|
}
|
|
}
|
|
// Method Definition Index: 50512
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool VariantList_2_get_IsReadOnly_mBDACF5430D3D1B22F5AF23AA6506594ADA017EA6_gshared (VariantList_2_tAB497803D00E2F1AE7B18CD9FC2983370DE3418C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantList.cs:40>
|
|
RuntimeObject* L_0;
|
|
L_0 = (( RuntimeObject* (*) (VariantList_2_tAB497803D00E2F1AE7B18CD9FC2983370DE3418C*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 2)))(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 2));
|
|
NullCheck((RuntimeObject*)L_0);
|
|
bool L_1;
|
|
L_1 = InterfaceFuncInvoker0< bool >::Invoke(1, il2cpp_rgctx_data(method->klass->rgctx_data, 8), (RuntimeObject*)L_0);
|
|
return L_1;
|
|
}
|
|
}
|
|
// Method Definition Index: 50513
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VariantList_2_Add_m3888E6E605084FE0F437BFA31881233E38355BFB_gshared (VariantList_2_tAB497803D00E2F1AE7B18CD9FC2983370DE3418C* __this, Il2CppFullySharedGenericAny ___0_item, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_TBase_t5A9E39870167E4BFCD7985567AF7771C39337963 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5));
|
|
const Il2CppFullySharedGenericAny L_0 = alloca(SizeOf_TBase_t5A9E39870167E4BFCD7985567AF7771C39337963);
|
|
const Il2CppFullySharedGenericAny L_4 = L_0;
|
|
const uint32_t SizeOf_TImplementation_tB6B52ED8FFB461E6FC6D870BD4BBE07B97BCB969 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 4));
|
|
const Il2CppFullySharedGenericAny L_6 = alloca(SizeOf_TImplementation_tB6B52ED8FFB461E6FC6D870BD4BBE07B97BCB969);
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantList.cs:44>
|
|
il2cpp_codegen_memcpy(L_0, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5)) ? ___0_item : &___0_item), SizeOf_TBase_t5A9E39870167E4BFCD7985567AF7771C39337963);
|
|
RuntimeObject* L_1 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5), L_0);
|
|
if (((RuntimeObject*)IsInst((RuntimeObject*)L_1, il2cpp_rgctx_data(method->klass->rgctx_data, 4))))
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantList.cs:46>
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_2 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NotSupportedException__ctor_m1398D0CDE19B36AA3DE9392879738C1EA2439CDF(L_2, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, method);
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantList.cs:49>
|
|
RuntimeObject* L_3;
|
|
L_3 = (( RuntimeObject* (*) (VariantList_2_tAB497803D00E2F1AE7B18CD9FC2983370DE3418C*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 2)))(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 2));
|
|
il2cpp_codegen_memcpy(L_4, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5)) ? ___0_item : &___0_item), SizeOf_TBase_t5A9E39870167E4BFCD7985567AF7771C39337963);
|
|
RuntimeObject* L_5 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5), L_4);
|
|
void* L_7 = UnBox_Any(L_5, il2cpp_rgctx_data(method->klass->rgctx_data, 4), L_6);
|
|
NullCheck((RuntimeObject*)L_3);
|
|
InterfaceActionInvoker1Invoker< Il2CppFullySharedGenericAny >::Invoke(2, il2cpp_rgctx_data(method->klass->rgctx_data, 8), (RuntimeObject*)L_3, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 4)) ? (((Il2CppFullySharedGenericAny)(Il2CppFullySharedGenericAny*)L_7)): *(void**)(((Il2CppFullySharedGenericAny)(Il2CppFullySharedGenericAny*)L_7))));
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantList.cs:50>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 50514
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VariantList_2_Clear_mC60855E7FE758011E8937B844A5C8F67A48C78C3_gshared (VariantList_2_tAB497803D00E2F1AE7B18CD9FC2983370DE3418C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantList.cs:54>
|
|
RuntimeObject* L_0;
|
|
L_0 = (( RuntimeObject* (*) (VariantList_2_tAB497803D00E2F1AE7B18CD9FC2983370DE3418C*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 2)))(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 2));
|
|
NullCheck((RuntimeObject*)L_0);
|
|
InterfaceActionInvoker0::Invoke(3, il2cpp_rgctx_data(method->klass->rgctx_data, 8), (RuntimeObject*)L_0);
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantList.cs:55>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 50515
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool VariantList_2_Contains_m30FD49A9F33C88878FBC9BF5839D0C72D60C723E_gshared (VariantList_2_tAB497803D00E2F1AE7B18CD9FC2983370DE3418C* __this, Il2CppFullySharedGenericAny ___0_item, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_TBase_t5A9E39870167E4BFCD7985567AF7771C39337963 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5));
|
|
const Il2CppFullySharedGenericAny L_0 = alloca(SizeOf_TBase_t5A9E39870167E4BFCD7985567AF7771C39337963);
|
|
const Il2CppFullySharedGenericAny L_4 = L_0;
|
|
const uint32_t SizeOf_TImplementation_tB6B52ED8FFB461E6FC6D870BD4BBE07B97BCB969 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 4));
|
|
const Il2CppFullySharedGenericAny L_6 = alloca(SizeOf_TImplementation_tB6B52ED8FFB461E6FC6D870BD4BBE07B97BCB969);
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantList.cs:59>
|
|
il2cpp_codegen_memcpy(L_0, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5)) ? ___0_item : &___0_item), SizeOf_TBase_t5A9E39870167E4BFCD7985567AF7771C39337963);
|
|
RuntimeObject* L_1 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5), L_0);
|
|
if (((RuntimeObject*)IsInst((RuntimeObject*)L_1, il2cpp_rgctx_data(method->klass->rgctx_data, 4))))
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantList.cs:61>
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_2 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NotSupportedException__ctor_m1398D0CDE19B36AA3DE9392879738C1EA2439CDF(L_2, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, method);
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantList.cs:64>
|
|
RuntimeObject* L_3;
|
|
L_3 = (( RuntimeObject* (*) (VariantList_2_tAB497803D00E2F1AE7B18CD9FC2983370DE3418C*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 2)))(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 2));
|
|
il2cpp_codegen_memcpy(L_4, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5)) ? ___0_item : &___0_item), SizeOf_TBase_t5A9E39870167E4BFCD7985567AF7771C39337963);
|
|
RuntimeObject* L_5 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5), L_4);
|
|
void* L_7 = UnBox_Any(L_5, il2cpp_rgctx_data(method->klass->rgctx_data, 4), L_6);
|
|
NullCheck((RuntimeObject*)L_3);
|
|
bool L_8;
|
|
L_8 = InterfaceFuncInvoker1Invoker< bool, Il2CppFullySharedGenericAny >::Invoke(4, il2cpp_rgctx_data(method->klass->rgctx_data, 8), (RuntimeObject*)L_3, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 4)) ? (((Il2CppFullySharedGenericAny)(Il2CppFullySharedGenericAny*)L_7)): *(void**)(((Il2CppFullySharedGenericAny)(Il2CppFullySharedGenericAny*)L_7))));
|
|
return L_8;
|
|
}
|
|
}
|
|
// Method Definition Index: 50516
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool VariantList_2_Remove_m845930F5393B2ED2C5F66D88BFFA6E591D157308_gshared (VariantList_2_tAB497803D00E2F1AE7B18CD9FC2983370DE3418C* __this, Il2CppFullySharedGenericAny ___0_item, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_TBase_t5A9E39870167E4BFCD7985567AF7771C39337963 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5));
|
|
const Il2CppFullySharedGenericAny L_0 = alloca(SizeOf_TBase_t5A9E39870167E4BFCD7985567AF7771C39337963);
|
|
const Il2CppFullySharedGenericAny L_4 = L_0;
|
|
const uint32_t SizeOf_TImplementation_tB6B52ED8FFB461E6FC6D870BD4BBE07B97BCB969 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 4));
|
|
const Il2CppFullySharedGenericAny L_6 = alloca(SizeOf_TImplementation_tB6B52ED8FFB461E6FC6D870BD4BBE07B97BCB969);
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantList.cs:69>
|
|
il2cpp_codegen_memcpy(L_0, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5)) ? ___0_item : &___0_item), SizeOf_TBase_t5A9E39870167E4BFCD7985567AF7771C39337963);
|
|
RuntimeObject* L_1 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5), L_0);
|
|
if (((RuntimeObject*)IsInst((RuntimeObject*)L_1, il2cpp_rgctx_data(method->klass->rgctx_data, 4))))
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantList.cs:71>
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_2 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NotSupportedException__ctor_m1398D0CDE19B36AA3DE9392879738C1EA2439CDF(L_2, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, method);
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantList.cs:74>
|
|
RuntimeObject* L_3;
|
|
L_3 = (( RuntimeObject* (*) (VariantList_2_tAB497803D00E2F1AE7B18CD9FC2983370DE3418C*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 2)))(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 2));
|
|
il2cpp_codegen_memcpy(L_4, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5)) ? ___0_item : &___0_item), SizeOf_TBase_t5A9E39870167E4BFCD7985567AF7771C39337963);
|
|
RuntimeObject* L_5 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5), L_4);
|
|
void* L_7 = UnBox_Any(L_5, il2cpp_rgctx_data(method->klass->rgctx_data, 4), L_6);
|
|
NullCheck((RuntimeObject*)L_3);
|
|
bool L_8;
|
|
L_8 = InterfaceFuncInvoker1Invoker< bool, Il2CppFullySharedGenericAny >::Invoke(6, il2cpp_rgctx_data(method->klass->rgctx_data, 8), (RuntimeObject*)L_3, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 4)) ? (((Il2CppFullySharedGenericAny)(Il2CppFullySharedGenericAny*)L_7)): *(void**)(((Il2CppFullySharedGenericAny)(Il2CppFullySharedGenericAny*)L_7))));
|
|
return L_8;
|
|
}
|
|
}
|
|
// Method Definition Index: 50517
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VariantList_2_CopyTo_m36241EF2E1DABCF7926D4F9F6DE26F55EC8EE019_gshared (VariantList_2_tAB497803D00E2F1AE7B18CD9FC2983370DE3418C* __this, __Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* ___0_array, int32_t ___1_arrayIndex, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_TImplementation_tB6B52ED8FFB461E6FC6D870BD4BBE07B97BCB969 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 4));
|
|
const uint32_t SizeOf_TBase_t5A9E39870167E4BFCD7985567AF7771C39337963 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5));
|
|
const Il2CppFullySharedGenericAny L_20 = alloca(SizeOf_TBase_t5A9E39870167E4BFCD7985567AF7771C39337963);
|
|
const Il2CppFullySharedGenericAny L_18 = alloca(SizeOf_TImplementation_tB6B52ED8FFB461E6FC6D870BD4BBE07B97BCB969);
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantList.cs:79>
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* L_0 = ___0_array;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantList.cs:81>
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantList.cs:84>
|
|
int32_t L_2 = ___1_arrayIndex;
|
|
if ((((int32_t)L_2) >= ((int32_t)0)))
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantList.cs:86>
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC00660333703C551EA80371B54D0ADCEB74C33B4)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantList.cs:89>
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* L_4 = ___0_array;
|
|
NullCheck(L_4);
|
|
int32_t L_5 = ___1_arrayIndex;
|
|
int32_t L_6;
|
|
L_6 = (( int32_t (*) (VariantList_2_tAB497803D00E2F1AE7B18CD9FC2983370DE3418C*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 16)))(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 16));
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_4)->max_length)), L_5))) >= ((int32_t)L_6)))
|
|
{
|
|
goto IL_0030;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantList.cs:91>
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_7 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
ArgumentException__ctor_m34A925BA55EC4CE4253404E363B5F6A53EB51CA3(L_7, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, method);
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantList.cs:94>
|
|
int32_t L_8;
|
|
L_8 = (( int32_t (*) (VariantList_2_tAB497803D00E2F1AE7B18CD9FC2983370DE3418C*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 16)))(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 16));
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* L_9 = (__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC*)(__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 17), (uint32_t)L_8);
|
|
V_0 = L_9;
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantList.cs:95>
|
|
RuntimeObject* L_10;
|
|
L_10 = (( RuntimeObject* (*) (VariantList_2_tAB497803D00E2F1AE7B18CD9FC2983370DE3418C*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 2)))(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 2));
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* L_11 = V_0;
|
|
NullCheck((RuntimeObject*)L_10);
|
|
InterfaceActionInvoker2< __Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC*, int32_t >::Invoke(5, il2cpp_rgctx_data(method->klass->rgctx_data, 8), (RuntimeObject*)L_10, L_11, 0);
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantList.cs:97>
|
|
V_1 = 0;
|
|
goto IL_006b;
|
|
}
|
|
|
|
IL_004d:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantList.cs:99>
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* L_12 = ___0_array;
|
|
int32_t L_13 = V_1;
|
|
int32_t L_14 = ___1_arrayIndex;
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* L_15 = V_0;
|
|
int32_t L_16 = V_1;
|
|
NullCheck(L_15);
|
|
int32_t L_17 = L_16;
|
|
il2cpp_codegen_memcpy(L_18, (L_15)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_17)), SizeOf_TImplementation_tB6B52ED8FFB461E6FC6D870BD4BBE07B97BCB969);
|
|
RuntimeObject* L_19 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 4), L_18);
|
|
void* L_21 = UnBox_Any(L_19, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_20);
|
|
NullCheck(L_12);
|
|
il2cpp_codegen_memcpy((L_12)->GetAddressAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add(L_13, L_14)))), (((Il2CppFullySharedGenericAny)(Il2CppFullySharedGenericAny*)L_21)), SizeOf_TBase_t5A9E39870167E4BFCD7985567AF7771C39337963);
|
|
Il2CppCodeGenWriteBarrierForClass(il2cpp_rgctx_data(method->klass->rgctx_data, 5), (void**)(L_12)->GetAddressAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add(L_13, L_14)))), (void*)(((Il2CppFullySharedGenericAny)(Il2CppFullySharedGenericAny*)L_21)));
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantList.cs:97>
|
|
int32_t L_22 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_22, 1));
|
|
}
|
|
|
|
IL_006b:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantList.cs:97>
|
|
int32_t L_23 = V_1;
|
|
int32_t L_24;
|
|
L_24 = (( int32_t (*) (VariantList_2_tAB497803D00E2F1AE7B18CD9FC2983370DE3418C*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 16)))(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 16));
|
|
if ((((int32_t)L_23) < ((int32_t)L_24)))
|
|
{
|
|
goto IL_004d;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantList.cs:101>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 50518
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t VariantList_2_IndexOf_mC4571C33FDE243EF9B22C34D1FFA6FC174474A69_gshared (VariantList_2_tAB497803D00E2F1AE7B18CD9FC2983370DE3418C* __this, Il2CppFullySharedGenericAny ___0_item, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_TBase_t5A9E39870167E4BFCD7985567AF7771C39337963 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5));
|
|
const Il2CppFullySharedGenericAny L_0 = alloca(SizeOf_TBase_t5A9E39870167E4BFCD7985567AF7771C39337963);
|
|
const Il2CppFullySharedGenericAny L_4 = L_0;
|
|
const uint32_t SizeOf_TImplementation_tB6B52ED8FFB461E6FC6D870BD4BBE07B97BCB969 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 4));
|
|
const Il2CppFullySharedGenericAny L_6 = alloca(SizeOf_TImplementation_tB6B52ED8FFB461E6FC6D870BD4BBE07B97BCB969);
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantList.cs:105>
|
|
il2cpp_codegen_memcpy(L_0, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5)) ? ___0_item : &___0_item), SizeOf_TBase_t5A9E39870167E4BFCD7985567AF7771C39337963);
|
|
RuntimeObject* L_1 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5), L_0);
|
|
if (((RuntimeObject*)IsInst((RuntimeObject*)L_1, il2cpp_rgctx_data(method->klass->rgctx_data, 4))))
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantList.cs:107>
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_2 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NotSupportedException__ctor_m1398D0CDE19B36AA3DE9392879738C1EA2439CDF(L_2, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, method);
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantList.cs:110>
|
|
RuntimeObject* L_3;
|
|
L_3 = (( RuntimeObject* (*) (VariantList_2_tAB497803D00E2F1AE7B18CD9FC2983370DE3418C*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 2)))(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 2));
|
|
il2cpp_codegen_memcpy(L_4, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5)) ? ___0_item : &___0_item), SizeOf_TBase_t5A9E39870167E4BFCD7985567AF7771C39337963);
|
|
RuntimeObject* L_5 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5), L_4);
|
|
void* L_7 = UnBox_Any(L_5, il2cpp_rgctx_data(method->klass->rgctx_data, 4), L_6);
|
|
NullCheck(L_3);
|
|
int32_t L_8;
|
|
L_8 = InterfaceFuncInvoker1Invoker< int32_t, Il2CppFullySharedGenericAny >::Invoke(2, il2cpp_rgctx_data(method->klass->rgctx_data, 0), L_3, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 4)) ? (((Il2CppFullySharedGenericAny)(Il2CppFullySharedGenericAny*)L_7)): *(void**)(((Il2CppFullySharedGenericAny)(Il2CppFullySharedGenericAny*)L_7))));
|
|
return L_8;
|
|
}
|
|
}
|
|
// Method Definition Index: 50519
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VariantList_2_Insert_m89FFE9BFC9400E983179D22F214CABD81B8073E0_gshared (VariantList_2_tAB497803D00E2F1AE7B18CD9FC2983370DE3418C* __this, int32_t ___0_index, Il2CppFullySharedGenericAny ___1_item, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_TBase_t5A9E39870167E4BFCD7985567AF7771C39337963 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5));
|
|
const Il2CppFullySharedGenericAny L_0 = alloca(SizeOf_TBase_t5A9E39870167E4BFCD7985567AF7771C39337963);
|
|
const Il2CppFullySharedGenericAny L_5 = L_0;
|
|
const uint32_t SizeOf_TImplementation_tB6B52ED8FFB461E6FC6D870BD4BBE07B97BCB969 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 4));
|
|
const Il2CppFullySharedGenericAny L_7 = alloca(SizeOf_TImplementation_tB6B52ED8FFB461E6FC6D870BD4BBE07B97BCB969);
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantList.cs:115>
|
|
il2cpp_codegen_memcpy(L_0, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5)) ? ___1_item : &___1_item), SizeOf_TBase_t5A9E39870167E4BFCD7985567AF7771C39337963);
|
|
RuntimeObject* L_1 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5), L_0);
|
|
if (((RuntimeObject*)IsInst((RuntimeObject*)L_1, il2cpp_rgctx_data(method->klass->rgctx_data, 4))))
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantList.cs:117>
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_2 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NotSupportedException__ctor_m1398D0CDE19B36AA3DE9392879738C1EA2439CDF(L_2, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, method);
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantList.cs:120>
|
|
RuntimeObject* L_3;
|
|
L_3 = (( RuntimeObject* (*) (VariantList_2_tAB497803D00E2F1AE7B18CD9FC2983370DE3418C*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 2)))(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 2));
|
|
int32_t L_4 = ___0_index;
|
|
il2cpp_codegen_memcpy(L_5, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5)) ? ___1_item : &___1_item), SizeOf_TBase_t5A9E39870167E4BFCD7985567AF7771C39337963);
|
|
RuntimeObject* L_6 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5), L_5);
|
|
void* L_8 = UnBox_Any(L_6, il2cpp_rgctx_data(method->klass->rgctx_data, 4), L_7);
|
|
NullCheck(L_3);
|
|
InterfaceActionInvoker2Invoker< int32_t, Il2CppFullySharedGenericAny >::Invoke(3, il2cpp_rgctx_data(method->klass->rgctx_data, 0), L_3, L_4, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 4)) ? (((Il2CppFullySharedGenericAny)(Il2CppFullySharedGenericAny*)L_8)): *(void**)(((Il2CppFullySharedGenericAny)(Il2CppFullySharedGenericAny*)L_8))));
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantList.cs:121>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 50520
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VariantList_2_RemoveAt_m9B580ACD2C454AEEC94D1E32822C0B1272FA6E2A_gshared (VariantList_2_tAB497803D00E2F1AE7B18CD9FC2983370DE3418C* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantList.cs:125>
|
|
RuntimeObject* L_0;
|
|
L_0 = (( RuntimeObject* (*) (VariantList_2_tAB497803D00E2F1AE7B18CD9FC2983370DE3418C*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 2)))(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 2));
|
|
int32_t L_1 = ___0_index;
|
|
NullCheck(L_0);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(4, il2cpp_rgctx_data(method->klass->rgctx_data, 0), L_0, L_1);
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantList.cs:126>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 50521
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* VariantList_2_System_Collections_IEnumerable_GetEnumerator_m709CB753BCCD8635A9DA824AEBB510DAAACD0AED_gshared (VariantList_2_tAB497803D00E2F1AE7B18CD9FC2983370DE3418C* __this, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_NoAllocEnumerator_1_tDA5C95A699468D9233E95AE11E2CCB741FE9A022 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 24));
|
|
const NoAllocEnumerator_1_tA40C8A9AE3376A8BA7E34711AA94E666443DB696 L_0 = alloca(SizeOf_NoAllocEnumerator_1_tDA5C95A699468D9233E95AE11E2CCB741FE9A022);
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantList.cs:130>
|
|
InvokerActionInvoker1< NoAllocEnumerator_1_tA40C8A9AE3376A8BA7E34711AA94E666443DB696* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 23)), il2cpp_rgctx_method(method->klass->rgctx_data, 23), __this, (NoAllocEnumerator_1_tA40C8A9AE3376A8BA7E34711AA94E666443DB696*)L_0);
|
|
RuntimeObject* L_1 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 24), L_0);
|
|
return (RuntimeObject*)L_1;
|
|
}
|
|
}
|
|
// Method Definition Index: 50522
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* VariantList_2_System_Collections_Generic_IEnumerableU3CTBaseU3E_GetEnumerator_m0EA5AE9E64F64FC4F7CE1DDDA778DED326486143_gshared (VariantList_2_tAB497803D00E2F1AE7B18CD9FC2983370DE3418C* __this, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_NoAllocEnumerator_1_tDA5C95A699468D9233E95AE11E2CCB741FE9A022 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 24));
|
|
const NoAllocEnumerator_1_tA40C8A9AE3376A8BA7E34711AA94E666443DB696 L_0 = alloca(SizeOf_NoAllocEnumerator_1_tDA5C95A699468D9233E95AE11E2CCB741FE9A022);
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantList.cs:135>
|
|
InvokerActionInvoker1< NoAllocEnumerator_1_tA40C8A9AE3376A8BA7E34711AA94E666443DB696* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 23)), il2cpp_rgctx_method(method->klass->rgctx_data, 23), __this, (NoAllocEnumerator_1_tA40C8A9AE3376A8BA7E34711AA94E666443DB696*)L_0);
|
|
RuntimeObject* L_1 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 24), L_0);
|
|
return (RuntimeObject*)L_1;
|
|
}
|
|
}
|
|
// Method Definition Index: 50523
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VariantList_2_GetEnumerator_m4AFE2925779344FC0C372E26687072DB1F936870_gshared (VariantList_2_tAB497803D00E2F1AE7B18CD9FC2983370DE3418C* __this, NoAllocEnumerator_1_tA40C8A9AE3376A8BA7E34711AA94E666443DB696* il2cppRetVal, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_NoAllocEnumerator_1_tDA5C95A699468D9233E95AE11E2CCB741FE9A022 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 24));
|
|
const NoAllocEnumerator_1_tA40C8A9AE3376A8BA7E34711AA94E666443DB696 L_0 = alloca(SizeOf_NoAllocEnumerator_1_tDA5C95A699468D9233E95AE11E2CCB741FE9A022);
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.visualscripting@6279e2b7c485/Runtime/VisualScripting.Core/Collections/VariantList.cs:140>
|
|
memset(L_0, 0, SizeOf_NoAllocEnumerator_1_tDA5C95A699468D9233E95AE11E2CCB741FE9A022);
|
|
NoAllocEnumerator_1__ctor_m3DF218190D5E522C71CCB35C1A6214B1969A14B1((NoAllocEnumerator_1_tA40C8A9AE3376A8BA7E34711AA94E666443DB696*)L_0, (RuntimeObject*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 26));
|
|
il2cpp_codegen_memcpy(il2cppRetVal, L_0, SizeOf_NoAllocEnumerator_1_tDA5C95A699468D9233E95AE11E2CCB741FE9A022);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 7866
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Vector_1_get_Count_m6DF09E4443FC90521D33C892BE69D32B04D85A15_gshared (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_0 = ((Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1)))->___s_count;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 7867
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 Vector_1_get_Zero_mDB2680DF070B1C7F273400548848C621F96343A4_gshared (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_0 = ((Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1)))->___s_zero;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 7868
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Vector_1_InitializeCount_m43BBDDA05FDAB290038584331DB79CB33C523B83_gshared (const RuntimeMethod* method)
|
|
{
|
|
VectorSizeHelper_tC26CEAD1B0D88F765A24D653A74900C4C7FEBD18 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
uint8_t* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
int32_t G_B2_0 = 0;
|
|
int32_t G_B1_0 = 0;
|
|
int32_t G_B21_0 = 0;
|
|
int32_t G_B4_0 = 0;
|
|
int32_t G_B3_0 = 0;
|
|
int32_t G_B6_0 = 0;
|
|
int32_t G_B5_0 = 0;
|
|
int32_t G_B8_0 = 0;
|
|
int32_t G_B7_0 = 0;
|
|
int32_t G_B10_0 = 0;
|
|
int32_t G_B9_0 = 0;
|
|
int32_t G_B12_0 = 0;
|
|
int32_t G_B11_0 = 0;
|
|
int32_t G_B14_0 = 0;
|
|
int32_t G_B13_0 = 0;
|
|
int32_t G_B16_0 = 0;
|
|
int32_t G_B15_0 = 0;
|
|
int32_t G_B18_0 = 0;
|
|
int32_t G_B17_0 = 0;
|
|
int32_t G_B20_0 = 0;
|
|
int32_t G_B19_0 = 0;
|
|
{
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489* L_0 = (Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489*)(&(&V_0)->____placeholder);
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_1 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&L_0->___register);
|
|
uint8_t* L_2 = (uint8_t*)(&L_1->___byte_0);
|
|
V_1 = (uint8_t*)((uintptr_t)L_2);
|
|
uint8_t* L_3 = (uint8_t*)(&(&V_0)->____byte);
|
|
uint8_t* L_4 = V_1;
|
|
V_2 = (-1);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_5 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_6;
|
|
L_6 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_5, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_7 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.byte_class->byval_arg) };
|
|
Type_t* L_8;
|
|
L_8 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_7, NULL);
|
|
bool L_9;
|
|
L_9 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_6, L_8, NULL);
|
|
if (!L_9)
|
|
{
|
|
G_B2_0 = ((int32_t)((int64_t)(intptr_t)((uint8_t*)((intptr_t)((uint8_t*)il2cpp_codegen_subtract((intptr_t)((uintptr_t)L_3), (intptr_t)L_4))/1))));
|
|
goto IL_0045;
|
|
}
|
|
G_B1_0 = ((int32_t)((int64_t)(intptr_t)((uint8_t*)((intptr_t)((uint8_t*)il2cpp_codegen_subtract((intptr_t)((uintptr_t)L_3), (intptr_t)L_4))/1))));
|
|
}
|
|
{
|
|
V_2 = 1;
|
|
G_B21_0 = G_B1_0;
|
|
goto IL_0176;
|
|
}
|
|
|
|
IL_0045:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_10 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_11;
|
|
L_11 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_10, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_12 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.sbyte_class->byval_arg) };
|
|
Type_t* L_13;
|
|
L_13 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_12, NULL);
|
|
bool L_14;
|
|
L_14 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_11, L_13, NULL);
|
|
if (!L_14)
|
|
{
|
|
G_B4_0 = G_B2_0;
|
|
goto IL_0067;
|
|
}
|
|
G_B3_0 = G_B2_0;
|
|
}
|
|
{
|
|
V_2 = 1;
|
|
G_B21_0 = G_B3_0;
|
|
goto IL_0176;
|
|
}
|
|
|
|
IL_0067:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_15 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_16;
|
|
L_16 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_15, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_17 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint16_class->byval_arg) };
|
|
Type_t* L_18;
|
|
L_18 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_17, NULL);
|
|
bool L_19;
|
|
L_19 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_16, L_18, NULL);
|
|
if (!L_19)
|
|
{
|
|
G_B6_0 = G_B4_0;
|
|
goto IL_0089;
|
|
}
|
|
G_B5_0 = G_B4_0;
|
|
}
|
|
{
|
|
V_2 = 2;
|
|
G_B21_0 = G_B5_0;
|
|
goto IL_0176;
|
|
}
|
|
|
|
IL_0089:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_20 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_21;
|
|
L_21 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_20, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_22 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int16_class->byval_arg) };
|
|
Type_t* L_23;
|
|
L_23 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_22, NULL);
|
|
bool L_24;
|
|
L_24 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_21, L_23, NULL);
|
|
if (!L_24)
|
|
{
|
|
G_B8_0 = G_B6_0;
|
|
goto IL_00ab;
|
|
}
|
|
G_B7_0 = G_B6_0;
|
|
}
|
|
{
|
|
V_2 = 2;
|
|
G_B21_0 = G_B7_0;
|
|
goto IL_0176;
|
|
}
|
|
|
|
IL_00ab:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_25 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_26;
|
|
L_26 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_25, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_27 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint32_class->byval_arg) };
|
|
Type_t* L_28;
|
|
L_28 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_27, NULL);
|
|
bool L_29;
|
|
L_29 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_26, L_28, NULL);
|
|
if (!L_29)
|
|
{
|
|
G_B10_0 = G_B8_0;
|
|
goto IL_00cd;
|
|
}
|
|
G_B9_0 = G_B8_0;
|
|
}
|
|
{
|
|
V_2 = 4;
|
|
G_B21_0 = G_B9_0;
|
|
goto IL_0176;
|
|
}
|
|
|
|
IL_00cd:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_30 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_31;
|
|
L_31 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_30, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_32 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
Type_t* L_33;
|
|
L_33 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_32, NULL);
|
|
bool L_34;
|
|
L_34 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_31, L_33, NULL);
|
|
if (!L_34)
|
|
{
|
|
G_B12_0 = G_B10_0;
|
|
goto IL_00ef;
|
|
}
|
|
G_B11_0 = G_B10_0;
|
|
}
|
|
{
|
|
V_2 = 4;
|
|
G_B21_0 = G_B11_0;
|
|
goto IL_0176;
|
|
}
|
|
|
|
IL_00ef:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_35 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_36;
|
|
L_36 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_35, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_37 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint64_class->byval_arg) };
|
|
Type_t* L_38;
|
|
L_38 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_37, NULL);
|
|
bool L_39;
|
|
L_39 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_36, L_38, NULL);
|
|
if (!L_39)
|
|
{
|
|
G_B14_0 = G_B12_0;
|
|
goto IL_010e;
|
|
}
|
|
G_B13_0 = G_B12_0;
|
|
}
|
|
{
|
|
V_2 = 8;
|
|
G_B21_0 = G_B13_0;
|
|
goto IL_0176;
|
|
}
|
|
|
|
IL_010e:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_40 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_41;
|
|
L_41 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_40, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_42 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int64_class->byval_arg) };
|
|
Type_t* L_43;
|
|
L_43 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_42, NULL);
|
|
bool L_44;
|
|
L_44 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_41, L_43, NULL);
|
|
if (!L_44)
|
|
{
|
|
G_B16_0 = G_B14_0;
|
|
goto IL_012d;
|
|
}
|
|
G_B15_0 = G_B14_0;
|
|
}
|
|
{
|
|
V_2 = 8;
|
|
G_B21_0 = G_B15_0;
|
|
goto IL_0176;
|
|
}
|
|
|
|
IL_012d:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_45 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_46;
|
|
L_46 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_45, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_47 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.single_class->byval_arg) };
|
|
Type_t* L_48;
|
|
L_48 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_47, NULL);
|
|
bool L_49;
|
|
L_49 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_46, L_48, NULL);
|
|
if (!L_49)
|
|
{
|
|
G_B18_0 = G_B16_0;
|
|
goto IL_014c;
|
|
}
|
|
G_B17_0 = G_B16_0;
|
|
}
|
|
{
|
|
V_2 = 4;
|
|
G_B21_0 = G_B17_0;
|
|
goto IL_0176;
|
|
}
|
|
|
|
IL_014c:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_50 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_51;
|
|
L_51 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_50, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_52 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.double_class->byval_arg) };
|
|
Type_t* L_53;
|
|
L_53 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_52, NULL);
|
|
bool L_54;
|
|
L_54 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_51, L_53, NULL);
|
|
if (!L_54)
|
|
{
|
|
G_B20_0 = G_B18_0;
|
|
goto IL_016b;
|
|
}
|
|
G_B19_0 = G_B18_0;
|
|
}
|
|
{
|
|
V_2 = 8;
|
|
G_B21_0 = G_B19_0;
|
|
goto IL_0176;
|
|
}
|
|
|
|
IL_016b:
|
|
{
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_55 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_55, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE310274B02A605A3985345944A620D7D2E019A1A)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_55, method);
|
|
}
|
|
|
|
IL_0176:
|
|
{
|
|
int32_t L_56 = V_2;
|
|
return ((int32_t)(G_B21_0/L_56));
|
|
}
|
|
}
|
|
// Method Definition Index: 7869
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Vector_1__ctor_mDA4A6115C4120BFDD773FD4D3753FD3EC2B10427_gshared (Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489* __this, uint16_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
uint8_t* V_0 = NULL;
|
|
uint8_t* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
int8_t* V_3 = NULL;
|
|
int8_t* V_4 = NULL;
|
|
int32_t V_5 = 0;
|
|
uint16_t* V_6 = NULL;
|
|
uint16_t* V_7 = NULL;
|
|
int32_t V_8 = 0;
|
|
int16_t* V_9 = NULL;
|
|
int16_t* V_10 = NULL;
|
|
int32_t V_11 = 0;
|
|
uint32_t* V_12 = NULL;
|
|
uint32_t* V_13 = NULL;
|
|
int32_t V_14 = 0;
|
|
int32_t* V_15 = NULL;
|
|
int32_t* V_16 = NULL;
|
|
int32_t V_17 = 0;
|
|
uint64_t* V_18 = NULL;
|
|
uint64_t* V_19 = NULL;
|
|
int32_t V_20 = 0;
|
|
int64_t* V_21 = NULL;
|
|
int64_t* V_22 = NULL;
|
|
int32_t V_23 = 0;
|
|
float* V_24 = NULL;
|
|
float* V_25 = NULL;
|
|
int32_t V_26 = 0;
|
|
double* V_27 = NULL;
|
|
double* V_28 = NULL;
|
|
int32_t V_29 = 0;
|
|
{
|
|
il2cpp_codegen_initobj(__this, sizeof(Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489));
|
|
bool L_0;
|
|
L_0 = Vector_get_IsHardwareAccelerated_m783509258751EBED64CBD9F387EC1BB4A15088AA(NULL);
|
|
if (!L_0)
|
|
{
|
|
goto IL_0386;
|
|
}
|
|
}
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_1 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_2;
|
|
L_2 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_1, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_3 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.byte_class->byval_arg) };
|
|
Type_t* L_4;
|
|
L_4 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_3, NULL);
|
|
bool L_5;
|
|
L_5 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_2, L_4, NULL);
|
|
if (!L_5)
|
|
{
|
|
goto IL_005e;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_6 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t* L_7 = (uint8_t*)(&L_6->___byte_0);
|
|
V_1 = L_7;
|
|
uint8_t* L_8 = V_1;
|
|
V_0 = (uint8_t*)((uintptr_t)L_8);
|
|
V_2 = 0;
|
|
goto IL_0052;
|
|
}
|
|
|
|
IL_003f:
|
|
{
|
|
uint8_t* L_9 = V_0;
|
|
int32_t L_10 = V_2;
|
|
uint16_t L_11 = ___0_value;
|
|
uint16_t L_12 = L_11;
|
|
RuntimeObject* L_13 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_12);
|
|
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_9, L_10))) = (int8_t)((*(uint8_t*)UnBox(L_13, il2cpp_defaults.byte_class)));
|
|
int32_t L_14 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_14, 1));
|
|
}
|
|
|
|
IL_0052:
|
|
{
|
|
int32_t L_15 = V_2;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_16;
|
|
L_16 = Vector_1_get_Count_m6DF09E4443FC90521D33C892BE69D32B04D85A15_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_15) < ((int32_t)L_16)))
|
|
{
|
|
goto IL_003f;
|
|
}
|
|
}
|
|
{
|
|
V_1 = (uint8_t*)((uintptr_t)0);
|
|
return;
|
|
}
|
|
|
|
IL_005e:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_17 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_18;
|
|
L_18 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_17, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_19 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.sbyte_class->byval_arg) };
|
|
Type_t* L_20;
|
|
L_20 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_19, NULL);
|
|
bool L_21;
|
|
L_21 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_18, L_20, NULL);
|
|
if (!L_21)
|
|
{
|
|
goto IL_00b3;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_22 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t* L_23 = (int8_t*)(&L_22->___sbyte_0);
|
|
V_4 = L_23;
|
|
int8_t* L_24 = V_4;
|
|
V_3 = (int8_t*)((uintptr_t)L_24);
|
|
V_5 = 0;
|
|
goto IL_00a5;
|
|
}
|
|
|
|
IL_008f:
|
|
{
|
|
int8_t* L_25 = V_3;
|
|
int32_t L_26 = V_5;
|
|
uint16_t L_27 = ___0_value;
|
|
uint16_t L_28 = L_27;
|
|
RuntimeObject* L_29 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_28);
|
|
*((int8_t*)((int8_t*)il2cpp_codegen_add((intptr_t)L_25, L_26))) = (int8_t)((*(int8_t*)UnBox(L_29, il2cpp_defaults.sbyte_class)));
|
|
int32_t L_30 = V_5;
|
|
V_5 = ((int32_t)il2cpp_codegen_add(L_30, 1));
|
|
}
|
|
|
|
IL_00a5:
|
|
{
|
|
int32_t L_31 = V_5;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_32;
|
|
L_32 = Vector_1_get_Count_m6DF09E4443FC90521D33C892BE69D32B04D85A15_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_31) < ((int32_t)L_32)))
|
|
{
|
|
goto IL_008f;
|
|
}
|
|
}
|
|
{
|
|
V_4 = (int8_t*)((uintptr_t)0);
|
|
return;
|
|
}
|
|
|
|
IL_00b3:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_33 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_34;
|
|
L_34 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_33, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_35 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint16_class->byval_arg) };
|
|
Type_t* L_36;
|
|
L_36 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_35, NULL);
|
|
bool L_37;
|
|
L_37 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_34, L_36, NULL);
|
|
if (!L_37)
|
|
{
|
|
goto IL_010d;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_38 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t* L_39 = (uint16_t*)(&L_38->___uint16_0);
|
|
V_7 = L_39;
|
|
uint16_t* L_40 = V_7;
|
|
V_6 = (uint16_t*)((uintptr_t)L_40);
|
|
V_8 = 0;
|
|
goto IL_00ff;
|
|
}
|
|
|
|
IL_00e5:
|
|
{
|
|
uint16_t* L_41 = V_6;
|
|
int32_t L_42 = V_8;
|
|
uint16_t L_43 = ___0_value;
|
|
uint16_t L_44 = L_43;
|
|
RuntimeObject* L_45 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_44);
|
|
*((int16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_41, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_42), 2))))) = (int16_t)((*(uint16_t*)UnBox(L_45, il2cpp_defaults.uint16_class)));
|
|
int32_t L_46 = V_8;
|
|
V_8 = ((int32_t)il2cpp_codegen_add(L_46, 1));
|
|
}
|
|
|
|
IL_00ff:
|
|
{
|
|
int32_t L_47 = V_8;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_48;
|
|
L_48 = Vector_1_get_Count_m6DF09E4443FC90521D33C892BE69D32B04D85A15_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_47) < ((int32_t)L_48)))
|
|
{
|
|
goto IL_00e5;
|
|
}
|
|
}
|
|
{
|
|
V_7 = (uint16_t*)((uintptr_t)0);
|
|
return;
|
|
}
|
|
|
|
IL_010d:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_49 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_50;
|
|
L_50 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_49, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_51 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int16_class->byval_arg) };
|
|
Type_t* L_52;
|
|
L_52 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_51, NULL);
|
|
bool L_53;
|
|
L_53 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_50, L_52, NULL);
|
|
if (!L_53)
|
|
{
|
|
goto IL_0167;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_54 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int16_t* L_55 = (int16_t*)(&L_54->___int16_0);
|
|
V_10 = L_55;
|
|
int16_t* L_56 = V_10;
|
|
V_9 = (int16_t*)((uintptr_t)L_56);
|
|
V_11 = 0;
|
|
goto IL_0159;
|
|
}
|
|
|
|
IL_013f:
|
|
{
|
|
int16_t* L_57 = V_9;
|
|
int32_t L_58 = V_11;
|
|
uint16_t L_59 = ___0_value;
|
|
uint16_t L_60 = L_59;
|
|
RuntimeObject* L_61 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_60);
|
|
*((int16_t*)((int16_t*)il2cpp_codegen_add((intptr_t)L_57, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_58), 2))))) = (int16_t)((*(int16_t*)UnBox(L_61, il2cpp_defaults.int16_class)));
|
|
int32_t L_62 = V_11;
|
|
V_11 = ((int32_t)il2cpp_codegen_add(L_62, 1));
|
|
}
|
|
|
|
IL_0159:
|
|
{
|
|
int32_t L_63 = V_11;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_64;
|
|
L_64 = Vector_1_get_Count_m6DF09E4443FC90521D33C892BE69D32B04D85A15_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_63) < ((int32_t)L_64)))
|
|
{
|
|
goto IL_013f;
|
|
}
|
|
}
|
|
{
|
|
V_10 = (int16_t*)((uintptr_t)0);
|
|
return;
|
|
}
|
|
|
|
IL_0167:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_65 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_66;
|
|
L_66 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_65, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_67 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint32_class->byval_arg) };
|
|
Type_t* L_68;
|
|
L_68 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_67, NULL);
|
|
bool L_69;
|
|
L_69 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_66, L_68, NULL);
|
|
if (!L_69)
|
|
{
|
|
goto IL_01c1;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_70 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint32_t* L_71 = (uint32_t*)(&L_70->___uint32_0);
|
|
V_13 = L_71;
|
|
uint32_t* L_72 = V_13;
|
|
V_12 = (uint32_t*)((uintptr_t)L_72);
|
|
V_14 = 0;
|
|
goto IL_01b3;
|
|
}
|
|
|
|
IL_0199:
|
|
{
|
|
uint32_t* L_73 = V_12;
|
|
int32_t L_74 = V_14;
|
|
uint16_t L_75 = ___0_value;
|
|
uint16_t L_76 = L_75;
|
|
RuntimeObject* L_77 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_76);
|
|
*((int32_t*)((uint32_t*)il2cpp_codegen_add((intptr_t)L_73, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_74), 4))))) = (int32_t)((*(uint32_t*)UnBox(L_77, il2cpp_defaults.uint32_class)));
|
|
int32_t L_78 = V_14;
|
|
V_14 = ((int32_t)il2cpp_codegen_add(L_78, 1));
|
|
}
|
|
|
|
IL_01b3:
|
|
{
|
|
int32_t L_79 = V_14;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_80;
|
|
L_80 = Vector_1_get_Count_m6DF09E4443FC90521D33C892BE69D32B04D85A15_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_79) < ((int32_t)L_80)))
|
|
{
|
|
goto IL_0199;
|
|
}
|
|
}
|
|
{
|
|
V_13 = (uint32_t*)((uintptr_t)0);
|
|
return;
|
|
}
|
|
|
|
IL_01c1:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_81 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_82;
|
|
L_82 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_81, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_83 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
Type_t* L_84;
|
|
L_84 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_83, NULL);
|
|
bool L_85;
|
|
L_85 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_82, L_84, NULL);
|
|
if (!L_85)
|
|
{
|
|
goto IL_021b;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_86 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int32_t* L_87 = (int32_t*)(&L_86->___int32_0);
|
|
V_16 = L_87;
|
|
int32_t* L_88 = V_16;
|
|
V_15 = (int32_t*)((uintptr_t)L_88);
|
|
V_17 = 0;
|
|
goto IL_020d;
|
|
}
|
|
|
|
IL_01f3:
|
|
{
|
|
int32_t* L_89 = V_15;
|
|
int32_t L_90 = V_17;
|
|
uint16_t L_91 = ___0_value;
|
|
uint16_t L_92 = L_91;
|
|
RuntimeObject* L_93 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_92);
|
|
*((int32_t*)((int32_t*)il2cpp_codegen_add((intptr_t)L_89, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_90), 4))))) = (int32_t)((*(int32_t*)UnBox(L_93, il2cpp_defaults.int32_class)));
|
|
int32_t L_94 = V_17;
|
|
V_17 = ((int32_t)il2cpp_codegen_add(L_94, 1));
|
|
}
|
|
|
|
IL_020d:
|
|
{
|
|
int32_t L_95 = V_17;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_96;
|
|
L_96 = Vector_1_get_Count_m6DF09E4443FC90521D33C892BE69D32B04D85A15_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_95) < ((int32_t)L_96)))
|
|
{
|
|
goto IL_01f3;
|
|
}
|
|
}
|
|
{
|
|
V_16 = (int32_t*)((uintptr_t)0);
|
|
return;
|
|
}
|
|
|
|
IL_021b:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_97 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_98;
|
|
L_98 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_97, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_99 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint64_class->byval_arg) };
|
|
Type_t* L_100;
|
|
L_100 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_99, NULL);
|
|
bool L_101;
|
|
L_101 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_98, L_100, NULL);
|
|
if (!L_101)
|
|
{
|
|
goto IL_0275;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_102 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t* L_103 = (uint64_t*)(&L_102->___uint64_0);
|
|
V_19 = L_103;
|
|
uint64_t* L_104 = V_19;
|
|
V_18 = (uint64_t*)((uintptr_t)L_104);
|
|
V_20 = 0;
|
|
goto IL_0267;
|
|
}
|
|
|
|
IL_024d:
|
|
{
|
|
uint64_t* L_105 = V_18;
|
|
int32_t L_106 = V_20;
|
|
uint16_t L_107 = ___0_value;
|
|
uint16_t L_108 = L_107;
|
|
RuntimeObject* L_109 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_108);
|
|
*((int64_t*)((uint64_t*)il2cpp_codegen_add((intptr_t)L_105, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_106), 8))))) = (int64_t)((*(uint64_t*)UnBox(L_109, il2cpp_defaults.uint64_class)));
|
|
int32_t L_110 = V_20;
|
|
V_20 = ((int32_t)il2cpp_codegen_add(L_110, 1));
|
|
}
|
|
|
|
IL_0267:
|
|
{
|
|
int32_t L_111 = V_20;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_112;
|
|
L_112 = Vector_1_get_Count_m6DF09E4443FC90521D33C892BE69D32B04D85A15_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_111) < ((int32_t)L_112)))
|
|
{
|
|
goto IL_024d;
|
|
}
|
|
}
|
|
{
|
|
V_19 = (uint64_t*)((uintptr_t)0);
|
|
return;
|
|
}
|
|
|
|
IL_0275:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_113 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_114;
|
|
L_114 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_113, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_115 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int64_class->byval_arg) };
|
|
Type_t* L_116;
|
|
L_116 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_115, NULL);
|
|
bool L_117;
|
|
L_117 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_114, L_116, NULL);
|
|
if (!L_117)
|
|
{
|
|
goto IL_02cf;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_118 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int64_t* L_119 = (int64_t*)(&L_118->___int64_0);
|
|
V_22 = L_119;
|
|
int64_t* L_120 = V_22;
|
|
V_21 = (int64_t*)((uintptr_t)L_120);
|
|
V_23 = 0;
|
|
goto IL_02c1;
|
|
}
|
|
|
|
IL_02a7:
|
|
{
|
|
int64_t* L_121 = V_21;
|
|
int32_t L_122 = V_23;
|
|
uint16_t L_123 = ___0_value;
|
|
uint16_t L_124 = L_123;
|
|
RuntimeObject* L_125 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_124);
|
|
*((int64_t*)((int64_t*)il2cpp_codegen_add((intptr_t)L_121, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_122), 8))))) = (int64_t)((*(int64_t*)UnBox(L_125, il2cpp_defaults.int64_class)));
|
|
int32_t L_126 = V_23;
|
|
V_23 = ((int32_t)il2cpp_codegen_add(L_126, 1));
|
|
}
|
|
|
|
IL_02c1:
|
|
{
|
|
int32_t L_127 = V_23;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_128;
|
|
L_128 = Vector_1_get_Count_m6DF09E4443FC90521D33C892BE69D32B04D85A15_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_127) < ((int32_t)L_128)))
|
|
{
|
|
goto IL_02a7;
|
|
}
|
|
}
|
|
{
|
|
V_22 = (int64_t*)((uintptr_t)0);
|
|
return;
|
|
}
|
|
|
|
IL_02cf:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_129 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_130;
|
|
L_130 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_129, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_131 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.single_class->byval_arg) };
|
|
Type_t* L_132;
|
|
L_132 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_131, NULL);
|
|
bool L_133;
|
|
L_133 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_130, L_132, NULL);
|
|
if (!L_133)
|
|
{
|
|
goto IL_0329;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_134 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
float* L_135 = (float*)(&L_134->___single_0);
|
|
V_25 = L_135;
|
|
float* L_136 = V_25;
|
|
V_24 = (float*)((uintptr_t)L_136);
|
|
V_26 = 0;
|
|
goto IL_031b;
|
|
}
|
|
|
|
IL_0301:
|
|
{
|
|
float* L_137 = V_24;
|
|
int32_t L_138 = V_26;
|
|
uint16_t L_139 = ___0_value;
|
|
uint16_t L_140 = L_139;
|
|
RuntimeObject* L_141 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_140);
|
|
*((float*)((float*)il2cpp_codegen_add((intptr_t)L_137, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_138), 4))))) = (float)((*(float*)UnBox(L_141, il2cpp_defaults.single_class)));
|
|
int32_t L_142 = V_26;
|
|
V_26 = ((int32_t)il2cpp_codegen_add(L_142, 1));
|
|
}
|
|
|
|
IL_031b:
|
|
{
|
|
int32_t L_143 = V_26;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_144;
|
|
L_144 = Vector_1_get_Count_m6DF09E4443FC90521D33C892BE69D32B04D85A15_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_143) < ((int32_t)L_144)))
|
|
{
|
|
goto IL_0301;
|
|
}
|
|
}
|
|
{
|
|
V_25 = (float*)((uintptr_t)0);
|
|
return;
|
|
}
|
|
|
|
IL_0329:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_145 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_146;
|
|
L_146 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_145, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_147 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.double_class->byval_arg) };
|
|
Type_t* L_148;
|
|
L_148 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_147, NULL);
|
|
bool L_149;
|
|
L_149 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_146, L_148, NULL);
|
|
if (!L_149)
|
|
{
|
|
goto IL_0a55;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_150 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
double* L_151 = (double*)(&L_150->___double_0);
|
|
V_28 = L_151;
|
|
double* L_152 = V_28;
|
|
V_27 = (double*)((uintptr_t)L_152);
|
|
V_29 = 0;
|
|
goto IL_0378;
|
|
}
|
|
|
|
IL_035e:
|
|
{
|
|
double* L_153 = V_27;
|
|
int32_t L_154 = V_29;
|
|
uint16_t L_155 = ___0_value;
|
|
uint16_t L_156 = L_155;
|
|
RuntimeObject* L_157 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_156);
|
|
*((double*)((double*)il2cpp_codegen_add((intptr_t)L_153, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_154), 8))))) = (double)((*(double*)UnBox(L_157, il2cpp_defaults.double_class)));
|
|
int32_t L_158 = V_29;
|
|
V_29 = ((int32_t)il2cpp_codegen_add(L_158, 1));
|
|
}
|
|
|
|
IL_0378:
|
|
{
|
|
int32_t L_159 = V_29;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_160;
|
|
L_160 = Vector_1_get_Count_m6DF09E4443FC90521D33C892BE69D32B04D85A15_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_159) < ((int32_t)L_160)))
|
|
{
|
|
goto IL_035e;
|
|
}
|
|
}
|
|
{
|
|
V_28 = (double*)((uintptr_t)0);
|
|
return;
|
|
}
|
|
|
|
IL_0386:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_161 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_162;
|
|
L_162 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_161, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_163 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.byte_class->byval_arg) };
|
|
Type_t* L_164;
|
|
L_164 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_163, NULL);
|
|
bool L_165;
|
|
L_165 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_162, L_164, NULL);
|
|
if (!L_165)
|
|
{
|
|
goto IL_0505;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_166 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_167 = ___0_value;
|
|
uint16_t L_168 = L_167;
|
|
RuntimeObject* L_169 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_168);
|
|
L_166->___byte_0 = ((*(uint8_t*)UnBox(L_169, il2cpp_defaults.byte_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_170 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_171 = ___0_value;
|
|
uint16_t L_172 = L_171;
|
|
RuntimeObject* L_173 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_172);
|
|
L_170->___byte_1 = ((*(uint8_t*)UnBox(L_173, il2cpp_defaults.byte_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_174 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_175 = ___0_value;
|
|
uint16_t L_176 = L_175;
|
|
RuntimeObject* L_177 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_176);
|
|
L_174->___byte_2 = ((*(uint8_t*)UnBox(L_177, il2cpp_defaults.byte_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_178 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_179 = ___0_value;
|
|
uint16_t L_180 = L_179;
|
|
RuntimeObject* L_181 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_180);
|
|
L_178->___byte_3 = ((*(uint8_t*)UnBox(L_181, il2cpp_defaults.byte_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_182 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_183 = ___0_value;
|
|
uint16_t L_184 = L_183;
|
|
RuntimeObject* L_185 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_184);
|
|
L_182->___byte_4 = ((*(uint8_t*)UnBox(L_185, il2cpp_defaults.byte_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_186 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_187 = ___0_value;
|
|
uint16_t L_188 = L_187;
|
|
RuntimeObject* L_189 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_188);
|
|
L_186->___byte_5 = ((*(uint8_t*)UnBox(L_189, il2cpp_defaults.byte_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_190 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_191 = ___0_value;
|
|
uint16_t L_192 = L_191;
|
|
RuntimeObject* L_193 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_192);
|
|
L_190->___byte_6 = ((*(uint8_t*)UnBox(L_193, il2cpp_defaults.byte_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_194 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_195 = ___0_value;
|
|
uint16_t L_196 = L_195;
|
|
RuntimeObject* L_197 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_196);
|
|
L_194->___byte_7 = ((*(uint8_t*)UnBox(L_197, il2cpp_defaults.byte_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_198 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_199 = ___0_value;
|
|
uint16_t L_200 = L_199;
|
|
RuntimeObject* L_201 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_200);
|
|
L_198->___byte_8 = ((*(uint8_t*)UnBox(L_201, il2cpp_defaults.byte_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_202 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_203 = ___0_value;
|
|
uint16_t L_204 = L_203;
|
|
RuntimeObject* L_205 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_204);
|
|
L_202->___byte_9 = ((*(uint8_t*)UnBox(L_205, il2cpp_defaults.byte_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_206 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_207 = ___0_value;
|
|
uint16_t L_208 = L_207;
|
|
RuntimeObject* L_209 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_208);
|
|
L_206->___byte_10 = ((*(uint8_t*)UnBox(L_209, il2cpp_defaults.byte_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_210 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_211 = ___0_value;
|
|
uint16_t L_212 = L_211;
|
|
RuntimeObject* L_213 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_212);
|
|
L_210->___byte_11 = ((*(uint8_t*)UnBox(L_213, il2cpp_defaults.byte_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_214 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_215 = ___0_value;
|
|
uint16_t L_216 = L_215;
|
|
RuntimeObject* L_217 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_216);
|
|
L_214->___byte_12 = ((*(uint8_t*)UnBox(L_217, il2cpp_defaults.byte_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_218 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_219 = ___0_value;
|
|
uint16_t L_220 = L_219;
|
|
RuntimeObject* L_221 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_220);
|
|
L_218->___byte_13 = ((*(uint8_t*)UnBox(L_221, il2cpp_defaults.byte_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_222 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_223 = ___0_value;
|
|
uint16_t L_224 = L_223;
|
|
RuntimeObject* L_225 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_224);
|
|
L_222->___byte_14 = ((*(uint8_t*)UnBox(L_225, il2cpp_defaults.byte_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_226 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_227 = ___0_value;
|
|
uint16_t L_228 = L_227;
|
|
RuntimeObject* L_229 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_228);
|
|
L_226->___byte_15 = ((*(uint8_t*)UnBox(L_229, il2cpp_defaults.byte_class)));
|
|
return;
|
|
}
|
|
|
|
IL_0505:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_230 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_231;
|
|
L_231 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_230, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_232 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.sbyte_class->byval_arg) };
|
|
Type_t* L_233;
|
|
L_233 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_232, NULL);
|
|
bool L_234;
|
|
L_234 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_231, L_233, NULL);
|
|
if (!L_234)
|
|
{
|
|
goto IL_0684;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_235 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_236 = ___0_value;
|
|
uint16_t L_237 = L_236;
|
|
RuntimeObject* L_238 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_237);
|
|
L_235->___sbyte_0 = ((*(int8_t*)UnBox(L_238, il2cpp_defaults.sbyte_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_239 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_240 = ___0_value;
|
|
uint16_t L_241 = L_240;
|
|
RuntimeObject* L_242 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_241);
|
|
L_239->___sbyte_1 = ((*(int8_t*)UnBox(L_242, il2cpp_defaults.sbyte_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_243 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_244 = ___0_value;
|
|
uint16_t L_245 = L_244;
|
|
RuntimeObject* L_246 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_245);
|
|
L_243->___sbyte_2 = ((*(int8_t*)UnBox(L_246, il2cpp_defaults.sbyte_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_247 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_248 = ___0_value;
|
|
uint16_t L_249 = L_248;
|
|
RuntimeObject* L_250 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_249);
|
|
L_247->___sbyte_3 = ((*(int8_t*)UnBox(L_250, il2cpp_defaults.sbyte_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_251 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_252 = ___0_value;
|
|
uint16_t L_253 = L_252;
|
|
RuntimeObject* L_254 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_253);
|
|
L_251->___sbyte_4 = ((*(int8_t*)UnBox(L_254, il2cpp_defaults.sbyte_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_255 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_256 = ___0_value;
|
|
uint16_t L_257 = L_256;
|
|
RuntimeObject* L_258 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_257);
|
|
L_255->___sbyte_5 = ((*(int8_t*)UnBox(L_258, il2cpp_defaults.sbyte_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_259 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_260 = ___0_value;
|
|
uint16_t L_261 = L_260;
|
|
RuntimeObject* L_262 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_261);
|
|
L_259->___sbyte_6 = ((*(int8_t*)UnBox(L_262, il2cpp_defaults.sbyte_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_263 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_264 = ___0_value;
|
|
uint16_t L_265 = L_264;
|
|
RuntimeObject* L_266 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_265);
|
|
L_263->___sbyte_7 = ((*(int8_t*)UnBox(L_266, il2cpp_defaults.sbyte_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_267 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_268 = ___0_value;
|
|
uint16_t L_269 = L_268;
|
|
RuntimeObject* L_270 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_269);
|
|
L_267->___sbyte_8 = ((*(int8_t*)UnBox(L_270, il2cpp_defaults.sbyte_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_271 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_272 = ___0_value;
|
|
uint16_t L_273 = L_272;
|
|
RuntimeObject* L_274 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_273);
|
|
L_271->___sbyte_9 = ((*(int8_t*)UnBox(L_274, il2cpp_defaults.sbyte_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_275 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_276 = ___0_value;
|
|
uint16_t L_277 = L_276;
|
|
RuntimeObject* L_278 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_277);
|
|
L_275->___sbyte_10 = ((*(int8_t*)UnBox(L_278, il2cpp_defaults.sbyte_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_279 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_280 = ___0_value;
|
|
uint16_t L_281 = L_280;
|
|
RuntimeObject* L_282 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_281);
|
|
L_279->___sbyte_11 = ((*(int8_t*)UnBox(L_282, il2cpp_defaults.sbyte_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_283 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_284 = ___0_value;
|
|
uint16_t L_285 = L_284;
|
|
RuntimeObject* L_286 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_285);
|
|
L_283->___sbyte_12 = ((*(int8_t*)UnBox(L_286, il2cpp_defaults.sbyte_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_287 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_288 = ___0_value;
|
|
uint16_t L_289 = L_288;
|
|
RuntimeObject* L_290 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_289);
|
|
L_287->___sbyte_13 = ((*(int8_t*)UnBox(L_290, il2cpp_defaults.sbyte_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_291 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_292 = ___0_value;
|
|
uint16_t L_293 = L_292;
|
|
RuntimeObject* L_294 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_293);
|
|
L_291->___sbyte_14 = ((*(int8_t*)UnBox(L_294, il2cpp_defaults.sbyte_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_295 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_296 = ___0_value;
|
|
uint16_t L_297 = L_296;
|
|
RuntimeObject* L_298 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_297);
|
|
L_295->___sbyte_15 = ((*(int8_t*)UnBox(L_298, il2cpp_defaults.sbyte_class)));
|
|
return;
|
|
}
|
|
|
|
IL_0684:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_299 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_300;
|
|
L_300 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_299, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_301 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint16_class->byval_arg) };
|
|
Type_t* L_302;
|
|
L_302 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_301, NULL);
|
|
bool L_303;
|
|
L_303 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_300, L_302, NULL);
|
|
if (!L_303)
|
|
{
|
|
goto IL_0753;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_304 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_305 = ___0_value;
|
|
uint16_t L_306 = L_305;
|
|
RuntimeObject* L_307 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_306);
|
|
L_304->___uint16_0 = ((*(uint16_t*)UnBox(L_307, il2cpp_defaults.uint16_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_308 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_309 = ___0_value;
|
|
uint16_t L_310 = L_309;
|
|
RuntimeObject* L_311 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_310);
|
|
L_308->___uint16_1 = ((*(uint16_t*)UnBox(L_311, il2cpp_defaults.uint16_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_312 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_313 = ___0_value;
|
|
uint16_t L_314 = L_313;
|
|
RuntimeObject* L_315 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_314);
|
|
L_312->___uint16_2 = ((*(uint16_t*)UnBox(L_315, il2cpp_defaults.uint16_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_316 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_317 = ___0_value;
|
|
uint16_t L_318 = L_317;
|
|
RuntimeObject* L_319 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_318);
|
|
L_316->___uint16_3 = ((*(uint16_t*)UnBox(L_319, il2cpp_defaults.uint16_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_320 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_321 = ___0_value;
|
|
uint16_t L_322 = L_321;
|
|
RuntimeObject* L_323 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_322);
|
|
L_320->___uint16_4 = ((*(uint16_t*)UnBox(L_323, il2cpp_defaults.uint16_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_324 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_325 = ___0_value;
|
|
uint16_t L_326 = L_325;
|
|
RuntimeObject* L_327 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_326);
|
|
L_324->___uint16_5 = ((*(uint16_t*)UnBox(L_327, il2cpp_defaults.uint16_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_328 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_329 = ___0_value;
|
|
uint16_t L_330 = L_329;
|
|
RuntimeObject* L_331 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_330);
|
|
L_328->___uint16_6 = ((*(uint16_t*)UnBox(L_331, il2cpp_defaults.uint16_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_332 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_333 = ___0_value;
|
|
uint16_t L_334 = L_333;
|
|
RuntimeObject* L_335 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_334);
|
|
L_332->___uint16_7 = ((*(uint16_t*)UnBox(L_335, il2cpp_defaults.uint16_class)));
|
|
return;
|
|
}
|
|
|
|
IL_0753:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_336 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_337;
|
|
L_337 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_336, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_338 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int16_class->byval_arg) };
|
|
Type_t* L_339;
|
|
L_339 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_338, NULL);
|
|
bool L_340;
|
|
L_340 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_337, L_339, NULL);
|
|
if (!L_340)
|
|
{
|
|
goto IL_0822;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_341 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_342 = ___0_value;
|
|
uint16_t L_343 = L_342;
|
|
RuntimeObject* L_344 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_343);
|
|
L_341->___int16_0 = ((*(int16_t*)UnBox(L_344, il2cpp_defaults.int16_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_345 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_346 = ___0_value;
|
|
uint16_t L_347 = L_346;
|
|
RuntimeObject* L_348 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_347);
|
|
L_345->___int16_1 = ((*(int16_t*)UnBox(L_348, il2cpp_defaults.int16_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_349 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_350 = ___0_value;
|
|
uint16_t L_351 = L_350;
|
|
RuntimeObject* L_352 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_351);
|
|
L_349->___int16_2 = ((*(int16_t*)UnBox(L_352, il2cpp_defaults.int16_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_353 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_354 = ___0_value;
|
|
uint16_t L_355 = L_354;
|
|
RuntimeObject* L_356 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_355);
|
|
L_353->___int16_3 = ((*(int16_t*)UnBox(L_356, il2cpp_defaults.int16_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_357 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_358 = ___0_value;
|
|
uint16_t L_359 = L_358;
|
|
RuntimeObject* L_360 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_359);
|
|
L_357->___int16_4 = ((*(int16_t*)UnBox(L_360, il2cpp_defaults.int16_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_361 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_362 = ___0_value;
|
|
uint16_t L_363 = L_362;
|
|
RuntimeObject* L_364 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_363);
|
|
L_361->___int16_5 = ((*(int16_t*)UnBox(L_364, il2cpp_defaults.int16_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_365 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_366 = ___0_value;
|
|
uint16_t L_367 = L_366;
|
|
RuntimeObject* L_368 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_367);
|
|
L_365->___int16_6 = ((*(int16_t*)UnBox(L_368, il2cpp_defaults.int16_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_369 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_370 = ___0_value;
|
|
uint16_t L_371 = L_370;
|
|
RuntimeObject* L_372 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_371);
|
|
L_369->___int16_7 = ((*(int16_t*)UnBox(L_372, il2cpp_defaults.int16_class)));
|
|
return;
|
|
}
|
|
|
|
IL_0822:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_373 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_374;
|
|
L_374 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_373, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_375 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint32_class->byval_arg) };
|
|
Type_t* L_376;
|
|
L_376 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_375, NULL);
|
|
bool L_377;
|
|
L_377 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_374, L_376, NULL);
|
|
if (!L_377)
|
|
{
|
|
goto IL_0896;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_378 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_379 = ___0_value;
|
|
uint16_t L_380 = L_379;
|
|
RuntimeObject* L_381 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_380);
|
|
L_378->___uint32_0 = ((*(uint32_t*)UnBox(L_381, il2cpp_defaults.uint32_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_382 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_383 = ___0_value;
|
|
uint16_t L_384 = L_383;
|
|
RuntimeObject* L_385 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_384);
|
|
L_382->___uint32_1 = ((*(uint32_t*)UnBox(L_385, il2cpp_defaults.uint32_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_386 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_387 = ___0_value;
|
|
uint16_t L_388 = L_387;
|
|
RuntimeObject* L_389 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_388);
|
|
L_386->___uint32_2 = ((*(uint32_t*)UnBox(L_389, il2cpp_defaults.uint32_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_390 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_391 = ___0_value;
|
|
uint16_t L_392 = L_391;
|
|
RuntimeObject* L_393 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_392);
|
|
L_390->___uint32_3 = ((*(uint32_t*)UnBox(L_393, il2cpp_defaults.uint32_class)));
|
|
return;
|
|
}
|
|
|
|
IL_0896:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_394 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_395;
|
|
L_395 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_394, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_396 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
Type_t* L_397;
|
|
L_397 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_396, NULL);
|
|
bool L_398;
|
|
L_398 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_395, L_397, NULL);
|
|
if (!L_398)
|
|
{
|
|
goto IL_090a;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_399 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_400 = ___0_value;
|
|
uint16_t L_401 = L_400;
|
|
RuntimeObject* L_402 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_401);
|
|
L_399->___int32_0 = ((*(int32_t*)UnBox(L_402, il2cpp_defaults.int32_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_403 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_404 = ___0_value;
|
|
uint16_t L_405 = L_404;
|
|
RuntimeObject* L_406 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_405);
|
|
L_403->___int32_1 = ((*(int32_t*)UnBox(L_406, il2cpp_defaults.int32_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_407 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_408 = ___0_value;
|
|
uint16_t L_409 = L_408;
|
|
RuntimeObject* L_410 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_409);
|
|
L_407->___int32_2 = ((*(int32_t*)UnBox(L_410, il2cpp_defaults.int32_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_411 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_412 = ___0_value;
|
|
uint16_t L_413 = L_412;
|
|
RuntimeObject* L_414 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_413);
|
|
L_411->___int32_3 = ((*(int32_t*)UnBox(L_414, il2cpp_defaults.int32_class)));
|
|
return;
|
|
}
|
|
|
|
IL_090a:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_415 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_416;
|
|
L_416 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_415, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_417 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint64_class->byval_arg) };
|
|
Type_t* L_418;
|
|
L_418 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_417, NULL);
|
|
bool L_419;
|
|
L_419 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_416, L_418, NULL);
|
|
if (!L_419)
|
|
{
|
|
goto IL_0952;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_420 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_421 = ___0_value;
|
|
uint16_t L_422 = L_421;
|
|
RuntimeObject* L_423 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_422);
|
|
L_420->___uint64_0 = ((*(uint64_t*)UnBox(L_423, il2cpp_defaults.uint64_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_424 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_425 = ___0_value;
|
|
uint16_t L_426 = L_425;
|
|
RuntimeObject* L_427 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_426);
|
|
L_424->___uint64_1 = ((*(uint64_t*)UnBox(L_427, il2cpp_defaults.uint64_class)));
|
|
return;
|
|
}
|
|
|
|
IL_0952:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_428 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_429;
|
|
L_429 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_428, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_430 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int64_class->byval_arg) };
|
|
Type_t* L_431;
|
|
L_431 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_430, NULL);
|
|
bool L_432;
|
|
L_432 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_429, L_431, NULL);
|
|
if (!L_432)
|
|
{
|
|
goto IL_099a;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_433 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_434 = ___0_value;
|
|
uint16_t L_435 = L_434;
|
|
RuntimeObject* L_436 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_435);
|
|
L_433->___int64_0 = ((*(int64_t*)UnBox(L_436, il2cpp_defaults.int64_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_437 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_438 = ___0_value;
|
|
uint16_t L_439 = L_438;
|
|
RuntimeObject* L_440 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_439);
|
|
L_437->___int64_1 = ((*(int64_t*)UnBox(L_440, il2cpp_defaults.int64_class)));
|
|
return;
|
|
}
|
|
|
|
IL_099a:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_441 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_442;
|
|
L_442 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_441, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_443 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.single_class->byval_arg) };
|
|
Type_t* L_444;
|
|
L_444 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_443, NULL);
|
|
bool L_445;
|
|
L_445 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_442, L_444, NULL);
|
|
if (!L_445)
|
|
{
|
|
goto IL_0a0e;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_446 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_447 = ___0_value;
|
|
uint16_t L_448 = L_447;
|
|
RuntimeObject* L_449 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_448);
|
|
L_446->___single_0 = ((*(float*)UnBox(L_449, il2cpp_defaults.single_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_450 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_451 = ___0_value;
|
|
uint16_t L_452 = L_451;
|
|
RuntimeObject* L_453 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_452);
|
|
L_450->___single_1 = ((*(float*)UnBox(L_453, il2cpp_defaults.single_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_454 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_455 = ___0_value;
|
|
uint16_t L_456 = L_455;
|
|
RuntimeObject* L_457 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_456);
|
|
L_454->___single_2 = ((*(float*)UnBox(L_457, il2cpp_defaults.single_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_458 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_459 = ___0_value;
|
|
uint16_t L_460 = L_459;
|
|
RuntimeObject* L_461 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_460);
|
|
L_458->___single_3 = ((*(float*)UnBox(L_461, il2cpp_defaults.single_class)));
|
|
return;
|
|
}
|
|
|
|
IL_0a0e:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_462 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_463;
|
|
L_463 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_462, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_464 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.double_class->byval_arg) };
|
|
Type_t* L_465;
|
|
L_465 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_464, NULL);
|
|
bool L_466;
|
|
L_466 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_463, L_465, NULL);
|
|
if (!L_466)
|
|
{
|
|
goto IL_0a55;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_467 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_468 = ___0_value;
|
|
uint16_t L_469 = L_468;
|
|
RuntimeObject* L_470 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_469);
|
|
L_467->___double_0 = ((*(double*)UnBox(L_470, il2cpp_defaults.double_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_471 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_472 = ___0_value;
|
|
uint16_t L_473 = L_472;
|
|
RuntimeObject* L_474 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_473);
|
|
L_471->___double_1 = ((*(double*)UnBox(L_474, il2cpp_defaults.double_class)));
|
|
}
|
|
|
|
IL_0a55:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void Vector_1__ctor_mDA4A6115C4120BFDD773FD4D3753FD3EC2B10427_AdjustorThunk (RuntimeObject* __this, uint16_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489*>(__this + _offset);
|
|
Vector_1__ctor_mDA4A6115C4120BFDD773FD4D3753FD3EC2B10427(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// Method Definition Index: 7870
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Vector_1__ctor_m46ADEA122EFBA7AEF487716891A8ADD284FD12E3_gshared (Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489* __this, void* ___0_dataPointer, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
void* L_0 = ___0_dataPointer;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
Vector_1__ctor_m8212BCFF76673CC904541B2D9AF39E5FF124B359(__this, L_0, 0, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 6));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void Vector_1__ctor_m46ADEA122EFBA7AEF487716891A8ADD284FD12E3_AdjustorThunk (RuntimeObject* __this, void* ___0_dataPointer, const RuntimeMethod* method)
|
|
{
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489*>(__this + _offset);
|
|
Vector_1__ctor_m46ADEA122EFBA7AEF487716891A8ADD284FD12E3(_thisAdjusted, ___0_dataPointer, method);
|
|
}
|
|
// Method Definition Index: 7871
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Vector_1__ctor_m8212BCFF76673CC904541B2D9AF39E5FF124B359_gshared (Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489* __this, void* ___0_dataPointer, int32_t ___1_offset, const RuntimeMethod* method)
|
|
{
|
|
uint8_t* V_0 = NULL;
|
|
uint8_t* V_1 = NULL;
|
|
uint8_t* V_2 = NULL;
|
|
int32_t V_3 = 0;
|
|
int8_t* V_4 = NULL;
|
|
int8_t* V_5 = NULL;
|
|
int8_t* V_6 = NULL;
|
|
int32_t V_7 = 0;
|
|
uint16_t* V_8 = NULL;
|
|
uint16_t* V_9 = NULL;
|
|
uint16_t* V_10 = NULL;
|
|
int32_t V_11 = 0;
|
|
int16_t* V_12 = NULL;
|
|
int16_t* V_13 = NULL;
|
|
int16_t* V_14 = NULL;
|
|
int32_t V_15 = 0;
|
|
uint32_t* V_16 = NULL;
|
|
uint32_t* V_17 = NULL;
|
|
uint32_t* V_18 = NULL;
|
|
int32_t V_19 = 0;
|
|
int32_t* V_20 = NULL;
|
|
int32_t* V_21 = NULL;
|
|
int32_t* V_22 = NULL;
|
|
int32_t V_23 = 0;
|
|
uint64_t* V_24 = NULL;
|
|
uint64_t* V_25 = NULL;
|
|
uint64_t* V_26 = NULL;
|
|
int32_t V_27 = 0;
|
|
int64_t* V_28 = NULL;
|
|
int64_t* V_29 = NULL;
|
|
int64_t* V_30 = NULL;
|
|
int32_t V_31 = 0;
|
|
float* V_32 = NULL;
|
|
float* V_33 = NULL;
|
|
float* V_34 = NULL;
|
|
int32_t V_35 = 0;
|
|
double* V_36 = NULL;
|
|
double* V_37 = NULL;
|
|
double* V_38 = NULL;
|
|
int32_t V_39 = 0;
|
|
{
|
|
il2cpp_codegen_initobj(__this, sizeof(Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489));
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_1;
|
|
L_1 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_0, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_2 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.byte_class->byval_arg) };
|
|
Type_t* L_3;
|
|
L_3 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_2, NULL);
|
|
bool L_4;
|
|
L_4 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_1, L_3, NULL);
|
|
if (!L_4)
|
|
{
|
|
goto IL_0053;
|
|
}
|
|
}
|
|
{
|
|
void* L_5 = ___0_dataPointer;
|
|
V_0 = (uint8_t*)L_5;
|
|
uint8_t* L_6 = V_0;
|
|
int32_t L_7 = ___1_offset;
|
|
V_0 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_6, L_7));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_8 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t* L_9 = (uint8_t*)(&L_8->___byte_0);
|
|
V_2 = L_9;
|
|
uint8_t* L_10 = V_2;
|
|
V_1 = (uint8_t*)((uintptr_t)L_10);
|
|
V_3 = 0;
|
|
goto IL_0047;
|
|
}
|
|
|
|
IL_003b:
|
|
{
|
|
uint8_t* L_11 = V_1;
|
|
int32_t L_12 = V_3;
|
|
uint8_t* L_13 = V_0;
|
|
int32_t L_14 = V_3;
|
|
int32_t L_15 = (*(((uint8_t*)il2cpp_codegen_add((intptr_t)L_13, L_14))));
|
|
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_11, L_12))) = (int8_t)L_15;
|
|
int32_t L_16 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_16, 1));
|
|
}
|
|
|
|
IL_0047:
|
|
{
|
|
int32_t L_17 = V_3;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_18;
|
|
L_18 = Vector_1_get_Count_m6DF09E4443FC90521D33C892BE69D32B04D85A15_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_17) < ((int32_t)L_18)))
|
|
{
|
|
goto IL_003b;
|
|
}
|
|
}
|
|
{
|
|
V_2 = (uint8_t*)((uintptr_t)0);
|
|
return;
|
|
}
|
|
|
|
IL_0053:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_19 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_20;
|
|
L_20 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_19, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_21 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.sbyte_class->byval_arg) };
|
|
Type_t* L_22;
|
|
L_22 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_21, NULL);
|
|
bool L_23;
|
|
L_23 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_20, L_22, NULL);
|
|
if (!L_23)
|
|
{
|
|
goto IL_00ae;
|
|
}
|
|
}
|
|
{
|
|
void* L_24 = ___0_dataPointer;
|
|
V_4 = (int8_t*)L_24;
|
|
int8_t* L_25 = V_4;
|
|
int32_t L_26 = ___1_offset;
|
|
V_4 = ((int8_t*)il2cpp_codegen_add((intptr_t)L_25, L_26));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_27 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t* L_28 = (int8_t*)(&L_27->___sbyte_0);
|
|
V_6 = L_28;
|
|
int8_t* L_29 = V_6;
|
|
V_5 = (int8_t*)((uintptr_t)L_29);
|
|
V_7 = 0;
|
|
goto IL_00a0;
|
|
}
|
|
|
|
IL_008e:
|
|
{
|
|
int8_t* L_30 = V_5;
|
|
int32_t L_31 = V_7;
|
|
int8_t* L_32 = V_4;
|
|
int32_t L_33 = V_7;
|
|
int32_t L_34 = (*(((int8_t*)il2cpp_codegen_add((intptr_t)L_32, L_33))));
|
|
*((int8_t*)((int8_t*)il2cpp_codegen_add((intptr_t)L_30, L_31))) = (int8_t)L_34;
|
|
int32_t L_35 = V_7;
|
|
V_7 = ((int32_t)il2cpp_codegen_add(L_35, 1));
|
|
}
|
|
|
|
IL_00a0:
|
|
{
|
|
int32_t L_36 = V_7;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_37;
|
|
L_37 = Vector_1_get_Count_m6DF09E4443FC90521D33C892BE69D32B04D85A15_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_36) < ((int32_t)L_37)))
|
|
{
|
|
goto IL_008e;
|
|
}
|
|
}
|
|
{
|
|
V_6 = (int8_t*)((uintptr_t)0);
|
|
return;
|
|
}
|
|
|
|
IL_00ae:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_38 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_39;
|
|
L_39 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_38, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_40 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint16_class->byval_arg) };
|
|
Type_t* L_41;
|
|
L_41 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_40, NULL);
|
|
bool L_42;
|
|
L_42 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_39, L_41, NULL);
|
|
if (!L_42)
|
|
{
|
|
goto IL_0112;
|
|
}
|
|
}
|
|
{
|
|
void* L_43 = ___0_dataPointer;
|
|
V_8 = (uint16_t*)L_43;
|
|
uint16_t* L_44 = V_8;
|
|
int32_t L_45 = ___1_offset;
|
|
V_8 = ((uint16_t*)il2cpp_codegen_add((intptr_t)L_44, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_45), 2))));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_46 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t* L_47 = (uint16_t*)(&L_46->___uint16_0);
|
|
V_10 = L_47;
|
|
uint16_t* L_48 = V_10;
|
|
V_9 = (uint16_t*)((uintptr_t)L_48);
|
|
V_11 = 0;
|
|
goto IL_0104;
|
|
}
|
|
|
|
IL_00ec:
|
|
{
|
|
uint16_t* L_49 = V_9;
|
|
int32_t L_50 = V_11;
|
|
uint16_t* L_51 = V_8;
|
|
int32_t L_52 = V_11;
|
|
int32_t L_53 = (*(((uint16_t*)il2cpp_codegen_add((intptr_t)L_51, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_52), 2))))));
|
|
*((int16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_49, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_50), 2))))) = (int16_t)L_53;
|
|
int32_t L_54 = V_11;
|
|
V_11 = ((int32_t)il2cpp_codegen_add(L_54, 1));
|
|
}
|
|
|
|
IL_0104:
|
|
{
|
|
int32_t L_55 = V_11;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_56;
|
|
L_56 = Vector_1_get_Count_m6DF09E4443FC90521D33C892BE69D32B04D85A15_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_55) < ((int32_t)L_56)))
|
|
{
|
|
goto IL_00ec;
|
|
}
|
|
}
|
|
{
|
|
V_10 = (uint16_t*)((uintptr_t)0);
|
|
return;
|
|
}
|
|
|
|
IL_0112:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_57 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_58;
|
|
L_58 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_57, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_59 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int16_class->byval_arg) };
|
|
Type_t* L_60;
|
|
L_60 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_59, NULL);
|
|
bool L_61;
|
|
L_61 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_58, L_60, NULL);
|
|
if (!L_61)
|
|
{
|
|
goto IL_0176;
|
|
}
|
|
}
|
|
{
|
|
void* L_62 = ___0_dataPointer;
|
|
V_12 = (int16_t*)L_62;
|
|
int16_t* L_63 = V_12;
|
|
int32_t L_64 = ___1_offset;
|
|
V_12 = ((int16_t*)il2cpp_codegen_add((intptr_t)L_63, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_64), 2))));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_65 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int16_t* L_66 = (int16_t*)(&L_65->___int16_0);
|
|
V_14 = L_66;
|
|
int16_t* L_67 = V_14;
|
|
V_13 = (int16_t*)((uintptr_t)L_67);
|
|
V_15 = 0;
|
|
goto IL_0168;
|
|
}
|
|
|
|
IL_0150:
|
|
{
|
|
int16_t* L_68 = V_13;
|
|
int32_t L_69 = V_15;
|
|
int16_t* L_70 = V_12;
|
|
int32_t L_71 = V_15;
|
|
int32_t L_72 = (*(((int16_t*)il2cpp_codegen_add((intptr_t)L_70, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_71), 2))))));
|
|
*((int16_t*)((int16_t*)il2cpp_codegen_add((intptr_t)L_68, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_69), 2))))) = (int16_t)L_72;
|
|
int32_t L_73 = V_15;
|
|
V_15 = ((int32_t)il2cpp_codegen_add(L_73, 1));
|
|
}
|
|
|
|
IL_0168:
|
|
{
|
|
int32_t L_74 = V_15;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_75;
|
|
L_75 = Vector_1_get_Count_m6DF09E4443FC90521D33C892BE69D32B04D85A15_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_74) < ((int32_t)L_75)))
|
|
{
|
|
goto IL_0150;
|
|
}
|
|
}
|
|
{
|
|
V_14 = (int16_t*)((uintptr_t)0);
|
|
return;
|
|
}
|
|
|
|
IL_0176:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_76 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_77;
|
|
L_77 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_76, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_78 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint32_class->byval_arg) };
|
|
Type_t* L_79;
|
|
L_79 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_78, NULL);
|
|
bool L_80;
|
|
L_80 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_77, L_79, NULL);
|
|
if (!L_80)
|
|
{
|
|
goto IL_01da;
|
|
}
|
|
}
|
|
{
|
|
void* L_81 = ___0_dataPointer;
|
|
V_16 = (uint32_t*)L_81;
|
|
uint32_t* L_82 = V_16;
|
|
int32_t L_83 = ___1_offset;
|
|
V_16 = ((uint32_t*)il2cpp_codegen_add((intptr_t)L_82, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_83), 4))));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_84 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint32_t* L_85 = (uint32_t*)(&L_84->___uint32_0);
|
|
V_18 = L_85;
|
|
uint32_t* L_86 = V_18;
|
|
V_17 = (uint32_t*)((uintptr_t)L_86);
|
|
V_19 = 0;
|
|
goto IL_01cc;
|
|
}
|
|
|
|
IL_01b4:
|
|
{
|
|
uint32_t* L_87 = V_17;
|
|
int32_t L_88 = V_19;
|
|
uint32_t* L_89 = V_16;
|
|
int32_t L_90 = V_19;
|
|
int32_t L_91 = (*(((uint32_t*)il2cpp_codegen_add((intptr_t)L_89, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_90), 4))))));
|
|
*((int32_t*)((uint32_t*)il2cpp_codegen_add((intptr_t)L_87, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_88), 4))))) = (int32_t)L_91;
|
|
int32_t L_92 = V_19;
|
|
V_19 = ((int32_t)il2cpp_codegen_add(L_92, 1));
|
|
}
|
|
|
|
IL_01cc:
|
|
{
|
|
int32_t L_93 = V_19;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_94;
|
|
L_94 = Vector_1_get_Count_m6DF09E4443FC90521D33C892BE69D32B04D85A15_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_93) < ((int32_t)L_94)))
|
|
{
|
|
goto IL_01b4;
|
|
}
|
|
}
|
|
{
|
|
V_18 = (uint32_t*)((uintptr_t)0);
|
|
return;
|
|
}
|
|
|
|
IL_01da:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_95 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_96;
|
|
L_96 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_95, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_97 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
Type_t* L_98;
|
|
L_98 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_97, NULL);
|
|
bool L_99;
|
|
L_99 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_96, L_98, NULL);
|
|
if (!L_99)
|
|
{
|
|
goto IL_023e;
|
|
}
|
|
}
|
|
{
|
|
void* L_100 = ___0_dataPointer;
|
|
V_20 = (int32_t*)L_100;
|
|
int32_t* L_101 = V_20;
|
|
int32_t L_102 = ___1_offset;
|
|
V_20 = ((int32_t*)il2cpp_codegen_add((intptr_t)L_101, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_102), 4))));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_103 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int32_t* L_104 = (int32_t*)(&L_103->___int32_0);
|
|
V_22 = L_104;
|
|
int32_t* L_105 = V_22;
|
|
V_21 = (int32_t*)((uintptr_t)L_105);
|
|
V_23 = 0;
|
|
goto IL_0230;
|
|
}
|
|
|
|
IL_0218:
|
|
{
|
|
int32_t* L_106 = V_21;
|
|
int32_t L_107 = V_23;
|
|
int32_t* L_108 = V_20;
|
|
int32_t L_109 = V_23;
|
|
int32_t L_110 = (*(((int32_t*)il2cpp_codegen_add((intptr_t)L_108, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_109), 4))))));
|
|
*((int32_t*)((int32_t*)il2cpp_codegen_add((intptr_t)L_106, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_107), 4))))) = (int32_t)L_110;
|
|
int32_t L_111 = V_23;
|
|
V_23 = ((int32_t)il2cpp_codegen_add(L_111, 1));
|
|
}
|
|
|
|
IL_0230:
|
|
{
|
|
int32_t L_112 = V_23;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_113;
|
|
L_113 = Vector_1_get_Count_m6DF09E4443FC90521D33C892BE69D32B04D85A15_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_112) < ((int32_t)L_113)))
|
|
{
|
|
goto IL_0218;
|
|
}
|
|
}
|
|
{
|
|
V_22 = (int32_t*)((uintptr_t)0);
|
|
return;
|
|
}
|
|
|
|
IL_023e:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_114 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_115;
|
|
L_115 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_114, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_116 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint64_class->byval_arg) };
|
|
Type_t* L_117;
|
|
L_117 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_116, NULL);
|
|
bool L_118;
|
|
L_118 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_115, L_117, NULL);
|
|
if (!L_118)
|
|
{
|
|
goto IL_02a2;
|
|
}
|
|
}
|
|
{
|
|
void* L_119 = ___0_dataPointer;
|
|
V_24 = (uint64_t*)L_119;
|
|
uint64_t* L_120 = V_24;
|
|
int32_t L_121 = ___1_offset;
|
|
V_24 = ((uint64_t*)il2cpp_codegen_add((intptr_t)L_120, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_121), 8))));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_122 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t* L_123 = (uint64_t*)(&L_122->___uint64_0);
|
|
V_26 = L_123;
|
|
uint64_t* L_124 = V_26;
|
|
V_25 = (uint64_t*)((uintptr_t)L_124);
|
|
V_27 = 0;
|
|
goto IL_0294;
|
|
}
|
|
|
|
IL_027c:
|
|
{
|
|
uint64_t* L_125 = V_25;
|
|
int32_t L_126 = V_27;
|
|
uint64_t* L_127 = V_24;
|
|
int32_t L_128 = V_27;
|
|
int64_t L_129 = *((int64_t*)((uint64_t*)il2cpp_codegen_add((intptr_t)L_127, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_128), 8)))));
|
|
*((int64_t*)((uint64_t*)il2cpp_codegen_add((intptr_t)L_125, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_126), 8))))) = (int64_t)L_129;
|
|
int32_t L_130 = V_27;
|
|
V_27 = ((int32_t)il2cpp_codegen_add(L_130, 1));
|
|
}
|
|
|
|
IL_0294:
|
|
{
|
|
int32_t L_131 = V_27;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_132;
|
|
L_132 = Vector_1_get_Count_m6DF09E4443FC90521D33C892BE69D32B04D85A15_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_131) < ((int32_t)L_132)))
|
|
{
|
|
goto IL_027c;
|
|
}
|
|
}
|
|
{
|
|
V_26 = (uint64_t*)((uintptr_t)0);
|
|
return;
|
|
}
|
|
|
|
IL_02a2:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_133 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_134;
|
|
L_134 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_133, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_135 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int64_class->byval_arg) };
|
|
Type_t* L_136;
|
|
L_136 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_135, NULL);
|
|
bool L_137;
|
|
L_137 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_134, L_136, NULL);
|
|
if (!L_137)
|
|
{
|
|
goto IL_0306;
|
|
}
|
|
}
|
|
{
|
|
void* L_138 = ___0_dataPointer;
|
|
V_28 = (int64_t*)L_138;
|
|
int64_t* L_139 = V_28;
|
|
int32_t L_140 = ___1_offset;
|
|
V_28 = ((int64_t*)il2cpp_codegen_add((intptr_t)L_139, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_140), 8))));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_141 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int64_t* L_142 = (int64_t*)(&L_141->___int64_0);
|
|
V_30 = L_142;
|
|
int64_t* L_143 = V_30;
|
|
V_29 = (int64_t*)((uintptr_t)L_143);
|
|
V_31 = 0;
|
|
goto IL_02f8;
|
|
}
|
|
|
|
IL_02e0:
|
|
{
|
|
int64_t* L_144 = V_29;
|
|
int32_t L_145 = V_31;
|
|
int64_t* L_146 = V_28;
|
|
int32_t L_147 = V_31;
|
|
int64_t L_148 = (*(((int64_t*)il2cpp_codegen_add((intptr_t)L_146, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_147), 8))))));
|
|
*((int64_t*)((int64_t*)il2cpp_codegen_add((intptr_t)L_144, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_145), 8))))) = (int64_t)L_148;
|
|
int32_t L_149 = V_31;
|
|
V_31 = ((int32_t)il2cpp_codegen_add(L_149, 1));
|
|
}
|
|
|
|
IL_02f8:
|
|
{
|
|
int32_t L_150 = V_31;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_151;
|
|
L_151 = Vector_1_get_Count_m6DF09E4443FC90521D33C892BE69D32B04D85A15_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_150) < ((int32_t)L_151)))
|
|
{
|
|
goto IL_02e0;
|
|
}
|
|
}
|
|
{
|
|
V_30 = (int64_t*)((uintptr_t)0);
|
|
return;
|
|
}
|
|
|
|
IL_0306:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_152 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_153;
|
|
L_153 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_152, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_154 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.single_class->byval_arg) };
|
|
Type_t* L_155;
|
|
L_155 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_154, NULL);
|
|
bool L_156;
|
|
L_156 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_153, L_155, NULL);
|
|
if (!L_156)
|
|
{
|
|
goto IL_036a;
|
|
}
|
|
}
|
|
{
|
|
void* L_157 = ___0_dataPointer;
|
|
V_32 = (float*)L_157;
|
|
float* L_158 = V_32;
|
|
int32_t L_159 = ___1_offset;
|
|
V_32 = ((float*)il2cpp_codegen_add((intptr_t)L_158, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_159), 4))));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_160 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
float* L_161 = (float*)(&L_160->___single_0);
|
|
V_34 = L_161;
|
|
float* L_162 = V_34;
|
|
V_33 = (float*)((uintptr_t)L_162);
|
|
V_35 = 0;
|
|
goto IL_035c;
|
|
}
|
|
|
|
IL_0344:
|
|
{
|
|
float* L_163 = V_33;
|
|
int32_t L_164 = V_35;
|
|
float* L_165 = V_32;
|
|
int32_t L_166 = V_35;
|
|
float L_167 = (*(((float*)il2cpp_codegen_add((intptr_t)L_165, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_166), 4))))));
|
|
*((float*)((float*)il2cpp_codegen_add((intptr_t)L_163, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_164), 4))))) = (float)L_167;
|
|
int32_t L_168 = V_35;
|
|
V_35 = ((int32_t)il2cpp_codegen_add(L_168, 1));
|
|
}
|
|
|
|
IL_035c:
|
|
{
|
|
int32_t L_169 = V_35;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_170;
|
|
L_170 = Vector_1_get_Count_m6DF09E4443FC90521D33C892BE69D32B04D85A15_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_169) < ((int32_t)L_170)))
|
|
{
|
|
goto IL_0344;
|
|
}
|
|
}
|
|
{
|
|
V_34 = (float*)((uintptr_t)0);
|
|
return;
|
|
}
|
|
|
|
IL_036a:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_171 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_172;
|
|
L_172 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_171, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_173 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.double_class->byval_arg) };
|
|
Type_t* L_174;
|
|
L_174 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_173, NULL);
|
|
bool L_175;
|
|
L_175 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_172, L_174, NULL);
|
|
if (!L_175)
|
|
{
|
|
goto IL_03ce;
|
|
}
|
|
}
|
|
{
|
|
void* L_176 = ___0_dataPointer;
|
|
V_36 = (double*)L_176;
|
|
double* L_177 = V_36;
|
|
int32_t L_178 = ___1_offset;
|
|
V_36 = ((double*)il2cpp_codegen_add((intptr_t)L_177, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_178), 8))));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_179 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
double* L_180 = (double*)(&L_179->___double_0);
|
|
V_38 = L_180;
|
|
double* L_181 = V_38;
|
|
V_37 = (double*)((uintptr_t)L_181);
|
|
V_39 = 0;
|
|
goto IL_03c0;
|
|
}
|
|
|
|
IL_03a8:
|
|
{
|
|
double* L_182 = V_37;
|
|
int32_t L_183 = V_39;
|
|
double* L_184 = V_36;
|
|
int32_t L_185 = V_39;
|
|
double L_186 = (*(((double*)il2cpp_codegen_add((intptr_t)L_184, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_185), 8))))));
|
|
*((double*)((double*)il2cpp_codegen_add((intptr_t)L_182, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_183), 8))))) = (double)L_186;
|
|
int32_t L_187 = V_39;
|
|
V_39 = ((int32_t)il2cpp_codegen_add(L_187, 1));
|
|
}
|
|
|
|
IL_03c0:
|
|
{
|
|
int32_t L_188 = V_39;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_189;
|
|
L_189 = Vector_1_get_Count_m6DF09E4443FC90521D33C892BE69D32B04D85A15_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_188) < ((int32_t)L_189)))
|
|
{
|
|
goto IL_03a8;
|
|
}
|
|
}
|
|
{
|
|
V_38 = (double*)((uintptr_t)0);
|
|
return;
|
|
}
|
|
|
|
IL_03ce:
|
|
{
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_190 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_190, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE310274B02A605A3985345944A620D7D2E019A1A)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_190, method);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void Vector_1__ctor_m8212BCFF76673CC904541B2D9AF39E5FF124B359_AdjustorThunk (RuntimeObject* __this, void* ___0_dataPointer, int32_t ___1_offset, const RuntimeMethod* method)
|
|
{
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489*>(__this + _offset);
|
|
Vector_1__ctor_m8212BCFF76673CC904541B2D9AF39E5FF124B359(_thisAdjusted, ___0_dataPointer, ___1_offset, method);
|
|
}
|
|
// Method Definition Index: 7872
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Vector_1__ctor_m48CD7847B9597F3193C9C0BA97ED64E276F4340A_gshared (Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489* __this, Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* ___0_existingRegister, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_0 = ___0_existingRegister;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_1 = (*(Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)L_0);
|
|
__this->___register = L_1;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void Vector_1__ctor_m48CD7847B9597F3193C9C0BA97ED64E276F4340A_AdjustorThunk (RuntimeObject* __this, Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* ___0_existingRegister, const RuntimeMethod* method)
|
|
{
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489*>(__this + _offset);
|
|
Vector_1__ctor_m48CD7847B9597F3193C9C0BA97ED64E276F4340A(_thisAdjusted, ___0_existingRegister, method);
|
|
}
|
|
// Method Definition Index: 7873
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Vector_1_get_Item_m248FFF521980A3A43D237B8C5CA2ABD5C62D4D27_gshared (Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
uint8_t* V_0 = NULL;
|
|
int8_t* V_1 = NULL;
|
|
uint16_t* V_2 = NULL;
|
|
int16_t* V_3 = NULL;
|
|
uint32_t* V_4 = NULL;
|
|
int32_t* V_5 = NULL;
|
|
uint64_t* V_6 = NULL;
|
|
int64_t* V_7 = NULL;
|
|
float* V_8 = NULL;
|
|
double* V_9 = NULL;
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_1;
|
|
L_1 = Vector_1_get_Count_m6DF09E4443FC90521D33C892BE69D32B04D85A15_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_0) >= ((int32_t)L_1)))
|
|
{
|
|
goto IL_000c;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2 = ___0_index;
|
|
if ((((int32_t)L_2) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
|
|
IL_000c:
|
|
{
|
|
int32_t L_3 = ___0_index;
|
|
int32_t L_4 = L_3;
|
|
RuntimeObject* L_5 = Box(il2cpp_defaults.int32_class, &L_4);
|
|
String_t* L_6;
|
|
L_6 = SR_Format_m9E8DC9AEFDC34AC67473EFAEAB78C5066C1A0D09(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral491788442E76F5D7830F0DBFCF8EDD98854F636F)), L_5, NULL);
|
|
IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82* L_7 = (IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82_il2cpp_TypeInfo_var)));
|
|
IndexOutOfRangeException__ctor_mFD06819F05B815BE2D6E826D4E04F4C449D0A425(L_7, L_6, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, method);
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_8 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_9;
|
|
L_9 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_8, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_10 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.byte_class->byval_arg) };
|
|
Type_t* L_11;
|
|
L_11 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_10, NULL);
|
|
bool L_12;
|
|
L_12 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_9, L_11, NULL);
|
|
if (!L_12)
|
|
{
|
|
goto IL_0059;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_13 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t* L_14 = (uint8_t*)(&L_13->___byte_0);
|
|
V_0 = L_14;
|
|
uint8_t* L_15 = V_0;
|
|
int32_t L_16 = ___0_index;
|
|
int32_t L_17 = *((uint8_t*)((intptr_t)il2cpp_codegen_add((intptr_t)((uintptr_t)L_15), L_16)));
|
|
uint8_t L_18 = ((uint8_t)L_17);
|
|
RuntimeObject* L_19 = Box(il2cpp_defaults.byte_class, &L_18);
|
|
return ((*(uint16_t*)UnBox(L_19, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_0059:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_20 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_21;
|
|
L_21 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_20, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_22 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.sbyte_class->byval_arg) };
|
|
Type_t* L_23;
|
|
L_23 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_22, NULL);
|
|
bool L_24;
|
|
L_24 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_21, L_23, NULL);
|
|
if (!L_24)
|
|
{
|
|
goto IL_0090;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_25 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t* L_26 = (int8_t*)(&L_25->___sbyte_0);
|
|
V_1 = L_26;
|
|
int8_t* L_27 = V_1;
|
|
int32_t L_28 = ___0_index;
|
|
int32_t L_29 = *((int8_t*)((intptr_t)il2cpp_codegen_add((intptr_t)((uintptr_t)L_27), L_28)));
|
|
int8_t L_30 = ((int8_t)L_29);
|
|
RuntimeObject* L_31 = Box(il2cpp_defaults.sbyte_class, &L_30);
|
|
return ((*(uint16_t*)UnBox(L_31, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_0090:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_32 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_33;
|
|
L_33 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_32, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_34 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint16_class->byval_arg) };
|
|
Type_t* L_35;
|
|
L_35 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_34, NULL);
|
|
bool L_36;
|
|
L_36 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_33, L_35, NULL);
|
|
if (!L_36)
|
|
{
|
|
goto IL_00ca;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_37 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t* L_38 = (uint16_t*)(&L_37->___uint16_0);
|
|
V_2 = L_38;
|
|
uint16_t* L_39 = V_2;
|
|
int32_t L_40 = ___0_index;
|
|
int32_t L_41 = *((uint16_t*)((intptr_t)il2cpp_codegen_add((intptr_t)((uintptr_t)L_39), ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_40), 2)))));
|
|
uint16_t L_42 = ((uint16_t)L_41);
|
|
RuntimeObject* L_43 = Box(il2cpp_defaults.uint16_class, &L_42);
|
|
return ((*(uint16_t*)UnBox(L_43, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_00ca:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_44 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_45;
|
|
L_45 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_44, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_46 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int16_class->byval_arg) };
|
|
Type_t* L_47;
|
|
L_47 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_46, NULL);
|
|
bool L_48;
|
|
L_48 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_45, L_47, NULL);
|
|
if (!L_48)
|
|
{
|
|
goto IL_0104;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_49 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int16_t* L_50 = (int16_t*)(&L_49->___int16_0);
|
|
V_3 = L_50;
|
|
int16_t* L_51 = V_3;
|
|
int32_t L_52 = ___0_index;
|
|
int32_t L_53 = *((int16_t*)((intptr_t)il2cpp_codegen_add((intptr_t)((uintptr_t)L_51), ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_52), 2)))));
|
|
int16_t L_54 = ((int16_t)L_53);
|
|
RuntimeObject* L_55 = Box(il2cpp_defaults.int16_class, &L_54);
|
|
return ((*(uint16_t*)UnBox(L_55, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_0104:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_56 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_57;
|
|
L_57 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_56, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_58 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint32_class->byval_arg) };
|
|
Type_t* L_59;
|
|
L_59 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_58, NULL);
|
|
bool L_60;
|
|
L_60 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_57, L_59, NULL);
|
|
if (!L_60)
|
|
{
|
|
goto IL_0140;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_61 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint32_t* L_62 = (uint32_t*)(&L_61->___uint32_0);
|
|
V_4 = L_62;
|
|
uint32_t* L_63 = V_4;
|
|
int32_t L_64 = ___0_index;
|
|
int32_t L_65 = *((uint32_t*)((intptr_t)il2cpp_codegen_add((intptr_t)((uintptr_t)L_63), ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_64), 4)))));
|
|
uint32_t L_66 = ((uint32_t)L_65);
|
|
RuntimeObject* L_67 = Box(il2cpp_defaults.uint32_class, &L_66);
|
|
return ((*(uint16_t*)UnBox(L_67, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_0140:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_68 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_69;
|
|
L_69 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_68, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_70 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
Type_t* L_71;
|
|
L_71 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_70, NULL);
|
|
bool L_72;
|
|
L_72 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_69, L_71, NULL);
|
|
if (!L_72)
|
|
{
|
|
goto IL_017c;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_73 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int32_t* L_74 = (int32_t*)(&L_73->___int32_0);
|
|
V_5 = L_74;
|
|
int32_t* L_75 = V_5;
|
|
int32_t L_76 = ___0_index;
|
|
int32_t L_77 = *((int32_t*)((intptr_t)il2cpp_codegen_add((intptr_t)((uintptr_t)L_75), ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_76), 4)))));
|
|
int32_t L_78 = L_77;
|
|
RuntimeObject* L_79 = Box(il2cpp_defaults.int32_class, &L_78);
|
|
return ((*(uint16_t*)UnBox(L_79, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_017c:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_80 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_81;
|
|
L_81 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_80, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_82 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint64_class->byval_arg) };
|
|
Type_t* L_83;
|
|
L_83 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_82, NULL);
|
|
bool L_84;
|
|
L_84 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_81, L_83, NULL);
|
|
if (!L_84)
|
|
{
|
|
goto IL_01b8;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_85 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t* L_86 = (uint64_t*)(&L_85->___uint64_0);
|
|
V_6 = L_86;
|
|
uint64_t* L_87 = V_6;
|
|
int32_t L_88 = ___0_index;
|
|
int64_t L_89 = *((int64_t*)((intptr_t)il2cpp_codegen_add((intptr_t)((uintptr_t)L_87), ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_88), 8)))));
|
|
uint64_t L_90 = ((uint64_t)L_89);
|
|
RuntimeObject* L_91 = Box(il2cpp_defaults.uint64_class, &L_90);
|
|
return ((*(uint16_t*)UnBox(L_91, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_01b8:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_92 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_93;
|
|
L_93 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_92, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_94 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int64_class->byval_arg) };
|
|
Type_t* L_95;
|
|
L_95 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_94, NULL);
|
|
bool L_96;
|
|
L_96 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_93, L_95, NULL);
|
|
if (!L_96)
|
|
{
|
|
goto IL_01f4;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_97 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int64_t* L_98 = (int64_t*)(&L_97->___int64_0);
|
|
V_7 = L_98;
|
|
int64_t* L_99 = V_7;
|
|
int32_t L_100 = ___0_index;
|
|
int64_t L_101 = *((int64_t*)((intptr_t)il2cpp_codegen_add((intptr_t)((uintptr_t)L_99), ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_100), 8)))));
|
|
int64_t L_102 = L_101;
|
|
RuntimeObject* L_103 = Box(il2cpp_defaults.int64_class, &L_102);
|
|
return ((*(uint16_t*)UnBox(L_103, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_01f4:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_104 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_105;
|
|
L_105 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_104, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_106 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.single_class->byval_arg) };
|
|
Type_t* L_107;
|
|
L_107 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_106, NULL);
|
|
bool L_108;
|
|
L_108 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_105, L_107, NULL);
|
|
if (!L_108)
|
|
{
|
|
goto IL_0230;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_109 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
float* L_110 = (float*)(&L_109->___single_0);
|
|
V_8 = L_110;
|
|
float* L_111 = V_8;
|
|
int32_t L_112 = ___0_index;
|
|
float L_113 = *((float*)((intptr_t)il2cpp_codegen_add((intptr_t)((uintptr_t)L_111), ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_112), 4)))));
|
|
float L_114 = L_113;
|
|
RuntimeObject* L_115 = Box(il2cpp_defaults.single_class, &L_114);
|
|
return ((*(uint16_t*)UnBox(L_115, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_0230:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_116 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_117;
|
|
L_117 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_116, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_118 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.double_class->byval_arg) };
|
|
Type_t* L_119;
|
|
L_119 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_118, NULL);
|
|
bool L_120;
|
|
L_120 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_117, L_119, NULL);
|
|
if (!L_120)
|
|
{
|
|
goto IL_026c;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_121 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
double* L_122 = (double*)(&L_121->___double_0);
|
|
V_9 = L_122;
|
|
double* L_123 = V_9;
|
|
int32_t L_124 = ___0_index;
|
|
double L_125 = *((double*)((intptr_t)il2cpp_codegen_add((intptr_t)((uintptr_t)L_123), ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_124), 8)))));
|
|
double L_126 = L_125;
|
|
RuntimeObject* L_127 = Box(il2cpp_defaults.double_class, &L_126);
|
|
return ((*(uint16_t*)UnBox(L_127, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_026c:
|
|
{
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_128 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_128, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE310274B02A605A3985345944A620D7D2E019A1A)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_128, method);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C uint16_t Vector_1_get_Item_m248FFF521980A3A43D237B8C5CA2ABD5C62D4D27_AdjustorThunk (RuntimeObject* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489*>(__this + _offset);
|
|
uint16_t _returnValue;
|
|
_returnValue = Vector_1_get_Item_m248FFF521980A3A43D237B8C5CA2ABD5C62D4D27(_thisAdjusted, ___0_index, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 7874
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Vector_1_Equals_mD7F4E0B493DD44E2685BC17F8D6EAD92342CBC29_gshared (Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = ___0_obj;
|
|
if (((RuntimeObject*)IsInstSealed((RuntimeObject*)L_0, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 0))))
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
RuntimeObject* L_1 = ___0_obj;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
bool L_2;
|
|
L_2 = Vector_1_Equals_m729FD34A0F43A7C8A8DF285BCED9B5B31D579FE8(__this, ((*(Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489*)UnBox(L_1, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 0)))), il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 7));
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool Vector_1_Equals_mD7F4E0B493DD44E2685BC17F8D6EAD92342CBC29_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = Vector_1_Equals_mD7F4E0B493DD44E2685BC17F8D6EAD92342CBC29_inline(_thisAdjusted, ___0_obj, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 7875
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Vector_1_Equals_m729FD34A0F43A7C8A8DF285BCED9B5B31D579FE8_gshared (Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489* __this, Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 ___0_other, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
bool L_0;
|
|
L_0 = Vector_get_IsHardwareAccelerated_m783509258751EBED64CBD9F387EC1BB4A15088AA(NULL);
|
|
if (!L_0)
|
|
{
|
|
goto IL_0031;
|
|
}
|
|
}
|
|
{
|
|
V_0 = 0;
|
|
goto IL_0027;
|
|
}
|
|
|
|
IL_000b:
|
|
{
|
|
int32_t L_1 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
uint16_t L_2;
|
|
L_2 = Vector_1_get_Item_m248FFF521980A3A43D237B8C5CA2ABD5C62D4D27(__this, L_1, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
int32_t L_3 = V_0;
|
|
uint16_t L_4;
|
|
L_4 = Vector_1_get_Item_m248FFF521980A3A43D237B8C5CA2ABD5C62D4D27((&___0_other), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
bool L_5;
|
|
L_5 = Vector_1_ScalarEquals_m4E13E30219B0D2AADB58AD6E5CB2B54B9FCBFAAE_inline(L_2, L_4, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 9));
|
|
if (L_5)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
int32_t L_6 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_6, 1));
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
int32_t L_7 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_8;
|
|
L_8 = Vector_1_get_Count_m6DF09E4443FC90521D33C892BE69D32B04D85A15_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_7) < ((int32_t)L_8)))
|
|
{
|
|
goto IL_000b;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_9 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_10;
|
|
L_10 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_9, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_11 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.byte_class->byval_arg) };
|
|
Type_t* L_12;
|
|
L_12 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_11, NULL);
|
|
bool L_13;
|
|
L_13 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_10, L_12, NULL);
|
|
if (!L_13)
|
|
{
|
|
goto IL_01f0;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_14 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t L_15 = L_14->___byte_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_16 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_17 = L_16.___register;
|
|
uint8_t L_18 = L_17.___byte_0;
|
|
if ((!(((uint32_t)L_15) == ((uint32_t)L_18))))
|
|
{
|
|
goto IL_01ee;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_19 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t L_20 = L_19->___byte_1;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_21 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_22 = L_21.___register;
|
|
uint8_t L_23 = L_22.___byte_1;
|
|
if ((!(((uint32_t)L_20) == ((uint32_t)L_23))))
|
|
{
|
|
goto IL_01ee;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_24 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t L_25 = L_24->___byte_2;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_26 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_27 = L_26.___register;
|
|
uint8_t L_28 = L_27.___byte_2;
|
|
if ((!(((uint32_t)L_25) == ((uint32_t)L_28))))
|
|
{
|
|
goto IL_01ee;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_29 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t L_30 = L_29->___byte_3;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_31 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_32 = L_31.___register;
|
|
uint8_t L_33 = L_32.___byte_3;
|
|
if ((!(((uint32_t)L_30) == ((uint32_t)L_33))))
|
|
{
|
|
goto IL_01ee;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_34 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t L_35 = L_34->___byte_4;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_36 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_37 = L_36.___register;
|
|
uint8_t L_38 = L_37.___byte_4;
|
|
if ((!(((uint32_t)L_35) == ((uint32_t)L_38))))
|
|
{
|
|
goto IL_01ee;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_39 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t L_40 = L_39->___byte_5;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_41 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_42 = L_41.___register;
|
|
uint8_t L_43 = L_42.___byte_5;
|
|
if ((!(((uint32_t)L_40) == ((uint32_t)L_43))))
|
|
{
|
|
goto IL_01ee;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_44 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t L_45 = L_44->___byte_6;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_46 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_47 = L_46.___register;
|
|
uint8_t L_48 = L_47.___byte_6;
|
|
if ((!(((uint32_t)L_45) == ((uint32_t)L_48))))
|
|
{
|
|
goto IL_01ee;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_49 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t L_50 = L_49->___byte_7;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_51 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_52 = L_51.___register;
|
|
uint8_t L_53 = L_52.___byte_7;
|
|
if ((!(((uint32_t)L_50) == ((uint32_t)L_53))))
|
|
{
|
|
goto IL_01ee;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_54 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t L_55 = L_54->___byte_8;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_56 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_57 = L_56.___register;
|
|
uint8_t L_58 = L_57.___byte_8;
|
|
if ((!(((uint32_t)L_55) == ((uint32_t)L_58))))
|
|
{
|
|
goto IL_01ee;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_59 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t L_60 = L_59->___byte_9;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_61 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_62 = L_61.___register;
|
|
uint8_t L_63 = L_62.___byte_9;
|
|
if ((!(((uint32_t)L_60) == ((uint32_t)L_63))))
|
|
{
|
|
goto IL_01ee;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_64 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t L_65 = L_64->___byte_10;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_66 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_67 = L_66.___register;
|
|
uint8_t L_68 = L_67.___byte_10;
|
|
if ((!(((uint32_t)L_65) == ((uint32_t)L_68))))
|
|
{
|
|
goto IL_01ee;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_69 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t L_70 = L_69->___byte_11;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_71 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_72 = L_71.___register;
|
|
uint8_t L_73 = L_72.___byte_11;
|
|
if ((!(((uint32_t)L_70) == ((uint32_t)L_73))))
|
|
{
|
|
goto IL_01ee;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_74 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t L_75 = L_74->___byte_12;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_76 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_77 = L_76.___register;
|
|
uint8_t L_78 = L_77.___byte_12;
|
|
if ((!(((uint32_t)L_75) == ((uint32_t)L_78))))
|
|
{
|
|
goto IL_01ee;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_79 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t L_80 = L_79->___byte_13;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_81 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_82 = L_81.___register;
|
|
uint8_t L_83 = L_82.___byte_13;
|
|
if ((!(((uint32_t)L_80) == ((uint32_t)L_83))))
|
|
{
|
|
goto IL_01ee;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_84 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t L_85 = L_84->___byte_14;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_86 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_87 = L_86.___register;
|
|
uint8_t L_88 = L_87.___byte_14;
|
|
if ((!(((uint32_t)L_85) == ((uint32_t)L_88))))
|
|
{
|
|
goto IL_01ee;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_89 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t L_90 = L_89->___byte_15;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_91 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_92 = L_91.___register;
|
|
uint8_t L_93 = L_92.___byte_15;
|
|
return (bool)((((int32_t)L_90) == ((int32_t)L_93))? 1 : 0);
|
|
}
|
|
|
|
IL_01ee:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_01f0:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_94 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_95;
|
|
L_95 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_94, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_96 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.sbyte_class->byval_arg) };
|
|
Type_t* L_97;
|
|
L_97 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_96, NULL);
|
|
bool L_98;
|
|
L_98 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_95, L_97, NULL);
|
|
if (!L_98)
|
|
{
|
|
goto IL_03af;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_99 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t L_100 = L_99->___sbyte_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_101 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_102 = L_101.___register;
|
|
int8_t L_103 = L_102.___sbyte_0;
|
|
if ((!(((uint32_t)L_100) == ((uint32_t)L_103))))
|
|
{
|
|
goto IL_03ad;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_104 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t L_105 = L_104->___sbyte_1;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_106 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_107 = L_106.___register;
|
|
int8_t L_108 = L_107.___sbyte_1;
|
|
if ((!(((uint32_t)L_105) == ((uint32_t)L_108))))
|
|
{
|
|
goto IL_03ad;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_109 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t L_110 = L_109->___sbyte_2;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_111 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_112 = L_111.___register;
|
|
int8_t L_113 = L_112.___sbyte_2;
|
|
if ((!(((uint32_t)L_110) == ((uint32_t)L_113))))
|
|
{
|
|
goto IL_03ad;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_114 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t L_115 = L_114->___sbyte_3;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_116 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_117 = L_116.___register;
|
|
int8_t L_118 = L_117.___sbyte_3;
|
|
if ((!(((uint32_t)L_115) == ((uint32_t)L_118))))
|
|
{
|
|
goto IL_03ad;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_119 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t L_120 = L_119->___sbyte_4;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_121 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_122 = L_121.___register;
|
|
int8_t L_123 = L_122.___sbyte_4;
|
|
if ((!(((uint32_t)L_120) == ((uint32_t)L_123))))
|
|
{
|
|
goto IL_03ad;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_124 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t L_125 = L_124->___sbyte_5;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_126 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_127 = L_126.___register;
|
|
int8_t L_128 = L_127.___sbyte_5;
|
|
if ((!(((uint32_t)L_125) == ((uint32_t)L_128))))
|
|
{
|
|
goto IL_03ad;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_129 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t L_130 = L_129->___sbyte_6;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_131 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_132 = L_131.___register;
|
|
int8_t L_133 = L_132.___sbyte_6;
|
|
if ((!(((uint32_t)L_130) == ((uint32_t)L_133))))
|
|
{
|
|
goto IL_03ad;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_134 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t L_135 = L_134->___sbyte_7;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_136 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_137 = L_136.___register;
|
|
int8_t L_138 = L_137.___sbyte_7;
|
|
if ((!(((uint32_t)L_135) == ((uint32_t)L_138))))
|
|
{
|
|
goto IL_03ad;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_139 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t L_140 = L_139->___sbyte_8;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_141 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_142 = L_141.___register;
|
|
int8_t L_143 = L_142.___sbyte_8;
|
|
if ((!(((uint32_t)L_140) == ((uint32_t)L_143))))
|
|
{
|
|
goto IL_03ad;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_144 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t L_145 = L_144->___sbyte_9;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_146 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_147 = L_146.___register;
|
|
int8_t L_148 = L_147.___sbyte_9;
|
|
if ((!(((uint32_t)L_145) == ((uint32_t)L_148))))
|
|
{
|
|
goto IL_03ad;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_149 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t L_150 = L_149->___sbyte_10;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_151 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_152 = L_151.___register;
|
|
int8_t L_153 = L_152.___sbyte_10;
|
|
if ((!(((uint32_t)L_150) == ((uint32_t)L_153))))
|
|
{
|
|
goto IL_03ad;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_154 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t L_155 = L_154->___sbyte_11;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_156 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_157 = L_156.___register;
|
|
int8_t L_158 = L_157.___sbyte_11;
|
|
if ((!(((uint32_t)L_155) == ((uint32_t)L_158))))
|
|
{
|
|
goto IL_03ad;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_159 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t L_160 = L_159->___sbyte_12;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_161 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_162 = L_161.___register;
|
|
int8_t L_163 = L_162.___sbyte_12;
|
|
if ((!(((uint32_t)L_160) == ((uint32_t)L_163))))
|
|
{
|
|
goto IL_03ad;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_164 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t L_165 = L_164->___sbyte_13;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_166 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_167 = L_166.___register;
|
|
int8_t L_168 = L_167.___sbyte_13;
|
|
if ((!(((uint32_t)L_165) == ((uint32_t)L_168))))
|
|
{
|
|
goto IL_03ad;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_169 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t L_170 = L_169->___sbyte_14;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_171 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_172 = L_171.___register;
|
|
int8_t L_173 = L_172.___sbyte_14;
|
|
if ((!(((uint32_t)L_170) == ((uint32_t)L_173))))
|
|
{
|
|
goto IL_03ad;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_174 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t L_175 = L_174->___sbyte_15;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_176 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_177 = L_176.___register;
|
|
int8_t L_178 = L_177.___sbyte_15;
|
|
return (bool)((((int32_t)L_175) == ((int32_t)L_178))? 1 : 0);
|
|
}
|
|
|
|
IL_03ad:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_03af:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_179 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_180;
|
|
L_180 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_179, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_181 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint16_class->byval_arg) };
|
|
Type_t* L_182;
|
|
L_182 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_181, NULL);
|
|
bool L_183;
|
|
L_183 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_180, L_182, NULL);
|
|
if (!L_183)
|
|
{
|
|
goto IL_0496;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_184 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_185 = L_184->___uint16_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_186 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_187 = L_186.___register;
|
|
uint16_t L_188 = L_187.___uint16_0;
|
|
if ((!(((uint32_t)L_185) == ((uint32_t)L_188))))
|
|
{
|
|
goto IL_0494;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_189 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_190 = L_189->___uint16_1;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_191 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_192 = L_191.___register;
|
|
uint16_t L_193 = L_192.___uint16_1;
|
|
if ((!(((uint32_t)L_190) == ((uint32_t)L_193))))
|
|
{
|
|
goto IL_0494;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_194 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_195 = L_194->___uint16_2;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_196 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_197 = L_196.___register;
|
|
uint16_t L_198 = L_197.___uint16_2;
|
|
if ((!(((uint32_t)L_195) == ((uint32_t)L_198))))
|
|
{
|
|
goto IL_0494;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_199 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_200 = L_199->___uint16_3;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_201 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_202 = L_201.___register;
|
|
uint16_t L_203 = L_202.___uint16_3;
|
|
if ((!(((uint32_t)L_200) == ((uint32_t)L_203))))
|
|
{
|
|
goto IL_0494;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_204 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_205 = L_204->___uint16_4;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_206 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_207 = L_206.___register;
|
|
uint16_t L_208 = L_207.___uint16_4;
|
|
if ((!(((uint32_t)L_205) == ((uint32_t)L_208))))
|
|
{
|
|
goto IL_0494;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_209 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_210 = L_209->___uint16_5;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_211 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_212 = L_211.___register;
|
|
uint16_t L_213 = L_212.___uint16_5;
|
|
if ((!(((uint32_t)L_210) == ((uint32_t)L_213))))
|
|
{
|
|
goto IL_0494;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_214 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_215 = L_214->___uint16_6;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_216 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_217 = L_216.___register;
|
|
uint16_t L_218 = L_217.___uint16_6;
|
|
if ((!(((uint32_t)L_215) == ((uint32_t)L_218))))
|
|
{
|
|
goto IL_0494;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_219 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_220 = L_219->___uint16_7;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_221 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_222 = L_221.___register;
|
|
uint16_t L_223 = L_222.___uint16_7;
|
|
return (bool)((((int32_t)L_220) == ((int32_t)L_223))? 1 : 0);
|
|
}
|
|
|
|
IL_0494:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0496:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_224 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_225;
|
|
L_225 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_224, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_226 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int16_class->byval_arg) };
|
|
Type_t* L_227;
|
|
L_227 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_226, NULL);
|
|
bool L_228;
|
|
L_228 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_225, L_227, NULL);
|
|
if (!L_228)
|
|
{
|
|
goto IL_057d;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_229 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int16_t L_230 = L_229->___int16_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_231 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_232 = L_231.___register;
|
|
int16_t L_233 = L_232.___int16_0;
|
|
if ((!(((uint32_t)L_230) == ((uint32_t)L_233))))
|
|
{
|
|
goto IL_057b;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_234 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int16_t L_235 = L_234->___int16_1;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_236 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_237 = L_236.___register;
|
|
int16_t L_238 = L_237.___int16_1;
|
|
if ((!(((uint32_t)L_235) == ((uint32_t)L_238))))
|
|
{
|
|
goto IL_057b;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_239 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int16_t L_240 = L_239->___int16_2;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_241 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_242 = L_241.___register;
|
|
int16_t L_243 = L_242.___int16_2;
|
|
if ((!(((uint32_t)L_240) == ((uint32_t)L_243))))
|
|
{
|
|
goto IL_057b;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_244 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int16_t L_245 = L_244->___int16_3;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_246 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_247 = L_246.___register;
|
|
int16_t L_248 = L_247.___int16_3;
|
|
if ((!(((uint32_t)L_245) == ((uint32_t)L_248))))
|
|
{
|
|
goto IL_057b;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_249 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int16_t L_250 = L_249->___int16_4;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_251 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_252 = L_251.___register;
|
|
int16_t L_253 = L_252.___int16_4;
|
|
if ((!(((uint32_t)L_250) == ((uint32_t)L_253))))
|
|
{
|
|
goto IL_057b;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_254 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int16_t L_255 = L_254->___int16_5;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_256 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_257 = L_256.___register;
|
|
int16_t L_258 = L_257.___int16_5;
|
|
if ((!(((uint32_t)L_255) == ((uint32_t)L_258))))
|
|
{
|
|
goto IL_057b;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_259 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int16_t L_260 = L_259->___int16_6;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_261 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_262 = L_261.___register;
|
|
int16_t L_263 = L_262.___int16_6;
|
|
if ((!(((uint32_t)L_260) == ((uint32_t)L_263))))
|
|
{
|
|
goto IL_057b;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_264 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int16_t L_265 = L_264->___int16_7;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_266 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_267 = L_266.___register;
|
|
int16_t L_268 = L_267.___int16_7;
|
|
return (bool)((((int32_t)L_265) == ((int32_t)L_268))? 1 : 0);
|
|
}
|
|
|
|
IL_057b:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_057d:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_269 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_270;
|
|
L_270 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_269, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_271 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint32_class->byval_arg) };
|
|
Type_t* L_272;
|
|
L_272 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_271, NULL);
|
|
bool L_273;
|
|
L_273 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_270, L_272, NULL);
|
|
if (!L_273)
|
|
{
|
|
goto IL_05fb;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_274 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint32_t L_275 = L_274->___uint32_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_276 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_277 = L_276.___register;
|
|
uint32_t L_278 = L_277.___uint32_0;
|
|
if ((!(((uint32_t)L_275) == ((uint32_t)L_278))))
|
|
{
|
|
goto IL_05f9;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_279 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint32_t L_280 = L_279->___uint32_1;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_281 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_282 = L_281.___register;
|
|
uint32_t L_283 = L_282.___uint32_1;
|
|
if ((!(((uint32_t)L_280) == ((uint32_t)L_283))))
|
|
{
|
|
goto IL_05f9;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_284 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint32_t L_285 = L_284->___uint32_2;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_286 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_287 = L_286.___register;
|
|
uint32_t L_288 = L_287.___uint32_2;
|
|
if ((!(((uint32_t)L_285) == ((uint32_t)L_288))))
|
|
{
|
|
goto IL_05f9;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_289 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint32_t L_290 = L_289->___uint32_3;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_291 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_292 = L_291.___register;
|
|
uint32_t L_293 = L_292.___uint32_3;
|
|
return (bool)((((int32_t)L_290) == ((int32_t)L_293))? 1 : 0);
|
|
}
|
|
|
|
IL_05f9:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_05fb:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_294 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_295;
|
|
L_295 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_294, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_296 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
Type_t* L_297;
|
|
L_297 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_296, NULL);
|
|
bool L_298;
|
|
L_298 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_295, L_297, NULL);
|
|
if (!L_298)
|
|
{
|
|
goto IL_0679;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_299 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int32_t L_300 = L_299->___int32_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_301 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_302 = L_301.___register;
|
|
int32_t L_303 = L_302.___int32_0;
|
|
if ((!(((uint32_t)L_300) == ((uint32_t)L_303))))
|
|
{
|
|
goto IL_0677;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_304 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int32_t L_305 = L_304->___int32_1;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_306 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_307 = L_306.___register;
|
|
int32_t L_308 = L_307.___int32_1;
|
|
if ((!(((uint32_t)L_305) == ((uint32_t)L_308))))
|
|
{
|
|
goto IL_0677;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_309 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int32_t L_310 = L_309->___int32_2;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_311 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_312 = L_311.___register;
|
|
int32_t L_313 = L_312.___int32_2;
|
|
if ((!(((uint32_t)L_310) == ((uint32_t)L_313))))
|
|
{
|
|
goto IL_0677;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_314 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int32_t L_315 = L_314->___int32_3;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_316 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_317 = L_316.___register;
|
|
int32_t L_318 = L_317.___int32_3;
|
|
return (bool)((((int32_t)L_315) == ((int32_t)L_318))? 1 : 0);
|
|
}
|
|
|
|
IL_0677:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0679:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_319 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_320;
|
|
L_320 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_319, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_321 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint64_class->byval_arg) };
|
|
Type_t* L_322;
|
|
L_322 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_321, NULL);
|
|
bool L_323;
|
|
L_323 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_320, L_322, NULL);
|
|
if (!L_323)
|
|
{
|
|
goto IL_06c7;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_324 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_325 = L_324->___uint64_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_326 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_327 = L_326.___register;
|
|
uint64_t L_328 = L_327.___uint64_0;
|
|
if ((!(((uint64_t)L_325) == ((uint64_t)L_328))))
|
|
{
|
|
goto IL_06c5;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_329 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_330 = L_329->___uint64_1;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_331 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_332 = L_331.___register;
|
|
uint64_t L_333 = L_332.___uint64_1;
|
|
return (bool)((((int64_t)L_330) == ((int64_t)L_333))? 1 : 0);
|
|
}
|
|
|
|
IL_06c5:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_06c7:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_334 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_335;
|
|
L_335 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_334, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_336 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int64_class->byval_arg) };
|
|
Type_t* L_337;
|
|
L_337 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_336, NULL);
|
|
bool L_338;
|
|
L_338 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_335, L_337, NULL);
|
|
if (!L_338)
|
|
{
|
|
goto IL_0715;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_339 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int64_t L_340 = L_339->___int64_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_341 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_342 = L_341.___register;
|
|
int64_t L_343 = L_342.___int64_0;
|
|
if ((!(((uint64_t)L_340) == ((uint64_t)L_343))))
|
|
{
|
|
goto IL_0713;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_344 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int64_t L_345 = L_344->___int64_1;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_346 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_347 = L_346.___register;
|
|
int64_t L_348 = L_347.___int64_1;
|
|
return (bool)((((int64_t)L_345) == ((int64_t)L_348))? 1 : 0);
|
|
}
|
|
|
|
IL_0713:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0715:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_349 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_350;
|
|
L_350 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_349, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_351 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.single_class->byval_arg) };
|
|
Type_t* L_352;
|
|
L_352 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_351, NULL);
|
|
bool L_353;
|
|
L_353 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_350, L_352, NULL);
|
|
if (!L_353)
|
|
{
|
|
goto IL_0793;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_354 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
float L_355 = L_354->___single_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_356 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_357 = L_356.___register;
|
|
float L_358 = L_357.___single_0;
|
|
if ((!(((float)L_355) == ((float)L_358))))
|
|
{
|
|
goto IL_0791;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_359 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
float L_360 = L_359->___single_1;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_361 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_362 = L_361.___register;
|
|
float L_363 = L_362.___single_1;
|
|
if ((!(((float)L_360) == ((float)L_363))))
|
|
{
|
|
goto IL_0791;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_364 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
float L_365 = L_364->___single_2;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_366 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_367 = L_366.___register;
|
|
float L_368 = L_367.___single_2;
|
|
if ((!(((float)L_365) == ((float)L_368))))
|
|
{
|
|
goto IL_0791;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_369 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
float L_370 = L_369->___single_3;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_371 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_372 = L_371.___register;
|
|
float L_373 = L_372.___single_3;
|
|
return (bool)((((float)L_370) == ((float)L_373))? 1 : 0);
|
|
}
|
|
|
|
IL_0791:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0793:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_374 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_375;
|
|
L_375 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_374, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_376 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.double_class->byval_arg) };
|
|
Type_t* L_377;
|
|
L_377 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_376, NULL);
|
|
bool L_378;
|
|
L_378 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_375, L_377, NULL);
|
|
if (!L_378)
|
|
{
|
|
goto IL_07e1;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_379 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
double L_380 = L_379->___double_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_381 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_382 = L_381.___register;
|
|
double L_383 = L_382.___double_0;
|
|
if ((!(((double)L_380) == ((double)L_383))))
|
|
{
|
|
goto IL_07df;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_384 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
double L_385 = L_384->___double_1;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_386 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_387 = L_386.___register;
|
|
double L_388 = L_387.___double_1;
|
|
return (bool)((((double)L_385) == ((double)L_388))? 1 : 0);
|
|
}
|
|
|
|
IL_07df:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_07e1:
|
|
{
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_389 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_389, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE310274B02A605A3985345944A620D7D2E019A1A)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_389, method);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool Vector_1_Equals_m729FD34A0F43A7C8A8DF285BCED9B5B31D579FE8_AdjustorThunk (RuntimeObject* __this, Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 ___0_other, const RuntimeMethod* method)
|
|
{
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = Vector_1_Equals_m729FD34A0F43A7C8A8DF285BCED9B5B31D579FE8(_thisAdjusted, ___0_other, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 7876
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Vector_1_GetHashCode_m3C7CFE908C6BB2DC94F94F7615F2D1AF0E2777D9_gshared (Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashHelpers_t285C6E63B4A4E8D837BDBC63DE4E2D23C85467D4_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
uint8_t V_2 = 0x0;
|
|
int32_t V_3 = 0;
|
|
int8_t V_4 = 0x0;
|
|
int32_t V_5 = 0;
|
|
uint16_t V_6 = 0;
|
|
int32_t V_7 = 0;
|
|
int16_t V_8 = 0;
|
|
int32_t V_9 = 0;
|
|
uint32_t V_10 = 0;
|
|
int32_t V_11 = 0;
|
|
int32_t V_12 = 0;
|
|
int32_t V_13 = 0;
|
|
uint64_t V_14 = 0;
|
|
int32_t V_15 = 0;
|
|
int64_t V_16 = 0;
|
|
int32_t V_17 = 0;
|
|
float V_18 = 0.0f;
|
|
int32_t V_19 = 0;
|
|
double V_20 = 0.0;
|
|
{
|
|
V_0 = 0;
|
|
bool L_0;
|
|
L_0 = Vector_get_IsHardwareAccelerated_m783509258751EBED64CBD9F387EC1BB4A15088AA(NULL);
|
|
if (!L_0)
|
|
{
|
|
goto IL_034a;
|
|
}
|
|
}
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_1 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_2;
|
|
L_2 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_1, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_3 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.byte_class->byval_arg) };
|
|
Type_t* L_4;
|
|
L_4 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_3, NULL);
|
|
bool L_5;
|
|
L_5 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_2, L_4, NULL);
|
|
if (!L_5)
|
|
{
|
|
goto IL_0059;
|
|
}
|
|
}
|
|
{
|
|
V_1 = 0;
|
|
goto IL_004f;
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
int32_t L_6 = V_0;
|
|
int32_t L_7 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
uint16_t L_8;
|
|
L_8 = Vector_1_get_Item_m248FFF521980A3A43D237B8C5CA2ABD5C62D4D27(__this, L_7, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
uint16_t L_9 = L_8;
|
|
RuntimeObject* L_10 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_9);
|
|
V_2 = ((*(uint8_t*)UnBox(L_10, il2cpp_defaults.byte_class)));
|
|
int32_t L_11;
|
|
L_11 = Byte_GetHashCode_mB42A844E310593D124CE92EBA90F3755C9B10678((&V_2), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(HashHelpers_t285C6E63B4A4E8D837BDBC63DE4E2D23C85467D4_il2cpp_TypeInfo_var);
|
|
int32_t L_12;
|
|
L_12 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_6, L_11, NULL);
|
|
V_0 = L_12;
|
|
int32_t L_13 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_13, 1));
|
|
}
|
|
|
|
IL_004f:
|
|
{
|
|
int32_t L_14 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_15;
|
|
L_15 = Vector_1_get_Count_m6DF09E4443FC90521D33C892BE69D32B04D85A15_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_14) < ((int32_t)L_15)))
|
|
{
|
|
goto IL_002b;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_16 = V_0;
|
|
return L_16;
|
|
}
|
|
|
|
IL_0059:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_17 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_18;
|
|
L_18 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_17, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_19 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.sbyte_class->byval_arg) };
|
|
Type_t* L_20;
|
|
L_20 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_19, NULL);
|
|
bool L_21;
|
|
L_21 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_18, L_20, NULL);
|
|
if (!L_21)
|
|
{
|
|
goto IL_00a7;
|
|
}
|
|
}
|
|
{
|
|
V_3 = 0;
|
|
goto IL_009d;
|
|
}
|
|
|
|
IL_0078:
|
|
{
|
|
int32_t L_22 = V_0;
|
|
int32_t L_23 = V_3;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
uint16_t L_24;
|
|
L_24 = Vector_1_get_Item_m248FFF521980A3A43D237B8C5CA2ABD5C62D4D27(__this, L_23, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
uint16_t L_25 = L_24;
|
|
RuntimeObject* L_26 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_25);
|
|
V_4 = ((*(int8_t*)UnBox(L_26, il2cpp_defaults.sbyte_class)));
|
|
int32_t L_27;
|
|
L_27 = SByte_GetHashCode_mE61E9B0D1D93EF3E4E2B6282FF940FFA2E471FFF((&V_4), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(HashHelpers_t285C6E63B4A4E8D837BDBC63DE4E2D23C85467D4_il2cpp_TypeInfo_var);
|
|
int32_t L_28;
|
|
L_28 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_22, L_27, NULL);
|
|
V_0 = L_28;
|
|
int32_t L_29 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_29, 1));
|
|
}
|
|
|
|
IL_009d:
|
|
{
|
|
int32_t L_30 = V_3;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_31;
|
|
L_31 = Vector_1_get_Count_m6DF09E4443FC90521D33C892BE69D32B04D85A15_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_30) < ((int32_t)L_31)))
|
|
{
|
|
goto IL_0078;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_32 = V_0;
|
|
return L_32;
|
|
}
|
|
|
|
IL_00a7:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_33 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_34;
|
|
L_34 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_33, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_35 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint16_class->byval_arg) };
|
|
Type_t* L_36;
|
|
L_36 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_35, NULL);
|
|
bool L_37;
|
|
L_37 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_34, L_36, NULL);
|
|
if (!L_37)
|
|
{
|
|
goto IL_00fa;
|
|
}
|
|
}
|
|
{
|
|
V_5 = 0;
|
|
goto IL_00ef;
|
|
}
|
|
|
|
IL_00c7:
|
|
{
|
|
int32_t L_38 = V_0;
|
|
int32_t L_39 = V_5;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
uint16_t L_40;
|
|
L_40 = Vector_1_get_Item_m248FFF521980A3A43D237B8C5CA2ABD5C62D4D27(__this, L_39, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
uint16_t L_41 = L_40;
|
|
RuntimeObject* L_42 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_41);
|
|
V_6 = ((*(uint16_t*)UnBox(L_42, il2cpp_defaults.uint16_class)));
|
|
int32_t L_43;
|
|
L_43 = UInt16_GetHashCode_m534E5103D0DA9C6FCED4F2F007993D3E38165200((&V_6), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(HashHelpers_t285C6E63B4A4E8D837BDBC63DE4E2D23C85467D4_il2cpp_TypeInfo_var);
|
|
int32_t L_44;
|
|
L_44 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_38, L_43, NULL);
|
|
V_0 = L_44;
|
|
int32_t L_45 = V_5;
|
|
V_5 = ((int32_t)il2cpp_codegen_add(L_45, 1));
|
|
}
|
|
|
|
IL_00ef:
|
|
{
|
|
int32_t L_46 = V_5;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_47;
|
|
L_47 = Vector_1_get_Count_m6DF09E4443FC90521D33C892BE69D32B04D85A15_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_46) < ((int32_t)L_47)))
|
|
{
|
|
goto IL_00c7;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_48 = V_0;
|
|
return L_48;
|
|
}
|
|
|
|
IL_00fa:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_49 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_50;
|
|
L_50 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_49, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_51 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int16_class->byval_arg) };
|
|
Type_t* L_52;
|
|
L_52 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_51, NULL);
|
|
bool L_53;
|
|
L_53 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_50, L_52, NULL);
|
|
if (!L_53)
|
|
{
|
|
goto IL_014d;
|
|
}
|
|
}
|
|
{
|
|
V_7 = 0;
|
|
goto IL_0142;
|
|
}
|
|
|
|
IL_011a:
|
|
{
|
|
int32_t L_54 = V_0;
|
|
int32_t L_55 = V_7;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
uint16_t L_56;
|
|
L_56 = Vector_1_get_Item_m248FFF521980A3A43D237B8C5CA2ABD5C62D4D27(__this, L_55, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
uint16_t L_57 = L_56;
|
|
RuntimeObject* L_58 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_57);
|
|
V_8 = ((*(int16_t*)UnBox(L_58, il2cpp_defaults.int16_class)));
|
|
int32_t L_59;
|
|
L_59 = Int16_GetHashCode_mCD0A167AC8E6ACC2235F12E00C0F9BDC6ED3B6E1((&V_8), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(HashHelpers_t285C6E63B4A4E8D837BDBC63DE4E2D23C85467D4_il2cpp_TypeInfo_var);
|
|
int32_t L_60;
|
|
L_60 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_54, L_59, NULL);
|
|
V_0 = L_60;
|
|
int32_t L_61 = V_7;
|
|
V_7 = ((int32_t)il2cpp_codegen_add(L_61, 1));
|
|
}
|
|
|
|
IL_0142:
|
|
{
|
|
int32_t L_62 = V_7;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_63;
|
|
L_63 = Vector_1_get_Count_m6DF09E4443FC90521D33C892BE69D32B04D85A15_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_62) < ((int32_t)L_63)))
|
|
{
|
|
goto IL_011a;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_64 = V_0;
|
|
return L_64;
|
|
}
|
|
|
|
IL_014d:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_65 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_66;
|
|
L_66 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_65, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_67 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint32_class->byval_arg) };
|
|
Type_t* L_68;
|
|
L_68 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_67, NULL);
|
|
bool L_69;
|
|
L_69 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_66, L_68, NULL);
|
|
if (!L_69)
|
|
{
|
|
goto IL_01a0;
|
|
}
|
|
}
|
|
{
|
|
V_9 = 0;
|
|
goto IL_0195;
|
|
}
|
|
|
|
IL_016d:
|
|
{
|
|
int32_t L_70 = V_0;
|
|
int32_t L_71 = V_9;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
uint16_t L_72;
|
|
L_72 = Vector_1_get_Item_m248FFF521980A3A43D237B8C5CA2ABD5C62D4D27(__this, L_71, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
uint16_t L_73 = L_72;
|
|
RuntimeObject* L_74 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_73);
|
|
V_10 = ((*(uint32_t*)UnBox(L_74, il2cpp_defaults.uint32_class)));
|
|
int32_t L_75;
|
|
L_75 = UInt32_GetHashCode_mB9A03A037C079ADF0E61516BECA1AB05F92266BC((&V_10), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(HashHelpers_t285C6E63B4A4E8D837BDBC63DE4E2D23C85467D4_il2cpp_TypeInfo_var);
|
|
int32_t L_76;
|
|
L_76 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_70, L_75, NULL);
|
|
V_0 = L_76;
|
|
int32_t L_77 = V_9;
|
|
V_9 = ((int32_t)il2cpp_codegen_add(L_77, 1));
|
|
}
|
|
|
|
IL_0195:
|
|
{
|
|
int32_t L_78 = V_9;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_79;
|
|
L_79 = Vector_1_get_Count_m6DF09E4443FC90521D33C892BE69D32B04D85A15_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_78) < ((int32_t)L_79)))
|
|
{
|
|
goto IL_016d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_80 = V_0;
|
|
return L_80;
|
|
}
|
|
|
|
IL_01a0:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_81 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_82;
|
|
L_82 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_81, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_83 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
Type_t* L_84;
|
|
L_84 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_83, NULL);
|
|
bool L_85;
|
|
L_85 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_82, L_84, NULL);
|
|
if (!L_85)
|
|
{
|
|
goto IL_01f3;
|
|
}
|
|
}
|
|
{
|
|
V_11 = 0;
|
|
goto IL_01e8;
|
|
}
|
|
|
|
IL_01c0:
|
|
{
|
|
int32_t L_86 = V_0;
|
|
int32_t L_87 = V_11;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
uint16_t L_88;
|
|
L_88 = Vector_1_get_Item_m248FFF521980A3A43D237B8C5CA2ABD5C62D4D27(__this, L_87, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
uint16_t L_89 = L_88;
|
|
RuntimeObject* L_90 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_89);
|
|
V_12 = ((*(int32_t*)UnBox(L_90, il2cpp_defaults.int32_class)));
|
|
int32_t L_91;
|
|
L_91 = Int32_GetHashCode_m253D60FF7527A483E91004B7A2366F13E225E295((&V_12), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(HashHelpers_t285C6E63B4A4E8D837BDBC63DE4E2D23C85467D4_il2cpp_TypeInfo_var);
|
|
int32_t L_92;
|
|
L_92 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_86, L_91, NULL);
|
|
V_0 = L_92;
|
|
int32_t L_93 = V_11;
|
|
V_11 = ((int32_t)il2cpp_codegen_add(L_93, 1));
|
|
}
|
|
|
|
IL_01e8:
|
|
{
|
|
int32_t L_94 = V_11;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_95;
|
|
L_95 = Vector_1_get_Count_m6DF09E4443FC90521D33C892BE69D32B04D85A15_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_94) < ((int32_t)L_95)))
|
|
{
|
|
goto IL_01c0;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_96 = V_0;
|
|
return L_96;
|
|
}
|
|
|
|
IL_01f3:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_97 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_98;
|
|
L_98 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_97, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_99 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint64_class->byval_arg) };
|
|
Type_t* L_100;
|
|
L_100 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_99, NULL);
|
|
bool L_101;
|
|
L_101 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_98, L_100, NULL);
|
|
if (!L_101)
|
|
{
|
|
goto IL_0246;
|
|
}
|
|
}
|
|
{
|
|
V_13 = 0;
|
|
goto IL_023b;
|
|
}
|
|
|
|
IL_0213:
|
|
{
|
|
int32_t L_102 = V_0;
|
|
int32_t L_103 = V_13;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
uint16_t L_104;
|
|
L_104 = Vector_1_get_Item_m248FFF521980A3A43D237B8C5CA2ABD5C62D4D27(__this, L_103, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
uint16_t L_105 = L_104;
|
|
RuntimeObject* L_106 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_105);
|
|
V_14 = ((*(uint64_t*)UnBox(L_106, il2cpp_defaults.uint64_class)));
|
|
int32_t L_107;
|
|
L_107 = UInt64_GetHashCode_m65D9FD0102B6B01BF38D986F060F0BDBC29B4F92((&V_14), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(HashHelpers_t285C6E63B4A4E8D837BDBC63DE4E2D23C85467D4_il2cpp_TypeInfo_var);
|
|
int32_t L_108;
|
|
L_108 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_102, L_107, NULL);
|
|
V_0 = L_108;
|
|
int32_t L_109 = V_13;
|
|
V_13 = ((int32_t)il2cpp_codegen_add(L_109, 1));
|
|
}
|
|
|
|
IL_023b:
|
|
{
|
|
int32_t L_110 = V_13;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_111;
|
|
L_111 = Vector_1_get_Count_m6DF09E4443FC90521D33C892BE69D32B04D85A15_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_110) < ((int32_t)L_111)))
|
|
{
|
|
goto IL_0213;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_112 = V_0;
|
|
return L_112;
|
|
}
|
|
|
|
IL_0246:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_113 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_114;
|
|
L_114 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_113, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_115 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int64_class->byval_arg) };
|
|
Type_t* L_116;
|
|
L_116 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_115, NULL);
|
|
bool L_117;
|
|
L_117 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_114, L_116, NULL);
|
|
if (!L_117)
|
|
{
|
|
goto IL_0299;
|
|
}
|
|
}
|
|
{
|
|
V_15 = 0;
|
|
goto IL_028e;
|
|
}
|
|
|
|
IL_0266:
|
|
{
|
|
int32_t L_118 = V_0;
|
|
int32_t L_119 = V_15;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
uint16_t L_120;
|
|
L_120 = Vector_1_get_Item_m248FFF521980A3A43D237B8C5CA2ABD5C62D4D27(__this, L_119, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
uint16_t L_121 = L_120;
|
|
RuntimeObject* L_122 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_121);
|
|
V_16 = ((*(int64_t*)UnBox(L_122, il2cpp_defaults.int64_class)));
|
|
int32_t L_123;
|
|
L_123 = Int64_GetHashCode_mDB050BE2AC244D92B14D1DF725AAD279CDC48496((&V_16), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(HashHelpers_t285C6E63B4A4E8D837BDBC63DE4E2D23C85467D4_il2cpp_TypeInfo_var);
|
|
int32_t L_124;
|
|
L_124 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_118, L_123, NULL);
|
|
V_0 = L_124;
|
|
int32_t L_125 = V_15;
|
|
V_15 = ((int32_t)il2cpp_codegen_add(L_125, 1));
|
|
}
|
|
|
|
IL_028e:
|
|
{
|
|
int32_t L_126 = V_15;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_127;
|
|
L_127 = Vector_1_get_Count_m6DF09E4443FC90521D33C892BE69D32B04D85A15_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_126) < ((int32_t)L_127)))
|
|
{
|
|
goto IL_0266;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_128 = V_0;
|
|
return L_128;
|
|
}
|
|
|
|
IL_0299:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_129 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_130;
|
|
L_130 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_129, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_131 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.single_class->byval_arg) };
|
|
Type_t* L_132;
|
|
L_132 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_131, NULL);
|
|
bool L_133;
|
|
L_133 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_130, L_132, NULL);
|
|
if (!L_133)
|
|
{
|
|
goto IL_02ec;
|
|
}
|
|
}
|
|
{
|
|
V_17 = 0;
|
|
goto IL_02e1;
|
|
}
|
|
|
|
IL_02b9:
|
|
{
|
|
int32_t L_134 = V_0;
|
|
int32_t L_135 = V_17;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
uint16_t L_136;
|
|
L_136 = Vector_1_get_Item_m248FFF521980A3A43D237B8C5CA2ABD5C62D4D27(__this, L_135, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
uint16_t L_137 = L_136;
|
|
RuntimeObject* L_138 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_137);
|
|
V_18 = ((*(float*)UnBox(L_138, il2cpp_defaults.single_class)));
|
|
int32_t L_139;
|
|
L_139 = Single_GetHashCode_mC3F1E099D1CF165C2D71FBCC5EF6A6792F9021D2((&V_18), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(HashHelpers_t285C6E63B4A4E8D837BDBC63DE4E2D23C85467D4_il2cpp_TypeInfo_var);
|
|
int32_t L_140;
|
|
L_140 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_134, L_139, NULL);
|
|
V_0 = L_140;
|
|
int32_t L_141 = V_17;
|
|
V_17 = ((int32_t)il2cpp_codegen_add(L_141, 1));
|
|
}
|
|
|
|
IL_02e1:
|
|
{
|
|
int32_t L_142 = V_17;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_143;
|
|
L_143 = Vector_1_get_Count_m6DF09E4443FC90521D33C892BE69D32B04D85A15_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_142) < ((int32_t)L_143)))
|
|
{
|
|
goto IL_02b9;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_144 = V_0;
|
|
return L_144;
|
|
}
|
|
|
|
IL_02ec:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_145 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_146;
|
|
L_146 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_145, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_147 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.double_class->byval_arg) };
|
|
Type_t* L_148;
|
|
L_148 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_147, NULL);
|
|
bool L_149;
|
|
L_149 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_146, L_148, NULL);
|
|
if (!L_149)
|
|
{
|
|
goto IL_033f;
|
|
}
|
|
}
|
|
{
|
|
V_19 = 0;
|
|
goto IL_0334;
|
|
}
|
|
|
|
IL_030c:
|
|
{
|
|
int32_t L_150 = V_0;
|
|
int32_t L_151 = V_19;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
uint16_t L_152;
|
|
L_152 = Vector_1_get_Item_m248FFF521980A3A43D237B8C5CA2ABD5C62D4D27(__this, L_151, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
uint16_t L_153 = L_152;
|
|
RuntimeObject* L_154 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_153);
|
|
V_20 = ((*(double*)UnBox(L_154, il2cpp_defaults.double_class)));
|
|
int32_t L_155;
|
|
L_155 = Double_GetHashCode_m3761FC05AD24D97A68FA1E8412A9454DF3880E32_inline((&V_20), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(HashHelpers_t285C6E63B4A4E8D837BDBC63DE4E2D23C85467D4_il2cpp_TypeInfo_var);
|
|
int32_t L_156;
|
|
L_156 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_150, L_155, NULL);
|
|
V_0 = L_156;
|
|
int32_t L_157 = V_19;
|
|
V_19 = ((int32_t)il2cpp_codegen_add(L_157, 1));
|
|
}
|
|
|
|
IL_0334:
|
|
{
|
|
int32_t L_158 = V_19;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_159;
|
|
L_159 = Vector_1_get_Count_m6DF09E4443FC90521D33C892BE69D32B04D85A15_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_158) < ((int32_t)L_159)))
|
|
{
|
|
goto IL_030c;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_160 = V_0;
|
|
return L_160;
|
|
}
|
|
|
|
IL_033f:
|
|
{
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_161 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_161, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE310274B02A605A3985345944A620D7D2E019A1A)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_161, method);
|
|
}
|
|
|
|
IL_034a:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_162 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_163;
|
|
L_163 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_162, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_164 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.byte_class->byval_arg) };
|
|
Type_t* L_165;
|
|
L_165 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_164, NULL);
|
|
bool L_166;
|
|
L_166 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_163, L_165, NULL);
|
|
if (!L_166)
|
|
{
|
|
goto IL_04da;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_167 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_168 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t* L_169 = (uint8_t*)(&L_168->___byte_0);
|
|
int32_t L_170;
|
|
L_170 = Byte_GetHashCode_mB42A844E310593D124CE92EBA90F3755C9B10678(L_169, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(HashHelpers_t285C6E63B4A4E8D837BDBC63DE4E2D23C85467D4_il2cpp_TypeInfo_var);
|
|
int32_t L_171;
|
|
L_171 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_167, L_170, NULL);
|
|
V_0 = L_171;
|
|
int32_t L_172 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_173 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t* L_174 = (uint8_t*)(&L_173->___byte_1);
|
|
int32_t L_175;
|
|
L_175 = Byte_GetHashCode_mB42A844E310593D124CE92EBA90F3755C9B10678(L_174, NULL);
|
|
int32_t L_176;
|
|
L_176 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_172, L_175, NULL);
|
|
V_0 = L_176;
|
|
int32_t L_177 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_178 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t* L_179 = (uint8_t*)(&L_178->___byte_2);
|
|
int32_t L_180;
|
|
L_180 = Byte_GetHashCode_mB42A844E310593D124CE92EBA90F3755C9B10678(L_179, NULL);
|
|
int32_t L_181;
|
|
L_181 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_177, L_180, NULL);
|
|
V_0 = L_181;
|
|
int32_t L_182 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_183 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t* L_184 = (uint8_t*)(&L_183->___byte_3);
|
|
int32_t L_185;
|
|
L_185 = Byte_GetHashCode_mB42A844E310593D124CE92EBA90F3755C9B10678(L_184, NULL);
|
|
int32_t L_186;
|
|
L_186 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_182, L_185, NULL);
|
|
V_0 = L_186;
|
|
int32_t L_187 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_188 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t* L_189 = (uint8_t*)(&L_188->___byte_4);
|
|
int32_t L_190;
|
|
L_190 = Byte_GetHashCode_mB42A844E310593D124CE92EBA90F3755C9B10678(L_189, NULL);
|
|
int32_t L_191;
|
|
L_191 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_187, L_190, NULL);
|
|
V_0 = L_191;
|
|
int32_t L_192 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_193 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t* L_194 = (uint8_t*)(&L_193->___byte_5);
|
|
int32_t L_195;
|
|
L_195 = Byte_GetHashCode_mB42A844E310593D124CE92EBA90F3755C9B10678(L_194, NULL);
|
|
int32_t L_196;
|
|
L_196 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_192, L_195, NULL);
|
|
V_0 = L_196;
|
|
int32_t L_197 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_198 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t* L_199 = (uint8_t*)(&L_198->___byte_6);
|
|
int32_t L_200;
|
|
L_200 = Byte_GetHashCode_mB42A844E310593D124CE92EBA90F3755C9B10678(L_199, NULL);
|
|
int32_t L_201;
|
|
L_201 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_197, L_200, NULL);
|
|
V_0 = L_201;
|
|
int32_t L_202 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_203 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t* L_204 = (uint8_t*)(&L_203->___byte_7);
|
|
int32_t L_205;
|
|
L_205 = Byte_GetHashCode_mB42A844E310593D124CE92EBA90F3755C9B10678(L_204, NULL);
|
|
int32_t L_206;
|
|
L_206 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_202, L_205, NULL);
|
|
V_0 = L_206;
|
|
int32_t L_207 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_208 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t* L_209 = (uint8_t*)(&L_208->___byte_8);
|
|
int32_t L_210;
|
|
L_210 = Byte_GetHashCode_mB42A844E310593D124CE92EBA90F3755C9B10678(L_209, NULL);
|
|
int32_t L_211;
|
|
L_211 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_207, L_210, NULL);
|
|
V_0 = L_211;
|
|
int32_t L_212 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_213 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t* L_214 = (uint8_t*)(&L_213->___byte_9);
|
|
int32_t L_215;
|
|
L_215 = Byte_GetHashCode_mB42A844E310593D124CE92EBA90F3755C9B10678(L_214, NULL);
|
|
int32_t L_216;
|
|
L_216 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_212, L_215, NULL);
|
|
V_0 = L_216;
|
|
int32_t L_217 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_218 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t* L_219 = (uint8_t*)(&L_218->___byte_10);
|
|
int32_t L_220;
|
|
L_220 = Byte_GetHashCode_mB42A844E310593D124CE92EBA90F3755C9B10678(L_219, NULL);
|
|
int32_t L_221;
|
|
L_221 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_217, L_220, NULL);
|
|
V_0 = L_221;
|
|
int32_t L_222 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_223 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t* L_224 = (uint8_t*)(&L_223->___byte_11);
|
|
int32_t L_225;
|
|
L_225 = Byte_GetHashCode_mB42A844E310593D124CE92EBA90F3755C9B10678(L_224, NULL);
|
|
int32_t L_226;
|
|
L_226 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_222, L_225, NULL);
|
|
V_0 = L_226;
|
|
int32_t L_227 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_228 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t* L_229 = (uint8_t*)(&L_228->___byte_12);
|
|
int32_t L_230;
|
|
L_230 = Byte_GetHashCode_mB42A844E310593D124CE92EBA90F3755C9B10678(L_229, NULL);
|
|
int32_t L_231;
|
|
L_231 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_227, L_230, NULL);
|
|
V_0 = L_231;
|
|
int32_t L_232 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_233 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t* L_234 = (uint8_t*)(&L_233->___byte_13);
|
|
int32_t L_235;
|
|
L_235 = Byte_GetHashCode_mB42A844E310593D124CE92EBA90F3755C9B10678(L_234, NULL);
|
|
int32_t L_236;
|
|
L_236 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_232, L_235, NULL);
|
|
V_0 = L_236;
|
|
int32_t L_237 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_238 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t* L_239 = (uint8_t*)(&L_238->___byte_14);
|
|
int32_t L_240;
|
|
L_240 = Byte_GetHashCode_mB42A844E310593D124CE92EBA90F3755C9B10678(L_239, NULL);
|
|
int32_t L_241;
|
|
L_241 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_237, L_240, NULL);
|
|
V_0 = L_241;
|
|
int32_t L_242 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_243 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t* L_244 = (uint8_t*)(&L_243->___byte_15);
|
|
int32_t L_245;
|
|
L_245 = Byte_GetHashCode_mB42A844E310593D124CE92EBA90F3755C9B10678(L_244, NULL);
|
|
int32_t L_246;
|
|
L_246 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_242, L_245, NULL);
|
|
V_0 = L_246;
|
|
int32_t L_247 = V_0;
|
|
return L_247;
|
|
}
|
|
|
|
IL_04da:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_248 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_249;
|
|
L_249 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_248, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_250 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.sbyte_class->byval_arg) };
|
|
Type_t* L_251;
|
|
L_251 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_250, NULL);
|
|
bool L_252;
|
|
L_252 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_249, L_251, NULL);
|
|
if (!L_252)
|
|
{
|
|
goto IL_066a;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_253 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_254 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t* L_255 = (int8_t*)(&L_254->___sbyte_0);
|
|
int32_t L_256;
|
|
L_256 = SByte_GetHashCode_mE61E9B0D1D93EF3E4E2B6282FF940FFA2E471FFF(L_255, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(HashHelpers_t285C6E63B4A4E8D837BDBC63DE4E2D23C85467D4_il2cpp_TypeInfo_var);
|
|
int32_t L_257;
|
|
L_257 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_253, L_256, NULL);
|
|
V_0 = L_257;
|
|
int32_t L_258 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_259 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t* L_260 = (int8_t*)(&L_259->___sbyte_1);
|
|
int32_t L_261;
|
|
L_261 = SByte_GetHashCode_mE61E9B0D1D93EF3E4E2B6282FF940FFA2E471FFF(L_260, NULL);
|
|
int32_t L_262;
|
|
L_262 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_258, L_261, NULL);
|
|
V_0 = L_262;
|
|
int32_t L_263 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_264 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t* L_265 = (int8_t*)(&L_264->___sbyte_2);
|
|
int32_t L_266;
|
|
L_266 = SByte_GetHashCode_mE61E9B0D1D93EF3E4E2B6282FF940FFA2E471FFF(L_265, NULL);
|
|
int32_t L_267;
|
|
L_267 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_263, L_266, NULL);
|
|
V_0 = L_267;
|
|
int32_t L_268 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_269 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t* L_270 = (int8_t*)(&L_269->___sbyte_3);
|
|
int32_t L_271;
|
|
L_271 = SByte_GetHashCode_mE61E9B0D1D93EF3E4E2B6282FF940FFA2E471FFF(L_270, NULL);
|
|
int32_t L_272;
|
|
L_272 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_268, L_271, NULL);
|
|
V_0 = L_272;
|
|
int32_t L_273 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_274 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t* L_275 = (int8_t*)(&L_274->___sbyte_4);
|
|
int32_t L_276;
|
|
L_276 = SByte_GetHashCode_mE61E9B0D1D93EF3E4E2B6282FF940FFA2E471FFF(L_275, NULL);
|
|
int32_t L_277;
|
|
L_277 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_273, L_276, NULL);
|
|
V_0 = L_277;
|
|
int32_t L_278 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_279 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t* L_280 = (int8_t*)(&L_279->___sbyte_5);
|
|
int32_t L_281;
|
|
L_281 = SByte_GetHashCode_mE61E9B0D1D93EF3E4E2B6282FF940FFA2E471FFF(L_280, NULL);
|
|
int32_t L_282;
|
|
L_282 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_278, L_281, NULL);
|
|
V_0 = L_282;
|
|
int32_t L_283 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_284 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t* L_285 = (int8_t*)(&L_284->___sbyte_6);
|
|
int32_t L_286;
|
|
L_286 = SByte_GetHashCode_mE61E9B0D1D93EF3E4E2B6282FF940FFA2E471FFF(L_285, NULL);
|
|
int32_t L_287;
|
|
L_287 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_283, L_286, NULL);
|
|
V_0 = L_287;
|
|
int32_t L_288 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_289 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t* L_290 = (int8_t*)(&L_289->___sbyte_7);
|
|
int32_t L_291;
|
|
L_291 = SByte_GetHashCode_mE61E9B0D1D93EF3E4E2B6282FF940FFA2E471FFF(L_290, NULL);
|
|
int32_t L_292;
|
|
L_292 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_288, L_291, NULL);
|
|
V_0 = L_292;
|
|
int32_t L_293 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_294 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t* L_295 = (int8_t*)(&L_294->___sbyte_8);
|
|
int32_t L_296;
|
|
L_296 = SByte_GetHashCode_mE61E9B0D1D93EF3E4E2B6282FF940FFA2E471FFF(L_295, NULL);
|
|
int32_t L_297;
|
|
L_297 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_293, L_296, NULL);
|
|
V_0 = L_297;
|
|
int32_t L_298 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_299 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t* L_300 = (int8_t*)(&L_299->___sbyte_9);
|
|
int32_t L_301;
|
|
L_301 = SByte_GetHashCode_mE61E9B0D1D93EF3E4E2B6282FF940FFA2E471FFF(L_300, NULL);
|
|
int32_t L_302;
|
|
L_302 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_298, L_301, NULL);
|
|
V_0 = L_302;
|
|
int32_t L_303 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_304 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t* L_305 = (int8_t*)(&L_304->___sbyte_10);
|
|
int32_t L_306;
|
|
L_306 = SByte_GetHashCode_mE61E9B0D1D93EF3E4E2B6282FF940FFA2E471FFF(L_305, NULL);
|
|
int32_t L_307;
|
|
L_307 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_303, L_306, NULL);
|
|
V_0 = L_307;
|
|
int32_t L_308 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_309 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t* L_310 = (int8_t*)(&L_309->___sbyte_11);
|
|
int32_t L_311;
|
|
L_311 = SByte_GetHashCode_mE61E9B0D1D93EF3E4E2B6282FF940FFA2E471FFF(L_310, NULL);
|
|
int32_t L_312;
|
|
L_312 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_308, L_311, NULL);
|
|
V_0 = L_312;
|
|
int32_t L_313 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_314 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t* L_315 = (int8_t*)(&L_314->___sbyte_12);
|
|
int32_t L_316;
|
|
L_316 = SByte_GetHashCode_mE61E9B0D1D93EF3E4E2B6282FF940FFA2E471FFF(L_315, NULL);
|
|
int32_t L_317;
|
|
L_317 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_313, L_316, NULL);
|
|
V_0 = L_317;
|
|
int32_t L_318 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_319 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t* L_320 = (int8_t*)(&L_319->___sbyte_13);
|
|
int32_t L_321;
|
|
L_321 = SByte_GetHashCode_mE61E9B0D1D93EF3E4E2B6282FF940FFA2E471FFF(L_320, NULL);
|
|
int32_t L_322;
|
|
L_322 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_318, L_321, NULL);
|
|
V_0 = L_322;
|
|
int32_t L_323 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_324 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t* L_325 = (int8_t*)(&L_324->___sbyte_14);
|
|
int32_t L_326;
|
|
L_326 = SByte_GetHashCode_mE61E9B0D1D93EF3E4E2B6282FF940FFA2E471FFF(L_325, NULL);
|
|
int32_t L_327;
|
|
L_327 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_323, L_326, NULL);
|
|
V_0 = L_327;
|
|
int32_t L_328 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_329 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t* L_330 = (int8_t*)(&L_329->___sbyte_15);
|
|
int32_t L_331;
|
|
L_331 = SByte_GetHashCode_mE61E9B0D1D93EF3E4E2B6282FF940FFA2E471FFF(L_330, NULL);
|
|
int32_t L_332;
|
|
L_332 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_328, L_331, NULL);
|
|
V_0 = L_332;
|
|
int32_t L_333 = V_0;
|
|
return L_333;
|
|
}
|
|
|
|
IL_066a:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_334 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_335;
|
|
L_335 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_334, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_336 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint16_class->byval_arg) };
|
|
Type_t* L_337;
|
|
L_337 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_336, NULL);
|
|
bool L_338;
|
|
L_338 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_335, L_337, NULL);
|
|
if (!L_338)
|
|
{
|
|
goto IL_0742;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_339 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_340 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t* L_341 = (uint16_t*)(&L_340->___uint16_0);
|
|
int32_t L_342;
|
|
L_342 = UInt16_GetHashCode_m534E5103D0DA9C6FCED4F2F007993D3E38165200(L_341, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(HashHelpers_t285C6E63B4A4E8D837BDBC63DE4E2D23C85467D4_il2cpp_TypeInfo_var);
|
|
int32_t L_343;
|
|
L_343 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_339, L_342, NULL);
|
|
V_0 = L_343;
|
|
int32_t L_344 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_345 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t* L_346 = (uint16_t*)(&L_345->___uint16_1);
|
|
int32_t L_347;
|
|
L_347 = UInt16_GetHashCode_m534E5103D0DA9C6FCED4F2F007993D3E38165200(L_346, NULL);
|
|
int32_t L_348;
|
|
L_348 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_344, L_347, NULL);
|
|
V_0 = L_348;
|
|
int32_t L_349 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_350 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t* L_351 = (uint16_t*)(&L_350->___uint16_2);
|
|
int32_t L_352;
|
|
L_352 = UInt16_GetHashCode_m534E5103D0DA9C6FCED4F2F007993D3E38165200(L_351, NULL);
|
|
int32_t L_353;
|
|
L_353 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_349, L_352, NULL);
|
|
V_0 = L_353;
|
|
int32_t L_354 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_355 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t* L_356 = (uint16_t*)(&L_355->___uint16_3);
|
|
int32_t L_357;
|
|
L_357 = UInt16_GetHashCode_m534E5103D0DA9C6FCED4F2F007993D3E38165200(L_356, NULL);
|
|
int32_t L_358;
|
|
L_358 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_354, L_357, NULL);
|
|
V_0 = L_358;
|
|
int32_t L_359 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_360 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t* L_361 = (uint16_t*)(&L_360->___uint16_4);
|
|
int32_t L_362;
|
|
L_362 = UInt16_GetHashCode_m534E5103D0DA9C6FCED4F2F007993D3E38165200(L_361, NULL);
|
|
int32_t L_363;
|
|
L_363 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_359, L_362, NULL);
|
|
V_0 = L_363;
|
|
int32_t L_364 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_365 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t* L_366 = (uint16_t*)(&L_365->___uint16_5);
|
|
int32_t L_367;
|
|
L_367 = UInt16_GetHashCode_m534E5103D0DA9C6FCED4F2F007993D3E38165200(L_366, NULL);
|
|
int32_t L_368;
|
|
L_368 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_364, L_367, NULL);
|
|
V_0 = L_368;
|
|
int32_t L_369 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_370 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t* L_371 = (uint16_t*)(&L_370->___uint16_6);
|
|
int32_t L_372;
|
|
L_372 = UInt16_GetHashCode_m534E5103D0DA9C6FCED4F2F007993D3E38165200(L_371, NULL);
|
|
int32_t L_373;
|
|
L_373 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_369, L_372, NULL);
|
|
V_0 = L_373;
|
|
int32_t L_374 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_375 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t* L_376 = (uint16_t*)(&L_375->___uint16_7);
|
|
int32_t L_377;
|
|
L_377 = UInt16_GetHashCode_m534E5103D0DA9C6FCED4F2F007993D3E38165200(L_376, NULL);
|
|
int32_t L_378;
|
|
L_378 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_374, L_377, NULL);
|
|
V_0 = L_378;
|
|
int32_t L_379 = V_0;
|
|
return L_379;
|
|
}
|
|
|
|
IL_0742:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_380 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_381;
|
|
L_381 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_380, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_382 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int16_class->byval_arg) };
|
|
Type_t* L_383;
|
|
L_383 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_382, NULL);
|
|
bool L_384;
|
|
L_384 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_381, L_383, NULL);
|
|
if (!L_384)
|
|
{
|
|
goto IL_081a;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_385 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_386 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int16_t* L_387 = (int16_t*)(&L_386->___int16_0);
|
|
int32_t L_388;
|
|
L_388 = Int16_GetHashCode_mCD0A167AC8E6ACC2235F12E00C0F9BDC6ED3B6E1(L_387, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(HashHelpers_t285C6E63B4A4E8D837BDBC63DE4E2D23C85467D4_il2cpp_TypeInfo_var);
|
|
int32_t L_389;
|
|
L_389 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_385, L_388, NULL);
|
|
V_0 = L_389;
|
|
int32_t L_390 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_391 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int16_t* L_392 = (int16_t*)(&L_391->___int16_1);
|
|
int32_t L_393;
|
|
L_393 = Int16_GetHashCode_mCD0A167AC8E6ACC2235F12E00C0F9BDC6ED3B6E1(L_392, NULL);
|
|
int32_t L_394;
|
|
L_394 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_390, L_393, NULL);
|
|
V_0 = L_394;
|
|
int32_t L_395 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_396 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int16_t* L_397 = (int16_t*)(&L_396->___int16_2);
|
|
int32_t L_398;
|
|
L_398 = Int16_GetHashCode_mCD0A167AC8E6ACC2235F12E00C0F9BDC6ED3B6E1(L_397, NULL);
|
|
int32_t L_399;
|
|
L_399 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_395, L_398, NULL);
|
|
V_0 = L_399;
|
|
int32_t L_400 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_401 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int16_t* L_402 = (int16_t*)(&L_401->___int16_3);
|
|
int32_t L_403;
|
|
L_403 = Int16_GetHashCode_mCD0A167AC8E6ACC2235F12E00C0F9BDC6ED3B6E1(L_402, NULL);
|
|
int32_t L_404;
|
|
L_404 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_400, L_403, NULL);
|
|
V_0 = L_404;
|
|
int32_t L_405 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_406 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int16_t* L_407 = (int16_t*)(&L_406->___int16_4);
|
|
int32_t L_408;
|
|
L_408 = Int16_GetHashCode_mCD0A167AC8E6ACC2235F12E00C0F9BDC6ED3B6E1(L_407, NULL);
|
|
int32_t L_409;
|
|
L_409 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_405, L_408, NULL);
|
|
V_0 = L_409;
|
|
int32_t L_410 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_411 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int16_t* L_412 = (int16_t*)(&L_411->___int16_5);
|
|
int32_t L_413;
|
|
L_413 = Int16_GetHashCode_mCD0A167AC8E6ACC2235F12E00C0F9BDC6ED3B6E1(L_412, NULL);
|
|
int32_t L_414;
|
|
L_414 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_410, L_413, NULL);
|
|
V_0 = L_414;
|
|
int32_t L_415 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_416 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int16_t* L_417 = (int16_t*)(&L_416->___int16_6);
|
|
int32_t L_418;
|
|
L_418 = Int16_GetHashCode_mCD0A167AC8E6ACC2235F12E00C0F9BDC6ED3B6E1(L_417, NULL);
|
|
int32_t L_419;
|
|
L_419 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_415, L_418, NULL);
|
|
V_0 = L_419;
|
|
int32_t L_420 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_421 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int16_t* L_422 = (int16_t*)(&L_421->___int16_7);
|
|
int32_t L_423;
|
|
L_423 = Int16_GetHashCode_mCD0A167AC8E6ACC2235F12E00C0F9BDC6ED3B6E1(L_422, NULL);
|
|
int32_t L_424;
|
|
L_424 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_420, L_423, NULL);
|
|
V_0 = L_424;
|
|
int32_t L_425 = V_0;
|
|
return L_425;
|
|
}
|
|
|
|
IL_081a:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_426 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_427;
|
|
L_427 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_426, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_428 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint32_class->byval_arg) };
|
|
Type_t* L_429;
|
|
L_429 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_428, NULL);
|
|
bool L_430;
|
|
L_430 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_427, L_429, NULL);
|
|
if (!L_430)
|
|
{
|
|
goto IL_0893;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_431 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_432 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint32_t* L_433 = (uint32_t*)(&L_432->___uint32_0);
|
|
int32_t L_434;
|
|
L_434 = UInt32_GetHashCode_mB9A03A037C079ADF0E61516BECA1AB05F92266BC(L_433, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(HashHelpers_t285C6E63B4A4E8D837BDBC63DE4E2D23C85467D4_il2cpp_TypeInfo_var);
|
|
int32_t L_435;
|
|
L_435 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_431, L_434, NULL);
|
|
V_0 = L_435;
|
|
int32_t L_436 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_437 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint32_t* L_438 = (uint32_t*)(&L_437->___uint32_1);
|
|
int32_t L_439;
|
|
L_439 = UInt32_GetHashCode_mB9A03A037C079ADF0E61516BECA1AB05F92266BC(L_438, NULL);
|
|
int32_t L_440;
|
|
L_440 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_436, L_439, NULL);
|
|
V_0 = L_440;
|
|
int32_t L_441 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_442 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint32_t* L_443 = (uint32_t*)(&L_442->___uint32_2);
|
|
int32_t L_444;
|
|
L_444 = UInt32_GetHashCode_mB9A03A037C079ADF0E61516BECA1AB05F92266BC(L_443, NULL);
|
|
int32_t L_445;
|
|
L_445 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_441, L_444, NULL);
|
|
V_0 = L_445;
|
|
int32_t L_446 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_447 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint32_t* L_448 = (uint32_t*)(&L_447->___uint32_3);
|
|
int32_t L_449;
|
|
L_449 = UInt32_GetHashCode_mB9A03A037C079ADF0E61516BECA1AB05F92266BC(L_448, NULL);
|
|
int32_t L_450;
|
|
L_450 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_446, L_449, NULL);
|
|
V_0 = L_450;
|
|
int32_t L_451 = V_0;
|
|
return L_451;
|
|
}
|
|
|
|
IL_0893:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_452 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_453;
|
|
L_453 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_452, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_454 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
Type_t* L_455;
|
|
L_455 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_454, NULL);
|
|
bool L_456;
|
|
L_456 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_453, L_455, NULL);
|
|
if (!L_456)
|
|
{
|
|
goto IL_090c;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_457 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_458 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int32_t* L_459 = (int32_t*)(&L_458->___int32_0);
|
|
int32_t L_460;
|
|
L_460 = Int32_GetHashCode_m253D60FF7527A483E91004B7A2366F13E225E295(L_459, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(HashHelpers_t285C6E63B4A4E8D837BDBC63DE4E2D23C85467D4_il2cpp_TypeInfo_var);
|
|
int32_t L_461;
|
|
L_461 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_457, L_460, NULL);
|
|
V_0 = L_461;
|
|
int32_t L_462 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_463 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int32_t* L_464 = (int32_t*)(&L_463->___int32_1);
|
|
int32_t L_465;
|
|
L_465 = Int32_GetHashCode_m253D60FF7527A483E91004B7A2366F13E225E295(L_464, NULL);
|
|
int32_t L_466;
|
|
L_466 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_462, L_465, NULL);
|
|
V_0 = L_466;
|
|
int32_t L_467 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_468 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int32_t* L_469 = (int32_t*)(&L_468->___int32_2);
|
|
int32_t L_470;
|
|
L_470 = Int32_GetHashCode_m253D60FF7527A483E91004B7A2366F13E225E295(L_469, NULL);
|
|
int32_t L_471;
|
|
L_471 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_467, L_470, NULL);
|
|
V_0 = L_471;
|
|
int32_t L_472 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_473 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int32_t* L_474 = (int32_t*)(&L_473->___int32_3);
|
|
int32_t L_475;
|
|
L_475 = Int32_GetHashCode_m253D60FF7527A483E91004B7A2366F13E225E295(L_474, NULL);
|
|
int32_t L_476;
|
|
L_476 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_472, L_475, NULL);
|
|
V_0 = L_476;
|
|
int32_t L_477 = V_0;
|
|
return L_477;
|
|
}
|
|
|
|
IL_090c:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_478 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_479;
|
|
L_479 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_478, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_480 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint64_class->byval_arg) };
|
|
Type_t* L_481;
|
|
L_481 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_480, NULL);
|
|
bool L_482;
|
|
L_482 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_479, L_481, NULL);
|
|
if (!L_482)
|
|
{
|
|
goto IL_0957;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_483 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_484 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t* L_485 = (uint64_t*)(&L_484->___uint64_0);
|
|
int32_t L_486;
|
|
L_486 = UInt64_GetHashCode_m65D9FD0102B6B01BF38D986F060F0BDBC29B4F92(L_485, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(HashHelpers_t285C6E63B4A4E8D837BDBC63DE4E2D23C85467D4_il2cpp_TypeInfo_var);
|
|
int32_t L_487;
|
|
L_487 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_483, L_486, NULL);
|
|
V_0 = L_487;
|
|
int32_t L_488 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_489 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t* L_490 = (uint64_t*)(&L_489->___uint64_1);
|
|
int32_t L_491;
|
|
L_491 = UInt64_GetHashCode_m65D9FD0102B6B01BF38D986F060F0BDBC29B4F92(L_490, NULL);
|
|
int32_t L_492;
|
|
L_492 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_488, L_491, NULL);
|
|
V_0 = L_492;
|
|
int32_t L_493 = V_0;
|
|
return L_493;
|
|
}
|
|
|
|
IL_0957:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_494 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_495;
|
|
L_495 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_494, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_496 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int64_class->byval_arg) };
|
|
Type_t* L_497;
|
|
L_497 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_496, NULL);
|
|
bool L_498;
|
|
L_498 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_495, L_497, NULL);
|
|
if (!L_498)
|
|
{
|
|
goto IL_09a2;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_499 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_500 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int64_t* L_501 = (int64_t*)(&L_500->___int64_0);
|
|
int32_t L_502;
|
|
L_502 = Int64_GetHashCode_mDB050BE2AC244D92B14D1DF725AAD279CDC48496(L_501, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(HashHelpers_t285C6E63B4A4E8D837BDBC63DE4E2D23C85467D4_il2cpp_TypeInfo_var);
|
|
int32_t L_503;
|
|
L_503 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_499, L_502, NULL);
|
|
V_0 = L_503;
|
|
int32_t L_504 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_505 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int64_t* L_506 = (int64_t*)(&L_505->___int64_1);
|
|
int32_t L_507;
|
|
L_507 = Int64_GetHashCode_mDB050BE2AC244D92B14D1DF725AAD279CDC48496(L_506, NULL);
|
|
int32_t L_508;
|
|
L_508 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_504, L_507, NULL);
|
|
V_0 = L_508;
|
|
int32_t L_509 = V_0;
|
|
return L_509;
|
|
}
|
|
|
|
IL_09a2:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_510 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_511;
|
|
L_511 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_510, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_512 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.single_class->byval_arg) };
|
|
Type_t* L_513;
|
|
L_513 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_512, NULL);
|
|
bool L_514;
|
|
L_514 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_511, L_513, NULL);
|
|
if (!L_514)
|
|
{
|
|
goto IL_0a1b;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_515 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_516 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
float* L_517 = (float*)(&L_516->___single_0);
|
|
int32_t L_518;
|
|
L_518 = Single_GetHashCode_mC3F1E099D1CF165C2D71FBCC5EF6A6792F9021D2(L_517, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(HashHelpers_t285C6E63B4A4E8D837BDBC63DE4E2D23C85467D4_il2cpp_TypeInfo_var);
|
|
int32_t L_519;
|
|
L_519 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_515, L_518, NULL);
|
|
V_0 = L_519;
|
|
int32_t L_520 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_521 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
float* L_522 = (float*)(&L_521->___single_1);
|
|
int32_t L_523;
|
|
L_523 = Single_GetHashCode_mC3F1E099D1CF165C2D71FBCC5EF6A6792F9021D2(L_522, NULL);
|
|
int32_t L_524;
|
|
L_524 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_520, L_523, NULL);
|
|
V_0 = L_524;
|
|
int32_t L_525 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_526 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
float* L_527 = (float*)(&L_526->___single_2);
|
|
int32_t L_528;
|
|
L_528 = Single_GetHashCode_mC3F1E099D1CF165C2D71FBCC5EF6A6792F9021D2(L_527, NULL);
|
|
int32_t L_529;
|
|
L_529 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_525, L_528, NULL);
|
|
V_0 = L_529;
|
|
int32_t L_530 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_531 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
float* L_532 = (float*)(&L_531->___single_3);
|
|
int32_t L_533;
|
|
L_533 = Single_GetHashCode_mC3F1E099D1CF165C2D71FBCC5EF6A6792F9021D2(L_532, NULL);
|
|
int32_t L_534;
|
|
L_534 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_530, L_533, NULL);
|
|
V_0 = L_534;
|
|
int32_t L_535 = V_0;
|
|
return L_535;
|
|
}
|
|
|
|
IL_0a1b:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_536 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_537;
|
|
L_537 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_536, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_538 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.double_class->byval_arg) };
|
|
Type_t* L_539;
|
|
L_539 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_538, NULL);
|
|
bool L_540;
|
|
L_540 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_537, L_539, NULL);
|
|
if (!L_540)
|
|
{
|
|
goto IL_0a66;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_541 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_542 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
double* L_543 = (double*)(&L_542->___double_0);
|
|
int32_t L_544;
|
|
L_544 = Double_GetHashCode_m3761FC05AD24D97A68FA1E8412A9454DF3880E32_inline(L_543, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(HashHelpers_t285C6E63B4A4E8D837BDBC63DE4E2D23C85467D4_il2cpp_TypeInfo_var);
|
|
int32_t L_545;
|
|
L_545 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_541, L_544, NULL);
|
|
V_0 = L_545;
|
|
int32_t L_546 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_547 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
double* L_548 = (double*)(&L_547->___double_1);
|
|
int32_t L_549;
|
|
L_549 = Double_GetHashCode_m3761FC05AD24D97A68FA1E8412A9454DF3880E32_inline(L_548, NULL);
|
|
int32_t L_550;
|
|
L_550 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_546, L_549, NULL);
|
|
V_0 = L_550;
|
|
int32_t L_551 = V_0;
|
|
return L_551;
|
|
}
|
|
|
|
IL_0a66:
|
|
{
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_552 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_552, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE310274B02A605A3985345944A620D7D2E019A1A)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_552, method);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t Vector_1_GetHashCode_m3C7CFE908C6BB2DC94F94F7615F2D1AF0E2777D9_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = Vector_1_GetHashCode_m3C7CFE908C6BB2DC94F94F7615F2D1AF0E2777D9(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 7877
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Vector_1_ToString_m2444D8FDCF0568D259DAE989EB7BCC77D37B2D6D_gshared (Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3DCC6243286938BE75C3FA773B9BA71160A2E869);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_0;
|
|
L_0 = CultureInfo_get_CurrentCulture_m8A4580F49DDD7E9DB34C699965423DB8E3BBA9A5(NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
String_t* L_1;
|
|
L_1 = Vector_1_ToString_mA9FEB41834880EF7C7688EB8C3F83286697B0BC7(__this, _stringLiteral3DCC6243286938BE75C3FA773B9BA71160A2E869, (RuntimeObject*)L_0, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 10));
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C String_t* Vector_1_ToString_m2444D8FDCF0568D259DAE989EB7BCC77D37B2D6D_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489*>(__this + _offset);
|
|
String_t* _returnValue;
|
|
_returnValue = Vector_1_ToString_m2444D8FDCF0568D259DAE989EB7BCC77D37B2D6D(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 7878
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Vector_1_ToString_mA9FEB41834880EF7C7688EB8C3F83286697B0BC7_gshared (Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489* __this, String_t* ___0_format, RuntimeObject* ___1_formatProvider, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IFormattable_t235A539BD9771E1E118DB99384BA8385D2F971CA_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
StringBuilder_t* V_0 = NULL;
|
|
String_t* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
{
|
|
StringBuilder_t* L_0 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
|
|
StringBuilder__ctor_m1D99713357DE05DAFA296633639DB55F8C30587D(L_0, NULL);
|
|
V_0 = L_0;
|
|
RuntimeObject* L_1 = ___1_formatProvider;
|
|
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_2;
|
|
L_2 = NumberFormatInfo_GetInstance_m705987E5E7D3E5EC5C5DD2D088FBC9BCBA0FC31F(L_1, NULL);
|
|
NullCheck(L_2);
|
|
String_t* L_3;
|
|
L_3 = NumberFormatInfo_get_NumberGroupSeparator_m0556B092AA471513B1EDC31C047712226D39BEB6_inline(L_2, NULL);
|
|
V_1 = L_3;
|
|
StringBuilder_t* L_4 = V_0;
|
|
NullCheck(L_4);
|
|
StringBuilder_t* L_5;
|
|
L_5 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_4, (Il2CppChar)((int32_t)60), NULL);
|
|
V_2 = 0;
|
|
goto IL_0053;
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
StringBuilder_t* L_6 = V_0;
|
|
int32_t L_7 = V_2;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
uint16_t L_8;
|
|
L_8 = Vector_1_get_Item_m248FFF521980A3A43D237B8C5CA2ABD5C62D4D27(__this, L_7, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
uint16_t L_9 = L_8;
|
|
RuntimeObject* L_10 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_9);
|
|
String_t* L_11 = ___0_format;
|
|
RuntimeObject* L_12 = ___1_formatProvider;
|
|
String_t* L_13;
|
|
L_13 = InterfaceFuncInvoker2< String_t*, String_t*, RuntimeObject* >::Invoke(0, IFormattable_t235A539BD9771E1E118DB99384BA8385D2F971CA_il2cpp_TypeInfo_var, (RuntimeObject*)L_10, L_11, L_12);
|
|
NullCheck(L_6);
|
|
StringBuilder_t* L_14;
|
|
L_14 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_6, L_13, NULL);
|
|
StringBuilder_t* L_15 = V_0;
|
|
String_t* L_16 = V_1;
|
|
NullCheck(L_15);
|
|
StringBuilder_t* L_17;
|
|
L_17 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_15, L_16, NULL);
|
|
StringBuilder_t* L_18 = V_0;
|
|
NullCheck(L_18);
|
|
StringBuilder_t* L_19;
|
|
L_19 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_18, (Il2CppChar)((int32_t)32), NULL);
|
|
int32_t L_20 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_20, 1));
|
|
}
|
|
|
|
IL_0053:
|
|
{
|
|
int32_t L_21 = V_2;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_22;
|
|
L_22 = Vector_1_get_Count_m6DF09E4443FC90521D33C892BE69D32B04D85A15_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_21) < ((int32_t)((int32_t)il2cpp_codegen_subtract(L_22, 1)))))
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_23 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_24;
|
|
L_24 = Vector_1_get_Count_m6DF09E4443FC90521D33C892BE69D32B04D85A15_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
uint16_t L_25;
|
|
L_25 = Vector_1_get_Item_m248FFF521980A3A43D237B8C5CA2ABD5C62D4D27(__this, ((int32_t)il2cpp_codegen_subtract(L_24, 1)), il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
uint16_t L_26 = L_25;
|
|
RuntimeObject* L_27 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_26);
|
|
String_t* L_28 = ___0_format;
|
|
RuntimeObject* L_29 = ___1_formatProvider;
|
|
String_t* L_30;
|
|
L_30 = InterfaceFuncInvoker2< String_t*, String_t*, RuntimeObject* >::Invoke(0, IFormattable_t235A539BD9771E1E118DB99384BA8385D2F971CA_il2cpp_TypeInfo_var, (RuntimeObject*)L_27, L_28, L_29);
|
|
NullCheck(L_23);
|
|
StringBuilder_t* L_31;
|
|
L_31 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_23, L_30, NULL);
|
|
StringBuilder_t* L_32 = V_0;
|
|
NullCheck(L_32);
|
|
StringBuilder_t* L_33;
|
|
L_33 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_32, (Il2CppChar)((int32_t)62), NULL);
|
|
StringBuilder_t* L_34 = V_0;
|
|
NullCheck((RuntimeObject*)L_34);
|
|
String_t* L_35;
|
|
L_35 = VirtualFuncInvoker0< String_t* >::Invoke(3, (RuntimeObject*)L_34);
|
|
return L_35;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C String_t* Vector_1_ToString_mA9FEB41834880EF7C7688EB8C3F83286697B0BC7_AdjustorThunk (RuntimeObject* __this, String_t* ___0_format, RuntimeObject* ___1_formatProvider, const RuntimeMethod* method)
|
|
{
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489*>(__this + _offset);
|
|
String_t* _returnValue;
|
|
_returnValue = Vector_1_ToString_mA9FEB41834880EF7C7688EB8C3F83286697B0BC7(_thisAdjusted, ___0_format, ___1_formatProvider, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 7879
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Vector_1_op_Equality_mB42F3DAE52C3BC7579B302E623196C45A5DEAC6B_gshared (Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 ___0_left, Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 ___1_right, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_0 = ___1_right;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
bool L_1;
|
|
L_1 = Vector_1_Equals_m729FD34A0F43A7C8A8DF285BCED9B5B31D579FE8((&___0_left), L_0, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 7));
|
|
return L_1;
|
|
}
|
|
}
|
|
// Method Definition Index: 7880
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Vector_1_op_Inequality_m32F4DFF513244591C00E23353EB6F6294E8BE9F0_gshared (Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 ___0_left, Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 ___1_right, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_0 = ___0_left;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_1 = ___1_right;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
bool L_2;
|
|
L_2 = Vector_1_op_Equality_mB42F3DAE52C3BC7579B302E623196C45A5DEAC6B_inline(L_0, L_1, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 11));
|
|
return (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
}
|
|
// Method Definition Index: 7881
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A Vector_1_op_Explicit_m5E44D3923BF92F437AEC34CDE0CBD6130883B0B7_gshared (Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector_1__ctor_mEA86543744A54FCE590FDBF012FAE9037A5F1606_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_0 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&(&___0_value)->___register);
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_1;
|
|
memset((&L_1), 0, sizeof(L_1));
|
|
Vector_1__ctor_mEA86543744A54FCE590FDBF012FAE9037A5F1606((&L_1), L_0, Vector_1__ctor_mEA86543744A54FCE590FDBF012FAE9037A5F1606_RuntimeMethod_var);
|
|
return L_1;
|
|
}
|
|
}
|
|
// Method Definition Index: 7882
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 Vector_1_Equals_m6F913845CB1E8A1A753B3C187A8EB840C36F5ADF_gshared (Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 ___0_left, Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 ___1_right, const RuntimeMethod* method)
|
|
{
|
|
uint8_t* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
int8_t* V_2 = NULL;
|
|
int32_t V_3 = 0;
|
|
uint16_t* V_4 = NULL;
|
|
int32_t V_5 = 0;
|
|
int16_t* V_6 = NULL;
|
|
int32_t V_7 = 0;
|
|
uint32_t* V_8 = NULL;
|
|
int32_t V_9 = 0;
|
|
int32_t* V_10 = NULL;
|
|
int32_t V_11 = 0;
|
|
uint64_t* V_12 = NULL;
|
|
int32_t V_13 = 0;
|
|
int64_t* V_14 = NULL;
|
|
int32_t V_15 = 0;
|
|
float* V_16 = NULL;
|
|
int32_t V_17 = 0;
|
|
double* V_18 = NULL;
|
|
int32_t V_19 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A V_20;
|
|
memset((&V_20), 0, sizeof(V_20));
|
|
uint8_t* G_B5_0 = NULL;
|
|
uint8_t* G_B4_0 = NULL;
|
|
int32_t G_B6_0 = 0;
|
|
uint8_t* G_B6_1 = NULL;
|
|
int8_t* G_B13_0 = NULL;
|
|
int8_t* G_B12_0 = NULL;
|
|
int32_t G_B14_0 = 0;
|
|
int8_t* G_B14_1 = NULL;
|
|
uint16_t* G_B21_0 = NULL;
|
|
uint16_t* G_B20_0 = NULL;
|
|
int32_t G_B22_0 = 0;
|
|
uint16_t* G_B22_1 = NULL;
|
|
int16_t* G_B29_0 = NULL;
|
|
int16_t* G_B28_0 = NULL;
|
|
int32_t G_B30_0 = 0;
|
|
int16_t* G_B30_1 = NULL;
|
|
uint32_t* G_B37_0 = NULL;
|
|
uint32_t* G_B36_0 = NULL;
|
|
uint32_t G_B38_0 = 0;
|
|
uint32_t* G_B38_1 = NULL;
|
|
int32_t* G_B45_0 = NULL;
|
|
int32_t* G_B44_0 = NULL;
|
|
int32_t G_B46_0 = 0;
|
|
int32_t* G_B46_1 = NULL;
|
|
uint64_t* G_B53_0 = NULL;
|
|
uint64_t* G_B52_0 = NULL;
|
|
uint64_t G_B54_0 = 0;
|
|
uint64_t* G_B54_1 = NULL;
|
|
int64_t* G_B61_0 = NULL;
|
|
int64_t* G_B60_0 = NULL;
|
|
int64_t G_B62_0 = 0;
|
|
int64_t* G_B62_1 = NULL;
|
|
float* G_B69_0 = NULL;
|
|
float* G_B68_0 = NULL;
|
|
float G_B70_0 = 0.0f;
|
|
float* G_B70_1 = NULL;
|
|
double* G_B77_0 = NULL;
|
|
double* G_B76_0 = NULL;
|
|
double G_B78_0 = 0.0;
|
|
double* G_B78_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B85_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B84_0 = NULL;
|
|
int32_t G_B86_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B86_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B88_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B87_0 = NULL;
|
|
int32_t G_B89_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B89_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B91_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B90_0 = NULL;
|
|
int32_t G_B92_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B92_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B94_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B93_0 = NULL;
|
|
int32_t G_B95_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B95_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B97_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B96_0 = NULL;
|
|
int32_t G_B98_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B98_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B100_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B99_0 = NULL;
|
|
int32_t G_B101_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B101_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B103_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B102_0 = NULL;
|
|
int32_t G_B104_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B104_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B106_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B105_0 = NULL;
|
|
int32_t G_B107_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B107_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B109_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B108_0 = NULL;
|
|
int32_t G_B110_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B110_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B112_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B111_0 = NULL;
|
|
int32_t G_B113_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B113_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B115_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B114_0 = NULL;
|
|
int32_t G_B116_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B116_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B118_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B117_0 = NULL;
|
|
int32_t G_B119_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B119_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B121_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B120_0 = NULL;
|
|
int32_t G_B122_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B122_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B124_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B123_0 = NULL;
|
|
int32_t G_B125_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B125_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B127_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B126_0 = NULL;
|
|
int32_t G_B128_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B128_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B130_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B129_0 = NULL;
|
|
int32_t G_B131_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B131_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B135_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B134_0 = NULL;
|
|
int32_t G_B136_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B136_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B138_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B137_0 = NULL;
|
|
int32_t G_B139_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B139_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B141_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B140_0 = NULL;
|
|
int32_t G_B142_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B142_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B144_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B143_0 = NULL;
|
|
int32_t G_B145_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B145_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B147_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B146_0 = NULL;
|
|
int32_t G_B148_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B148_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B150_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B149_0 = NULL;
|
|
int32_t G_B151_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B151_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B153_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B152_0 = NULL;
|
|
int32_t G_B154_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B154_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B156_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B155_0 = NULL;
|
|
int32_t G_B157_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B157_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B159_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B158_0 = NULL;
|
|
int32_t G_B160_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B160_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B162_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B161_0 = NULL;
|
|
int32_t G_B163_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B163_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B165_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B164_0 = NULL;
|
|
int32_t G_B166_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B166_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B168_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B167_0 = NULL;
|
|
int32_t G_B169_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B169_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B171_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B170_0 = NULL;
|
|
int32_t G_B172_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B172_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B174_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B173_0 = NULL;
|
|
int32_t G_B175_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B175_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B177_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B176_0 = NULL;
|
|
int32_t G_B178_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B178_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B180_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B179_0 = NULL;
|
|
int32_t G_B181_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B181_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B185_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B184_0 = NULL;
|
|
int32_t G_B186_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B186_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B188_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B187_0 = NULL;
|
|
int32_t G_B189_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B189_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B191_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B190_0 = NULL;
|
|
int32_t G_B192_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B192_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B194_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B193_0 = NULL;
|
|
int32_t G_B195_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B195_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B197_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B196_0 = NULL;
|
|
int32_t G_B198_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B198_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B200_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B199_0 = NULL;
|
|
int32_t G_B201_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B201_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B203_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B202_0 = NULL;
|
|
int32_t G_B204_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B204_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B206_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B205_0 = NULL;
|
|
int32_t G_B207_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B207_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B211_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B210_0 = NULL;
|
|
int32_t G_B212_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B212_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B214_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B213_0 = NULL;
|
|
int32_t G_B215_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B215_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B217_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B216_0 = NULL;
|
|
int32_t G_B218_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B218_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B220_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B219_0 = NULL;
|
|
int32_t G_B221_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B221_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B223_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B222_0 = NULL;
|
|
int32_t G_B224_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B224_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B226_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B225_0 = NULL;
|
|
int32_t G_B227_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B227_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B229_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B228_0 = NULL;
|
|
int32_t G_B230_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B230_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B232_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B231_0 = NULL;
|
|
int32_t G_B233_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B233_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B237_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B236_0 = NULL;
|
|
uint32_t G_B238_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B238_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B240_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B239_0 = NULL;
|
|
uint32_t G_B241_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B241_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B243_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B242_0 = NULL;
|
|
uint32_t G_B244_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B244_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B246_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B245_0 = NULL;
|
|
uint32_t G_B247_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B247_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B251_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B250_0 = NULL;
|
|
int32_t G_B252_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B252_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B254_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B253_0 = NULL;
|
|
int32_t G_B255_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B255_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B257_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B256_0 = NULL;
|
|
int32_t G_B258_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B258_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B260_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B259_0 = NULL;
|
|
int32_t G_B261_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B261_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B265_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B264_0 = NULL;
|
|
uint64_t G_B266_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B266_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B268_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B267_0 = NULL;
|
|
uint64_t G_B269_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B269_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B273_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B272_0 = NULL;
|
|
int64_t G_B274_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B274_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B276_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B275_0 = NULL;
|
|
int64_t G_B277_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B277_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B281_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B280_0 = NULL;
|
|
float G_B282_0 = 0.0f;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B282_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B284_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B283_0 = NULL;
|
|
float G_B285_0 = 0.0f;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B285_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B287_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B286_0 = NULL;
|
|
float G_B288_0 = 0.0f;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B288_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B290_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B289_0 = NULL;
|
|
float G_B291_0 = 0.0f;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B291_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B295_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B294_0 = NULL;
|
|
double G_B296_0 = 0.0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B296_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B298_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B297_0 = NULL;
|
|
double G_B299_0 = 0.0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B299_1 = NULL;
|
|
{
|
|
bool L_0;
|
|
L_0 = Vector_get_IsHardwareAccelerated_m783509258751EBED64CBD9F387EC1BB4A15088AA(NULL);
|
|
if (!L_0)
|
|
{
|
|
goto IL_0447;
|
|
}
|
|
}
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_1 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_2;
|
|
L_2 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_1, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_3 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.byte_class->byval_arg) };
|
|
Type_t* L_4;
|
|
L_4 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_3, NULL);
|
|
bool L_5;
|
|
L_5 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_2, L_4, NULL);
|
|
if (!L_5)
|
|
{
|
|
goto IL_0068;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_6;
|
|
L_6 = Vector_1_get_Count_m6DF09E4443FC90521D33C892BE69D32B04D85A15_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
uintptr_t L_7 = ((uintptr_t)L_6);
|
|
int8_t* L_8 = (int8_t*) (L_7 ? alloca(L_7) : NULL);
|
|
memset(L_8, 0, L_7);
|
|
V_0 = (uint8_t*)(L_8);
|
|
V_1 = 0;
|
|
goto IL_0059;
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
uint8_t* L_9 = V_0;
|
|
int32_t L_10 = V_1;
|
|
int32_t L_11 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
uint16_t L_12;
|
|
L_12 = Vector_1_get_Item_m248FFF521980A3A43D237B8C5CA2ABD5C62D4D27((&___0_left), L_11, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
int32_t L_13 = V_1;
|
|
uint16_t L_14;
|
|
L_14 = Vector_1_get_Item_m248FFF521980A3A43D237B8C5CA2ABD5C62D4D27((&___1_right), L_13, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
bool L_15;
|
|
L_15 = Vector_1_ScalarEquals_m4E13E30219B0D2AADB58AD6E5CB2B54B9FCBFAAE_inline(L_12, L_14, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 9));
|
|
if (L_15)
|
|
{
|
|
G_B5_0 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_9, L_10));
|
|
goto IL_004f;
|
|
}
|
|
G_B4_0 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_9, L_10));
|
|
}
|
|
{
|
|
G_B6_0 = 0;
|
|
G_B6_1 = G_B4_0;
|
|
goto IL_0054;
|
|
}
|
|
|
|
IL_004f:
|
|
{
|
|
uint8_t L_16;
|
|
L_16 = ConstantHelper_GetByteWithAllBitsSet_m38E318296F5FB9BAE51C97C1AE058716CFC889D7_inline(NULL);
|
|
G_B6_0 = ((int32_t)(L_16));
|
|
G_B6_1 = G_B5_0;
|
|
}
|
|
|
|
IL_0054:
|
|
{
|
|
*((int8_t*)G_B6_1) = (int8_t)G_B6_0;
|
|
int32_t L_17 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_17, 1));
|
|
}
|
|
|
|
IL_0059:
|
|
{
|
|
int32_t L_18 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_19;
|
|
L_19 = Vector_1_get_Count_m6DF09E4443FC90521D33C892BE69D32B04D85A15_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_18) < ((int32_t)L_19)))
|
|
{
|
|
goto IL_0032;
|
|
}
|
|
}
|
|
{
|
|
uint8_t* L_20 = V_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_21;
|
|
memset((&L_21), 0, sizeof(L_21));
|
|
Vector_1__ctor_m46ADEA122EFBA7AEF487716891A8ADD284FD12E3((&L_21), (void*)L_20, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 12));
|
|
return L_21;
|
|
}
|
|
|
|
IL_0068:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_22 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_23;
|
|
L_23 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_22, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_24 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.sbyte_class->byval_arg) };
|
|
Type_t* L_25;
|
|
L_25 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_24, NULL);
|
|
bool L_26;
|
|
L_26 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_23, L_25, NULL);
|
|
if (!L_26)
|
|
{
|
|
goto IL_00c6;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_27;
|
|
L_27 = Vector_1_get_Count_m6DF09E4443FC90521D33C892BE69D32B04D85A15_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
uintptr_t L_28 = ((uintptr_t)L_27);
|
|
int8_t* L_29 = (int8_t*) (L_28 ? alloca(L_28) : NULL);
|
|
memset(L_29, 0, L_28);
|
|
V_2 = (L_29);
|
|
V_3 = 0;
|
|
goto IL_00b7;
|
|
}
|
|
|
|
IL_0090:
|
|
{
|
|
int8_t* L_30 = V_2;
|
|
int32_t L_31 = V_3;
|
|
int32_t L_32 = V_3;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
uint16_t L_33;
|
|
L_33 = Vector_1_get_Item_m248FFF521980A3A43D237B8C5CA2ABD5C62D4D27((&___0_left), L_32, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
int32_t L_34 = V_3;
|
|
uint16_t L_35;
|
|
L_35 = Vector_1_get_Item_m248FFF521980A3A43D237B8C5CA2ABD5C62D4D27((&___1_right), L_34, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
bool L_36;
|
|
L_36 = Vector_1_ScalarEquals_m4E13E30219B0D2AADB58AD6E5CB2B54B9FCBFAAE_inline(L_33, L_35, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 9));
|
|
if (L_36)
|
|
{
|
|
G_B13_0 = ((int8_t*)il2cpp_codegen_add((intptr_t)L_30, L_31));
|
|
goto IL_00ad;
|
|
}
|
|
G_B12_0 = ((int8_t*)il2cpp_codegen_add((intptr_t)L_30, L_31));
|
|
}
|
|
{
|
|
G_B14_0 = 0;
|
|
G_B14_1 = G_B12_0;
|
|
goto IL_00b2;
|
|
}
|
|
|
|
IL_00ad:
|
|
{
|
|
int8_t L_37;
|
|
L_37 = ConstantHelper_GetSByteWithAllBitsSet_mB6B97526769DCCB7B78CCF446F28AAB0D1B5CAE3_inline(NULL);
|
|
G_B14_0 = ((int32_t)(L_37));
|
|
G_B14_1 = G_B13_0;
|
|
}
|
|
|
|
IL_00b2:
|
|
{
|
|
*((int8_t*)G_B14_1) = (int8_t)G_B14_0;
|
|
int32_t L_38 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_38, 1));
|
|
}
|
|
|
|
IL_00b7:
|
|
{
|
|
int32_t L_39 = V_3;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_40;
|
|
L_40 = Vector_1_get_Count_m6DF09E4443FC90521D33C892BE69D32B04D85A15_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_39) < ((int32_t)L_40)))
|
|
{
|
|
goto IL_0090;
|
|
}
|
|
}
|
|
{
|
|
int8_t* L_41 = V_2;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_42;
|
|
memset((&L_42), 0, sizeof(L_42));
|
|
Vector_1__ctor_m46ADEA122EFBA7AEF487716891A8ADD284FD12E3((&L_42), (void*)L_41, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 12));
|
|
return L_42;
|
|
}
|
|
|
|
IL_00c6:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_43 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_44;
|
|
L_44 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_43, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_45 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint16_class->byval_arg) };
|
|
Type_t* L_46;
|
|
L_46 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_45, NULL);
|
|
bool L_47;
|
|
L_47 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_44, L_46, NULL);
|
|
if (!L_47)
|
|
{
|
|
goto IL_0133;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_48;
|
|
L_48 = Vector_1_get_Count_m6DF09E4443FC90521D33C892BE69D32B04D85A15_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((uintptr_t)((uintptr_t)L_48) * (uintptr_t)2 > (uintptr_t)kIl2CppUIntPtrMax)
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), method);
|
|
intptr_t L_49 = ((intptr_t)il2cpp_codegen_multiply((intptr_t)((uintptr_t)L_48), 2));
|
|
int8_t* L_50 = (int8_t*) (L_49 ? alloca(L_49) : NULL);
|
|
memset(L_50, 0, L_49);
|
|
V_4 = (uint16_t*)(L_50);
|
|
V_5 = 0;
|
|
goto IL_0122;
|
|
}
|
|
|
|
IL_00f2:
|
|
{
|
|
uint16_t* L_51 = V_4;
|
|
int32_t L_52 = V_5;
|
|
int32_t L_53 = V_5;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
uint16_t L_54;
|
|
L_54 = Vector_1_get_Item_m248FFF521980A3A43D237B8C5CA2ABD5C62D4D27((&___0_left), L_53, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
int32_t L_55 = V_5;
|
|
uint16_t L_56;
|
|
L_56 = Vector_1_get_Item_m248FFF521980A3A43D237B8C5CA2ABD5C62D4D27((&___1_right), L_55, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
bool L_57;
|
|
L_57 = Vector_1_ScalarEquals_m4E13E30219B0D2AADB58AD6E5CB2B54B9FCBFAAE_inline(L_54, L_56, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 9));
|
|
if (L_57)
|
|
{
|
|
G_B21_0 = ((uint16_t*)il2cpp_codegen_add((intptr_t)L_51, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_52), 2))));
|
|
goto IL_0116;
|
|
}
|
|
G_B20_0 = ((uint16_t*)il2cpp_codegen_add((intptr_t)L_51, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_52), 2))));
|
|
}
|
|
{
|
|
G_B22_0 = 0;
|
|
G_B22_1 = G_B20_0;
|
|
goto IL_011b;
|
|
}
|
|
|
|
IL_0116:
|
|
{
|
|
uint16_t L_58;
|
|
L_58 = ConstantHelper_GetUInt16WithAllBitsSet_mD3E13D933A06059499F0E0CBE6798D72D175464A_inline(NULL);
|
|
G_B22_0 = ((int32_t)(L_58));
|
|
G_B22_1 = G_B21_0;
|
|
}
|
|
|
|
IL_011b:
|
|
{
|
|
*((int16_t*)G_B22_1) = (int16_t)G_B22_0;
|
|
int32_t L_59 = V_5;
|
|
V_5 = ((int32_t)il2cpp_codegen_add(L_59, 1));
|
|
}
|
|
|
|
IL_0122:
|
|
{
|
|
int32_t L_60 = V_5;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_61;
|
|
L_61 = Vector_1_get_Count_m6DF09E4443FC90521D33C892BE69D32B04D85A15_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_60) < ((int32_t)L_61)))
|
|
{
|
|
goto IL_00f2;
|
|
}
|
|
}
|
|
{
|
|
uint16_t* L_62 = V_4;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_63;
|
|
memset((&L_63), 0, sizeof(L_63));
|
|
Vector_1__ctor_m46ADEA122EFBA7AEF487716891A8ADD284FD12E3((&L_63), (void*)L_62, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 12));
|
|
return L_63;
|
|
}
|
|
|
|
IL_0133:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_64 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_65;
|
|
L_65 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_64, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_66 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int16_class->byval_arg) };
|
|
Type_t* L_67;
|
|
L_67 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_66, NULL);
|
|
bool L_68;
|
|
L_68 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_65, L_67, NULL);
|
|
if (!L_68)
|
|
{
|
|
goto IL_01a0;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_69;
|
|
L_69 = Vector_1_get_Count_m6DF09E4443FC90521D33C892BE69D32B04D85A15_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((uintptr_t)((uintptr_t)L_69) * (uintptr_t)2 > (uintptr_t)kIl2CppUIntPtrMax)
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), method);
|
|
intptr_t L_70 = ((intptr_t)il2cpp_codegen_multiply((intptr_t)((uintptr_t)L_69), 2));
|
|
int8_t* L_71 = (int8_t*) (L_70 ? alloca(L_70) : NULL);
|
|
memset(L_71, 0, L_70);
|
|
V_6 = (int16_t*)(L_71);
|
|
V_7 = 0;
|
|
goto IL_018f;
|
|
}
|
|
|
|
IL_015f:
|
|
{
|
|
int16_t* L_72 = V_6;
|
|
int32_t L_73 = V_7;
|
|
int32_t L_74 = V_7;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
uint16_t L_75;
|
|
L_75 = Vector_1_get_Item_m248FFF521980A3A43D237B8C5CA2ABD5C62D4D27((&___0_left), L_74, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
int32_t L_76 = V_7;
|
|
uint16_t L_77;
|
|
L_77 = Vector_1_get_Item_m248FFF521980A3A43D237B8C5CA2ABD5C62D4D27((&___1_right), L_76, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
bool L_78;
|
|
L_78 = Vector_1_ScalarEquals_m4E13E30219B0D2AADB58AD6E5CB2B54B9FCBFAAE_inline(L_75, L_77, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 9));
|
|
if (L_78)
|
|
{
|
|
G_B29_0 = ((int16_t*)il2cpp_codegen_add((intptr_t)L_72, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_73), 2))));
|
|
goto IL_0183;
|
|
}
|
|
G_B28_0 = ((int16_t*)il2cpp_codegen_add((intptr_t)L_72, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_73), 2))));
|
|
}
|
|
{
|
|
G_B30_0 = 0;
|
|
G_B30_1 = G_B28_0;
|
|
goto IL_0188;
|
|
}
|
|
|
|
IL_0183:
|
|
{
|
|
int16_t L_79;
|
|
L_79 = ConstantHelper_GetInt16WithAllBitsSet_m70C5F99E624490970E2D4093FE6E800D1849DDFC_inline(NULL);
|
|
G_B30_0 = ((int32_t)(L_79));
|
|
G_B30_1 = G_B29_0;
|
|
}
|
|
|
|
IL_0188:
|
|
{
|
|
*((int16_t*)G_B30_1) = (int16_t)G_B30_0;
|
|
int32_t L_80 = V_7;
|
|
V_7 = ((int32_t)il2cpp_codegen_add(L_80, 1));
|
|
}
|
|
|
|
IL_018f:
|
|
{
|
|
int32_t L_81 = V_7;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_82;
|
|
L_82 = Vector_1_get_Count_m6DF09E4443FC90521D33C892BE69D32B04D85A15_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_81) < ((int32_t)L_82)))
|
|
{
|
|
goto IL_015f;
|
|
}
|
|
}
|
|
{
|
|
int16_t* L_83 = V_6;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_84;
|
|
memset((&L_84), 0, sizeof(L_84));
|
|
Vector_1__ctor_m46ADEA122EFBA7AEF487716891A8ADD284FD12E3((&L_84), (void*)L_83, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 12));
|
|
return L_84;
|
|
}
|
|
|
|
IL_01a0:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_85 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_86;
|
|
L_86 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_85, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_87 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint32_class->byval_arg) };
|
|
Type_t* L_88;
|
|
L_88 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_87, NULL);
|
|
bool L_89;
|
|
L_89 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_86, L_88, NULL);
|
|
if (!L_89)
|
|
{
|
|
goto IL_020d;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_90;
|
|
L_90 = Vector_1_get_Count_m6DF09E4443FC90521D33C892BE69D32B04D85A15_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((uintptr_t)((uintptr_t)L_90) * (uintptr_t)4 > (uintptr_t)kIl2CppUIntPtrMax)
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), method);
|
|
intptr_t L_91 = ((intptr_t)il2cpp_codegen_multiply((intptr_t)((uintptr_t)L_90), 4));
|
|
int8_t* L_92 = (int8_t*) (L_91 ? alloca(L_91) : NULL);
|
|
memset(L_92, 0, L_91);
|
|
V_8 = (uint32_t*)(L_92);
|
|
V_9 = 0;
|
|
goto IL_01fc;
|
|
}
|
|
|
|
IL_01cc:
|
|
{
|
|
uint32_t* L_93 = V_8;
|
|
int32_t L_94 = V_9;
|
|
int32_t L_95 = V_9;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
uint16_t L_96;
|
|
L_96 = Vector_1_get_Item_m248FFF521980A3A43D237B8C5CA2ABD5C62D4D27((&___0_left), L_95, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
int32_t L_97 = V_9;
|
|
uint16_t L_98;
|
|
L_98 = Vector_1_get_Item_m248FFF521980A3A43D237B8C5CA2ABD5C62D4D27((&___1_right), L_97, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
bool L_99;
|
|
L_99 = Vector_1_ScalarEquals_m4E13E30219B0D2AADB58AD6E5CB2B54B9FCBFAAE_inline(L_96, L_98, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 9));
|
|
if (L_99)
|
|
{
|
|
G_B37_0 = ((uint32_t*)il2cpp_codegen_add((intptr_t)L_93, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_94), 4))));
|
|
goto IL_01f0;
|
|
}
|
|
G_B36_0 = ((uint32_t*)il2cpp_codegen_add((intptr_t)L_93, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_94), 4))));
|
|
}
|
|
{
|
|
G_B38_0 = ((uint32_t)(0));
|
|
G_B38_1 = G_B36_0;
|
|
goto IL_01f5;
|
|
}
|
|
|
|
IL_01f0:
|
|
{
|
|
uint32_t L_100;
|
|
L_100 = ConstantHelper_GetUInt32WithAllBitsSet_m78CBFE0C29CF227C16D2A9021972A0D54744BCAF_inline(NULL);
|
|
G_B38_0 = L_100;
|
|
G_B38_1 = G_B37_0;
|
|
}
|
|
|
|
IL_01f5:
|
|
{
|
|
*((int32_t*)G_B38_1) = (int32_t)G_B38_0;
|
|
int32_t L_101 = V_9;
|
|
V_9 = ((int32_t)il2cpp_codegen_add(L_101, 1));
|
|
}
|
|
|
|
IL_01fc:
|
|
{
|
|
int32_t L_102 = V_9;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_103;
|
|
L_103 = Vector_1_get_Count_m6DF09E4443FC90521D33C892BE69D32B04D85A15_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_102) < ((int32_t)L_103)))
|
|
{
|
|
goto IL_01cc;
|
|
}
|
|
}
|
|
{
|
|
uint32_t* L_104 = V_8;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_105;
|
|
memset((&L_105), 0, sizeof(L_105));
|
|
Vector_1__ctor_m46ADEA122EFBA7AEF487716891A8ADD284FD12E3((&L_105), (void*)L_104, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 12));
|
|
return L_105;
|
|
}
|
|
|
|
IL_020d:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_106 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_107;
|
|
L_107 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_106, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_108 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
Type_t* L_109;
|
|
L_109 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_108, NULL);
|
|
bool L_110;
|
|
L_110 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_107, L_109, NULL);
|
|
if (!L_110)
|
|
{
|
|
goto IL_027a;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_111;
|
|
L_111 = Vector_1_get_Count_m6DF09E4443FC90521D33C892BE69D32B04D85A15_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((uintptr_t)((uintptr_t)L_111) * (uintptr_t)4 > (uintptr_t)kIl2CppUIntPtrMax)
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), method);
|
|
intptr_t L_112 = ((intptr_t)il2cpp_codegen_multiply((intptr_t)((uintptr_t)L_111), 4));
|
|
int8_t* L_113 = (int8_t*) (L_112 ? alloca(L_112) : NULL);
|
|
memset(L_113, 0, L_112);
|
|
V_10 = (int32_t*)(L_113);
|
|
V_11 = 0;
|
|
goto IL_0269;
|
|
}
|
|
|
|
IL_0239:
|
|
{
|
|
int32_t* L_114 = V_10;
|
|
int32_t L_115 = V_11;
|
|
int32_t L_116 = V_11;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
uint16_t L_117;
|
|
L_117 = Vector_1_get_Item_m248FFF521980A3A43D237B8C5CA2ABD5C62D4D27((&___0_left), L_116, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
int32_t L_118 = V_11;
|
|
uint16_t L_119;
|
|
L_119 = Vector_1_get_Item_m248FFF521980A3A43D237B8C5CA2ABD5C62D4D27((&___1_right), L_118, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
bool L_120;
|
|
L_120 = Vector_1_ScalarEquals_m4E13E30219B0D2AADB58AD6E5CB2B54B9FCBFAAE_inline(L_117, L_119, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 9));
|
|
if (L_120)
|
|
{
|
|
G_B45_0 = ((int32_t*)il2cpp_codegen_add((intptr_t)L_114, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_115), 4))));
|
|
goto IL_025d;
|
|
}
|
|
G_B44_0 = ((int32_t*)il2cpp_codegen_add((intptr_t)L_114, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_115), 4))));
|
|
}
|
|
{
|
|
G_B46_0 = 0;
|
|
G_B46_1 = G_B44_0;
|
|
goto IL_0262;
|
|
}
|
|
|
|
IL_025d:
|
|
{
|
|
int32_t L_121;
|
|
L_121 = ConstantHelper_GetInt32WithAllBitsSet_m245101340DDE7277600327D319DF86F1FFEA4FD0_inline(NULL);
|
|
G_B46_0 = L_121;
|
|
G_B46_1 = G_B45_0;
|
|
}
|
|
|
|
IL_0262:
|
|
{
|
|
*((int32_t*)G_B46_1) = (int32_t)G_B46_0;
|
|
int32_t L_122 = V_11;
|
|
V_11 = ((int32_t)il2cpp_codegen_add(L_122, 1));
|
|
}
|
|
|
|
IL_0269:
|
|
{
|
|
int32_t L_123 = V_11;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_124;
|
|
L_124 = Vector_1_get_Count_m6DF09E4443FC90521D33C892BE69D32B04D85A15_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_123) < ((int32_t)L_124)))
|
|
{
|
|
goto IL_0239;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_125 = V_10;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_126;
|
|
memset((&L_126), 0, sizeof(L_126));
|
|
Vector_1__ctor_m46ADEA122EFBA7AEF487716891A8ADD284FD12E3((&L_126), (void*)L_125, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 12));
|
|
return L_126;
|
|
}
|
|
|
|
IL_027a:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_127 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_128;
|
|
L_128 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_127, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_129 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint64_class->byval_arg) };
|
|
Type_t* L_130;
|
|
L_130 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_129, NULL);
|
|
bool L_131;
|
|
L_131 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_128, L_130, NULL);
|
|
if (!L_131)
|
|
{
|
|
goto IL_02e8;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_132;
|
|
L_132 = Vector_1_get_Count_m6DF09E4443FC90521D33C892BE69D32B04D85A15_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((uintptr_t)((uintptr_t)L_132) * (uintptr_t)8 > (uintptr_t)kIl2CppUIntPtrMax)
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), method);
|
|
intptr_t L_133 = ((intptr_t)il2cpp_codegen_multiply((intptr_t)((uintptr_t)L_132), 8));
|
|
int8_t* L_134 = (int8_t*) (L_133 ? alloca(L_133) : NULL);
|
|
memset(L_134, 0, L_133);
|
|
V_12 = (uint64_t*)(L_134);
|
|
V_13 = 0;
|
|
goto IL_02d7;
|
|
}
|
|
|
|
IL_02a6:
|
|
{
|
|
uint64_t* L_135 = V_12;
|
|
int32_t L_136 = V_13;
|
|
int32_t L_137 = V_13;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
uint16_t L_138;
|
|
L_138 = Vector_1_get_Item_m248FFF521980A3A43D237B8C5CA2ABD5C62D4D27((&___0_left), L_137, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
int32_t L_139 = V_13;
|
|
uint16_t L_140;
|
|
L_140 = Vector_1_get_Item_m248FFF521980A3A43D237B8C5CA2ABD5C62D4D27((&___1_right), L_139, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
bool L_141;
|
|
L_141 = Vector_1_ScalarEquals_m4E13E30219B0D2AADB58AD6E5CB2B54B9FCBFAAE_inline(L_138, L_140, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 9));
|
|
if (L_141)
|
|
{
|
|
G_B53_0 = ((uint64_t*)il2cpp_codegen_add((intptr_t)L_135, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_136), 8))));
|
|
goto IL_02cb;
|
|
}
|
|
G_B52_0 = ((uint64_t*)il2cpp_codegen_add((intptr_t)L_135, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_136), 8))));
|
|
}
|
|
{
|
|
G_B54_0 = ((uint64_t)(((int64_t)0)));
|
|
G_B54_1 = G_B52_0;
|
|
goto IL_02d0;
|
|
}
|
|
|
|
IL_02cb:
|
|
{
|
|
uint64_t L_142;
|
|
L_142 = ConstantHelper_GetUInt64WithAllBitsSet_mB7F3E046EE6B1B20C552BF7CF619416E239A5A96_inline(NULL);
|
|
G_B54_0 = L_142;
|
|
G_B54_1 = G_B53_0;
|
|
}
|
|
|
|
IL_02d0:
|
|
{
|
|
*((int64_t*)G_B54_1) = (int64_t)G_B54_0;
|
|
int32_t L_143 = V_13;
|
|
V_13 = ((int32_t)il2cpp_codegen_add(L_143, 1));
|
|
}
|
|
|
|
IL_02d7:
|
|
{
|
|
int32_t L_144 = V_13;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_145;
|
|
L_145 = Vector_1_get_Count_m6DF09E4443FC90521D33C892BE69D32B04D85A15_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_144) < ((int32_t)L_145)))
|
|
{
|
|
goto IL_02a6;
|
|
}
|
|
}
|
|
{
|
|
uint64_t* L_146 = V_12;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_147;
|
|
memset((&L_147), 0, sizeof(L_147));
|
|
Vector_1__ctor_m46ADEA122EFBA7AEF487716891A8ADD284FD12E3((&L_147), (void*)L_146, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 12));
|
|
return L_147;
|
|
}
|
|
|
|
IL_02e8:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_148 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_149;
|
|
L_149 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_148, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_150 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int64_class->byval_arg) };
|
|
Type_t* L_151;
|
|
L_151 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_150, NULL);
|
|
bool L_152;
|
|
L_152 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_149, L_151, NULL);
|
|
if (!L_152)
|
|
{
|
|
goto IL_0356;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_153;
|
|
L_153 = Vector_1_get_Count_m6DF09E4443FC90521D33C892BE69D32B04D85A15_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((uintptr_t)((uintptr_t)L_153) * (uintptr_t)8 > (uintptr_t)kIl2CppUIntPtrMax)
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), method);
|
|
intptr_t L_154 = ((intptr_t)il2cpp_codegen_multiply((intptr_t)((uintptr_t)L_153), 8));
|
|
int8_t* L_155 = (int8_t*) (L_154 ? alloca(L_154) : NULL);
|
|
memset(L_155, 0, L_154);
|
|
V_14 = (int64_t*)(L_155);
|
|
V_15 = 0;
|
|
goto IL_0345;
|
|
}
|
|
|
|
IL_0314:
|
|
{
|
|
int64_t* L_156 = V_14;
|
|
int32_t L_157 = V_15;
|
|
int32_t L_158 = V_15;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
uint16_t L_159;
|
|
L_159 = Vector_1_get_Item_m248FFF521980A3A43D237B8C5CA2ABD5C62D4D27((&___0_left), L_158, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
int32_t L_160 = V_15;
|
|
uint16_t L_161;
|
|
L_161 = Vector_1_get_Item_m248FFF521980A3A43D237B8C5CA2ABD5C62D4D27((&___1_right), L_160, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
bool L_162;
|
|
L_162 = Vector_1_ScalarEquals_m4E13E30219B0D2AADB58AD6E5CB2B54B9FCBFAAE_inline(L_159, L_161, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 9));
|
|
if (L_162)
|
|
{
|
|
G_B61_0 = ((int64_t*)il2cpp_codegen_add((intptr_t)L_156, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_157), 8))));
|
|
goto IL_0339;
|
|
}
|
|
G_B60_0 = ((int64_t*)il2cpp_codegen_add((intptr_t)L_156, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_157), 8))));
|
|
}
|
|
{
|
|
G_B62_0 = ((int64_t)0);
|
|
G_B62_1 = G_B60_0;
|
|
goto IL_033e;
|
|
}
|
|
|
|
IL_0339:
|
|
{
|
|
int64_t L_163;
|
|
L_163 = ConstantHelper_GetInt64WithAllBitsSet_m56A9AB64BA5DDD9ECC99424875824591DEFD5C40_inline(NULL);
|
|
G_B62_0 = L_163;
|
|
G_B62_1 = G_B61_0;
|
|
}
|
|
|
|
IL_033e:
|
|
{
|
|
*((int64_t*)G_B62_1) = (int64_t)G_B62_0;
|
|
int32_t L_164 = V_15;
|
|
V_15 = ((int32_t)il2cpp_codegen_add(L_164, 1));
|
|
}
|
|
|
|
IL_0345:
|
|
{
|
|
int32_t L_165 = V_15;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_166;
|
|
L_166 = Vector_1_get_Count_m6DF09E4443FC90521D33C892BE69D32B04D85A15_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_165) < ((int32_t)L_166)))
|
|
{
|
|
goto IL_0314;
|
|
}
|
|
}
|
|
{
|
|
int64_t* L_167 = V_14;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_168;
|
|
memset((&L_168), 0, sizeof(L_168));
|
|
Vector_1__ctor_m46ADEA122EFBA7AEF487716891A8ADD284FD12E3((&L_168), (void*)L_167, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 12));
|
|
return L_168;
|
|
}
|
|
|
|
IL_0356:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_169 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_170;
|
|
L_170 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_169, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_171 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.single_class->byval_arg) };
|
|
Type_t* L_172;
|
|
L_172 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_171, NULL);
|
|
bool L_173;
|
|
L_173 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_170, L_172, NULL);
|
|
if (!L_173)
|
|
{
|
|
goto IL_03c7;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_174;
|
|
L_174 = Vector_1_get_Count_m6DF09E4443FC90521D33C892BE69D32B04D85A15_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((uintptr_t)((uintptr_t)L_174) * (uintptr_t)4 > (uintptr_t)kIl2CppUIntPtrMax)
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), method);
|
|
intptr_t L_175 = ((intptr_t)il2cpp_codegen_multiply((intptr_t)((uintptr_t)L_174), 4));
|
|
int8_t* L_176 = (int8_t*) (L_175 ? alloca(L_175) : NULL);
|
|
memset(L_176, 0, L_175);
|
|
V_16 = (float*)(L_176);
|
|
V_17 = 0;
|
|
goto IL_03b6;
|
|
}
|
|
|
|
IL_0382:
|
|
{
|
|
float* L_177 = V_16;
|
|
int32_t L_178 = V_17;
|
|
int32_t L_179 = V_17;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
uint16_t L_180;
|
|
L_180 = Vector_1_get_Item_m248FFF521980A3A43D237B8C5CA2ABD5C62D4D27((&___0_left), L_179, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
int32_t L_181 = V_17;
|
|
uint16_t L_182;
|
|
L_182 = Vector_1_get_Item_m248FFF521980A3A43D237B8C5CA2ABD5C62D4D27((&___1_right), L_181, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
bool L_183;
|
|
L_183 = Vector_1_ScalarEquals_m4E13E30219B0D2AADB58AD6E5CB2B54B9FCBFAAE_inline(L_180, L_182, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 9));
|
|
if (L_183)
|
|
{
|
|
G_B69_0 = ((float*)il2cpp_codegen_add((intptr_t)L_177, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_178), 4))));
|
|
goto IL_03aa;
|
|
}
|
|
G_B68_0 = ((float*)il2cpp_codegen_add((intptr_t)L_177, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_178), 4))));
|
|
}
|
|
{
|
|
G_B70_0 = (0.0f);
|
|
G_B70_1 = G_B68_0;
|
|
goto IL_03af;
|
|
}
|
|
|
|
IL_03aa:
|
|
{
|
|
float L_184;
|
|
L_184 = ConstantHelper_GetSingleWithAllBitsSet_m66FC11C0680F744EB8315278910061C9535818C0_inline(NULL);
|
|
G_B70_0 = L_184;
|
|
G_B70_1 = G_B69_0;
|
|
}
|
|
|
|
IL_03af:
|
|
{
|
|
*((float*)G_B70_1) = (float)G_B70_0;
|
|
int32_t L_185 = V_17;
|
|
V_17 = ((int32_t)il2cpp_codegen_add(L_185, 1));
|
|
}
|
|
|
|
IL_03b6:
|
|
{
|
|
int32_t L_186 = V_17;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_187;
|
|
L_187 = Vector_1_get_Count_m6DF09E4443FC90521D33C892BE69D32B04D85A15_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_186) < ((int32_t)L_187)))
|
|
{
|
|
goto IL_0382;
|
|
}
|
|
}
|
|
{
|
|
float* L_188 = V_16;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_189;
|
|
memset((&L_189), 0, sizeof(L_189));
|
|
Vector_1__ctor_m46ADEA122EFBA7AEF487716891A8ADD284FD12E3((&L_189), (void*)L_188, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 12));
|
|
return L_189;
|
|
}
|
|
|
|
IL_03c7:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_190 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_191;
|
|
L_191 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_190, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_192 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.double_class->byval_arg) };
|
|
Type_t* L_193;
|
|
L_193 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_192, NULL);
|
|
bool L_194;
|
|
L_194 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_191, L_193, NULL);
|
|
if (!L_194)
|
|
{
|
|
goto IL_043c;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_195;
|
|
L_195 = Vector_1_get_Count_m6DF09E4443FC90521D33C892BE69D32B04D85A15_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((uintptr_t)((uintptr_t)L_195) * (uintptr_t)8 > (uintptr_t)kIl2CppUIntPtrMax)
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), method);
|
|
intptr_t L_196 = ((intptr_t)il2cpp_codegen_multiply((intptr_t)((uintptr_t)L_195), 8));
|
|
int8_t* L_197 = (int8_t*) (L_196 ? alloca(L_196) : NULL);
|
|
memset(L_197, 0, L_196);
|
|
V_18 = (double*)(L_197);
|
|
V_19 = 0;
|
|
goto IL_042b;
|
|
}
|
|
|
|
IL_03f3:
|
|
{
|
|
double* L_198 = V_18;
|
|
int32_t L_199 = V_19;
|
|
int32_t L_200 = V_19;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
uint16_t L_201;
|
|
L_201 = Vector_1_get_Item_m248FFF521980A3A43D237B8C5CA2ABD5C62D4D27((&___0_left), L_200, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
int32_t L_202 = V_19;
|
|
uint16_t L_203;
|
|
L_203 = Vector_1_get_Item_m248FFF521980A3A43D237B8C5CA2ABD5C62D4D27((&___1_right), L_202, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
bool L_204;
|
|
L_204 = Vector_1_ScalarEquals_m4E13E30219B0D2AADB58AD6E5CB2B54B9FCBFAAE_inline(L_201, L_203, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 9));
|
|
if (L_204)
|
|
{
|
|
G_B77_0 = ((double*)il2cpp_codegen_add((intptr_t)L_198, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_199), 8))));
|
|
goto IL_041f;
|
|
}
|
|
G_B76_0 = ((double*)il2cpp_codegen_add((intptr_t)L_198, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_199), 8))));
|
|
}
|
|
{
|
|
G_B78_0 = (0.0);
|
|
G_B78_1 = G_B76_0;
|
|
goto IL_0424;
|
|
}
|
|
|
|
IL_041f:
|
|
{
|
|
double L_205;
|
|
L_205 = ConstantHelper_GetDoubleWithAllBitsSet_mF43AF77A6C93B7590B35B20458E80F2BC66AD5F2_inline(NULL);
|
|
G_B78_0 = L_205;
|
|
G_B78_1 = G_B77_0;
|
|
}
|
|
|
|
IL_0424:
|
|
{
|
|
*((double*)G_B78_1) = (double)G_B78_0;
|
|
int32_t L_206 = V_19;
|
|
V_19 = ((int32_t)il2cpp_codegen_add(L_206, 1));
|
|
}
|
|
|
|
IL_042b:
|
|
{
|
|
int32_t L_207 = V_19;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_208;
|
|
L_208 = Vector_1_get_Count_m6DF09E4443FC90521D33C892BE69D32B04D85A15_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_207) < ((int32_t)L_208)))
|
|
{
|
|
goto IL_03f3;
|
|
}
|
|
}
|
|
{
|
|
double* L_209 = V_18;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_210;
|
|
memset((&L_210), 0, sizeof(L_210));
|
|
Vector_1__ctor_m46ADEA122EFBA7AEF487716891A8ADD284FD12E3((&L_210), (void*)L_209, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 12));
|
|
return L_210;
|
|
}
|
|
|
|
IL_043c:
|
|
{
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_211 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_211, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE310274B02A605A3985345944A620D7D2E019A1A)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_211, method);
|
|
}
|
|
|
|
IL_0447:
|
|
{
|
|
il2cpp_codegen_initobj((&V_20), sizeof(Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A));
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_212 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_213;
|
|
L_213 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_212, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_214 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.byte_class->byval_arg) };
|
|
Type_t* L_215;
|
|
L_215 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_214, NULL);
|
|
bool L_216;
|
|
L_216 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_213, L_215, NULL);
|
|
if (!L_216)
|
|
{
|
|
goto IL_06e5;
|
|
}
|
|
}
|
|
{
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_217 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_218 = L_217.___register;
|
|
uint8_t L_219 = L_218.___byte_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_220 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_221 = L_220.___register;
|
|
uint8_t L_222 = L_221.___byte_0;
|
|
if ((((int32_t)L_219) == ((int32_t)L_222)))
|
|
{
|
|
G_B85_0 = (&V_20);
|
|
goto IL_048a;
|
|
}
|
|
G_B84_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B86_0 = 0;
|
|
G_B86_1 = G_B84_0;
|
|
goto IL_048f;
|
|
}
|
|
|
|
IL_048a:
|
|
{
|
|
uint8_t L_223;
|
|
L_223 = ConstantHelper_GetByteWithAllBitsSet_m38E318296F5FB9BAE51C97C1AE058716CFC889D7_inline(NULL);
|
|
G_B86_0 = ((int32_t)(L_223));
|
|
G_B86_1 = G_B85_0;
|
|
}
|
|
|
|
IL_048f:
|
|
{
|
|
G_B86_1->___byte_0 = (uint8_t)G_B86_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_224 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_225 = L_224.___register;
|
|
uint8_t L_226 = L_225.___byte_1;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_227 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_228 = L_227.___register;
|
|
uint8_t L_229 = L_228.___byte_1;
|
|
if ((((int32_t)L_226) == ((int32_t)L_229)))
|
|
{
|
|
G_B88_0 = (&V_20);
|
|
goto IL_04b1;
|
|
}
|
|
G_B87_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B89_0 = 0;
|
|
G_B89_1 = G_B87_0;
|
|
goto IL_04b6;
|
|
}
|
|
|
|
IL_04b1:
|
|
{
|
|
uint8_t L_230;
|
|
L_230 = ConstantHelper_GetByteWithAllBitsSet_m38E318296F5FB9BAE51C97C1AE058716CFC889D7_inline(NULL);
|
|
G_B89_0 = ((int32_t)(L_230));
|
|
G_B89_1 = G_B88_0;
|
|
}
|
|
|
|
IL_04b6:
|
|
{
|
|
G_B89_1->___byte_1 = (uint8_t)G_B89_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_231 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_232 = L_231.___register;
|
|
uint8_t L_233 = L_232.___byte_2;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_234 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_235 = L_234.___register;
|
|
uint8_t L_236 = L_235.___byte_2;
|
|
if ((((int32_t)L_233) == ((int32_t)L_236)))
|
|
{
|
|
G_B91_0 = (&V_20);
|
|
goto IL_04d8;
|
|
}
|
|
G_B90_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B92_0 = 0;
|
|
G_B92_1 = G_B90_0;
|
|
goto IL_04dd;
|
|
}
|
|
|
|
IL_04d8:
|
|
{
|
|
uint8_t L_237;
|
|
L_237 = ConstantHelper_GetByteWithAllBitsSet_m38E318296F5FB9BAE51C97C1AE058716CFC889D7_inline(NULL);
|
|
G_B92_0 = ((int32_t)(L_237));
|
|
G_B92_1 = G_B91_0;
|
|
}
|
|
|
|
IL_04dd:
|
|
{
|
|
G_B92_1->___byte_2 = (uint8_t)G_B92_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_238 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_239 = L_238.___register;
|
|
uint8_t L_240 = L_239.___byte_3;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_241 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_242 = L_241.___register;
|
|
uint8_t L_243 = L_242.___byte_3;
|
|
if ((((int32_t)L_240) == ((int32_t)L_243)))
|
|
{
|
|
G_B94_0 = (&V_20);
|
|
goto IL_04ff;
|
|
}
|
|
G_B93_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B95_0 = 0;
|
|
G_B95_1 = G_B93_0;
|
|
goto IL_0504;
|
|
}
|
|
|
|
IL_04ff:
|
|
{
|
|
uint8_t L_244;
|
|
L_244 = ConstantHelper_GetByteWithAllBitsSet_m38E318296F5FB9BAE51C97C1AE058716CFC889D7_inline(NULL);
|
|
G_B95_0 = ((int32_t)(L_244));
|
|
G_B95_1 = G_B94_0;
|
|
}
|
|
|
|
IL_0504:
|
|
{
|
|
G_B95_1->___byte_3 = (uint8_t)G_B95_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_245 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_246 = L_245.___register;
|
|
uint8_t L_247 = L_246.___byte_4;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_248 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_249 = L_248.___register;
|
|
uint8_t L_250 = L_249.___byte_4;
|
|
if ((((int32_t)L_247) == ((int32_t)L_250)))
|
|
{
|
|
G_B97_0 = (&V_20);
|
|
goto IL_0526;
|
|
}
|
|
G_B96_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B98_0 = 0;
|
|
G_B98_1 = G_B96_0;
|
|
goto IL_052b;
|
|
}
|
|
|
|
IL_0526:
|
|
{
|
|
uint8_t L_251;
|
|
L_251 = ConstantHelper_GetByteWithAllBitsSet_m38E318296F5FB9BAE51C97C1AE058716CFC889D7_inline(NULL);
|
|
G_B98_0 = ((int32_t)(L_251));
|
|
G_B98_1 = G_B97_0;
|
|
}
|
|
|
|
IL_052b:
|
|
{
|
|
G_B98_1->___byte_4 = (uint8_t)G_B98_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_252 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_253 = L_252.___register;
|
|
uint8_t L_254 = L_253.___byte_5;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_255 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_256 = L_255.___register;
|
|
uint8_t L_257 = L_256.___byte_5;
|
|
if ((((int32_t)L_254) == ((int32_t)L_257)))
|
|
{
|
|
G_B100_0 = (&V_20);
|
|
goto IL_054d;
|
|
}
|
|
G_B99_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B101_0 = 0;
|
|
G_B101_1 = G_B99_0;
|
|
goto IL_0552;
|
|
}
|
|
|
|
IL_054d:
|
|
{
|
|
uint8_t L_258;
|
|
L_258 = ConstantHelper_GetByteWithAllBitsSet_m38E318296F5FB9BAE51C97C1AE058716CFC889D7_inline(NULL);
|
|
G_B101_0 = ((int32_t)(L_258));
|
|
G_B101_1 = G_B100_0;
|
|
}
|
|
|
|
IL_0552:
|
|
{
|
|
G_B101_1->___byte_5 = (uint8_t)G_B101_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_259 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_260 = L_259.___register;
|
|
uint8_t L_261 = L_260.___byte_6;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_262 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_263 = L_262.___register;
|
|
uint8_t L_264 = L_263.___byte_6;
|
|
if ((((int32_t)L_261) == ((int32_t)L_264)))
|
|
{
|
|
G_B103_0 = (&V_20);
|
|
goto IL_0574;
|
|
}
|
|
G_B102_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B104_0 = 0;
|
|
G_B104_1 = G_B102_0;
|
|
goto IL_0579;
|
|
}
|
|
|
|
IL_0574:
|
|
{
|
|
uint8_t L_265;
|
|
L_265 = ConstantHelper_GetByteWithAllBitsSet_m38E318296F5FB9BAE51C97C1AE058716CFC889D7_inline(NULL);
|
|
G_B104_0 = ((int32_t)(L_265));
|
|
G_B104_1 = G_B103_0;
|
|
}
|
|
|
|
IL_0579:
|
|
{
|
|
G_B104_1->___byte_6 = (uint8_t)G_B104_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_266 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_267 = L_266.___register;
|
|
uint8_t L_268 = L_267.___byte_7;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_269 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_270 = L_269.___register;
|
|
uint8_t L_271 = L_270.___byte_7;
|
|
if ((((int32_t)L_268) == ((int32_t)L_271)))
|
|
{
|
|
G_B106_0 = (&V_20);
|
|
goto IL_059b;
|
|
}
|
|
G_B105_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B107_0 = 0;
|
|
G_B107_1 = G_B105_0;
|
|
goto IL_05a0;
|
|
}
|
|
|
|
IL_059b:
|
|
{
|
|
uint8_t L_272;
|
|
L_272 = ConstantHelper_GetByteWithAllBitsSet_m38E318296F5FB9BAE51C97C1AE058716CFC889D7_inline(NULL);
|
|
G_B107_0 = ((int32_t)(L_272));
|
|
G_B107_1 = G_B106_0;
|
|
}
|
|
|
|
IL_05a0:
|
|
{
|
|
G_B107_1->___byte_7 = (uint8_t)G_B107_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_273 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_274 = L_273.___register;
|
|
uint8_t L_275 = L_274.___byte_8;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_276 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_277 = L_276.___register;
|
|
uint8_t L_278 = L_277.___byte_8;
|
|
if ((((int32_t)L_275) == ((int32_t)L_278)))
|
|
{
|
|
G_B109_0 = (&V_20);
|
|
goto IL_05c2;
|
|
}
|
|
G_B108_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B110_0 = 0;
|
|
G_B110_1 = G_B108_0;
|
|
goto IL_05c7;
|
|
}
|
|
|
|
IL_05c2:
|
|
{
|
|
uint8_t L_279;
|
|
L_279 = ConstantHelper_GetByteWithAllBitsSet_m38E318296F5FB9BAE51C97C1AE058716CFC889D7_inline(NULL);
|
|
G_B110_0 = ((int32_t)(L_279));
|
|
G_B110_1 = G_B109_0;
|
|
}
|
|
|
|
IL_05c7:
|
|
{
|
|
G_B110_1->___byte_8 = (uint8_t)G_B110_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_280 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_281 = L_280.___register;
|
|
uint8_t L_282 = L_281.___byte_9;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_283 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_284 = L_283.___register;
|
|
uint8_t L_285 = L_284.___byte_9;
|
|
if ((((int32_t)L_282) == ((int32_t)L_285)))
|
|
{
|
|
G_B112_0 = (&V_20);
|
|
goto IL_05e9;
|
|
}
|
|
G_B111_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B113_0 = 0;
|
|
G_B113_1 = G_B111_0;
|
|
goto IL_05ee;
|
|
}
|
|
|
|
IL_05e9:
|
|
{
|
|
uint8_t L_286;
|
|
L_286 = ConstantHelper_GetByteWithAllBitsSet_m38E318296F5FB9BAE51C97C1AE058716CFC889D7_inline(NULL);
|
|
G_B113_0 = ((int32_t)(L_286));
|
|
G_B113_1 = G_B112_0;
|
|
}
|
|
|
|
IL_05ee:
|
|
{
|
|
G_B113_1->___byte_9 = (uint8_t)G_B113_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_287 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_288 = L_287.___register;
|
|
uint8_t L_289 = L_288.___byte_10;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_290 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_291 = L_290.___register;
|
|
uint8_t L_292 = L_291.___byte_10;
|
|
if ((((int32_t)L_289) == ((int32_t)L_292)))
|
|
{
|
|
G_B115_0 = (&V_20);
|
|
goto IL_0610;
|
|
}
|
|
G_B114_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B116_0 = 0;
|
|
G_B116_1 = G_B114_0;
|
|
goto IL_0615;
|
|
}
|
|
|
|
IL_0610:
|
|
{
|
|
uint8_t L_293;
|
|
L_293 = ConstantHelper_GetByteWithAllBitsSet_m38E318296F5FB9BAE51C97C1AE058716CFC889D7_inline(NULL);
|
|
G_B116_0 = ((int32_t)(L_293));
|
|
G_B116_1 = G_B115_0;
|
|
}
|
|
|
|
IL_0615:
|
|
{
|
|
G_B116_1->___byte_10 = (uint8_t)G_B116_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_294 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_295 = L_294.___register;
|
|
uint8_t L_296 = L_295.___byte_11;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_297 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_298 = L_297.___register;
|
|
uint8_t L_299 = L_298.___byte_11;
|
|
if ((((int32_t)L_296) == ((int32_t)L_299)))
|
|
{
|
|
G_B118_0 = (&V_20);
|
|
goto IL_0637;
|
|
}
|
|
G_B117_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B119_0 = 0;
|
|
G_B119_1 = G_B117_0;
|
|
goto IL_063c;
|
|
}
|
|
|
|
IL_0637:
|
|
{
|
|
uint8_t L_300;
|
|
L_300 = ConstantHelper_GetByteWithAllBitsSet_m38E318296F5FB9BAE51C97C1AE058716CFC889D7_inline(NULL);
|
|
G_B119_0 = ((int32_t)(L_300));
|
|
G_B119_1 = G_B118_0;
|
|
}
|
|
|
|
IL_063c:
|
|
{
|
|
G_B119_1->___byte_11 = (uint8_t)G_B119_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_301 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_302 = L_301.___register;
|
|
uint8_t L_303 = L_302.___byte_12;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_304 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_305 = L_304.___register;
|
|
uint8_t L_306 = L_305.___byte_12;
|
|
if ((((int32_t)L_303) == ((int32_t)L_306)))
|
|
{
|
|
G_B121_0 = (&V_20);
|
|
goto IL_065e;
|
|
}
|
|
G_B120_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B122_0 = 0;
|
|
G_B122_1 = G_B120_0;
|
|
goto IL_0663;
|
|
}
|
|
|
|
IL_065e:
|
|
{
|
|
uint8_t L_307;
|
|
L_307 = ConstantHelper_GetByteWithAllBitsSet_m38E318296F5FB9BAE51C97C1AE058716CFC889D7_inline(NULL);
|
|
G_B122_0 = ((int32_t)(L_307));
|
|
G_B122_1 = G_B121_0;
|
|
}
|
|
|
|
IL_0663:
|
|
{
|
|
G_B122_1->___byte_12 = (uint8_t)G_B122_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_308 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_309 = L_308.___register;
|
|
uint8_t L_310 = L_309.___byte_13;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_311 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_312 = L_311.___register;
|
|
uint8_t L_313 = L_312.___byte_13;
|
|
if ((((int32_t)L_310) == ((int32_t)L_313)))
|
|
{
|
|
G_B124_0 = (&V_20);
|
|
goto IL_0685;
|
|
}
|
|
G_B123_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B125_0 = 0;
|
|
G_B125_1 = G_B123_0;
|
|
goto IL_068a;
|
|
}
|
|
|
|
IL_0685:
|
|
{
|
|
uint8_t L_314;
|
|
L_314 = ConstantHelper_GetByteWithAllBitsSet_m38E318296F5FB9BAE51C97C1AE058716CFC889D7_inline(NULL);
|
|
G_B125_0 = ((int32_t)(L_314));
|
|
G_B125_1 = G_B124_0;
|
|
}
|
|
|
|
IL_068a:
|
|
{
|
|
G_B125_1->___byte_13 = (uint8_t)G_B125_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_315 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_316 = L_315.___register;
|
|
uint8_t L_317 = L_316.___byte_14;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_318 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_319 = L_318.___register;
|
|
uint8_t L_320 = L_319.___byte_14;
|
|
if ((((int32_t)L_317) == ((int32_t)L_320)))
|
|
{
|
|
G_B127_0 = (&V_20);
|
|
goto IL_06ac;
|
|
}
|
|
G_B126_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B128_0 = 0;
|
|
G_B128_1 = G_B126_0;
|
|
goto IL_06b1;
|
|
}
|
|
|
|
IL_06ac:
|
|
{
|
|
uint8_t L_321;
|
|
L_321 = ConstantHelper_GetByteWithAllBitsSet_m38E318296F5FB9BAE51C97C1AE058716CFC889D7_inline(NULL);
|
|
G_B128_0 = ((int32_t)(L_321));
|
|
G_B128_1 = G_B127_0;
|
|
}
|
|
|
|
IL_06b1:
|
|
{
|
|
G_B128_1->___byte_14 = (uint8_t)G_B128_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_322 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_323 = L_322.___register;
|
|
uint8_t L_324 = L_323.___byte_15;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_325 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_326 = L_325.___register;
|
|
uint8_t L_327 = L_326.___byte_15;
|
|
if ((((int32_t)L_324) == ((int32_t)L_327)))
|
|
{
|
|
G_B130_0 = (&V_20);
|
|
goto IL_06d3;
|
|
}
|
|
G_B129_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B131_0 = 0;
|
|
G_B131_1 = G_B129_0;
|
|
goto IL_06d8;
|
|
}
|
|
|
|
IL_06d3:
|
|
{
|
|
uint8_t L_328;
|
|
L_328 = ConstantHelper_GetByteWithAllBitsSet_m38E318296F5FB9BAE51C97C1AE058716CFC889D7_inline(NULL);
|
|
G_B131_0 = ((int32_t)(L_328));
|
|
G_B131_1 = G_B130_0;
|
|
}
|
|
|
|
IL_06d8:
|
|
{
|
|
G_B131_1->___byte_15 = (uint8_t)G_B131_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_329;
|
|
memset((&L_329), 0, sizeof(L_329));
|
|
Vector_1__ctor_m48CD7847B9597F3193C9C0BA97ED64E276F4340A((&L_329), (&V_20), il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 13));
|
|
return L_329;
|
|
}
|
|
|
|
IL_06e5:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_330 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_331;
|
|
L_331 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_330, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_332 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.sbyte_class->byval_arg) };
|
|
Type_t* L_333;
|
|
L_333 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_332, NULL);
|
|
bool L_334;
|
|
L_334 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_331, L_333, NULL);
|
|
if (!L_334)
|
|
{
|
|
goto IL_097b;
|
|
}
|
|
}
|
|
{
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_335 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_336 = L_335.___register;
|
|
int8_t L_337 = L_336.___sbyte_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_338 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_339 = L_338.___register;
|
|
int8_t L_340 = L_339.___sbyte_0;
|
|
if ((((int32_t)L_337) == ((int32_t)L_340)))
|
|
{
|
|
G_B135_0 = (&V_20);
|
|
goto IL_0720;
|
|
}
|
|
G_B134_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B136_0 = 0;
|
|
G_B136_1 = G_B134_0;
|
|
goto IL_0725;
|
|
}
|
|
|
|
IL_0720:
|
|
{
|
|
int8_t L_341;
|
|
L_341 = ConstantHelper_GetSByteWithAllBitsSet_mB6B97526769DCCB7B78CCF446F28AAB0D1B5CAE3_inline(NULL);
|
|
G_B136_0 = ((int32_t)(L_341));
|
|
G_B136_1 = G_B135_0;
|
|
}
|
|
|
|
IL_0725:
|
|
{
|
|
G_B136_1->___sbyte_0 = (int8_t)G_B136_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_342 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_343 = L_342.___register;
|
|
int8_t L_344 = L_343.___sbyte_1;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_345 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_346 = L_345.___register;
|
|
int8_t L_347 = L_346.___sbyte_1;
|
|
if ((((int32_t)L_344) == ((int32_t)L_347)))
|
|
{
|
|
G_B138_0 = (&V_20);
|
|
goto IL_0747;
|
|
}
|
|
G_B137_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B139_0 = 0;
|
|
G_B139_1 = G_B137_0;
|
|
goto IL_074c;
|
|
}
|
|
|
|
IL_0747:
|
|
{
|
|
int8_t L_348;
|
|
L_348 = ConstantHelper_GetSByteWithAllBitsSet_mB6B97526769DCCB7B78CCF446F28AAB0D1B5CAE3_inline(NULL);
|
|
G_B139_0 = ((int32_t)(L_348));
|
|
G_B139_1 = G_B138_0;
|
|
}
|
|
|
|
IL_074c:
|
|
{
|
|
G_B139_1->___sbyte_1 = (int8_t)G_B139_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_349 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_350 = L_349.___register;
|
|
int8_t L_351 = L_350.___sbyte_2;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_352 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_353 = L_352.___register;
|
|
int8_t L_354 = L_353.___sbyte_2;
|
|
if ((((int32_t)L_351) == ((int32_t)L_354)))
|
|
{
|
|
G_B141_0 = (&V_20);
|
|
goto IL_076e;
|
|
}
|
|
G_B140_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B142_0 = 0;
|
|
G_B142_1 = G_B140_0;
|
|
goto IL_0773;
|
|
}
|
|
|
|
IL_076e:
|
|
{
|
|
int8_t L_355;
|
|
L_355 = ConstantHelper_GetSByteWithAllBitsSet_mB6B97526769DCCB7B78CCF446F28AAB0D1B5CAE3_inline(NULL);
|
|
G_B142_0 = ((int32_t)(L_355));
|
|
G_B142_1 = G_B141_0;
|
|
}
|
|
|
|
IL_0773:
|
|
{
|
|
G_B142_1->___sbyte_2 = (int8_t)G_B142_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_356 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_357 = L_356.___register;
|
|
int8_t L_358 = L_357.___sbyte_3;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_359 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_360 = L_359.___register;
|
|
int8_t L_361 = L_360.___sbyte_3;
|
|
if ((((int32_t)L_358) == ((int32_t)L_361)))
|
|
{
|
|
G_B144_0 = (&V_20);
|
|
goto IL_0795;
|
|
}
|
|
G_B143_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B145_0 = 0;
|
|
G_B145_1 = G_B143_0;
|
|
goto IL_079a;
|
|
}
|
|
|
|
IL_0795:
|
|
{
|
|
int8_t L_362;
|
|
L_362 = ConstantHelper_GetSByteWithAllBitsSet_mB6B97526769DCCB7B78CCF446F28AAB0D1B5CAE3_inline(NULL);
|
|
G_B145_0 = ((int32_t)(L_362));
|
|
G_B145_1 = G_B144_0;
|
|
}
|
|
|
|
IL_079a:
|
|
{
|
|
G_B145_1->___sbyte_3 = (int8_t)G_B145_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_363 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_364 = L_363.___register;
|
|
int8_t L_365 = L_364.___sbyte_4;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_366 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_367 = L_366.___register;
|
|
int8_t L_368 = L_367.___sbyte_4;
|
|
if ((((int32_t)L_365) == ((int32_t)L_368)))
|
|
{
|
|
G_B147_0 = (&V_20);
|
|
goto IL_07bc;
|
|
}
|
|
G_B146_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B148_0 = 0;
|
|
G_B148_1 = G_B146_0;
|
|
goto IL_07c1;
|
|
}
|
|
|
|
IL_07bc:
|
|
{
|
|
int8_t L_369;
|
|
L_369 = ConstantHelper_GetSByteWithAllBitsSet_mB6B97526769DCCB7B78CCF446F28AAB0D1B5CAE3_inline(NULL);
|
|
G_B148_0 = ((int32_t)(L_369));
|
|
G_B148_1 = G_B147_0;
|
|
}
|
|
|
|
IL_07c1:
|
|
{
|
|
G_B148_1->___sbyte_4 = (int8_t)G_B148_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_370 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_371 = L_370.___register;
|
|
int8_t L_372 = L_371.___sbyte_5;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_373 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_374 = L_373.___register;
|
|
int8_t L_375 = L_374.___sbyte_5;
|
|
if ((((int32_t)L_372) == ((int32_t)L_375)))
|
|
{
|
|
G_B150_0 = (&V_20);
|
|
goto IL_07e3;
|
|
}
|
|
G_B149_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B151_0 = 0;
|
|
G_B151_1 = G_B149_0;
|
|
goto IL_07e8;
|
|
}
|
|
|
|
IL_07e3:
|
|
{
|
|
int8_t L_376;
|
|
L_376 = ConstantHelper_GetSByteWithAllBitsSet_mB6B97526769DCCB7B78CCF446F28AAB0D1B5CAE3_inline(NULL);
|
|
G_B151_0 = ((int32_t)(L_376));
|
|
G_B151_1 = G_B150_0;
|
|
}
|
|
|
|
IL_07e8:
|
|
{
|
|
G_B151_1->___sbyte_5 = (int8_t)G_B151_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_377 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_378 = L_377.___register;
|
|
int8_t L_379 = L_378.___sbyte_6;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_380 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_381 = L_380.___register;
|
|
int8_t L_382 = L_381.___sbyte_6;
|
|
if ((((int32_t)L_379) == ((int32_t)L_382)))
|
|
{
|
|
G_B153_0 = (&V_20);
|
|
goto IL_080a;
|
|
}
|
|
G_B152_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B154_0 = 0;
|
|
G_B154_1 = G_B152_0;
|
|
goto IL_080f;
|
|
}
|
|
|
|
IL_080a:
|
|
{
|
|
int8_t L_383;
|
|
L_383 = ConstantHelper_GetSByteWithAllBitsSet_mB6B97526769DCCB7B78CCF446F28AAB0D1B5CAE3_inline(NULL);
|
|
G_B154_0 = ((int32_t)(L_383));
|
|
G_B154_1 = G_B153_0;
|
|
}
|
|
|
|
IL_080f:
|
|
{
|
|
G_B154_1->___sbyte_6 = (int8_t)G_B154_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_384 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_385 = L_384.___register;
|
|
int8_t L_386 = L_385.___sbyte_7;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_387 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_388 = L_387.___register;
|
|
int8_t L_389 = L_388.___sbyte_7;
|
|
if ((((int32_t)L_386) == ((int32_t)L_389)))
|
|
{
|
|
G_B156_0 = (&V_20);
|
|
goto IL_0831;
|
|
}
|
|
G_B155_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B157_0 = 0;
|
|
G_B157_1 = G_B155_0;
|
|
goto IL_0836;
|
|
}
|
|
|
|
IL_0831:
|
|
{
|
|
int8_t L_390;
|
|
L_390 = ConstantHelper_GetSByteWithAllBitsSet_mB6B97526769DCCB7B78CCF446F28AAB0D1B5CAE3_inline(NULL);
|
|
G_B157_0 = ((int32_t)(L_390));
|
|
G_B157_1 = G_B156_0;
|
|
}
|
|
|
|
IL_0836:
|
|
{
|
|
G_B157_1->___sbyte_7 = (int8_t)G_B157_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_391 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_392 = L_391.___register;
|
|
int8_t L_393 = L_392.___sbyte_8;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_394 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_395 = L_394.___register;
|
|
int8_t L_396 = L_395.___sbyte_8;
|
|
if ((((int32_t)L_393) == ((int32_t)L_396)))
|
|
{
|
|
G_B159_0 = (&V_20);
|
|
goto IL_0858;
|
|
}
|
|
G_B158_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B160_0 = 0;
|
|
G_B160_1 = G_B158_0;
|
|
goto IL_085d;
|
|
}
|
|
|
|
IL_0858:
|
|
{
|
|
int8_t L_397;
|
|
L_397 = ConstantHelper_GetSByteWithAllBitsSet_mB6B97526769DCCB7B78CCF446F28AAB0D1B5CAE3_inline(NULL);
|
|
G_B160_0 = ((int32_t)(L_397));
|
|
G_B160_1 = G_B159_0;
|
|
}
|
|
|
|
IL_085d:
|
|
{
|
|
G_B160_1->___sbyte_8 = (int8_t)G_B160_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_398 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_399 = L_398.___register;
|
|
int8_t L_400 = L_399.___sbyte_9;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_401 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_402 = L_401.___register;
|
|
int8_t L_403 = L_402.___sbyte_9;
|
|
if ((((int32_t)L_400) == ((int32_t)L_403)))
|
|
{
|
|
G_B162_0 = (&V_20);
|
|
goto IL_087f;
|
|
}
|
|
G_B161_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B163_0 = 0;
|
|
G_B163_1 = G_B161_0;
|
|
goto IL_0884;
|
|
}
|
|
|
|
IL_087f:
|
|
{
|
|
int8_t L_404;
|
|
L_404 = ConstantHelper_GetSByteWithAllBitsSet_mB6B97526769DCCB7B78CCF446F28AAB0D1B5CAE3_inline(NULL);
|
|
G_B163_0 = ((int32_t)(L_404));
|
|
G_B163_1 = G_B162_0;
|
|
}
|
|
|
|
IL_0884:
|
|
{
|
|
G_B163_1->___sbyte_9 = (int8_t)G_B163_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_405 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_406 = L_405.___register;
|
|
int8_t L_407 = L_406.___sbyte_10;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_408 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_409 = L_408.___register;
|
|
int8_t L_410 = L_409.___sbyte_10;
|
|
if ((((int32_t)L_407) == ((int32_t)L_410)))
|
|
{
|
|
G_B165_0 = (&V_20);
|
|
goto IL_08a6;
|
|
}
|
|
G_B164_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B166_0 = 0;
|
|
G_B166_1 = G_B164_0;
|
|
goto IL_08ab;
|
|
}
|
|
|
|
IL_08a6:
|
|
{
|
|
int8_t L_411;
|
|
L_411 = ConstantHelper_GetSByteWithAllBitsSet_mB6B97526769DCCB7B78CCF446F28AAB0D1B5CAE3_inline(NULL);
|
|
G_B166_0 = ((int32_t)(L_411));
|
|
G_B166_1 = G_B165_0;
|
|
}
|
|
|
|
IL_08ab:
|
|
{
|
|
G_B166_1->___sbyte_10 = (int8_t)G_B166_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_412 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_413 = L_412.___register;
|
|
int8_t L_414 = L_413.___sbyte_11;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_415 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_416 = L_415.___register;
|
|
int8_t L_417 = L_416.___sbyte_11;
|
|
if ((((int32_t)L_414) == ((int32_t)L_417)))
|
|
{
|
|
G_B168_0 = (&V_20);
|
|
goto IL_08cd;
|
|
}
|
|
G_B167_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B169_0 = 0;
|
|
G_B169_1 = G_B167_0;
|
|
goto IL_08d2;
|
|
}
|
|
|
|
IL_08cd:
|
|
{
|
|
int8_t L_418;
|
|
L_418 = ConstantHelper_GetSByteWithAllBitsSet_mB6B97526769DCCB7B78CCF446F28AAB0D1B5CAE3_inline(NULL);
|
|
G_B169_0 = ((int32_t)(L_418));
|
|
G_B169_1 = G_B168_0;
|
|
}
|
|
|
|
IL_08d2:
|
|
{
|
|
G_B169_1->___sbyte_11 = (int8_t)G_B169_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_419 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_420 = L_419.___register;
|
|
int8_t L_421 = L_420.___sbyte_12;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_422 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_423 = L_422.___register;
|
|
int8_t L_424 = L_423.___sbyte_12;
|
|
if ((((int32_t)L_421) == ((int32_t)L_424)))
|
|
{
|
|
G_B171_0 = (&V_20);
|
|
goto IL_08f4;
|
|
}
|
|
G_B170_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B172_0 = 0;
|
|
G_B172_1 = G_B170_0;
|
|
goto IL_08f9;
|
|
}
|
|
|
|
IL_08f4:
|
|
{
|
|
int8_t L_425;
|
|
L_425 = ConstantHelper_GetSByteWithAllBitsSet_mB6B97526769DCCB7B78CCF446F28AAB0D1B5CAE3_inline(NULL);
|
|
G_B172_0 = ((int32_t)(L_425));
|
|
G_B172_1 = G_B171_0;
|
|
}
|
|
|
|
IL_08f9:
|
|
{
|
|
G_B172_1->___sbyte_12 = (int8_t)G_B172_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_426 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_427 = L_426.___register;
|
|
int8_t L_428 = L_427.___sbyte_13;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_429 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_430 = L_429.___register;
|
|
int8_t L_431 = L_430.___sbyte_13;
|
|
if ((((int32_t)L_428) == ((int32_t)L_431)))
|
|
{
|
|
G_B174_0 = (&V_20);
|
|
goto IL_091b;
|
|
}
|
|
G_B173_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B175_0 = 0;
|
|
G_B175_1 = G_B173_0;
|
|
goto IL_0920;
|
|
}
|
|
|
|
IL_091b:
|
|
{
|
|
int8_t L_432;
|
|
L_432 = ConstantHelper_GetSByteWithAllBitsSet_mB6B97526769DCCB7B78CCF446F28AAB0D1B5CAE3_inline(NULL);
|
|
G_B175_0 = ((int32_t)(L_432));
|
|
G_B175_1 = G_B174_0;
|
|
}
|
|
|
|
IL_0920:
|
|
{
|
|
G_B175_1->___sbyte_13 = (int8_t)G_B175_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_433 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_434 = L_433.___register;
|
|
int8_t L_435 = L_434.___sbyte_14;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_436 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_437 = L_436.___register;
|
|
int8_t L_438 = L_437.___sbyte_14;
|
|
if ((((int32_t)L_435) == ((int32_t)L_438)))
|
|
{
|
|
G_B177_0 = (&V_20);
|
|
goto IL_0942;
|
|
}
|
|
G_B176_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B178_0 = 0;
|
|
G_B178_1 = G_B176_0;
|
|
goto IL_0947;
|
|
}
|
|
|
|
IL_0942:
|
|
{
|
|
int8_t L_439;
|
|
L_439 = ConstantHelper_GetSByteWithAllBitsSet_mB6B97526769DCCB7B78CCF446F28AAB0D1B5CAE3_inline(NULL);
|
|
G_B178_0 = ((int32_t)(L_439));
|
|
G_B178_1 = G_B177_0;
|
|
}
|
|
|
|
IL_0947:
|
|
{
|
|
G_B178_1->___sbyte_14 = (int8_t)G_B178_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_440 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_441 = L_440.___register;
|
|
int8_t L_442 = L_441.___sbyte_15;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_443 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_444 = L_443.___register;
|
|
int8_t L_445 = L_444.___sbyte_15;
|
|
if ((((int32_t)L_442) == ((int32_t)L_445)))
|
|
{
|
|
G_B180_0 = (&V_20);
|
|
goto IL_0969;
|
|
}
|
|
G_B179_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B181_0 = 0;
|
|
G_B181_1 = G_B179_0;
|
|
goto IL_096e;
|
|
}
|
|
|
|
IL_0969:
|
|
{
|
|
int8_t L_446;
|
|
L_446 = ConstantHelper_GetSByteWithAllBitsSet_mB6B97526769DCCB7B78CCF446F28AAB0D1B5CAE3_inline(NULL);
|
|
G_B181_0 = ((int32_t)(L_446));
|
|
G_B181_1 = G_B180_0;
|
|
}
|
|
|
|
IL_096e:
|
|
{
|
|
G_B181_1->___sbyte_15 = (int8_t)G_B181_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_447;
|
|
memset((&L_447), 0, sizeof(L_447));
|
|
Vector_1__ctor_m48CD7847B9597F3193C9C0BA97ED64E276F4340A((&L_447), (&V_20), il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 13));
|
|
return L_447;
|
|
}
|
|
|
|
IL_097b:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_448 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_449;
|
|
L_449 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_448, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_450 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint16_class->byval_arg) };
|
|
Type_t* L_451;
|
|
L_451 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_450, NULL);
|
|
bool L_452;
|
|
L_452 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_449, L_451, NULL);
|
|
if (!L_452)
|
|
{
|
|
goto IL_0ad9;
|
|
}
|
|
}
|
|
{
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_453 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_454 = L_453.___register;
|
|
uint16_t L_455 = L_454.___uint16_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_456 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_457 = L_456.___register;
|
|
uint16_t L_458 = L_457.___uint16_0;
|
|
if ((((int32_t)L_455) == ((int32_t)L_458)))
|
|
{
|
|
G_B185_0 = (&V_20);
|
|
goto IL_09b6;
|
|
}
|
|
G_B184_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B186_0 = 0;
|
|
G_B186_1 = G_B184_0;
|
|
goto IL_09bb;
|
|
}
|
|
|
|
IL_09b6:
|
|
{
|
|
uint16_t L_459;
|
|
L_459 = ConstantHelper_GetUInt16WithAllBitsSet_mD3E13D933A06059499F0E0CBE6798D72D175464A_inline(NULL);
|
|
G_B186_0 = ((int32_t)(L_459));
|
|
G_B186_1 = G_B185_0;
|
|
}
|
|
|
|
IL_09bb:
|
|
{
|
|
G_B186_1->___uint16_0 = (uint16_t)G_B186_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_460 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_461 = L_460.___register;
|
|
uint16_t L_462 = L_461.___uint16_1;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_463 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_464 = L_463.___register;
|
|
uint16_t L_465 = L_464.___uint16_1;
|
|
if ((((int32_t)L_462) == ((int32_t)L_465)))
|
|
{
|
|
G_B188_0 = (&V_20);
|
|
goto IL_09dd;
|
|
}
|
|
G_B187_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B189_0 = 0;
|
|
G_B189_1 = G_B187_0;
|
|
goto IL_09e2;
|
|
}
|
|
|
|
IL_09dd:
|
|
{
|
|
uint16_t L_466;
|
|
L_466 = ConstantHelper_GetUInt16WithAllBitsSet_mD3E13D933A06059499F0E0CBE6798D72D175464A_inline(NULL);
|
|
G_B189_0 = ((int32_t)(L_466));
|
|
G_B189_1 = G_B188_0;
|
|
}
|
|
|
|
IL_09e2:
|
|
{
|
|
G_B189_1->___uint16_1 = (uint16_t)G_B189_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_467 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_468 = L_467.___register;
|
|
uint16_t L_469 = L_468.___uint16_2;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_470 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_471 = L_470.___register;
|
|
uint16_t L_472 = L_471.___uint16_2;
|
|
if ((((int32_t)L_469) == ((int32_t)L_472)))
|
|
{
|
|
G_B191_0 = (&V_20);
|
|
goto IL_0a04;
|
|
}
|
|
G_B190_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B192_0 = 0;
|
|
G_B192_1 = G_B190_0;
|
|
goto IL_0a09;
|
|
}
|
|
|
|
IL_0a04:
|
|
{
|
|
uint16_t L_473;
|
|
L_473 = ConstantHelper_GetUInt16WithAllBitsSet_mD3E13D933A06059499F0E0CBE6798D72D175464A_inline(NULL);
|
|
G_B192_0 = ((int32_t)(L_473));
|
|
G_B192_1 = G_B191_0;
|
|
}
|
|
|
|
IL_0a09:
|
|
{
|
|
G_B192_1->___uint16_2 = (uint16_t)G_B192_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_474 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_475 = L_474.___register;
|
|
uint16_t L_476 = L_475.___uint16_3;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_477 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_478 = L_477.___register;
|
|
uint16_t L_479 = L_478.___uint16_3;
|
|
if ((((int32_t)L_476) == ((int32_t)L_479)))
|
|
{
|
|
G_B194_0 = (&V_20);
|
|
goto IL_0a2b;
|
|
}
|
|
G_B193_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B195_0 = 0;
|
|
G_B195_1 = G_B193_0;
|
|
goto IL_0a30;
|
|
}
|
|
|
|
IL_0a2b:
|
|
{
|
|
uint16_t L_480;
|
|
L_480 = ConstantHelper_GetUInt16WithAllBitsSet_mD3E13D933A06059499F0E0CBE6798D72D175464A_inline(NULL);
|
|
G_B195_0 = ((int32_t)(L_480));
|
|
G_B195_1 = G_B194_0;
|
|
}
|
|
|
|
IL_0a30:
|
|
{
|
|
G_B195_1->___uint16_3 = (uint16_t)G_B195_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_481 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_482 = L_481.___register;
|
|
uint16_t L_483 = L_482.___uint16_4;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_484 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_485 = L_484.___register;
|
|
uint16_t L_486 = L_485.___uint16_4;
|
|
if ((((int32_t)L_483) == ((int32_t)L_486)))
|
|
{
|
|
G_B197_0 = (&V_20);
|
|
goto IL_0a52;
|
|
}
|
|
G_B196_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B198_0 = 0;
|
|
G_B198_1 = G_B196_0;
|
|
goto IL_0a57;
|
|
}
|
|
|
|
IL_0a52:
|
|
{
|
|
uint16_t L_487;
|
|
L_487 = ConstantHelper_GetUInt16WithAllBitsSet_mD3E13D933A06059499F0E0CBE6798D72D175464A_inline(NULL);
|
|
G_B198_0 = ((int32_t)(L_487));
|
|
G_B198_1 = G_B197_0;
|
|
}
|
|
|
|
IL_0a57:
|
|
{
|
|
G_B198_1->___uint16_4 = (uint16_t)G_B198_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_488 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_489 = L_488.___register;
|
|
uint16_t L_490 = L_489.___uint16_5;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_491 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_492 = L_491.___register;
|
|
uint16_t L_493 = L_492.___uint16_5;
|
|
if ((((int32_t)L_490) == ((int32_t)L_493)))
|
|
{
|
|
G_B200_0 = (&V_20);
|
|
goto IL_0a79;
|
|
}
|
|
G_B199_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B201_0 = 0;
|
|
G_B201_1 = G_B199_0;
|
|
goto IL_0a7e;
|
|
}
|
|
|
|
IL_0a79:
|
|
{
|
|
uint16_t L_494;
|
|
L_494 = ConstantHelper_GetUInt16WithAllBitsSet_mD3E13D933A06059499F0E0CBE6798D72D175464A_inline(NULL);
|
|
G_B201_0 = ((int32_t)(L_494));
|
|
G_B201_1 = G_B200_0;
|
|
}
|
|
|
|
IL_0a7e:
|
|
{
|
|
G_B201_1->___uint16_5 = (uint16_t)G_B201_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_495 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_496 = L_495.___register;
|
|
uint16_t L_497 = L_496.___uint16_6;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_498 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_499 = L_498.___register;
|
|
uint16_t L_500 = L_499.___uint16_6;
|
|
if ((((int32_t)L_497) == ((int32_t)L_500)))
|
|
{
|
|
G_B203_0 = (&V_20);
|
|
goto IL_0aa0;
|
|
}
|
|
G_B202_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B204_0 = 0;
|
|
G_B204_1 = G_B202_0;
|
|
goto IL_0aa5;
|
|
}
|
|
|
|
IL_0aa0:
|
|
{
|
|
uint16_t L_501;
|
|
L_501 = ConstantHelper_GetUInt16WithAllBitsSet_mD3E13D933A06059499F0E0CBE6798D72D175464A_inline(NULL);
|
|
G_B204_0 = ((int32_t)(L_501));
|
|
G_B204_1 = G_B203_0;
|
|
}
|
|
|
|
IL_0aa5:
|
|
{
|
|
G_B204_1->___uint16_6 = (uint16_t)G_B204_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_502 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_503 = L_502.___register;
|
|
uint16_t L_504 = L_503.___uint16_7;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_505 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_506 = L_505.___register;
|
|
uint16_t L_507 = L_506.___uint16_7;
|
|
if ((((int32_t)L_504) == ((int32_t)L_507)))
|
|
{
|
|
G_B206_0 = (&V_20);
|
|
goto IL_0ac7;
|
|
}
|
|
G_B205_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B207_0 = 0;
|
|
G_B207_1 = G_B205_0;
|
|
goto IL_0acc;
|
|
}
|
|
|
|
IL_0ac7:
|
|
{
|
|
uint16_t L_508;
|
|
L_508 = ConstantHelper_GetUInt16WithAllBitsSet_mD3E13D933A06059499F0E0CBE6798D72D175464A_inline(NULL);
|
|
G_B207_0 = ((int32_t)(L_508));
|
|
G_B207_1 = G_B206_0;
|
|
}
|
|
|
|
IL_0acc:
|
|
{
|
|
G_B207_1->___uint16_7 = (uint16_t)G_B207_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_509;
|
|
memset((&L_509), 0, sizeof(L_509));
|
|
Vector_1__ctor_m48CD7847B9597F3193C9C0BA97ED64E276F4340A((&L_509), (&V_20), il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 13));
|
|
return L_509;
|
|
}
|
|
|
|
IL_0ad9:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_510 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_511;
|
|
L_511 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_510, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_512 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int16_class->byval_arg) };
|
|
Type_t* L_513;
|
|
L_513 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_512, NULL);
|
|
bool L_514;
|
|
L_514 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_511, L_513, NULL);
|
|
if (!L_514)
|
|
{
|
|
goto IL_0c37;
|
|
}
|
|
}
|
|
{
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_515 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_516 = L_515.___register;
|
|
int16_t L_517 = L_516.___int16_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_518 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_519 = L_518.___register;
|
|
int16_t L_520 = L_519.___int16_0;
|
|
if ((((int32_t)L_517) == ((int32_t)L_520)))
|
|
{
|
|
G_B211_0 = (&V_20);
|
|
goto IL_0b14;
|
|
}
|
|
G_B210_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B212_0 = 0;
|
|
G_B212_1 = G_B210_0;
|
|
goto IL_0b19;
|
|
}
|
|
|
|
IL_0b14:
|
|
{
|
|
int16_t L_521;
|
|
L_521 = ConstantHelper_GetInt16WithAllBitsSet_m70C5F99E624490970E2D4093FE6E800D1849DDFC_inline(NULL);
|
|
G_B212_0 = ((int32_t)(L_521));
|
|
G_B212_1 = G_B211_0;
|
|
}
|
|
|
|
IL_0b19:
|
|
{
|
|
G_B212_1->___int16_0 = (int16_t)G_B212_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_522 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_523 = L_522.___register;
|
|
int16_t L_524 = L_523.___int16_1;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_525 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_526 = L_525.___register;
|
|
int16_t L_527 = L_526.___int16_1;
|
|
if ((((int32_t)L_524) == ((int32_t)L_527)))
|
|
{
|
|
G_B214_0 = (&V_20);
|
|
goto IL_0b3b;
|
|
}
|
|
G_B213_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B215_0 = 0;
|
|
G_B215_1 = G_B213_0;
|
|
goto IL_0b40;
|
|
}
|
|
|
|
IL_0b3b:
|
|
{
|
|
int16_t L_528;
|
|
L_528 = ConstantHelper_GetInt16WithAllBitsSet_m70C5F99E624490970E2D4093FE6E800D1849DDFC_inline(NULL);
|
|
G_B215_0 = ((int32_t)(L_528));
|
|
G_B215_1 = G_B214_0;
|
|
}
|
|
|
|
IL_0b40:
|
|
{
|
|
G_B215_1->___int16_1 = (int16_t)G_B215_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_529 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_530 = L_529.___register;
|
|
int16_t L_531 = L_530.___int16_2;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_532 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_533 = L_532.___register;
|
|
int16_t L_534 = L_533.___int16_2;
|
|
if ((((int32_t)L_531) == ((int32_t)L_534)))
|
|
{
|
|
G_B217_0 = (&V_20);
|
|
goto IL_0b62;
|
|
}
|
|
G_B216_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B218_0 = 0;
|
|
G_B218_1 = G_B216_0;
|
|
goto IL_0b67;
|
|
}
|
|
|
|
IL_0b62:
|
|
{
|
|
int16_t L_535;
|
|
L_535 = ConstantHelper_GetInt16WithAllBitsSet_m70C5F99E624490970E2D4093FE6E800D1849DDFC_inline(NULL);
|
|
G_B218_0 = ((int32_t)(L_535));
|
|
G_B218_1 = G_B217_0;
|
|
}
|
|
|
|
IL_0b67:
|
|
{
|
|
G_B218_1->___int16_2 = (int16_t)G_B218_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_536 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_537 = L_536.___register;
|
|
int16_t L_538 = L_537.___int16_3;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_539 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_540 = L_539.___register;
|
|
int16_t L_541 = L_540.___int16_3;
|
|
if ((((int32_t)L_538) == ((int32_t)L_541)))
|
|
{
|
|
G_B220_0 = (&V_20);
|
|
goto IL_0b89;
|
|
}
|
|
G_B219_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B221_0 = 0;
|
|
G_B221_1 = G_B219_0;
|
|
goto IL_0b8e;
|
|
}
|
|
|
|
IL_0b89:
|
|
{
|
|
int16_t L_542;
|
|
L_542 = ConstantHelper_GetInt16WithAllBitsSet_m70C5F99E624490970E2D4093FE6E800D1849DDFC_inline(NULL);
|
|
G_B221_0 = ((int32_t)(L_542));
|
|
G_B221_1 = G_B220_0;
|
|
}
|
|
|
|
IL_0b8e:
|
|
{
|
|
G_B221_1->___int16_3 = (int16_t)G_B221_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_543 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_544 = L_543.___register;
|
|
int16_t L_545 = L_544.___int16_4;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_546 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_547 = L_546.___register;
|
|
int16_t L_548 = L_547.___int16_4;
|
|
if ((((int32_t)L_545) == ((int32_t)L_548)))
|
|
{
|
|
G_B223_0 = (&V_20);
|
|
goto IL_0bb0;
|
|
}
|
|
G_B222_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B224_0 = 0;
|
|
G_B224_1 = G_B222_0;
|
|
goto IL_0bb5;
|
|
}
|
|
|
|
IL_0bb0:
|
|
{
|
|
int16_t L_549;
|
|
L_549 = ConstantHelper_GetInt16WithAllBitsSet_m70C5F99E624490970E2D4093FE6E800D1849DDFC_inline(NULL);
|
|
G_B224_0 = ((int32_t)(L_549));
|
|
G_B224_1 = G_B223_0;
|
|
}
|
|
|
|
IL_0bb5:
|
|
{
|
|
G_B224_1->___int16_4 = (int16_t)G_B224_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_550 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_551 = L_550.___register;
|
|
int16_t L_552 = L_551.___int16_5;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_553 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_554 = L_553.___register;
|
|
int16_t L_555 = L_554.___int16_5;
|
|
if ((((int32_t)L_552) == ((int32_t)L_555)))
|
|
{
|
|
G_B226_0 = (&V_20);
|
|
goto IL_0bd7;
|
|
}
|
|
G_B225_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B227_0 = 0;
|
|
G_B227_1 = G_B225_0;
|
|
goto IL_0bdc;
|
|
}
|
|
|
|
IL_0bd7:
|
|
{
|
|
int16_t L_556;
|
|
L_556 = ConstantHelper_GetInt16WithAllBitsSet_m70C5F99E624490970E2D4093FE6E800D1849DDFC_inline(NULL);
|
|
G_B227_0 = ((int32_t)(L_556));
|
|
G_B227_1 = G_B226_0;
|
|
}
|
|
|
|
IL_0bdc:
|
|
{
|
|
G_B227_1->___int16_5 = (int16_t)G_B227_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_557 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_558 = L_557.___register;
|
|
int16_t L_559 = L_558.___int16_6;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_560 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_561 = L_560.___register;
|
|
int16_t L_562 = L_561.___int16_6;
|
|
if ((((int32_t)L_559) == ((int32_t)L_562)))
|
|
{
|
|
G_B229_0 = (&V_20);
|
|
goto IL_0bfe;
|
|
}
|
|
G_B228_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B230_0 = 0;
|
|
G_B230_1 = G_B228_0;
|
|
goto IL_0c03;
|
|
}
|
|
|
|
IL_0bfe:
|
|
{
|
|
int16_t L_563;
|
|
L_563 = ConstantHelper_GetInt16WithAllBitsSet_m70C5F99E624490970E2D4093FE6E800D1849DDFC_inline(NULL);
|
|
G_B230_0 = ((int32_t)(L_563));
|
|
G_B230_1 = G_B229_0;
|
|
}
|
|
|
|
IL_0c03:
|
|
{
|
|
G_B230_1->___int16_6 = (int16_t)G_B230_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_564 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_565 = L_564.___register;
|
|
int16_t L_566 = L_565.___int16_7;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_567 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_568 = L_567.___register;
|
|
int16_t L_569 = L_568.___int16_7;
|
|
if ((((int32_t)L_566) == ((int32_t)L_569)))
|
|
{
|
|
G_B232_0 = (&V_20);
|
|
goto IL_0c25;
|
|
}
|
|
G_B231_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B233_0 = 0;
|
|
G_B233_1 = G_B231_0;
|
|
goto IL_0c2a;
|
|
}
|
|
|
|
IL_0c25:
|
|
{
|
|
int16_t L_570;
|
|
L_570 = ConstantHelper_GetInt16WithAllBitsSet_m70C5F99E624490970E2D4093FE6E800D1849DDFC_inline(NULL);
|
|
G_B233_0 = ((int32_t)(L_570));
|
|
G_B233_1 = G_B232_0;
|
|
}
|
|
|
|
IL_0c2a:
|
|
{
|
|
G_B233_1->___int16_7 = (int16_t)G_B233_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_571;
|
|
memset((&L_571), 0, sizeof(L_571));
|
|
Vector_1__ctor_m48CD7847B9597F3193C9C0BA97ED64E276F4340A((&L_571), (&V_20), il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 13));
|
|
return L_571;
|
|
}
|
|
|
|
IL_0c37:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_572 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_573;
|
|
L_573 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_572, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_574 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint32_class->byval_arg) };
|
|
Type_t* L_575;
|
|
L_575 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_574, NULL);
|
|
bool L_576;
|
|
L_576 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_573, L_575, NULL);
|
|
if (!L_576)
|
|
{
|
|
goto IL_0cf9;
|
|
}
|
|
}
|
|
{
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_577 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_578 = L_577.___register;
|
|
uint32_t L_579 = L_578.___uint32_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_580 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_581 = L_580.___register;
|
|
uint32_t L_582 = L_581.___uint32_0;
|
|
if ((((int32_t)L_579) == ((int32_t)L_582)))
|
|
{
|
|
G_B237_0 = (&V_20);
|
|
goto IL_0c72;
|
|
}
|
|
G_B236_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B238_0 = ((uint32_t)(0));
|
|
G_B238_1 = G_B236_0;
|
|
goto IL_0c77;
|
|
}
|
|
|
|
IL_0c72:
|
|
{
|
|
uint32_t L_583;
|
|
L_583 = ConstantHelper_GetUInt32WithAllBitsSet_m78CBFE0C29CF227C16D2A9021972A0D54744BCAF_inline(NULL);
|
|
G_B238_0 = L_583;
|
|
G_B238_1 = G_B237_0;
|
|
}
|
|
|
|
IL_0c77:
|
|
{
|
|
G_B238_1->___uint32_0 = G_B238_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_584 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_585 = L_584.___register;
|
|
uint32_t L_586 = L_585.___uint32_1;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_587 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_588 = L_587.___register;
|
|
uint32_t L_589 = L_588.___uint32_1;
|
|
if ((((int32_t)L_586) == ((int32_t)L_589)))
|
|
{
|
|
G_B240_0 = (&V_20);
|
|
goto IL_0c99;
|
|
}
|
|
G_B239_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B241_0 = ((uint32_t)(0));
|
|
G_B241_1 = G_B239_0;
|
|
goto IL_0c9e;
|
|
}
|
|
|
|
IL_0c99:
|
|
{
|
|
uint32_t L_590;
|
|
L_590 = ConstantHelper_GetUInt32WithAllBitsSet_m78CBFE0C29CF227C16D2A9021972A0D54744BCAF_inline(NULL);
|
|
G_B241_0 = L_590;
|
|
G_B241_1 = G_B240_0;
|
|
}
|
|
|
|
IL_0c9e:
|
|
{
|
|
G_B241_1->___uint32_1 = G_B241_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_591 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_592 = L_591.___register;
|
|
uint32_t L_593 = L_592.___uint32_2;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_594 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_595 = L_594.___register;
|
|
uint32_t L_596 = L_595.___uint32_2;
|
|
if ((((int32_t)L_593) == ((int32_t)L_596)))
|
|
{
|
|
G_B243_0 = (&V_20);
|
|
goto IL_0cc0;
|
|
}
|
|
G_B242_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B244_0 = ((uint32_t)(0));
|
|
G_B244_1 = G_B242_0;
|
|
goto IL_0cc5;
|
|
}
|
|
|
|
IL_0cc0:
|
|
{
|
|
uint32_t L_597;
|
|
L_597 = ConstantHelper_GetUInt32WithAllBitsSet_m78CBFE0C29CF227C16D2A9021972A0D54744BCAF_inline(NULL);
|
|
G_B244_0 = L_597;
|
|
G_B244_1 = G_B243_0;
|
|
}
|
|
|
|
IL_0cc5:
|
|
{
|
|
G_B244_1->___uint32_2 = G_B244_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_598 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_599 = L_598.___register;
|
|
uint32_t L_600 = L_599.___uint32_3;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_601 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_602 = L_601.___register;
|
|
uint32_t L_603 = L_602.___uint32_3;
|
|
if ((((int32_t)L_600) == ((int32_t)L_603)))
|
|
{
|
|
G_B246_0 = (&V_20);
|
|
goto IL_0ce7;
|
|
}
|
|
G_B245_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B247_0 = ((uint32_t)(0));
|
|
G_B247_1 = G_B245_0;
|
|
goto IL_0cec;
|
|
}
|
|
|
|
IL_0ce7:
|
|
{
|
|
uint32_t L_604;
|
|
L_604 = ConstantHelper_GetUInt32WithAllBitsSet_m78CBFE0C29CF227C16D2A9021972A0D54744BCAF_inline(NULL);
|
|
G_B247_0 = L_604;
|
|
G_B247_1 = G_B246_0;
|
|
}
|
|
|
|
IL_0cec:
|
|
{
|
|
G_B247_1->___uint32_3 = G_B247_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_605;
|
|
memset((&L_605), 0, sizeof(L_605));
|
|
Vector_1__ctor_m48CD7847B9597F3193C9C0BA97ED64E276F4340A((&L_605), (&V_20), il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 13));
|
|
return L_605;
|
|
}
|
|
|
|
IL_0cf9:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_606 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_607;
|
|
L_607 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_606, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_608 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
Type_t* L_609;
|
|
L_609 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_608, NULL);
|
|
bool L_610;
|
|
L_610 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_607, L_609, NULL);
|
|
if (!L_610)
|
|
{
|
|
goto IL_0dbb;
|
|
}
|
|
}
|
|
{
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_611 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_612 = L_611.___register;
|
|
int32_t L_613 = L_612.___int32_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_614 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_615 = L_614.___register;
|
|
int32_t L_616 = L_615.___int32_0;
|
|
if ((((int32_t)L_613) == ((int32_t)L_616)))
|
|
{
|
|
G_B251_0 = (&V_20);
|
|
goto IL_0d34;
|
|
}
|
|
G_B250_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B252_0 = 0;
|
|
G_B252_1 = G_B250_0;
|
|
goto IL_0d39;
|
|
}
|
|
|
|
IL_0d34:
|
|
{
|
|
int32_t L_617;
|
|
L_617 = ConstantHelper_GetInt32WithAllBitsSet_m245101340DDE7277600327D319DF86F1FFEA4FD0_inline(NULL);
|
|
G_B252_0 = L_617;
|
|
G_B252_1 = G_B251_0;
|
|
}
|
|
|
|
IL_0d39:
|
|
{
|
|
G_B252_1->___int32_0 = G_B252_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_618 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_619 = L_618.___register;
|
|
int32_t L_620 = L_619.___int32_1;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_621 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_622 = L_621.___register;
|
|
int32_t L_623 = L_622.___int32_1;
|
|
if ((((int32_t)L_620) == ((int32_t)L_623)))
|
|
{
|
|
G_B254_0 = (&V_20);
|
|
goto IL_0d5b;
|
|
}
|
|
G_B253_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B255_0 = 0;
|
|
G_B255_1 = G_B253_0;
|
|
goto IL_0d60;
|
|
}
|
|
|
|
IL_0d5b:
|
|
{
|
|
int32_t L_624;
|
|
L_624 = ConstantHelper_GetInt32WithAllBitsSet_m245101340DDE7277600327D319DF86F1FFEA4FD0_inline(NULL);
|
|
G_B255_0 = L_624;
|
|
G_B255_1 = G_B254_0;
|
|
}
|
|
|
|
IL_0d60:
|
|
{
|
|
G_B255_1->___int32_1 = G_B255_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_625 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_626 = L_625.___register;
|
|
int32_t L_627 = L_626.___int32_2;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_628 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_629 = L_628.___register;
|
|
int32_t L_630 = L_629.___int32_2;
|
|
if ((((int32_t)L_627) == ((int32_t)L_630)))
|
|
{
|
|
G_B257_0 = (&V_20);
|
|
goto IL_0d82;
|
|
}
|
|
G_B256_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B258_0 = 0;
|
|
G_B258_1 = G_B256_0;
|
|
goto IL_0d87;
|
|
}
|
|
|
|
IL_0d82:
|
|
{
|
|
int32_t L_631;
|
|
L_631 = ConstantHelper_GetInt32WithAllBitsSet_m245101340DDE7277600327D319DF86F1FFEA4FD0_inline(NULL);
|
|
G_B258_0 = L_631;
|
|
G_B258_1 = G_B257_0;
|
|
}
|
|
|
|
IL_0d87:
|
|
{
|
|
G_B258_1->___int32_2 = G_B258_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_632 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_633 = L_632.___register;
|
|
int32_t L_634 = L_633.___int32_3;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_635 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_636 = L_635.___register;
|
|
int32_t L_637 = L_636.___int32_3;
|
|
if ((((int32_t)L_634) == ((int32_t)L_637)))
|
|
{
|
|
G_B260_0 = (&V_20);
|
|
goto IL_0da9;
|
|
}
|
|
G_B259_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B261_0 = 0;
|
|
G_B261_1 = G_B259_0;
|
|
goto IL_0dae;
|
|
}
|
|
|
|
IL_0da9:
|
|
{
|
|
int32_t L_638;
|
|
L_638 = ConstantHelper_GetInt32WithAllBitsSet_m245101340DDE7277600327D319DF86F1FFEA4FD0_inline(NULL);
|
|
G_B261_0 = L_638;
|
|
G_B261_1 = G_B260_0;
|
|
}
|
|
|
|
IL_0dae:
|
|
{
|
|
G_B261_1->___int32_3 = G_B261_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_639;
|
|
memset((&L_639), 0, sizeof(L_639));
|
|
Vector_1__ctor_m48CD7847B9597F3193C9C0BA97ED64E276F4340A((&L_639), (&V_20), il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 13));
|
|
return L_639;
|
|
}
|
|
|
|
IL_0dbb:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_640 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_641;
|
|
L_641 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_640, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_642 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint64_class->byval_arg) };
|
|
Type_t* L_643;
|
|
L_643 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_642, NULL);
|
|
bool L_644;
|
|
L_644 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_641, L_643, NULL);
|
|
if (!L_644)
|
|
{
|
|
goto IL_0e2e;
|
|
}
|
|
}
|
|
{
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_645 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_646 = L_645.___register;
|
|
uint64_t L_647 = L_646.___uint64_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_648 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_649 = L_648.___register;
|
|
uint64_t L_650 = L_649.___uint64_0;
|
|
if ((((int64_t)L_647) == ((int64_t)L_650)))
|
|
{
|
|
G_B265_0 = (&V_20);
|
|
goto IL_0df4;
|
|
}
|
|
G_B264_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B266_0 = ((uint64_t)(((int64_t)0)));
|
|
G_B266_1 = G_B264_0;
|
|
goto IL_0df9;
|
|
}
|
|
|
|
IL_0df4:
|
|
{
|
|
uint64_t L_651;
|
|
L_651 = ConstantHelper_GetUInt64WithAllBitsSet_mB7F3E046EE6B1B20C552BF7CF619416E239A5A96_inline(NULL);
|
|
G_B266_0 = L_651;
|
|
G_B266_1 = G_B265_0;
|
|
}
|
|
|
|
IL_0df9:
|
|
{
|
|
G_B266_1->___uint64_0 = G_B266_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_652 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_653 = L_652.___register;
|
|
uint64_t L_654 = L_653.___uint64_1;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_655 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_656 = L_655.___register;
|
|
uint64_t L_657 = L_656.___uint64_1;
|
|
if ((((int64_t)L_654) == ((int64_t)L_657)))
|
|
{
|
|
G_B268_0 = (&V_20);
|
|
goto IL_0e1c;
|
|
}
|
|
G_B267_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B269_0 = ((uint64_t)(((int64_t)0)));
|
|
G_B269_1 = G_B267_0;
|
|
goto IL_0e21;
|
|
}
|
|
|
|
IL_0e1c:
|
|
{
|
|
uint64_t L_658;
|
|
L_658 = ConstantHelper_GetUInt64WithAllBitsSet_mB7F3E046EE6B1B20C552BF7CF619416E239A5A96_inline(NULL);
|
|
G_B269_0 = L_658;
|
|
G_B269_1 = G_B268_0;
|
|
}
|
|
|
|
IL_0e21:
|
|
{
|
|
G_B269_1->___uint64_1 = G_B269_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_659;
|
|
memset((&L_659), 0, sizeof(L_659));
|
|
Vector_1__ctor_m48CD7847B9597F3193C9C0BA97ED64E276F4340A((&L_659), (&V_20), il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 13));
|
|
return L_659;
|
|
}
|
|
|
|
IL_0e2e:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_660 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_661;
|
|
L_661 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_660, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_662 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int64_class->byval_arg) };
|
|
Type_t* L_663;
|
|
L_663 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_662, NULL);
|
|
bool L_664;
|
|
L_664 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_661, L_663, NULL);
|
|
if (!L_664)
|
|
{
|
|
goto IL_0ea1;
|
|
}
|
|
}
|
|
{
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_665 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_666 = L_665.___register;
|
|
int64_t L_667 = L_666.___int64_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_668 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_669 = L_668.___register;
|
|
int64_t L_670 = L_669.___int64_0;
|
|
if ((((int64_t)L_667) == ((int64_t)L_670)))
|
|
{
|
|
G_B273_0 = (&V_20);
|
|
goto IL_0e67;
|
|
}
|
|
G_B272_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B274_0 = ((int64_t)0);
|
|
G_B274_1 = G_B272_0;
|
|
goto IL_0e6c;
|
|
}
|
|
|
|
IL_0e67:
|
|
{
|
|
int64_t L_671;
|
|
L_671 = ConstantHelper_GetInt64WithAllBitsSet_m56A9AB64BA5DDD9ECC99424875824591DEFD5C40_inline(NULL);
|
|
G_B274_0 = L_671;
|
|
G_B274_1 = G_B273_0;
|
|
}
|
|
|
|
IL_0e6c:
|
|
{
|
|
G_B274_1->___int64_0 = G_B274_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_672 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_673 = L_672.___register;
|
|
int64_t L_674 = L_673.___int64_1;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_675 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_676 = L_675.___register;
|
|
int64_t L_677 = L_676.___int64_1;
|
|
if ((((int64_t)L_674) == ((int64_t)L_677)))
|
|
{
|
|
G_B276_0 = (&V_20);
|
|
goto IL_0e8f;
|
|
}
|
|
G_B275_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B277_0 = ((int64_t)0);
|
|
G_B277_1 = G_B275_0;
|
|
goto IL_0e94;
|
|
}
|
|
|
|
IL_0e8f:
|
|
{
|
|
int64_t L_678;
|
|
L_678 = ConstantHelper_GetInt64WithAllBitsSet_m56A9AB64BA5DDD9ECC99424875824591DEFD5C40_inline(NULL);
|
|
G_B277_0 = L_678;
|
|
G_B277_1 = G_B276_0;
|
|
}
|
|
|
|
IL_0e94:
|
|
{
|
|
G_B277_1->___int64_1 = G_B277_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_679;
|
|
memset((&L_679), 0, sizeof(L_679));
|
|
Vector_1__ctor_m48CD7847B9597F3193C9C0BA97ED64E276F4340A((&L_679), (&V_20), il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 13));
|
|
return L_679;
|
|
}
|
|
|
|
IL_0ea1:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_680 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_681;
|
|
L_681 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_680, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_682 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.single_class->byval_arg) };
|
|
Type_t* L_683;
|
|
L_683 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_682, NULL);
|
|
bool L_684;
|
|
L_684 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_681, L_683, NULL);
|
|
if (!L_684)
|
|
{
|
|
goto IL_0f73;
|
|
}
|
|
}
|
|
{
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_685 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_686 = L_685.___register;
|
|
float L_687 = L_686.___single_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_688 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_689 = L_688.___register;
|
|
float L_690 = L_689.___single_0;
|
|
if ((((float)L_687) == ((float)L_690)))
|
|
{
|
|
G_B281_0 = (&V_20);
|
|
goto IL_0ee0;
|
|
}
|
|
G_B280_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B282_0 = (0.0f);
|
|
G_B282_1 = G_B280_0;
|
|
goto IL_0ee5;
|
|
}
|
|
|
|
IL_0ee0:
|
|
{
|
|
float L_691;
|
|
L_691 = ConstantHelper_GetSingleWithAllBitsSet_m66FC11C0680F744EB8315278910061C9535818C0_inline(NULL);
|
|
G_B282_0 = L_691;
|
|
G_B282_1 = G_B281_0;
|
|
}
|
|
|
|
IL_0ee5:
|
|
{
|
|
G_B282_1->___single_0 = G_B282_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_692 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_693 = L_692.___register;
|
|
float L_694 = L_693.___single_1;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_695 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_696 = L_695.___register;
|
|
float L_697 = L_696.___single_1;
|
|
if ((((float)L_694) == ((float)L_697)))
|
|
{
|
|
G_B284_0 = (&V_20);
|
|
goto IL_0f0b;
|
|
}
|
|
G_B283_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B285_0 = (0.0f);
|
|
G_B285_1 = G_B283_0;
|
|
goto IL_0f10;
|
|
}
|
|
|
|
IL_0f0b:
|
|
{
|
|
float L_698;
|
|
L_698 = ConstantHelper_GetSingleWithAllBitsSet_m66FC11C0680F744EB8315278910061C9535818C0_inline(NULL);
|
|
G_B285_0 = L_698;
|
|
G_B285_1 = G_B284_0;
|
|
}
|
|
|
|
IL_0f10:
|
|
{
|
|
G_B285_1->___single_1 = G_B285_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_699 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_700 = L_699.___register;
|
|
float L_701 = L_700.___single_2;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_702 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_703 = L_702.___register;
|
|
float L_704 = L_703.___single_2;
|
|
if ((((float)L_701) == ((float)L_704)))
|
|
{
|
|
G_B287_0 = (&V_20);
|
|
goto IL_0f36;
|
|
}
|
|
G_B286_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B288_0 = (0.0f);
|
|
G_B288_1 = G_B286_0;
|
|
goto IL_0f3b;
|
|
}
|
|
|
|
IL_0f36:
|
|
{
|
|
float L_705;
|
|
L_705 = ConstantHelper_GetSingleWithAllBitsSet_m66FC11C0680F744EB8315278910061C9535818C0_inline(NULL);
|
|
G_B288_0 = L_705;
|
|
G_B288_1 = G_B287_0;
|
|
}
|
|
|
|
IL_0f3b:
|
|
{
|
|
G_B288_1->___single_2 = G_B288_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_706 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_707 = L_706.___register;
|
|
float L_708 = L_707.___single_3;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_709 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_710 = L_709.___register;
|
|
float L_711 = L_710.___single_3;
|
|
if ((((float)L_708) == ((float)L_711)))
|
|
{
|
|
G_B290_0 = (&V_20);
|
|
goto IL_0f61;
|
|
}
|
|
G_B289_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B291_0 = (0.0f);
|
|
G_B291_1 = G_B289_0;
|
|
goto IL_0f66;
|
|
}
|
|
|
|
IL_0f61:
|
|
{
|
|
float L_712;
|
|
L_712 = ConstantHelper_GetSingleWithAllBitsSet_m66FC11C0680F744EB8315278910061C9535818C0_inline(NULL);
|
|
G_B291_0 = L_712;
|
|
G_B291_1 = G_B290_0;
|
|
}
|
|
|
|
IL_0f66:
|
|
{
|
|
G_B291_1->___single_3 = G_B291_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_713;
|
|
memset((&L_713), 0, sizeof(L_713));
|
|
Vector_1__ctor_m48CD7847B9597F3193C9C0BA97ED64E276F4340A((&L_713), (&V_20), il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 13));
|
|
return L_713;
|
|
}
|
|
|
|
IL_0f73:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_714 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_715;
|
|
L_715 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_714, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_716 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.double_class->byval_arg) };
|
|
Type_t* L_717;
|
|
L_717 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_716, NULL);
|
|
bool L_718;
|
|
L_718 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_715, L_717, NULL);
|
|
if (!L_718)
|
|
{
|
|
goto IL_0ff4;
|
|
}
|
|
}
|
|
{
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_719 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_720 = L_719.___register;
|
|
double L_721 = L_720.___double_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_722 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_723 = L_722.___register;
|
|
double L_724 = L_723.___double_0;
|
|
if ((((double)L_721) == ((double)L_724)))
|
|
{
|
|
G_B295_0 = (&V_20);
|
|
goto IL_0fb3;
|
|
}
|
|
G_B294_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B296_0 = (0.0);
|
|
G_B296_1 = G_B294_0;
|
|
goto IL_0fb8;
|
|
}
|
|
|
|
IL_0fb3:
|
|
{
|
|
double L_725;
|
|
L_725 = ConstantHelper_GetDoubleWithAllBitsSet_mF43AF77A6C93B7590B35B20458E80F2BC66AD5F2_inline(NULL);
|
|
G_B296_0 = L_725;
|
|
G_B296_1 = G_B295_0;
|
|
}
|
|
|
|
IL_0fb8:
|
|
{
|
|
G_B296_1->___double_0 = G_B296_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_726 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_727 = L_726.___register;
|
|
double L_728 = L_727.___double_1;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_729 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_730 = L_729.___register;
|
|
double L_731 = L_730.___double_1;
|
|
if ((((double)L_728) == ((double)L_731)))
|
|
{
|
|
G_B298_0 = (&V_20);
|
|
goto IL_0fe2;
|
|
}
|
|
G_B297_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B299_0 = (0.0);
|
|
G_B299_1 = G_B297_0;
|
|
goto IL_0fe7;
|
|
}
|
|
|
|
IL_0fe2:
|
|
{
|
|
double L_732;
|
|
L_732 = ConstantHelper_GetDoubleWithAllBitsSet_mF43AF77A6C93B7590B35B20458E80F2BC66AD5F2_inline(NULL);
|
|
G_B299_0 = L_732;
|
|
G_B299_1 = G_B298_0;
|
|
}
|
|
|
|
IL_0fe7:
|
|
{
|
|
G_B299_1->___double_1 = G_B299_0;
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_733;
|
|
memset((&L_733), 0, sizeof(L_733));
|
|
Vector_1__ctor_m48CD7847B9597F3193C9C0BA97ED64E276F4340A((&L_733), (&V_20), il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 13));
|
|
return L_733;
|
|
}
|
|
|
|
IL_0ff4:
|
|
{
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_734 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_734, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE310274B02A605A3985345944A620D7D2E019A1A)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_734, method);
|
|
}
|
|
}
|
|
// Method Definition Index: 7883
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Vector_1_ScalarEquals_m4E13E30219B0D2AADB58AD6E5CB2B54B9FCBFAAE_gshared (uint16_t ___0_left, uint16_t ___1_right, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_1;
|
|
L_1 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_0, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_2 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.byte_class->byval_arg) };
|
|
Type_t* L_3;
|
|
L_3 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_2, NULL);
|
|
bool L_4;
|
|
L_4 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_1, L_3, NULL);
|
|
if (!L_4)
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
uint16_t L_5 = ___0_left;
|
|
uint16_t L_6 = L_5;
|
|
RuntimeObject* L_7 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_6);
|
|
uint16_t L_8 = ___1_right;
|
|
uint16_t L_9 = L_8;
|
|
RuntimeObject* L_10 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_9);
|
|
return (bool)((((int32_t)((*(uint8_t*)UnBox(L_7, il2cpp_defaults.byte_class)))) == ((int32_t)((*(uint8_t*)UnBox(L_10, il2cpp_defaults.byte_class)))))? 1 : 0);
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_11 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_12;
|
|
L_12 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_11, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_13 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.sbyte_class->byval_arg) };
|
|
Type_t* L_14;
|
|
L_14 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_13, NULL);
|
|
bool L_15;
|
|
L_15 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_12, L_14, NULL);
|
|
if (!L_15)
|
|
{
|
|
goto IL_0068;
|
|
}
|
|
}
|
|
{
|
|
uint16_t L_16 = ___0_left;
|
|
uint16_t L_17 = L_16;
|
|
RuntimeObject* L_18 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_17);
|
|
uint16_t L_19 = ___1_right;
|
|
uint16_t L_20 = L_19;
|
|
RuntimeObject* L_21 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_20);
|
|
return (bool)((((int32_t)((*(int8_t*)UnBox(L_18, il2cpp_defaults.sbyte_class)))) == ((int32_t)((*(int8_t*)UnBox(L_21, il2cpp_defaults.sbyte_class)))))? 1 : 0);
|
|
}
|
|
|
|
IL_0068:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_22 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_23;
|
|
L_23 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_22, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_24 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint16_class->byval_arg) };
|
|
Type_t* L_25;
|
|
L_25 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_24, NULL);
|
|
bool L_26;
|
|
L_26 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_23, L_25, NULL);
|
|
if (!L_26)
|
|
{
|
|
goto IL_009c;
|
|
}
|
|
}
|
|
{
|
|
uint16_t L_27 = ___0_left;
|
|
uint16_t L_28 = L_27;
|
|
RuntimeObject* L_29 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_28);
|
|
uint16_t L_30 = ___1_right;
|
|
uint16_t L_31 = L_30;
|
|
RuntimeObject* L_32 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_31);
|
|
return (bool)((((int32_t)((*(uint16_t*)UnBox(L_29, il2cpp_defaults.uint16_class)))) == ((int32_t)((*(uint16_t*)UnBox(L_32, il2cpp_defaults.uint16_class)))))? 1 : 0);
|
|
}
|
|
|
|
IL_009c:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_33 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_34;
|
|
L_34 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_33, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_35 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int16_class->byval_arg) };
|
|
Type_t* L_36;
|
|
L_36 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_35, NULL);
|
|
bool L_37;
|
|
L_37 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_34, L_36, NULL);
|
|
if (!L_37)
|
|
{
|
|
goto IL_00d0;
|
|
}
|
|
}
|
|
{
|
|
uint16_t L_38 = ___0_left;
|
|
uint16_t L_39 = L_38;
|
|
RuntimeObject* L_40 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_39);
|
|
uint16_t L_41 = ___1_right;
|
|
uint16_t L_42 = L_41;
|
|
RuntimeObject* L_43 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_42);
|
|
return (bool)((((int32_t)((*(int16_t*)UnBox(L_40, il2cpp_defaults.int16_class)))) == ((int32_t)((*(int16_t*)UnBox(L_43, il2cpp_defaults.int16_class)))))? 1 : 0);
|
|
}
|
|
|
|
IL_00d0:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_44 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_45;
|
|
L_45 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_44, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_46 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint32_class->byval_arg) };
|
|
Type_t* L_47;
|
|
L_47 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_46, NULL);
|
|
bool L_48;
|
|
L_48 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_45, L_47, NULL);
|
|
if (!L_48)
|
|
{
|
|
goto IL_0104;
|
|
}
|
|
}
|
|
{
|
|
uint16_t L_49 = ___0_left;
|
|
uint16_t L_50 = L_49;
|
|
RuntimeObject* L_51 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_50);
|
|
uint16_t L_52 = ___1_right;
|
|
uint16_t L_53 = L_52;
|
|
RuntimeObject* L_54 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_53);
|
|
return (bool)((((int32_t)((*(uint32_t*)UnBox(L_51, il2cpp_defaults.uint32_class)))) == ((int32_t)((*(uint32_t*)UnBox(L_54, il2cpp_defaults.uint32_class)))))? 1 : 0);
|
|
}
|
|
|
|
IL_0104:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_55 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_56;
|
|
L_56 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_55, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_57 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
Type_t* L_58;
|
|
L_58 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_57, NULL);
|
|
bool L_59;
|
|
L_59 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_56, L_58, NULL);
|
|
if (!L_59)
|
|
{
|
|
goto IL_0138;
|
|
}
|
|
}
|
|
{
|
|
uint16_t L_60 = ___0_left;
|
|
uint16_t L_61 = L_60;
|
|
RuntimeObject* L_62 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_61);
|
|
uint16_t L_63 = ___1_right;
|
|
uint16_t L_64 = L_63;
|
|
RuntimeObject* L_65 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_64);
|
|
return (bool)((((int32_t)((*(int32_t*)UnBox(L_62, il2cpp_defaults.int32_class)))) == ((int32_t)((*(int32_t*)UnBox(L_65, il2cpp_defaults.int32_class)))))? 1 : 0);
|
|
}
|
|
|
|
IL_0138:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_66 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_67;
|
|
L_67 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_66, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_68 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint64_class->byval_arg) };
|
|
Type_t* L_69;
|
|
L_69 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_68, NULL);
|
|
bool L_70;
|
|
L_70 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_67, L_69, NULL);
|
|
if (!L_70)
|
|
{
|
|
goto IL_016c;
|
|
}
|
|
}
|
|
{
|
|
uint16_t L_71 = ___0_left;
|
|
uint16_t L_72 = L_71;
|
|
RuntimeObject* L_73 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_72);
|
|
uint16_t L_74 = ___1_right;
|
|
uint16_t L_75 = L_74;
|
|
RuntimeObject* L_76 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_75);
|
|
return (bool)((((int64_t)((*(uint64_t*)UnBox(L_73, il2cpp_defaults.uint64_class)))) == ((int64_t)((*(uint64_t*)UnBox(L_76, il2cpp_defaults.uint64_class)))))? 1 : 0);
|
|
}
|
|
|
|
IL_016c:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_77 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_78;
|
|
L_78 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_77, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_79 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int64_class->byval_arg) };
|
|
Type_t* L_80;
|
|
L_80 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_79, NULL);
|
|
bool L_81;
|
|
L_81 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_78, L_80, NULL);
|
|
if (!L_81)
|
|
{
|
|
goto IL_01a0;
|
|
}
|
|
}
|
|
{
|
|
uint16_t L_82 = ___0_left;
|
|
uint16_t L_83 = L_82;
|
|
RuntimeObject* L_84 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_83);
|
|
uint16_t L_85 = ___1_right;
|
|
uint16_t L_86 = L_85;
|
|
RuntimeObject* L_87 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_86);
|
|
return (bool)((((int64_t)((*(int64_t*)UnBox(L_84, il2cpp_defaults.int64_class)))) == ((int64_t)((*(int64_t*)UnBox(L_87, il2cpp_defaults.int64_class)))))? 1 : 0);
|
|
}
|
|
|
|
IL_01a0:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_88 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_89;
|
|
L_89 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_88, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_90 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.single_class->byval_arg) };
|
|
Type_t* L_91;
|
|
L_91 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_90, NULL);
|
|
bool L_92;
|
|
L_92 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_89, L_91, NULL);
|
|
if (!L_92)
|
|
{
|
|
goto IL_01d4;
|
|
}
|
|
}
|
|
{
|
|
uint16_t L_93 = ___0_left;
|
|
uint16_t L_94 = L_93;
|
|
RuntimeObject* L_95 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_94);
|
|
uint16_t L_96 = ___1_right;
|
|
uint16_t L_97 = L_96;
|
|
RuntimeObject* L_98 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_97);
|
|
return (bool)((((float)((*(float*)UnBox(L_95, il2cpp_defaults.single_class)))) == ((float)((*(float*)UnBox(L_98, il2cpp_defaults.single_class)))))? 1 : 0);
|
|
}
|
|
|
|
IL_01d4:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_99 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_100;
|
|
L_100 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_99, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_101 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.double_class->byval_arg) };
|
|
Type_t* L_102;
|
|
L_102 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_101, NULL);
|
|
bool L_103;
|
|
L_103 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_100, L_102, NULL);
|
|
if (!L_103)
|
|
{
|
|
goto IL_0208;
|
|
}
|
|
}
|
|
{
|
|
uint16_t L_104 = ___0_left;
|
|
uint16_t L_105 = L_104;
|
|
RuntimeObject* L_106 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_105);
|
|
uint16_t L_107 = ___1_right;
|
|
uint16_t L_108 = L_107;
|
|
RuntimeObject* L_109 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_108);
|
|
return (bool)((((double)((*(double*)UnBox(L_106, il2cpp_defaults.double_class)))) == ((double)((*(double*)UnBox(L_109, il2cpp_defaults.double_class)))))? 1 : 0);
|
|
}
|
|
|
|
IL_0208:
|
|
{
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_110 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_110, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE310274B02A605A3985345944A620D7D2E019A1A)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_110, method);
|
|
}
|
|
}
|
|
// Method Definition Index: 7884
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Vector_1_GetOneValue_m7E814AFD17E4D390C12EF731DA01203D262D9953_gshared (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_1;
|
|
L_1 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_0, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_2 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.byte_class->byval_arg) };
|
|
Type_t* L_3;
|
|
L_3 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_2, NULL);
|
|
bool L_4;
|
|
L_4 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_1, L_3, NULL);
|
|
if (!L_4)
|
|
{
|
|
goto IL_0027;
|
|
}
|
|
}
|
|
{
|
|
uint8_t L_5 = ((uint8_t)1);
|
|
RuntimeObject* L_6 = Box(il2cpp_defaults.byte_class, &L_5);
|
|
return ((*(uint16_t*)UnBox(L_6, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_7 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_8;
|
|
L_8 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_7, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_9 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.sbyte_class->byval_arg) };
|
|
Type_t* L_10;
|
|
L_10 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_9, NULL);
|
|
bool L_11;
|
|
L_11 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_8, L_10, NULL);
|
|
if (!L_11)
|
|
{
|
|
goto IL_004e;
|
|
}
|
|
}
|
|
{
|
|
int8_t L_12 = ((int8_t)1);
|
|
RuntimeObject* L_13 = Box(il2cpp_defaults.sbyte_class, &L_12);
|
|
return ((*(uint16_t*)UnBox(L_13, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_004e:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_14 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_15;
|
|
L_15 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_14, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_16 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint16_class->byval_arg) };
|
|
Type_t* L_17;
|
|
L_17 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_16, NULL);
|
|
bool L_18;
|
|
L_18 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_15, L_17, NULL);
|
|
if (!L_18)
|
|
{
|
|
goto IL_0075;
|
|
}
|
|
}
|
|
{
|
|
uint16_t L_19 = ((uint16_t)1);
|
|
RuntimeObject* L_20 = Box(il2cpp_defaults.uint16_class, &L_19);
|
|
return ((*(uint16_t*)UnBox(L_20, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_0075:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_21 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_22;
|
|
L_22 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_21, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_23 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int16_class->byval_arg) };
|
|
Type_t* L_24;
|
|
L_24 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_23, NULL);
|
|
bool L_25;
|
|
L_25 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_22, L_24, NULL);
|
|
if (!L_25)
|
|
{
|
|
goto IL_009c;
|
|
}
|
|
}
|
|
{
|
|
int16_t L_26 = ((int16_t)1);
|
|
RuntimeObject* L_27 = Box(il2cpp_defaults.int16_class, &L_26);
|
|
return ((*(uint16_t*)UnBox(L_27, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_009c:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_28 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_29;
|
|
L_29 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_28, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_30 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint32_class->byval_arg) };
|
|
Type_t* L_31;
|
|
L_31 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_30, NULL);
|
|
bool L_32;
|
|
L_32 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_29, L_31, NULL);
|
|
if (!L_32)
|
|
{
|
|
goto IL_00c3;
|
|
}
|
|
}
|
|
{
|
|
uint32_t L_33 = ((uint32_t)1);
|
|
RuntimeObject* L_34 = Box(il2cpp_defaults.uint32_class, &L_33);
|
|
return ((*(uint16_t*)UnBox(L_34, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_00c3:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_35 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_36;
|
|
L_36 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_35, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_37 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
Type_t* L_38;
|
|
L_38 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_37, NULL);
|
|
bool L_39;
|
|
L_39 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_36, L_38, NULL);
|
|
if (!L_39)
|
|
{
|
|
goto IL_00ea;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_40 = 1;
|
|
RuntimeObject* L_41 = Box(il2cpp_defaults.int32_class, &L_40);
|
|
return ((*(uint16_t*)UnBox(L_41, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_00ea:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_42 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_43;
|
|
L_43 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_42, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_44 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint64_class->byval_arg) };
|
|
Type_t* L_45;
|
|
L_45 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_44, NULL);
|
|
bool L_46;
|
|
L_46 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_43, L_45, NULL);
|
|
if (!L_46)
|
|
{
|
|
goto IL_0112;
|
|
}
|
|
}
|
|
{
|
|
uint64_t L_47 = ((uint64_t)((int64_t)1));
|
|
RuntimeObject* L_48 = Box(il2cpp_defaults.uint64_class, &L_47);
|
|
return ((*(uint16_t*)UnBox(L_48, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_0112:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_49 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_50;
|
|
L_50 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_49, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_51 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int64_class->byval_arg) };
|
|
Type_t* L_52;
|
|
L_52 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_51, NULL);
|
|
bool L_53;
|
|
L_53 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_50, L_52, NULL);
|
|
if (!L_53)
|
|
{
|
|
goto IL_013a;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_54 = ((int64_t)1);
|
|
RuntimeObject* L_55 = Box(il2cpp_defaults.int64_class, &L_54);
|
|
return ((*(uint16_t*)UnBox(L_55, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_013a:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_56 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_57;
|
|
L_57 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_56, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_58 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.single_class->byval_arg) };
|
|
Type_t* L_59;
|
|
L_59 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_58, NULL);
|
|
bool L_60;
|
|
L_60 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_57, L_59, NULL);
|
|
if (!L_60)
|
|
{
|
|
goto IL_0165;
|
|
}
|
|
}
|
|
{
|
|
float L_61 = (1.0f);
|
|
RuntimeObject* L_62 = Box(il2cpp_defaults.single_class, &L_61);
|
|
return ((*(uint16_t*)UnBox(L_62, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_0165:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_63 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_64;
|
|
L_64 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_63, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_65 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.double_class->byval_arg) };
|
|
Type_t* L_66;
|
|
L_66 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_65, NULL);
|
|
bool L_67;
|
|
L_67 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_64, L_66, NULL);
|
|
if (!L_67)
|
|
{
|
|
goto IL_0194;
|
|
}
|
|
}
|
|
{
|
|
double L_68 = (1.0);
|
|
RuntimeObject* L_69 = Box(il2cpp_defaults.double_class, &L_68);
|
|
return ((*(uint16_t*)UnBox(L_69, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_0194:
|
|
{
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_70 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_70, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE310274B02A605A3985345944A620D7D2E019A1A)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_70, method);
|
|
}
|
|
}
|
|
// Method Definition Index: 7885
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Vector_1_GetAllBitsSetValue_m854DE079EA89F97089D3EF29D7C31F081F420580_gshared (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_1;
|
|
L_1 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_0, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_2 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.byte_class->byval_arg) };
|
|
Type_t* L_3;
|
|
L_3 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_2, NULL);
|
|
bool L_4;
|
|
L_4 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_1, L_3, NULL);
|
|
if (!L_4)
|
|
{
|
|
goto IL_002b;
|
|
}
|
|
}
|
|
{
|
|
uint8_t L_5;
|
|
L_5 = ConstantHelper_GetByteWithAllBitsSet_m38E318296F5FB9BAE51C97C1AE058716CFC889D7_inline(NULL);
|
|
uint8_t L_6 = L_5;
|
|
RuntimeObject* L_7 = Box(il2cpp_defaults.byte_class, &L_6);
|
|
return ((*(uint16_t*)UnBox(L_7, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_8 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_9;
|
|
L_9 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_8, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_10 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.sbyte_class->byval_arg) };
|
|
Type_t* L_11;
|
|
L_11 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_10, NULL);
|
|
bool L_12;
|
|
L_12 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_9, L_11, NULL);
|
|
if (!L_12)
|
|
{
|
|
goto IL_0056;
|
|
}
|
|
}
|
|
{
|
|
int8_t L_13;
|
|
L_13 = ConstantHelper_GetSByteWithAllBitsSet_mB6B97526769DCCB7B78CCF446F28AAB0D1B5CAE3_inline(NULL);
|
|
int8_t L_14 = L_13;
|
|
RuntimeObject* L_15 = Box(il2cpp_defaults.sbyte_class, &L_14);
|
|
return ((*(uint16_t*)UnBox(L_15, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_0056:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_16 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_17;
|
|
L_17 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_16, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_18 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint16_class->byval_arg) };
|
|
Type_t* L_19;
|
|
L_19 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_18, NULL);
|
|
bool L_20;
|
|
L_20 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_17, L_19, NULL);
|
|
if (!L_20)
|
|
{
|
|
goto IL_0081;
|
|
}
|
|
}
|
|
{
|
|
uint16_t L_21;
|
|
L_21 = ConstantHelper_GetUInt16WithAllBitsSet_mD3E13D933A06059499F0E0CBE6798D72D175464A_inline(NULL);
|
|
uint16_t L_22 = L_21;
|
|
RuntimeObject* L_23 = Box(il2cpp_defaults.uint16_class, &L_22);
|
|
return ((*(uint16_t*)UnBox(L_23, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_0081:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_24 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_25;
|
|
L_25 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_24, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_26 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int16_class->byval_arg) };
|
|
Type_t* L_27;
|
|
L_27 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_26, NULL);
|
|
bool L_28;
|
|
L_28 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_25, L_27, NULL);
|
|
if (!L_28)
|
|
{
|
|
goto IL_00ac;
|
|
}
|
|
}
|
|
{
|
|
int16_t L_29;
|
|
L_29 = ConstantHelper_GetInt16WithAllBitsSet_m70C5F99E624490970E2D4093FE6E800D1849DDFC_inline(NULL);
|
|
int16_t L_30 = L_29;
|
|
RuntimeObject* L_31 = Box(il2cpp_defaults.int16_class, &L_30);
|
|
return ((*(uint16_t*)UnBox(L_31, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_00ac:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_32 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_33;
|
|
L_33 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_32, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_34 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint32_class->byval_arg) };
|
|
Type_t* L_35;
|
|
L_35 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_34, NULL);
|
|
bool L_36;
|
|
L_36 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_33, L_35, NULL);
|
|
if (!L_36)
|
|
{
|
|
goto IL_00d7;
|
|
}
|
|
}
|
|
{
|
|
uint32_t L_37;
|
|
L_37 = ConstantHelper_GetUInt32WithAllBitsSet_m78CBFE0C29CF227C16D2A9021972A0D54744BCAF_inline(NULL);
|
|
uint32_t L_38 = L_37;
|
|
RuntimeObject* L_39 = Box(il2cpp_defaults.uint32_class, &L_38);
|
|
return ((*(uint16_t*)UnBox(L_39, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_00d7:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_40 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_41;
|
|
L_41 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_40, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_42 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
Type_t* L_43;
|
|
L_43 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_42, NULL);
|
|
bool L_44;
|
|
L_44 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_41, L_43, NULL);
|
|
if (!L_44)
|
|
{
|
|
goto IL_0102;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_45;
|
|
L_45 = ConstantHelper_GetInt32WithAllBitsSet_m245101340DDE7277600327D319DF86F1FFEA4FD0_inline(NULL);
|
|
int32_t L_46 = L_45;
|
|
RuntimeObject* L_47 = Box(il2cpp_defaults.int32_class, &L_46);
|
|
return ((*(uint16_t*)UnBox(L_47, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_0102:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_48 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_49;
|
|
L_49 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_48, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_50 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint64_class->byval_arg) };
|
|
Type_t* L_51;
|
|
L_51 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_50, NULL);
|
|
bool L_52;
|
|
L_52 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_49, L_51, NULL);
|
|
if (!L_52)
|
|
{
|
|
goto IL_012d;
|
|
}
|
|
}
|
|
{
|
|
uint64_t L_53;
|
|
L_53 = ConstantHelper_GetUInt64WithAllBitsSet_mB7F3E046EE6B1B20C552BF7CF619416E239A5A96_inline(NULL);
|
|
uint64_t L_54 = L_53;
|
|
RuntimeObject* L_55 = Box(il2cpp_defaults.uint64_class, &L_54);
|
|
return ((*(uint16_t*)UnBox(L_55, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_012d:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_56 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_57;
|
|
L_57 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_56, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_58 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int64_class->byval_arg) };
|
|
Type_t* L_59;
|
|
L_59 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_58, NULL);
|
|
bool L_60;
|
|
L_60 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_57, L_59, NULL);
|
|
if (!L_60)
|
|
{
|
|
goto IL_0158;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_61;
|
|
L_61 = ConstantHelper_GetInt64WithAllBitsSet_m56A9AB64BA5DDD9ECC99424875824591DEFD5C40_inline(NULL);
|
|
int64_t L_62 = L_61;
|
|
RuntimeObject* L_63 = Box(il2cpp_defaults.int64_class, &L_62);
|
|
return ((*(uint16_t*)UnBox(L_63, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_0158:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_64 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_65;
|
|
L_65 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_64, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_66 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.single_class->byval_arg) };
|
|
Type_t* L_67;
|
|
L_67 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_66, NULL);
|
|
bool L_68;
|
|
L_68 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_65, L_67, NULL);
|
|
if (!L_68)
|
|
{
|
|
goto IL_0183;
|
|
}
|
|
}
|
|
{
|
|
float L_69;
|
|
L_69 = ConstantHelper_GetSingleWithAllBitsSet_m66FC11C0680F744EB8315278910061C9535818C0_inline(NULL);
|
|
float L_70 = L_69;
|
|
RuntimeObject* L_71 = Box(il2cpp_defaults.single_class, &L_70);
|
|
return ((*(uint16_t*)UnBox(L_71, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_0183:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_72 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_73;
|
|
L_73 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_72, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_74 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.double_class->byval_arg) };
|
|
Type_t* L_75;
|
|
L_75 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_74, NULL);
|
|
bool L_76;
|
|
L_76 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_73, L_75, NULL);
|
|
if (!L_76)
|
|
{
|
|
goto IL_01ae;
|
|
}
|
|
}
|
|
{
|
|
double L_77;
|
|
L_77 = ConstantHelper_GetDoubleWithAllBitsSet_mF43AF77A6C93B7590B35B20458E80F2BC66AD5F2_inline(NULL);
|
|
double L_78 = L_77;
|
|
RuntimeObject* L_79 = Box(il2cpp_defaults.double_class, &L_78);
|
|
return ((*(uint16_t*)UnBox(L_79, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_01ae:
|
|
{
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_80 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_80, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE310274B02A605A3985345944A620D7D2E019A1A)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_80, method);
|
|
}
|
|
}
|
|
// Method Definition Index: 7886
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Vector_1__cctor_m6764AA686DE7E188C362C5B3E96AB2F5AB09F3CA_gshared (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0;
|
|
L_0 = Vector_1_InitializeCount_m43BBDDA05FDAB290038584331DB79CB33C523B83(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 14));
|
|
((Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1)))->___s_count = L_0;
|
|
il2cpp_codegen_initobj((&((Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1)))->___s_zero), sizeof(Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489));
|
|
uint16_t L_1;
|
|
L_1 = Vector_1_GetOneValue_m7E814AFD17E4D390C12EF731DA01203D262D9953_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 15));
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_2;
|
|
memset((&L_2), 0, sizeof(L_2));
|
|
Vector_1__ctor_mDA4A6115C4120BFDD773FD4D3753FD3EC2B10427((&L_2), L_1, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 16));
|
|
((Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1)))->___s_one = L_2;
|
|
uint16_t L_3;
|
|
L_3 = Vector_1_GetAllBitsSetValue_m854DE079EA89F97089D3EF29D7C31F081F420580_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 17));
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
Vector_1__ctor_mDA4A6115C4120BFDD773FD4D3753FD3EC2B10427((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 16));
|
|
((Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1)))->___s_allOnes = L_4;
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 7866
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Vector_1_get_Count_mC75C8C6E913E7FF8A3D10467D6DADE41711EF3CC_gshared (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_0 = ((Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1)))->___s_count;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 7867
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A Vector_1_get_Zero_m052680C155E15387C16A5E044176ACB59DF53359_gshared (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_0 = ((Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1)))->___s_zero;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 7868
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Vector_1_InitializeCount_mE29E088973A17B81B830C30831075135FC8E263A_gshared (const RuntimeMethod* method)
|
|
{
|
|
VectorSizeHelper_tF54ACCE947CB8A38047BEB642392A4E7345A157D V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
uint8_t* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
int32_t G_B2_0 = 0;
|
|
int32_t G_B1_0 = 0;
|
|
int32_t G_B21_0 = 0;
|
|
int32_t G_B4_0 = 0;
|
|
int32_t G_B3_0 = 0;
|
|
int32_t G_B6_0 = 0;
|
|
int32_t G_B5_0 = 0;
|
|
int32_t G_B8_0 = 0;
|
|
int32_t G_B7_0 = 0;
|
|
int32_t G_B10_0 = 0;
|
|
int32_t G_B9_0 = 0;
|
|
int32_t G_B12_0 = 0;
|
|
int32_t G_B11_0 = 0;
|
|
int32_t G_B14_0 = 0;
|
|
int32_t G_B13_0 = 0;
|
|
int32_t G_B16_0 = 0;
|
|
int32_t G_B15_0 = 0;
|
|
int32_t G_B18_0 = 0;
|
|
int32_t G_B17_0 = 0;
|
|
int32_t G_B20_0 = 0;
|
|
int32_t G_B19_0 = 0;
|
|
{
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A* L_0 = (Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A*)(&(&V_0)->____placeholder);
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_1 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&L_0->___register);
|
|
uint8_t* L_2 = (uint8_t*)(&L_1->___byte_0);
|
|
V_1 = (uint8_t*)((uintptr_t)L_2);
|
|
uint8_t* L_3 = (uint8_t*)(&(&V_0)->____byte);
|
|
uint8_t* L_4 = V_1;
|
|
V_2 = (-1);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_5 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_6;
|
|
L_6 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_5, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_7 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.byte_class->byval_arg) };
|
|
Type_t* L_8;
|
|
L_8 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_7, NULL);
|
|
bool L_9;
|
|
L_9 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_6, L_8, NULL);
|
|
if (!L_9)
|
|
{
|
|
G_B2_0 = ((int32_t)((int64_t)(intptr_t)((uint8_t*)((intptr_t)((uint8_t*)il2cpp_codegen_subtract((intptr_t)((uintptr_t)L_3), (intptr_t)L_4))/1))));
|
|
goto IL_0045;
|
|
}
|
|
G_B1_0 = ((int32_t)((int64_t)(intptr_t)((uint8_t*)((intptr_t)((uint8_t*)il2cpp_codegen_subtract((intptr_t)((uintptr_t)L_3), (intptr_t)L_4))/1))));
|
|
}
|
|
{
|
|
V_2 = 1;
|
|
G_B21_0 = G_B1_0;
|
|
goto IL_0176;
|
|
}
|
|
|
|
IL_0045:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_10 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_11;
|
|
L_11 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_10, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_12 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.sbyte_class->byval_arg) };
|
|
Type_t* L_13;
|
|
L_13 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_12, NULL);
|
|
bool L_14;
|
|
L_14 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_11, L_13, NULL);
|
|
if (!L_14)
|
|
{
|
|
G_B4_0 = G_B2_0;
|
|
goto IL_0067;
|
|
}
|
|
G_B3_0 = G_B2_0;
|
|
}
|
|
{
|
|
V_2 = 1;
|
|
G_B21_0 = G_B3_0;
|
|
goto IL_0176;
|
|
}
|
|
|
|
IL_0067:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_15 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_16;
|
|
L_16 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_15, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_17 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint16_class->byval_arg) };
|
|
Type_t* L_18;
|
|
L_18 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_17, NULL);
|
|
bool L_19;
|
|
L_19 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_16, L_18, NULL);
|
|
if (!L_19)
|
|
{
|
|
G_B6_0 = G_B4_0;
|
|
goto IL_0089;
|
|
}
|
|
G_B5_0 = G_B4_0;
|
|
}
|
|
{
|
|
V_2 = 2;
|
|
G_B21_0 = G_B5_0;
|
|
goto IL_0176;
|
|
}
|
|
|
|
IL_0089:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_20 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_21;
|
|
L_21 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_20, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_22 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int16_class->byval_arg) };
|
|
Type_t* L_23;
|
|
L_23 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_22, NULL);
|
|
bool L_24;
|
|
L_24 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_21, L_23, NULL);
|
|
if (!L_24)
|
|
{
|
|
G_B8_0 = G_B6_0;
|
|
goto IL_00ab;
|
|
}
|
|
G_B7_0 = G_B6_0;
|
|
}
|
|
{
|
|
V_2 = 2;
|
|
G_B21_0 = G_B7_0;
|
|
goto IL_0176;
|
|
}
|
|
|
|
IL_00ab:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_25 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_26;
|
|
L_26 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_25, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_27 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint32_class->byval_arg) };
|
|
Type_t* L_28;
|
|
L_28 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_27, NULL);
|
|
bool L_29;
|
|
L_29 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_26, L_28, NULL);
|
|
if (!L_29)
|
|
{
|
|
G_B10_0 = G_B8_0;
|
|
goto IL_00cd;
|
|
}
|
|
G_B9_0 = G_B8_0;
|
|
}
|
|
{
|
|
V_2 = 4;
|
|
G_B21_0 = G_B9_0;
|
|
goto IL_0176;
|
|
}
|
|
|
|
IL_00cd:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_30 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_31;
|
|
L_31 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_30, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_32 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
Type_t* L_33;
|
|
L_33 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_32, NULL);
|
|
bool L_34;
|
|
L_34 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_31, L_33, NULL);
|
|
if (!L_34)
|
|
{
|
|
G_B12_0 = G_B10_0;
|
|
goto IL_00ef;
|
|
}
|
|
G_B11_0 = G_B10_0;
|
|
}
|
|
{
|
|
V_2 = 4;
|
|
G_B21_0 = G_B11_0;
|
|
goto IL_0176;
|
|
}
|
|
|
|
IL_00ef:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_35 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_36;
|
|
L_36 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_35, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_37 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint64_class->byval_arg) };
|
|
Type_t* L_38;
|
|
L_38 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_37, NULL);
|
|
bool L_39;
|
|
L_39 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_36, L_38, NULL);
|
|
if (!L_39)
|
|
{
|
|
G_B14_0 = G_B12_0;
|
|
goto IL_010e;
|
|
}
|
|
G_B13_0 = G_B12_0;
|
|
}
|
|
{
|
|
V_2 = 8;
|
|
G_B21_0 = G_B13_0;
|
|
goto IL_0176;
|
|
}
|
|
|
|
IL_010e:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_40 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_41;
|
|
L_41 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_40, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_42 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int64_class->byval_arg) };
|
|
Type_t* L_43;
|
|
L_43 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_42, NULL);
|
|
bool L_44;
|
|
L_44 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_41, L_43, NULL);
|
|
if (!L_44)
|
|
{
|
|
G_B16_0 = G_B14_0;
|
|
goto IL_012d;
|
|
}
|
|
G_B15_0 = G_B14_0;
|
|
}
|
|
{
|
|
V_2 = 8;
|
|
G_B21_0 = G_B15_0;
|
|
goto IL_0176;
|
|
}
|
|
|
|
IL_012d:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_45 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_46;
|
|
L_46 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_45, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_47 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.single_class->byval_arg) };
|
|
Type_t* L_48;
|
|
L_48 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_47, NULL);
|
|
bool L_49;
|
|
L_49 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_46, L_48, NULL);
|
|
if (!L_49)
|
|
{
|
|
G_B18_0 = G_B16_0;
|
|
goto IL_014c;
|
|
}
|
|
G_B17_0 = G_B16_0;
|
|
}
|
|
{
|
|
V_2 = 4;
|
|
G_B21_0 = G_B17_0;
|
|
goto IL_0176;
|
|
}
|
|
|
|
IL_014c:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_50 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_51;
|
|
L_51 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_50, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_52 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.double_class->byval_arg) };
|
|
Type_t* L_53;
|
|
L_53 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_52, NULL);
|
|
bool L_54;
|
|
L_54 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_51, L_53, NULL);
|
|
if (!L_54)
|
|
{
|
|
G_B20_0 = G_B18_0;
|
|
goto IL_016b;
|
|
}
|
|
G_B19_0 = G_B18_0;
|
|
}
|
|
{
|
|
V_2 = 8;
|
|
G_B21_0 = G_B19_0;
|
|
goto IL_0176;
|
|
}
|
|
|
|
IL_016b:
|
|
{
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_55 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_55, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE310274B02A605A3985345944A620D7D2E019A1A)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_55, method);
|
|
}
|
|
|
|
IL_0176:
|
|
{
|
|
int32_t L_56 = V_2;
|
|
return ((int32_t)(G_B21_0/L_56));
|
|
}
|
|
}
|
|
// Method Definition Index: 7869
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Vector_1__ctor_m1B5D6A9264B4450B3C14BD8FF9430354A337F2D6_gshared (Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A* __this, uint64_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
uint8_t* V_0 = NULL;
|
|
uint8_t* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
int8_t* V_3 = NULL;
|
|
int8_t* V_4 = NULL;
|
|
int32_t V_5 = 0;
|
|
uint16_t* V_6 = NULL;
|
|
uint16_t* V_7 = NULL;
|
|
int32_t V_8 = 0;
|
|
int16_t* V_9 = NULL;
|
|
int16_t* V_10 = NULL;
|
|
int32_t V_11 = 0;
|
|
uint32_t* V_12 = NULL;
|
|
uint32_t* V_13 = NULL;
|
|
int32_t V_14 = 0;
|
|
int32_t* V_15 = NULL;
|
|
int32_t* V_16 = NULL;
|
|
int32_t V_17 = 0;
|
|
uint64_t* V_18 = NULL;
|
|
uint64_t* V_19 = NULL;
|
|
int32_t V_20 = 0;
|
|
int64_t* V_21 = NULL;
|
|
int64_t* V_22 = NULL;
|
|
int32_t V_23 = 0;
|
|
float* V_24 = NULL;
|
|
float* V_25 = NULL;
|
|
int32_t V_26 = 0;
|
|
double* V_27 = NULL;
|
|
double* V_28 = NULL;
|
|
int32_t V_29 = 0;
|
|
{
|
|
il2cpp_codegen_initobj(__this, sizeof(Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A));
|
|
bool L_0;
|
|
L_0 = Vector_get_IsHardwareAccelerated_m783509258751EBED64CBD9F387EC1BB4A15088AA(NULL);
|
|
if (!L_0)
|
|
{
|
|
goto IL_0386;
|
|
}
|
|
}
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_1 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_2;
|
|
L_2 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_1, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_3 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.byte_class->byval_arg) };
|
|
Type_t* L_4;
|
|
L_4 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_3, NULL);
|
|
bool L_5;
|
|
L_5 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_2, L_4, NULL);
|
|
if (!L_5)
|
|
{
|
|
goto IL_005e;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_6 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t* L_7 = (uint8_t*)(&L_6->___byte_0);
|
|
V_1 = L_7;
|
|
uint8_t* L_8 = V_1;
|
|
V_0 = (uint8_t*)((uintptr_t)L_8);
|
|
V_2 = 0;
|
|
goto IL_0052;
|
|
}
|
|
|
|
IL_003f:
|
|
{
|
|
uint8_t* L_9 = V_0;
|
|
int32_t L_10 = V_2;
|
|
uint64_t L_11 = ___0_value;
|
|
uint64_t L_12 = L_11;
|
|
RuntimeObject* L_13 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_12);
|
|
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_9, L_10))) = (int8_t)((*(uint8_t*)UnBox(L_13, il2cpp_defaults.byte_class)));
|
|
int32_t L_14 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_14, 1));
|
|
}
|
|
|
|
IL_0052:
|
|
{
|
|
int32_t L_15 = V_2;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_16;
|
|
L_16 = Vector_1_get_Count_mC75C8C6E913E7FF8A3D10467D6DADE41711EF3CC_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_15) < ((int32_t)L_16)))
|
|
{
|
|
goto IL_003f;
|
|
}
|
|
}
|
|
{
|
|
V_1 = (uint8_t*)((uintptr_t)0);
|
|
return;
|
|
}
|
|
|
|
IL_005e:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_17 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_18;
|
|
L_18 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_17, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_19 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.sbyte_class->byval_arg) };
|
|
Type_t* L_20;
|
|
L_20 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_19, NULL);
|
|
bool L_21;
|
|
L_21 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_18, L_20, NULL);
|
|
if (!L_21)
|
|
{
|
|
goto IL_00b3;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_22 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t* L_23 = (int8_t*)(&L_22->___sbyte_0);
|
|
V_4 = L_23;
|
|
int8_t* L_24 = V_4;
|
|
V_3 = (int8_t*)((uintptr_t)L_24);
|
|
V_5 = 0;
|
|
goto IL_00a5;
|
|
}
|
|
|
|
IL_008f:
|
|
{
|
|
int8_t* L_25 = V_3;
|
|
int32_t L_26 = V_5;
|
|
uint64_t L_27 = ___0_value;
|
|
uint64_t L_28 = L_27;
|
|
RuntimeObject* L_29 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_28);
|
|
*((int8_t*)((int8_t*)il2cpp_codegen_add((intptr_t)L_25, L_26))) = (int8_t)((*(int8_t*)UnBox(L_29, il2cpp_defaults.sbyte_class)));
|
|
int32_t L_30 = V_5;
|
|
V_5 = ((int32_t)il2cpp_codegen_add(L_30, 1));
|
|
}
|
|
|
|
IL_00a5:
|
|
{
|
|
int32_t L_31 = V_5;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_32;
|
|
L_32 = Vector_1_get_Count_mC75C8C6E913E7FF8A3D10467D6DADE41711EF3CC_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_31) < ((int32_t)L_32)))
|
|
{
|
|
goto IL_008f;
|
|
}
|
|
}
|
|
{
|
|
V_4 = (int8_t*)((uintptr_t)0);
|
|
return;
|
|
}
|
|
|
|
IL_00b3:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_33 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_34;
|
|
L_34 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_33, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_35 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint16_class->byval_arg) };
|
|
Type_t* L_36;
|
|
L_36 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_35, NULL);
|
|
bool L_37;
|
|
L_37 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_34, L_36, NULL);
|
|
if (!L_37)
|
|
{
|
|
goto IL_010d;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_38 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t* L_39 = (uint16_t*)(&L_38->___uint16_0);
|
|
V_7 = L_39;
|
|
uint16_t* L_40 = V_7;
|
|
V_6 = (uint16_t*)((uintptr_t)L_40);
|
|
V_8 = 0;
|
|
goto IL_00ff;
|
|
}
|
|
|
|
IL_00e5:
|
|
{
|
|
uint16_t* L_41 = V_6;
|
|
int32_t L_42 = V_8;
|
|
uint64_t L_43 = ___0_value;
|
|
uint64_t L_44 = L_43;
|
|
RuntimeObject* L_45 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_44);
|
|
*((int16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_41, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_42), 2))))) = (int16_t)((*(uint16_t*)UnBox(L_45, il2cpp_defaults.uint16_class)));
|
|
int32_t L_46 = V_8;
|
|
V_8 = ((int32_t)il2cpp_codegen_add(L_46, 1));
|
|
}
|
|
|
|
IL_00ff:
|
|
{
|
|
int32_t L_47 = V_8;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_48;
|
|
L_48 = Vector_1_get_Count_mC75C8C6E913E7FF8A3D10467D6DADE41711EF3CC_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_47) < ((int32_t)L_48)))
|
|
{
|
|
goto IL_00e5;
|
|
}
|
|
}
|
|
{
|
|
V_7 = (uint16_t*)((uintptr_t)0);
|
|
return;
|
|
}
|
|
|
|
IL_010d:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_49 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_50;
|
|
L_50 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_49, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_51 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int16_class->byval_arg) };
|
|
Type_t* L_52;
|
|
L_52 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_51, NULL);
|
|
bool L_53;
|
|
L_53 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_50, L_52, NULL);
|
|
if (!L_53)
|
|
{
|
|
goto IL_0167;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_54 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int16_t* L_55 = (int16_t*)(&L_54->___int16_0);
|
|
V_10 = L_55;
|
|
int16_t* L_56 = V_10;
|
|
V_9 = (int16_t*)((uintptr_t)L_56);
|
|
V_11 = 0;
|
|
goto IL_0159;
|
|
}
|
|
|
|
IL_013f:
|
|
{
|
|
int16_t* L_57 = V_9;
|
|
int32_t L_58 = V_11;
|
|
uint64_t L_59 = ___0_value;
|
|
uint64_t L_60 = L_59;
|
|
RuntimeObject* L_61 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_60);
|
|
*((int16_t*)((int16_t*)il2cpp_codegen_add((intptr_t)L_57, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_58), 2))))) = (int16_t)((*(int16_t*)UnBox(L_61, il2cpp_defaults.int16_class)));
|
|
int32_t L_62 = V_11;
|
|
V_11 = ((int32_t)il2cpp_codegen_add(L_62, 1));
|
|
}
|
|
|
|
IL_0159:
|
|
{
|
|
int32_t L_63 = V_11;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_64;
|
|
L_64 = Vector_1_get_Count_mC75C8C6E913E7FF8A3D10467D6DADE41711EF3CC_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_63) < ((int32_t)L_64)))
|
|
{
|
|
goto IL_013f;
|
|
}
|
|
}
|
|
{
|
|
V_10 = (int16_t*)((uintptr_t)0);
|
|
return;
|
|
}
|
|
|
|
IL_0167:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_65 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_66;
|
|
L_66 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_65, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_67 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint32_class->byval_arg) };
|
|
Type_t* L_68;
|
|
L_68 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_67, NULL);
|
|
bool L_69;
|
|
L_69 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_66, L_68, NULL);
|
|
if (!L_69)
|
|
{
|
|
goto IL_01c1;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_70 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint32_t* L_71 = (uint32_t*)(&L_70->___uint32_0);
|
|
V_13 = L_71;
|
|
uint32_t* L_72 = V_13;
|
|
V_12 = (uint32_t*)((uintptr_t)L_72);
|
|
V_14 = 0;
|
|
goto IL_01b3;
|
|
}
|
|
|
|
IL_0199:
|
|
{
|
|
uint32_t* L_73 = V_12;
|
|
int32_t L_74 = V_14;
|
|
uint64_t L_75 = ___0_value;
|
|
uint64_t L_76 = L_75;
|
|
RuntimeObject* L_77 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_76);
|
|
*((int32_t*)((uint32_t*)il2cpp_codegen_add((intptr_t)L_73, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_74), 4))))) = (int32_t)((*(uint32_t*)UnBox(L_77, il2cpp_defaults.uint32_class)));
|
|
int32_t L_78 = V_14;
|
|
V_14 = ((int32_t)il2cpp_codegen_add(L_78, 1));
|
|
}
|
|
|
|
IL_01b3:
|
|
{
|
|
int32_t L_79 = V_14;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_80;
|
|
L_80 = Vector_1_get_Count_mC75C8C6E913E7FF8A3D10467D6DADE41711EF3CC_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_79) < ((int32_t)L_80)))
|
|
{
|
|
goto IL_0199;
|
|
}
|
|
}
|
|
{
|
|
V_13 = (uint32_t*)((uintptr_t)0);
|
|
return;
|
|
}
|
|
|
|
IL_01c1:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_81 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_82;
|
|
L_82 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_81, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_83 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
Type_t* L_84;
|
|
L_84 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_83, NULL);
|
|
bool L_85;
|
|
L_85 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_82, L_84, NULL);
|
|
if (!L_85)
|
|
{
|
|
goto IL_021b;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_86 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int32_t* L_87 = (int32_t*)(&L_86->___int32_0);
|
|
V_16 = L_87;
|
|
int32_t* L_88 = V_16;
|
|
V_15 = (int32_t*)((uintptr_t)L_88);
|
|
V_17 = 0;
|
|
goto IL_020d;
|
|
}
|
|
|
|
IL_01f3:
|
|
{
|
|
int32_t* L_89 = V_15;
|
|
int32_t L_90 = V_17;
|
|
uint64_t L_91 = ___0_value;
|
|
uint64_t L_92 = L_91;
|
|
RuntimeObject* L_93 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_92);
|
|
*((int32_t*)((int32_t*)il2cpp_codegen_add((intptr_t)L_89, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_90), 4))))) = (int32_t)((*(int32_t*)UnBox(L_93, il2cpp_defaults.int32_class)));
|
|
int32_t L_94 = V_17;
|
|
V_17 = ((int32_t)il2cpp_codegen_add(L_94, 1));
|
|
}
|
|
|
|
IL_020d:
|
|
{
|
|
int32_t L_95 = V_17;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_96;
|
|
L_96 = Vector_1_get_Count_mC75C8C6E913E7FF8A3D10467D6DADE41711EF3CC_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_95) < ((int32_t)L_96)))
|
|
{
|
|
goto IL_01f3;
|
|
}
|
|
}
|
|
{
|
|
V_16 = (int32_t*)((uintptr_t)0);
|
|
return;
|
|
}
|
|
|
|
IL_021b:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_97 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_98;
|
|
L_98 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_97, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_99 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint64_class->byval_arg) };
|
|
Type_t* L_100;
|
|
L_100 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_99, NULL);
|
|
bool L_101;
|
|
L_101 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_98, L_100, NULL);
|
|
if (!L_101)
|
|
{
|
|
goto IL_0275;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_102 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t* L_103 = (uint64_t*)(&L_102->___uint64_0);
|
|
V_19 = L_103;
|
|
uint64_t* L_104 = V_19;
|
|
V_18 = (uint64_t*)((uintptr_t)L_104);
|
|
V_20 = 0;
|
|
goto IL_0267;
|
|
}
|
|
|
|
IL_024d:
|
|
{
|
|
uint64_t* L_105 = V_18;
|
|
int32_t L_106 = V_20;
|
|
uint64_t L_107 = ___0_value;
|
|
uint64_t L_108 = L_107;
|
|
RuntimeObject* L_109 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_108);
|
|
*((int64_t*)((uint64_t*)il2cpp_codegen_add((intptr_t)L_105, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_106), 8))))) = (int64_t)((*(uint64_t*)UnBox(L_109, il2cpp_defaults.uint64_class)));
|
|
int32_t L_110 = V_20;
|
|
V_20 = ((int32_t)il2cpp_codegen_add(L_110, 1));
|
|
}
|
|
|
|
IL_0267:
|
|
{
|
|
int32_t L_111 = V_20;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_112;
|
|
L_112 = Vector_1_get_Count_mC75C8C6E913E7FF8A3D10467D6DADE41711EF3CC_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_111) < ((int32_t)L_112)))
|
|
{
|
|
goto IL_024d;
|
|
}
|
|
}
|
|
{
|
|
V_19 = (uint64_t*)((uintptr_t)0);
|
|
return;
|
|
}
|
|
|
|
IL_0275:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_113 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_114;
|
|
L_114 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_113, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_115 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int64_class->byval_arg) };
|
|
Type_t* L_116;
|
|
L_116 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_115, NULL);
|
|
bool L_117;
|
|
L_117 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_114, L_116, NULL);
|
|
if (!L_117)
|
|
{
|
|
goto IL_02cf;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_118 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int64_t* L_119 = (int64_t*)(&L_118->___int64_0);
|
|
V_22 = L_119;
|
|
int64_t* L_120 = V_22;
|
|
V_21 = (int64_t*)((uintptr_t)L_120);
|
|
V_23 = 0;
|
|
goto IL_02c1;
|
|
}
|
|
|
|
IL_02a7:
|
|
{
|
|
int64_t* L_121 = V_21;
|
|
int32_t L_122 = V_23;
|
|
uint64_t L_123 = ___0_value;
|
|
uint64_t L_124 = L_123;
|
|
RuntimeObject* L_125 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_124);
|
|
*((int64_t*)((int64_t*)il2cpp_codegen_add((intptr_t)L_121, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_122), 8))))) = (int64_t)((*(int64_t*)UnBox(L_125, il2cpp_defaults.int64_class)));
|
|
int32_t L_126 = V_23;
|
|
V_23 = ((int32_t)il2cpp_codegen_add(L_126, 1));
|
|
}
|
|
|
|
IL_02c1:
|
|
{
|
|
int32_t L_127 = V_23;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_128;
|
|
L_128 = Vector_1_get_Count_mC75C8C6E913E7FF8A3D10467D6DADE41711EF3CC_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_127) < ((int32_t)L_128)))
|
|
{
|
|
goto IL_02a7;
|
|
}
|
|
}
|
|
{
|
|
V_22 = (int64_t*)((uintptr_t)0);
|
|
return;
|
|
}
|
|
|
|
IL_02cf:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_129 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_130;
|
|
L_130 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_129, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_131 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.single_class->byval_arg) };
|
|
Type_t* L_132;
|
|
L_132 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_131, NULL);
|
|
bool L_133;
|
|
L_133 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_130, L_132, NULL);
|
|
if (!L_133)
|
|
{
|
|
goto IL_0329;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_134 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
float* L_135 = (float*)(&L_134->___single_0);
|
|
V_25 = L_135;
|
|
float* L_136 = V_25;
|
|
V_24 = (float*)((uintptr_t)L_136);
|
|
V_26 = 0;
|
|
goto IL_031b;
|
|
}
|
|
|
|
IL_0301:
|
|
{
|
|
float* L_137 = V_24;
|
|
int32_t L_138 = V_26;
|
|
uint64_t L_139 = ___0_value;
|
|
uint64_t L_140 = L_139;
|
|
RuntimeObject* L_141 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_140);
|
|
*((float*)((float*)il2cpp_codegen_add((intptr_t)L_137, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_138), 4))))) = (float)((*(float*)UnBox(L_141, il2cpp_defaults.single_class)));
|
|
int32_t L_142 = V_26;
|
|
V_26 = ((int32_t)il2cpp_codegen_add(L_142, 1));
|
|
}
|
|
|
|
IL_031b:
|
|
{
|
|
int32_t L_143 = V_26;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_144;
|
|
L_144 = Vector_1_get_Count_mC75C8C6E913E7FF8A3D10467D6DADE41711EF3CC_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_143) < ((int32_t)L_144)))
|
|
{
|
|
goto IL_0301;
|
|
}
|
|
}
|
|
{
|
|
V_25 = (float*)((uintptr_t)0);
|
|
return;
|
|
}
|
|
|
|
IL_0329:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_145 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_146;
|
|
L_146 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_145, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_147 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.double_class->byval_arg) };
|
|
Type_t* L_148;
|
|
L_148 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_147, NULL);
|
|
bool L_149;
|
|
L_149 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_146, L_148, NULL);
|
|
if (!L_149)
|
|
{
|
|
goto IL_0a55;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_150 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
double* L_151 = (double*)(&L_150->___double_0);
|
|
V_28 = L_151;
|
|
double* L_152 = V_28;
|
|
V_27 = (double*)((uintptr_t)L_152);
|
|
V_29 = 0;
|
|
goto IL_0378;
|
|
}
|
|
|
|
IL_035e:
|
|
{
|
|
double* L_153 = V_27;
|
|
int32_t L_154 = V_29;
|
|
uint64_t L_155 = ___0_value;
|
|
uint64_t L_156 = L_155;
|
|
RuntimeObject* L_157 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_156);
|
|
*((double*)((double*)il2cpp_codegen_add((intptr_t)L_153, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_154), 8))))) = (double)((*(double*)UnBox(L_157, il2cpp_defaults.double_class)));
|
|
int32_t L_158 = V_29;
|
|
V_29 = ((int32_t)il2cpp_codegen_add(L_158, 1));
|
|
}
|
|
|
|
IL_0378:
|
|
{
|
|
int32_t L_159 = V_29;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_160;
|
|
L_160 = Vector_1_get_Count_mC75C8C6E913E7FF8A3D10467D6DADE41711EF3CC_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_159) < ((int32_t)L_160)))
|
|
{
|
|
goto IL_035e;
|
|
}
|
|
}
|
|
{
|
|
V_28 = (double*)((uintptr_t)0);
|
|
return;
|
|
}
|
|
|
|
IL_0386:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_161 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_162;
|
|
L_162 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_161, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_163 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.byte_class->byval_arg) };
|
|
Type_t* L_164;
|
|
L_164 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_163, NULL);
|
|
bool L_165;
|
|
L_165 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_162, L_164, NULL);
|
|
if (!L_165)
|
|
{
|
|
goto IL_0505;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_166 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_167 = ___0_value;
|
|
uint64_t L_168 = L_167;
|
|
RuntimeObject* L_169 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_168);
|
|
L_166->___byte_0 = ((*(uint8_t*)UnBox(L_169, il2cpp_defaults.byte_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_170 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_171 = ___0_value;
|
|
uint64_t L_172 = L_171;
|
|
RuntimeObject* L_173 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_172);
|
|
L_170->___byte_1 = ((*(uint8_t*)UnBox(L_173, il2cpp_defaults.byte_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_174 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_175 = ___0_value;
|
|
uint64_t L_176 = L_175;
|
|
RuntimeObject* L_177 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_176);
|
|
L_174->___byte_2 = ((*(uint8_t*)UnBox(L_177, il2cpp_defaults.byte_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_178 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_179 = ___0_value;
|
|
uint64_t L_180 = L_179;
|
|
RuntimeObject* L_181 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_180);
|
|
L_178->___byte_3 = ((*(uint8_t*)UnBox(L_181, il2cpp_defaults.byte_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_182 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_183 = ___0_value;
|
|
uint64_t L_184 = L_183;
|
|
RuntimeObject* L_185 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_184);
|
|
L_182->___byte_4 = ((*(uint8_t*)UnBox(L_185, il2cpp_defaults.byte_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_186 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_187 = ___0_value;
|
|
uint64_t L_188 = L_187;
|
|
RuntimeObject* L_189 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_188);
|
|
L_186->___byte_5 = ((*(uint8_t*)UnBox(L_189, il2cpp_defaults.byte_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_190 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_191 = ___0_value;
|
|
uint64_t L_192 = L_191;
|
|
RuntimeObject* L_193 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_192);
|
|
L_190->___byte_6 = ((*(uint8_t*)UnBox(L_193, il2cpp_defaults.byte_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_194 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_195 = ___0_value;
|
|
uint64_t L_196 = L_195;
|
|
RuntimeObject* L_197 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_196);
|
|
L_194->___byte_7 = ((*(uint8_t*)UnBox(L_197, il2cpp_defaults.byte_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_198 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_199 = ___0_value;
|
|
uint64_t L_200 = L_199;
|
|
RuntimeObject* L_201 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_200);
|
|
L_198->___byte_8 = ((*(uint8_t*)UnBox(L_201, il2cpp_defaults.byte_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_202 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_203 = ___0_value;
|
|
uint64_t L_204 = L_203;
|
|
RuntimeObject* L_205 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_204);
|
|
L_202->___byte_9 = ((*(uint8_t*)UnBox(L_205, il2cpp_defaults.byte_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_206 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_207 = ___0_value;
|
|
uint64_t L_208 = L_207;
|
|
RuntimeObject* L_209 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_208);
|
|
L_206->___byte_10 = ((*(uint8_t*)UnBox(L_209, il2cpp_defaults.byte_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_210 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_211 = ___0_value;
|
|
uint64_t L_212 = L_211;
|
|
RuntimeObject* L_213 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_212);
|
|
L_210->___byte_11 = ((*(uint8_t*)UnBox(L_213, il2cpp_defaults.byte_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_214 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_215 = ___0_value;
|
|
uint64_t L_216 = L_215;
|
|
RuntimeObject* L_217 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_216);
|
|
L_214->___byte_12 = ((*(uint8_t*)UnBox(L_217, il2cpp_defaults.byte_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_218 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_219 = ___0_value;
|
|
uint64_t L_220 = L_219;
|
|
RuntimeObject* L_221 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_220);
|
|
L_218->___byte_13 = ((*(uint8_t*)UnBox(L_221, il2cpp_defaults.byte_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_222 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_223 = ___0_value;
|
|
uint64_t L_224 = L_223;
|
|
RuntimeObject* L_225 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_224);
|
|
L_222->___byte_14 = ((*(uint8_t*)UnBox(L_225, il2cpp_defaults.byte_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_226 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_227 = ___0_value;
|
|
uint64_t L_228 = L_227;
|
|
RuntimeObject* L_229 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_228);
|
|
L_226->___byte_15 = ((*(uint8_t*)UnBox(L_229, il2cpp_defaults.byte_class)));
|
|
return;
|
|
}
|
|
|
|
IL_0505:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_230 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_231;
|
|
L_231 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_230, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_232 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.sbyte_class->byval_arg) };
|
|
Type_t* L_233;
|
|
L_233 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_232, NULL);
|
|
bool L_234;
|
|
L_234 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_231, L_233, NULL);
|
|
if (!L_234)
|
|
{
|
|
goto IL_0684;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_235 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_236 = ___0_value;
|
|
uint64_t L_237 = L_236;
|
|
RuntimeObject* L_238 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_237);
|
|
L_235->___sbyte_0 = ((*(int8_t*)UnBox(L_238, il2cpp_defaults.sbyte_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_239 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_240 = ___0_value;
|
|
uint64_t L_241 = L_240;
|
|
RuntimeObject* L_242 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_241);
|
|
L_239->___sbyte_1 = ((*(int8_t*)UnBox(L_242, il2cpp_defaults.sbyte_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_243 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_244 = ___0_value;
|
|
uint64_t L_245 = L_244;
|
|
RuntimeObject* L_246 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_245);
|
|
L_243->___sbyte_2 = ((*(int8_t*)UnBox(L_246, il2cpp_defaults.sbyte_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_247 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_248 = ___0_value;
|
|
uint64_t L_249 = L_248;
|
|
RuntimeObject* L_250 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_249);
|
|
L_247->___sbyte_3 = ((*(int8_t*)UnBox(L_250, il2cpp_defaults.sbyte_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_251 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_252 = ___0_value;
|
|
uint64_t L_253 = L_252;
|
|
RuntimeObject* L_254 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_253);
|
|
L_251->___sbyte_4 = ((*(int8_t*)UnBox(L_254, il2cpp_defaults.sbyte_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_255 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_256 = ___0_value;
|
|
uint64_t L_257 = L_256;
|
|
RuntimeObject* L_258 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_257);
|
|
L_255->___sbyte_5 = ((*(int8_t*)UnBox(L_258, il2cpp_defaults.sbyte_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_259 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_260 = ___0_value;
|
|
uint64_t L_261 = L_260;
|
|
RuntimeObject* L_262 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_261);
|
|
L_259->___sbyte_6 = ((*(int8_t*)UnBox(L_262, il2cpp_defaults.sbyte_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_263 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_264 = ___0_value;
|
|
uint64_t L_265 = L_264;
|
|
RuntimeObject* L_266 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_265);
|
|
L_263->___sbyte_7 = ((*(int8_t*)UnBox(L_266, il2cpp_defaults.sbyte_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_267 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_268 = ___0_value;
|
|
uint64_t L_269 = L_268;
|
|
RuntimeObject* L_270 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_269);
|
|
L_267->___sbyte_8 = ((*(int8_t*)UnBox(L_270, il2cpp_defaults.sbyte_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_271 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_272 = ___0_value;
|
|
uint64_t L_273 = L_272;
|
|
RuntimeObject* L_274 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_273);
|
|
L_271->___sbyte_9 = ((*(int8_t*)UnBox(L_274, il2cpp_defaults.sbyte_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_275 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_276 = ___0_value;
|
|
uint64_t L_277 = L_276;
|
|
RuntimeObject* L_278 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_277);
|
|
L_275->___sbyte_10 = ((*(int8_t*)UnBox(L_278, il2cpp_defaults.sbyte_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_279 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_280 = ___0_value;
|
|
uint64_t L_281 = L_280;
|
|
RuntimeObject* L_282 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_281);
|
|
L_279->___sbyte_11 = ((*(int8_t*)UnBox(L_282, il2cpp_defaults.sbyte_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_283 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_284 = ___0_value;
|
|
uint64_t L_285 = L_284;
|
|
RuntimeObject* L_286 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_285);
|
|
L_283->___sbyte_12 = ((*(int8_t*)UnBox(L_286, il2cpp_defaults.sbyte_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_287 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_288 = ___0_value;
|
|
uint64_t L_289 = L_288;
|
|
RuntimeObject* L_290 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_289);
|
|
L_287->___sbyte_13 = ((*(int8_t*)UnBox(L_290, il2cpp_defaults.sbyte_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_291 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_292 = ___0_value;
|
|
uint64_t L_293 = L_292;
|
|
RuntimeObject* L_294 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_293);
|
|
L_291->___sbyte_14 = ((*(int8_t*)UnBox(L_294, il2cpp_defaults.sbyte_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_295 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_296 = ___0_value;
|
|
uint64_t L_297 = L_296;
|
|
RuntimeObject* L_298 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_297);
|
|
L_295->___sbyte_15 = ((*(int8_t*)UnBox(L_298, il2cpp_defaults.sbyte_class)));
|
|
return;
|
|
}
|
|
|
|
IL_0684:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_299 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_300;
|
|
L_300 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_299, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_301 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint16_class->byval_arg) };
|
|
Type_t* L_302;
|
|
L_302 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_301, NULL);
|
|
bool L_303;
|
|
L_303 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_300, L_302, NULL);
|
|
if (!L_303)
|
|
{
|
|
goto IL_0753;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_304 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_305 = ___0_value;
|
|
uint64_t L_306 = L_305;
|
|
RuntimeObject* L_307 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_306);
|
|
L_304->___uint16_0 = ((*(uint16_t*)UnBox(L_307, il2cpp_defaults.uint16_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_308 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_309 = ___0_value;
|
|
uint64_t L_310 = L_309;
|
|
RuntimeObject* L_311 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_310);
|
|
L_308->___uint16_1 = ((*(uint16_t*)UnBox(L_311, il2cpp_defaults.uint16_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_312 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_313 = ___0_value;
|
|
uint64_t L_314 = L_313;
|
|
RuntimeObject* L_315 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_314);
|
|
L_312->___uint16_2 = ((*(uint16_t*)UnBox(L_315, il2cpp_defaults.uint16_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_316 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_317 = ___0_value;
|
|
uint64_t L_318 = L_317;
|
|
RuntimeObject* L_319 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_318);
|
|
L_316->___uint16_3 = ((*(uint16_t*)UnBox(L_319, il2cpp_defaults.uint16_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_320 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_321 = ___0_value;
|
|
uint64_t L_322 = L_321;
|
|
RuntimeObject* L_323 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_322);
|
|
L_320->___uint16_4 = ((*(uint16_t*)UnBox(L_323, il2cpp_defaults.uint16_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_324 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_325 = ___0_value;
|
|
uint64_t L_326 = L_325;
|
|
RuntimeObject* L_327 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_326);
|
|
L_324->___uint16_5 = ((*(uint16_t*)UnBox(L_327, il2cpp_defaults.uint16_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_328 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_329 = ___0_value;
|
|
uint64_t L_330 = L_329;
|
|
RuntimeObject* L_331 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_330);
|
|
L_328->___uint16_6 = ((*(uint16_t*)UnBox(L_331, il2cpp_defaults.uint16_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_332 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_333 = ___0_value;
|
|
uint64_t L_334 = L_333;
|
|
RuntimeObject* L_335 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_334);
|
|
L_332->___uint16_7 = ((*(uint16_t*)UnBox(L_335, il2cpp_defaults.uint16_class)));
|
|
return;
|
|
}
|
|
|
|
IL_0753:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_336 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_337;
|
|
L_337 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_336, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_338 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int16_class->byval_arg) };
|
|
Type_t* L_339;
|
|
L_339 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_338, NULL);
|
|
bool L_340;
|
|
L_340 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_337, L_339, NULL);
|
|
if (!L_340)
|
|
{
|
|
goto IL_0822;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_341 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_342 = ___0_value;
|
|
uint64_t L_343 = L_342;
|
|
RuntimeObject* L_344 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_343);
|
|
L_341->___int16_0 = ((*(int16_t*)UnBox(L_344, il2cpp_defaults.int16_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_345 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_346 = ___0_value;
|
|
uint64_t L_347 = L_346;
|
|
RuntimeObject* L_348 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_347);
|
|
L_345->___int16_1 = ((*(int16_t*)UnBox(L_348, il2cpp_defaults.int16_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_349 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_350 = ___0_value;
|
|
uint64_t L_351 = L_350;
|
|
RuntimeObject* L_352 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_351);
|
|
L_349->___int16_2 = ((*(int16_t*)UnBox(L_352, il2cpp_defaults.int16_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_353 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_354 = ___0_value;
|
|
uint64_t L_355 = L_354;
|
|
RuntimeObject* L_356 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_355);
|
|
L_353->___int16_3 = ((*(int16_t*)UnBox(L_356, il2cpp_defaults.int16_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_357 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_358 = ___0_value;
|
|
uint64_t L_359 = L_358;
|
|
RuntimeObject* L_360 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_359);
|
|
L_357->___int16_4 = ((*(int16_t*)UnBox(L_360, il2cpp_defaults.int16_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_361 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_362 = ___0_value;
|
|
uint64_t L_363 = L_362;
|
|
RuntimeObject* L_364 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_363);
|
|
L_361->___int16_5 = ((*(int16_t*)UnBox(L_364, il2cpp_defaults.int16_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_365 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_366 = ___0_value;
|
|
uint64_t L_367 = L_366;
|
|
RuntimeObject* L_368 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_367);
|
|
L_365->___int16_6 = ((*(int16_t*)UnBox(L_368, il2cpp_defaults.int16_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_369 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_370 = ___0_value;
|
|
uint64_t L_371 = L_370;
|
|
RuntimeObject* L_372 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_371);
|
|
L_369->___int16_7 = ((*(int16_t*)UnBox(L_372, il2cpp_defaults.int16_class)));
|
|
return;
|
|
}
|
|
|
|
IL_0822:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_373 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_374;
|
|
L_374 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_373, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_375 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint32_class->byval_arg) };
|
|
Type_t* L_376;
|
|
L_376 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_375, NULL);
|
|
bool L_377;
|
|
L_377 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_374, L_376, NULL);
|
|
if (!L_377)
|
|
{
|
|
goto IL_0896;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_378 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_379 = ___0_value;
|
|
uint64_t L_380 = L_379;
|
|
RuntimeObject* L_381 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_380);
|
|
L_378->___uint32_0 = ((*(uint32_t*)UnBox(L_381, il2cpp_defaults.uint32_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_382 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_383 = ___0_value;
|
|
uint64_t L_384 = L_383;
|
|
RuntimeObject* L_385 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_384);
|
|
L_382->___uint32_1 = ((*(uint32_t*)UnBox(L_385, il2cpp_defaults.uint32_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_386 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_387 = ___0_value;
|
|
uint64_t L_388 = L_387;
|
|
RuntimeObject* L_389 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_388);
|
|
L_386->___uint32_2 = ((*(uint32_t*)UnBox(L_389, il2cpp_defaults.uint32_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_390 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_391 = ___0_value;
|
|
uint64_t L_392 = L_391;
|
|
RuntimeObject* L_393 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_392);
|
|
L_390->___uint32_3 = ((*(uint32_t*)UnBox(L_393, il2cpp_defaults.uint32_class)));
|
|
return;
|
|
}
|
|
|
|
IL_0896:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_394 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_395;
|
|
L_395 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_394, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_396 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
Type_t* L_397;
|
|
L_397 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_396, NULL);
|
|
bool L_398;
|
|
L_398 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_395, L_397, NULL);
|
|
if (!L_398)
|
|
{
|
|
goto IL_090a;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_399 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_400 = ___0_value;
|
|
uint64_t L_401 = L_400;
|
|
RuntimeObject* L_402 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_401);
|
|
L_399->___int32_0 = ((*(int32_t*)UnBox(L_402, il2cpp_defaults.int32_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_403 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_404 = ___0_value;
|
|
uint64_t L_405 = L_404;
|
|
RuntimeObject* L_406 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_405);
|
|
L_403->___int32_1 = ((*(int32_t*)UnBox(L_406, il2cpp_defaults.int32_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_407 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_408 = ___0_value;
|
|
uint64_t L_409 = L_408;
|
|
RuntimeObject* L_410 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_409);
|
|
L_407->___int32_2 = ((*(int32_t*)UnBox(L_410, il2cpp_defaults.int32_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_411 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_412 = ___0_value;
|
|
uint64_t L_413 = L_412;
|
|
RuntimeObject* L_414 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_413);
|
|
L_411->___int32_3 = ((*(int32_t*)UnBox(L_414, il2cpp_defaults.int32_class)));
|
|
return;
|
|
}
|
|
|
|
IL_090a:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_415 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_416;
|
|
L_416 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_415, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_417 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint64_class->byval_arg) };
|
|
Type_t* L_418;
|
|
L_418 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_417, NULL);
|
|
bool L_419;
|
|
L_419 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_416, L_418, NULL);
|
|
if (!L_419)
|
|
{
|
|
goto IL_0952;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_420 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_421 = ___0_value;
|
|
uint64_t L_422 = L_421;
|
|
RuntimeObject* L_423 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_422);
|
|
L_420->___uint64_0 = ((*(uint64_t*)UnBox(L_423, il2cpp_defaults.uint64_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_424 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_425 = ___0_value;
|
|
uint64_t L_426 = L_425;
|
|
RuntimeObject* L_427 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_426);
|
|
L_424->___uint64_1 = ((*(uint64_t*)UnBox(L_427, il2cpp_defaults.uint64_class)));
|
|
return;
|
|
}
|
|
|
|
IL_0952:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_428 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_429;
|
|
L_429 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_428, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_430 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int64_class->byval_arg) };
|
|
Type_t* L_431;
|
|
L_431 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_430, NULL);
|
|
bool L_432;
|
|
L_432 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_429, L_431, NULL);
|
|
if (!L_432)
|
|
{
|
|
goto IL_099a;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_433 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_434 = ___0_value;
|
|
uint64_t L_435 = L_434;
|
|
RuntimeObject* L_436 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_435);
|
|
L_433->___int64_0 = ((*(int64_t*)UnBox(L_436, il2cpp_defaults.int64_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_437 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_438 = ___0_value;
|
|
uint64_t L_439 = L_438;
|
|
RuntimeObject* L_440 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_439);
|
|
L_437->___int64_1 = ((*(int64_t*)UnBox(L_440, il2cpp_defaults.int64_class)));
|
|
return;
|
|
}
|
|
|
|
IL_099a:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_441 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_442;
|
|
L_442 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_441, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_443 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.single_class->byval_arg) };
|
|
Type_t* L_444;
|
|
L_444 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_443, NULL);
|
|
bool L_445;
|
|
L_445 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_442, L_444, NULL);
|
|
if (!L_445)
|
|
{
|
|
goto IL_0a0e;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_446 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_447 = ___0_value;
|
|
uint64_t L_448 = L_447;
|
|
RuntimeObject* L_449 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_448);
|
|
L_446->___single_0 = ((*(float*)UnBox(L_449, il2cpp_defaults.single_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_450 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_451 = ___0_value;
|
|
uint64_t L_452 = L_451;
|
|
RuntimeObject* L_453 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_452);
|
|
L_450->___single_1 = ((*(float*)UnBox(L_453, il2cpp_defaults.single_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_454 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_455 = ___0_value;
|
|
uint64_t L_456 = L_455;
|
|
RuntimeObject* L_457 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_456);
|
|
L_454->___single_2 = ((*(float*)UnBox(L_457, il2cpp_defaults.single_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_458 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_459 = ___0_value;
|
|
uint64_t L_460 = L_459;
|
|
RuntimeObject* L_461 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_460);
|
|
L_458->___single_3 = ((*(float*)UnBox(L_461, il2cpp_defaults.single_class)));
|
|
return;
|
|
}
|
|
|
|
IL_0a0e:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_462 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_463;
|
|
L_463 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_462, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_464 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.double_class->byval_arg) };
|
|
Type_t* L_465;
|
|
L_465 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_464, NULL);
|
|
bool L_466;
|
|
L_466 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_463, L_465, NULL);
|
|
if (!L_466)
|
|
{
|
|
goto IL_0a55;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_467 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_468 = ___0_value;
|
|
uint64_t L_469 = L_468;
|
|
RuntimeObject* L_470 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_469);
|
|
L_467->___double_0 = ((*(double*)UnBox(L_470, il2cpp_defaults.double_class)));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_471 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_472 = ___0_value;
|
|
uint64_t L_473 = L_472;
|
|
RuntimeObject* L_474 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_473);
|
|
L_471->___double_1 = ((*(double*)UnBox(L_474, il2cpp_defaults.double_class)));
|
|
}
|
|
|
|
IL_0a55:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void Vector_1__ctor_m1B5D6A9264B4450B3C14BD8FF9430354A337F2D6_AdjustorThunk (RuntimeObject* __this, uint64_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A*>(__this + _offset);
|
|
Vector_1__ctor_m1B5D6A9264B4450B3C14BD8FF9430354A337F2D6(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// Method Definition Index: 7870
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Vector_1__ctor_mBEC18AF78DE340D929AD22019717DE9ED57A4CCA_gshared (Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A* __this, void* ___0_dataPointer, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
void* L_0 = ___0_dataPointer;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
Vector_1__ctor_mB3EB022FA5067096F41350560FA447FBA16BFF2B(__this, L_0, 0, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 6));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void Vector_1__ctor_mBEC18AF78DE340D929AD22019717DE9ED57A4CCA_AdjustorThunk (RuntimeObject* __this, void* ___0_dataPointer, const RuntimeMethod* method)
|
|
{
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A*>(__this + _offset);
|
|
Vector_1__ctor_mBEC18AF78DE340D929AD22019717DE9ED57A4CCA(_thisAdjusted, ___0_dataPointer, method);
|
|
}
|
|
// Method Definition Index: 7871
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Vector_1__ctor_mB3EB022FA5067096F41350560FA447FBA16BFF2B_gshared (Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A* __this, void* ___0_dataPointer, int32_t ___1_offset, const RuntimeMethod* method)
|
|
{
|
|
uint8_t* V_0 = NULL;
|
|
uint8_t* V_1 = NULL;
|
|
uint8_t* V_2 = NULL;
|
|
int32_t V_3 = 0;
|
|
int8_t* V_4 = NULL;
|
|
int8_t* V_5 = NULL;
|
|
int8_t* V_6 = NULL;
|
|
int32_t V_7 = 0;
|
|
uint16_t* V_8 = NULL;
|
|
uint16_t* V_9 = NULL;
|
|
uint16_t* V_10 = NULL;
|
|
int32_t V_11 = 0;
|
|
int16_t* V_12 = NULL;
|
|
int16_t* V_13 = NULL;
|
|
int16_t* V_14 = NULL;
|
|
int32_t V_15 = 0;
|
|
uint32_t* V_16 = NULL;
|
|
uint32_t* V_17 = NULL;
|
|
uint32_t* V_18 = NULL;
|
|
int32_t V_19 = 0;
|
|
int32_t* V_20 = NULL;
|
|
int32_t* V_21 = NULL;
|
|
int32_t* V_22 = NULL;
|
|
int32_t V_23 = 0;
|
|
uint64_t* V_24 = NULL;
|
|
uint64_t* V_25 = NULL;
|
|
uint64_t* V_26 = NULL;
|
|
int32_t V_27 = 0;
|
|
int64_t* V_28 = NULL;
|
|
int64_t* V_29 = NULL;
|
|
int64_t* V_30 = NULL;
|
|
int32_t V_31 = 0;
|
|
float* V_32 = NULL;
|
|
float* V_33 = NULL;
|
|
float* V_34 = NULL;
|
|
int32_t V_35 = 0;
|
|
double* V_36 = NULL;
|
|
double* V_37 = NULL;
|
|
double* V_38 = NULL;
|
|
int32_t V_39 = 0;
|
|
{
|
|
il2cpp_codegen_initobj(__this, sizeof(Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A));
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_1;
|
|
L_1 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_0, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_2 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.byte_class->byval_arg) };
|
|
Type_t* L_3;
|
|
L_3 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_2, NULL);
|
|
bool L_4;
|
|
L_4 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_1, L_3, NULL);
|
|
if (!L_4)
|
|
{
|
|
goto IL_0053;
|
|
}
|
|
}
|
|
{
|
|
void* L_5 = ___0_dataPointer;
|
|
V_0 = (uint8_t*)L_5;
|
|
uint8_t* L_6 = V_0;
|
|
int32_t L_7 = ___1_offset;
|
|
V_0 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_6, L_7));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_8 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t* L_9 = (uint8_t*)(&L_8->___byte_0);
|
|
V_2 = L_9;
|
|
uint8_t* L_10 = V_2;
|
|
V_1 = (uint8_t*)((uintptr_t)L_10);
|
|
V_3 = 0;
|
|
goto IL_0047;
|
|
}
|
|
|
|
IL_003b:
|
|
{
|
|
uint8_t* L_11 = V_1;
|
|
int32_t L_12 = V_3;
|
|
uint8_t* L_13 = V_0;
|
|
int32_t L_14 = V_3;
|
|
int32_t L_15 = (*(((uint8_t*)il2cpp_codegen_add((intptr_t)L_13, L_14))));
|
|
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_11, L_12))) = (int8_t)L_15;
|
|
int32_t L_16 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_16, 1));
|
|
}
|
|
|
|
IL_0047:
|
|
{
|
|
int32_t L_17 = V_3;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_18;
|
|
L_18 = Vector_1_get_Count_mC75C8C6E913E7FF8A3D10467D6DADE41711EF3CC_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_17) < ((int32_t)L_18)))
|
|
{
|
|
goto IL_003b;
|
|
}
|
|
}
|
|
{
|
|
V_2 = (uint8_t*)((uintptr_t)0);
|
|
return;
|
|
}
|
|
|
|
IL_0053:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_19 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_20;
|
|
L_20 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_19, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_21 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.sbyte_class->byval_arg) };
|
|
Type_t* L_22;
|
|
L_22 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_21, NULL);
|
|
bool L_23;
|
|
L_23 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_20, L_22, NULL);
|
|
if (!L_23)
|
|
{
|
|
goto IL_00ae;
|
|
}
|
|
}
|
|
{
|
|
void* L_24 = ___0_dataPointer;
|
|
V_4 = (int8_t*)L_24;
|
|
int8_t* L_25 = V_4;
|
|
int32_t L_26 = ___1_offset;
|
|
V_4 = ((int8_t*)il2cpp_codegen_add((intptr_t)L_25, L_26));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_27 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t* L_28 = (int8_t*)(&L_27->___sbyte_0);
|
|
V_6 = L_28;
|
|
int8_t* L_29 = V_6;
|
|
V_5 = (int8_t*)((uintptr_t)L_29);
|
|
V_7 = 0;
|
|
goto IL_00a0;
|
|
}
|
|
|
|
IL_008e:
|
|
{
|
|
int8_t* L_30 = V_5;
|
|
int32_t L_31 = V_7;
|
|
int8_t* L_32 = V_4;
|
|
int32_t L_33 = V_7;
|
|
int32_t L_34 = (*(((int8_t*)il2cpp_codegen_add((intptr_t)L_32, L_33))));
|
|
*((int8_t*)((int8_t*)il2cpp_codegen_add((intptr_t)L_30, L_31))) = (int8_t)L_34;
|
|
int32_t L_35 = V_7;
|
|
V_7 = ((int32_t)il2cpp_codegen_add(L_35, 1));
|
|
}
|
|
|
|
IL_00a0:
|
|
{
|
|
int32_t L_36 = V_7;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_37;
|
|
L_37 = Vector_1_get_Count_mC75C8C6E913E7FF8A3D10467D6DADE41711EF3CC_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_36) < ((int32_t)L_37)))
|
|
{
|
|
goto IL_008e;
|
|
}
|
|
}
|
|
{
|
|
V_6 = (int8_t*)((uintptr_t)0);
|
|
return;
|
|
}
|
|
|
|
IL_00ae:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_38 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_39;
|
|
L_39 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_38, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_40 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint16_class->byval_arg) };
|
|
Type_t* L_41;
|
|
L_41 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_40, NULL);
|
|
bool L_42;
|
|
L_42 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_39, L_41, NULL);
|
|
if (!L_42)
|
|
{
|
|
goto IL_0112;
|
|
}
|
|
}
|
|
{
|
|
void* L_43 = ___0_dataPointer;
|
|
V_8 = (uint16_t*)L_43;
|
|
uint16_t* L_44 = V_8;
|
|
int32_t L_45 = ___1_offset;
|
|
V_8 = ((uint16_t*)il2cpp_codegen_add((intptr_t)L_44, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_45), 2))));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_46 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t* L_47 = (uint16_t*)(&L_46->___uint16_0);
|
|
V_10 = L_47;
|
|
uint16_t* L_48 = V_10;
|
|
V_9 = (uint16_t*)((uintptr_t)L_48);
|
|
V_11 = 0;
|
|
goto IL_0104;
|
|
}
|
|
|
|
IL_00ec:
|
|
{
|
|
uint16_t* L_49 = V_9;
|
|
int32_t L_50 = V_11;
|
|
uint16_t* L_51 = V_8;
|
|
int32_t L_52 = V_11;
|
|
int32_t L_53 = (*(((uint16_t*)il2cpp_codegen_add((intptr_t)L_51, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_52), 2))))));
|
|
*((int16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_49, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_50), 2))))) = (int16_t)L_53;
|
|
int32_t L_54 = V_11;
|
|
V_11 = ((int32_t)il2cpp_codegen_add(L_54, 1));
|
|
}
|
|
|
|
IL_0104:
|
|
{
|
|
int32_t L_55 = V_11;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_56;
|
|
L_56 = Vector_1_get_Count_mC75C8C6E913E7FF8A3D10467D6DADE41711EF3CC_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_55) < ((int32_t)L_56)))
|
|
{
|
|
goto IL_00ec;
|
|
}
|
|
}
|
|
{
|
|
V_10 = (uint16_t*)((uintptr_t)0);
|
|
return;
|
|
}
|
|
|
|
IL_0112:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_57 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_58;
|
|
L_58 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_57, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_59 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int16_class->byval_arg) };
|
|
Type_t* L_60;
|
|
L_60 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_59, NULL);
|
|
bool L_61;
|
|
L_61 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_58, L_60, NULL);
|
|
if (!L_61)
|
|
{
|
|
goto IL_0176;
|
|
}
|
|
}
|
|
{
|
|
void* L_62 = ___0_dataPointer;
|
|
V_12 = (int16_t*)L_62;
|
|
int16_t* L_63 = V_12;
|
|
int32_t L_64 = ___1_offset;
|
|
V_12 = ((int16_t*)il2cpp_codegen_add((intptr_t)L_63, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_64), 2))));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_65 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int16_t* L_66 = (int16_t*)(&L_65->___int16_0);
|
|
V_14 = L_66;
|
|
int16_t* L_67 = V_14;
|
|
V_13 = (int16_t*)((uintptr_t)L_67);
|
|
V_15 = 0;
|
|
goto IL_0168;
|
|
}
|
|
|
|
IL_0150:
|
|
{
|
|
int16_t* L_68 = V_13;
|
|
int32_t L_69 = V_15;
|
|
int16_t* L_70 = V_12;
|
|
int32_t L_71 = V_15;
|
|
int32_t L_72 = (*(((int16_t*)il2cpp_codegen_add((intptr_t)L_70, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_71), 2))))));
|
|
*((int16_t*)((int16_t*)il2cpp_codegen_add((intptr_t)L_68, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_69), 2))))) = (int16_t)L_72;
|
|
int32_t L_73 = V_15;
|
|
V_15 = ((int32_t)il2cpp_codegen_add(L_73, 1));
|
|
}
|
|
|
|
IL_0168:
|
|
{
|
|
int32_t L_74 = V_15;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_75;
|
|
L_75 = Vector_1_get_Count_mC75C8C6E913E7FF8A3D10467D6DADE41711EF3CC_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_74) < ((int32_t)L_75)))
|
|
{
|
|
goto IL_0150;
|
|
}
|
|
}
|
|
{
|
|
V_14 = (int16_t*)((uintptr_t)0);
|
|
return;
|
|
}
|
|
|
|
IL_0176:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_76 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_77;
|
|
L_77 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_76, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_78 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint32_class->byval_arg) };
|
|
Type_t* L_79;
|
|
L_79 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_78, NULL);
|
|
bool L_80;
|
|
L_80 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_77, L_79, NULL);
|
|
if (!L_80)
|
|
{
|
|
goto IL_01da;
|
|
}
|
|
}
|
|
{
|
|
void* L_81 = ___0_dataPointer;
|
|
V_16 = (uint32_t*)L_81;
|
|
uint32_t* L_82 = V_16;
|
|
int32_t L_83 = ___1_offset;
|
|
V_16 = ((uint32_t*)il2cpp_codegen_add((intptr_t)L_82, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_83), 4))));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_84 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint32_t* L_85 = (uint32_t*)(&L_84->___uint32_0);
|
|
V_18 = L_85;
|
|
uint32_t* L_86 = V_18;
|
|
V_17 = (uint32_t*)((uintptr_t)L_86);
|
|
V_19 = 0;
|
|
goto IL_01cc;
|
|
}
|
|
|
|
IL_01b4:
|
|
{
|
|
uint32_t* L_87 = V_17;
|
|
int32_t L_88 = V_19;
|
|
uint32_t* L_89 = V_16;
|
|
int32_t L_90 = V_19;
|
|
int32_t L_91 = (*(((uint32_t*)il2cpp_codegen_add((intptr_t)L_89, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_90), 4))))));
|
|
*((int32_t*)((uint32_t*)il2cpp_codegen_add((intptr_t)L_87, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_88), 4))))) = (int32_t)L_91;
|
|
int32_t L_92 = V_19;
|
|
V_19 = ((int32_t)il2cpp_codegen_add(L_92, 1));
|
|
}
|
|
|
|
IL_01cc:
|
|
{
|
|
int32_t L_93 = V_19;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_94;
|
|
L_94 = Vector_1_get_Count_mC75C8C6E913E7FF8A3D10467D6DADE41711EF3CC_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_93) < ((int32_t)L_94)))
|
|
{
|
|
goto IL_01b4;
|
|
}
|
|
}
|
|
{
|
|
V_18 = (uint32_t*)((uintptr_t)0);
|
|
return;
|
|
}
|
|
|
|
IL_01da:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_95 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_96;
|
|
L_96 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_95, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_97 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
Type_t* L_98;
|
|
L_98 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_97, NULL);
|
|
bool L_99;
|
|
L_99 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_96, L_98, NULL);
|
|
if (!L_99)
|
|
{
|
|
goto IL_023e;
|
|
}
|
|
}
|
|
{
|
|
void* L_100 = ___0_dataPointer;
|
|
V_20 = (int32_t*)L_100;
|
|
int32_t* L_101 = V_20;
|
|
int32_t L_102 = ___1_offset;
|
|
V_20 = ((int32_t*)il2cpp_codegen_add((intptr_t)L_101, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_102), 4))));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_103 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int32_t* L_104 = (int32_t*)(&L_103->___int32_0);
|
|
V_22 = L_104;
|
|
int32_t* L_105 = V_22;
|
|
V_21 = (int32_t*)((uintptr_t)L_105);
|
|
V_23 = 0;
|
|
goto IL_0230;
|
|
}
|
|
|
|
IL_0218:
|
|
{
|
|
int32_t* L_106 = V_21;
|
|
int32_t L_107 = V_23;
|
|
int32_t* L_108 = V_20;
|
|
int32_t L_109 = V_23;
|
|
int32_t L_110 = (*(((int32_t*)il2cpp_codegen_add((intptr_t)L_108, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_109), 4))))));
|
|
*((int32_t*)((int32_t*)il2cpp_codegen_add((intptr_t)L_106, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_107), 4))))) = (int32_t)L_110;
|
|
int32_t L_111 = V_23;
|
|
V_23 = ((int32_t)il2cpp_codegen_add(L_111, 1));
|
|
}
|
|
|
|
IL_0230:
|
|
{
|
|
int32_t L_112 = V_23;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_113;
|
|
L_113 = Vector_1_get_Count_mC75C8C6E913E7FF8A3D10467D6DADE41711EF3CC_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_112) < ((int32_t)L_113)))
|
|
{
|
|
goto IL_0218;
|
|
}
|
|
}
|
|
{
|
|
V_22 = (int32_t*)((uintptr_t)0);
|
|
return;
|
|
}
|
|
|
|
IL_023e:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_114 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_115;
|
|
L_115 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_114, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_116 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint64_class->byval_arg) };
|
|
Type_t* L_117;
|
|
L_117 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_116, NULL);
|
|
bool L_118;
|
|
L_118 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_115, L_117, NULL);
|
|
if (!L_118)
|
|
{
|
|
goto IL_02a2;
|
|
}
|
|
}
|
|
{
|
|
void* L_119 = ___0_dataPointer;
|
|
V_24 = (uint64_t*)L_119;
|
|
uint64_t* L_120 = V_24;
|
|
int32_t L_121 = ___1_offset;
|
|
V_24 = ((uint64_t*)il2cpp_codegen_add((intptr_t)L_120, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_121), 8))));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_122 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t* L_123 = (uint64_t*)(&L_122->___uint64_0);
|
|
V_26 = L_123;
|
|
uint64_t* L_124 = V_26;
|
|
V_25 = (uint64_t*)((uintptr_t)L_124);
|
|
V_27 = 0;
|
|
goto IL_0294;
|
|
}
|
|
|
|
IL_027c:
|
|
{
|
|
uint64_t* L_125 = V_25;
|
|
int32_t L_126 = V_27;
|
|
uint64_t* L_127 = V_24;
|
|
int32_t L_128 = V_27;
|
|
int64_t L_129 = *((int64_t*)((uint64_t*)il2cpp_codegen_add((intptr_t)L_127, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_128), 8)))));
|
|
*((int64_t*)((uint64_t*)il2cpp_codegen_add((intptr_t)L_125, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_126), 8))))) = (int64_t)L_129;
|
|
int32_t L_130 = V_27;
|
|
V_27 = ((int32_t)il2cpp_codegen_add(L_130, 1));
|
|
}
|
|
|
|
IL_0294:
|
|
{
|
|
int32_t L_131 = V_27;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_132;
|
|
L_132 = Vector_1_get_Count_mC75C8C6E913E7FF8A3D10467D6DADE41711EF3CC_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_131) < ((int32_t)L_132)))
|
|
{
|
|
goto IL_027c;
|
|
}
|
|
}
|
|
{
|
|
V_26 = (uint64_t*)((uintptr_t)0);
|
|
return;
|
|
}
|
|
|
|
IL_02a2:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_133 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_134;
|
|
L_134 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_133, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_135 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int64_class->byval_arg) };
|
|
Type_t* L_136;
|
|
L_136 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_135, NULL);
|
|
bool L_137;
|
|
L_137 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_134, L_136, NULL);
|
|
if (!L_137)
|
|
{
|
|
goto IL_0306;
|
|
}
|
|
}
|
|
{
|
|
void* L_138 = ___0_dataPointer;
|
|
V_28 = (int64_t*)L_138;
|
|
int64_t* L_139 = V_28;
|
|
int32_t L_140 = ___1_offset;
|
|
V_28 = ((int64_t*)il2cpp_codegen_add((intptr_t)L_139, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_140), 8))));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_141 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int64_t* L_142 = (int64_t*)(&L_141->___int64_0);
|
|
V_30 = L_142;
|
|
int64_t* L_143 = V_30;
|
|
V_29 = (int64_t*)((uintptr_t)L_143);
|
|
V_31 = 0;
|
|
goto IL_02f8;
|
|
}
|
|
|
|
IL_02e0:
|
|
{
|
|
int64_t* L_144 = V_29;
|
|
int32_t L_145 = V_31;
|
|
int64_t* L_146 = V_28;
|
|
int32_t L_147 = V_31;
|
|
int64_t L_148 = (*(((int64_t*)il2cpp_codegen_add((intptr_t)L_146, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_147), 8))))));
|
|
*((int64_t*)((int64_t*)il2cpp_codegen_add((intptr_t)L_144, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_145), 8))))) = (int64_t)L_148;
|
|
int32_t L_149 = V_31;
|
|
V_31 = ((int32_t)il2cpp_codegen_add(L_149, 1));
|
|
}
|
|
|
|
IL_02f8:
|
|
{
|
|
int32_t L_150 = V_31;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_151;
|
|
L_151 = Vector_1_get_Count_mC75C8C6E913E7FF8A3D10467D6DADE41711EF3CC_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_150) < ((int32_t)L_151)))
|
|
{
|
|
goto IL_02e0;
|
|
}
|
|
}
|
|
{
|
|
V_30 = (int64_t*)((uintptr_t)0);
|
|
return;
|
|
}
|
|
|
|
IL_0306:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_152 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_153;
|
|
L_153 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_152, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_154 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.single_class->byval_arg) };
|
|
Type_t* L_155;
|
|
L_155 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_154, NULL);
|
|
bool L_156;
|
|
L_156 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_153, L_155, NULL);
|
|
if (!L_156)
|
|
{
|
|
goto IL_036a;
|
|
}
|
|
}
|
|
{
|
|
void* L_157 = ___0_dataPointer;
|
|
V_32 = (float*)L_157;
|
|
float* L_158 = V_32;
|
|
int32_t L_159 = ___1_offset;
|
|
V_32 = ((float*)il2cpp_codegen_add((intptr_t)L_158, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_159), 4))));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_160 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
float* L_161 = (float*)(&L_160->___single_0);
|
|
V_34 = L_161;
|
|
float* L_162 = V_34;
|
|
V_33 = (float*)((uintptr_t)L_162);
|
|
V_35 = 0;
|
|
goto IL_035c;
|
|
}
|
|
|
|
IL_0344:
|
|
{
|
|
float* L_163 = V_33;
|
|
int32_t L_164 = V_35;
|
|
float* L_165 = V_32;
|
|
int32_t L_166 = V_35;
|
|
float L_167 = (*(((float*)il2cpp_codegen_add((intptr_t)L_165, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_166), 4))))));
|
|
*((float*)((float*)il2cpp_codegen_add((intptr_t)L_163, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_164), 4))))) = (float)L_167;
|
|
int32_t L_168 = V_35;
|
|
V_35 = ((int32_t)il2cpp_codegen_add(L_168, 1));
|
|
}
|
|
|
|
IL_035c:
|
|
{
|
|
int32_t L_169 = V_35;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_170;
|
|
L_170 = Vector_1_get_Count_mC75C8C6E913E7FF8A3D10467D6DADE41711EF3CC_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_169) < ((int32_t)L_170)))
|
|
{
|
|
goto IL_0344;
|
|
}
|
|
}
|
|
{
|
|
V_34 = (float*)((uintptr_t)0);
|
|
return;
|
|
}
|
|
|
|
IL_036a:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_171 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_172;
|
|
L_172 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_171, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_173 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.double_class->byval_arg) };
|
|
Type_t* L_174;
|
|
L_174 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_173, NULL);
|
|
bool L_175;
|
|
L_175 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_172, L_174, NULL);
|
|
if (!L_175)
|
|
{
|
|
goto IL_03ce;
|
|
}
|
|
}
|
|
{
|
|
void* L_176 = ___0_dataPointer;
|
|
V_36 = (double*)L_176;
|
|
double* L_177 = V_36;
|
|
int32_t L_178 = ___1_offset;
|
|
V_36 = ((double*)il2cpp_codegen_add((intptr_t)L_177, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_178), 8))));
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_179 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
double* L_180 = (double*)(&L_179->___double_0);
|
|
V_38 = L_180;
|
|
double* L_181 = V_38;
|
|
V_37 = (double*)((uintptr_t)L_181);
|
|
V_39 = 0;
|
|
goto IL_03c0;
|
|
}
|
|
|
|
IL_03a8:
|
|
{
|
|
double* L_182 = V_37;
|
|
int32_t L_183 = V_39;
|
|
double* L_184 = V_36;
|
|
int32_t L_185 = V_39;
|
|
double L_186 = (*(((double*)il2cpp_codegen_add((intptr_t)L_184, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_185), 8))))));
|
|
*((double*)((double*)il2cpp_codegen_add((intptr_t)L_182, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_183), 8))))) = (double)L_186;
|
|
int32_t L_187 = V_39;
|
|
V_39 = ((int32_t)il2cpp_codegen_add(L_187, 1));
|
|
}
|
|
|
|
IL_03c0:
|
|
{
|
|
int32_t L_188 = V_39;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_189;
|
|
L_189 = Vector_1_get_Count_mC75C8C6E913E7FF8A3D10467D6DADE41711EF3CC_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_188) < ((int32_t)L_189)))
|
|
{
|
|
goto IL_03a8;
|
|
}
|
|
}
|
|
{
|
|
V_38 = (double*)((uintptr_t)0);
|
|
return;
|
|
}
|
|
|
|
IL_03ce:
|
|
{
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_190 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_190, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE310274B02A605A3985345944A620D7D2E019A1A)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_190, method);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void Vector_1__ctor_mB3EB022FA5067096F41350560FA447FBA16BFF2B_AdjustorThunk (RuntimeObject* __this, void* ___0_dataPointer, int32_t ___1_offset, const RuntimeMethod* method)
|
|
{
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A*>(__this + _offset);
|
|
Vector_1__ctor_mB3EB022FA5067096F41350560FA447FBA16BFF2B(_thisAdjusted, ___0_dataPointer, ___1_offset, method);
|
|
}
|
|
// Method Definition Index: 7872
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Vector_1__ctor_mEA86543744A54FCE590FDBF012FAE9037A5F1606_gshared (Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A* __this, Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* ___0_existingRegister, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_0 = ___0_existingRegister;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_1 = (*(Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)L_0);
|
|
__this->___register = L_1;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void Vector_1__ctor_mEA86543744A54FCE590FDBF012FAE9037A5F1606_AdjustorThunk (RuntimeObject* __this, Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* ___0_existingRegister, const RuntimeMethod* method)
|
|
{
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A*>(__this + _offset);
|
|
Vector_1__ctor_mEA86543744A54FCE590FDBF012FAE9037A5F1606(_thisAdjusted, ___0_existingRegister, method);
|
|
}
|
|
// Method Definition Index: 7873
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Vector_1_get_Item_m685EA4A01E8AF51DC7B5F78DE0583F8FD4997C99_gshared (Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
uint8_t* V_0 = NULL;
|
|
int8_t* V_1 = NULL;
|
|
uint16_t* V_2 = NULL;
|
|
int16_t* V_3 = NULL;
|
|
uint32_t* V_4 = NULL;
|
|
int32_t* V_5 = NULL;
|
|
uint64_t* V_6 = NULL;
|
|
int64_t* V_7 = NULL;
|
|
float* V_8 = NULL;
|
|
double* V_9 = NULL;
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_1;
|
|
L_1 = Vector_1_get_Count_mC75C8C6E913E7FF8A3D10467D6DADE41711EF3CC_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_0) >= ((int32_t)L_1)))
|
|
{
|
|
goto IL_000c;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2 = ___0_index;
|
|
if ((((int32_t)L_2) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
|
|
IL_000c:
|
|
{
|
|
int32_t L_3 = ___0_index;
|
|
int32_t L_4 = L_3;
|
|
RuntimeObject* L_5 = Box(il2cpp_defaults.int32_class, &L_4);
|
|
String_t* L_6;
|
|
L_6 = SR_Format_m9E8DC9AEFDC34AC67473EFAEAB78C5066C1A0D09(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral491788442E76F5D7830F0DBFCF8EDD98854F636F)), L_5, NULL);
|
|
IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82* L_7 = (IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82_il2cpp_TypeInfo_var)));
|
|
IndexOutOfRangeException__ctor_mFD06819F05B815BE2D6E826D4E04F4C449D0A425(L_7, L_6, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, method);
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_8 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_9;
|
|
L_9 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_8, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_10 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.byte_class->byval_arg) };
|
|
Type_t* L_11;
|
|
L_11 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_10, NULL);
|
|
bool L_12;
|
|
L_12 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_9, L_11, NULL);
|
|
if (!L_12)
|
|
{
|
|
goto IL_0059;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_13 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t* L_14 = (uint8_t*)(&L_13->___byte_0);
|
|
V_0 = L_14;
|
|
uint8_t* L_15 = V_0;
|
|
int32_t L_16 = ___0_index;
|
|
int32_t L_17 = *((uint8_t*)((intptr_t)il2cpp_codegen_add((intptr_t)((uintptr_t)L_15), L_16)));
|
|
uint8_t L_18 = ((uint8_t)L_17);
|
|
RuntimeObject* L_19 = Box(il2cpp_defaults.byte_class, &L_18);
|
|
return ((*(uint64_t*)UnBox(L_19, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_0059:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_20 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_21;
|
|
L_21 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_20, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_22 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.sbyte_class->byval_arg) };
|
|
Type_t* L_23;
|
|
L_23 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_22, NULL);
|
|
bool L_24;
|
|
L_24 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_21, L_23, NULL);
|
|
if (!L_24)
|
|
{
|
|
goto IL_0090;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_25 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t* L_26 = (int8_t*)(&L_25->___sbyte_0);
|
|
V_1 = L_26;
|
|
int8_t* L_27 = V_1;
|
|
int32_t L_28 = ___0_index;
|
|
int32_t L_29 = *((int8_t*)((intptr_t)il2cpp_codegen_add((intptr_t)((uintptr_t)L_27), L_28)));
|
|
int8_t L_30 = ((int8_t)L_29);
|
|
RuntimeObject* L_31 = Box(il2cpp_defaults.sbyte_class, &L_30);
|
|
return ((*(uint64_t*)UnBox(L_31, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_0090:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_32 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_33;
|
|
L_33 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_32, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_34 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint16_class->byval_arg) };
|
|
Type_t* L_35;
|
|
L_35 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_34, NULL);
|
|
bool L_36;
|
|
L_36 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_33, L_35, NULL);
|
|
if (!L_36)
|
|
{
|
|
goto IL_00ca;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_37 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t* L_38 = (uint16_t*)(&L_37->___uint16_0);
|
|
V_2 = L_38;
|
|
uint16_t* L_39 = V_2;
|
|
int32_t L_40 = ___0_index;
|
|
int32_t L_41 = *((uint16_t*)((intptr_t)il2cpp_codegen_add((intptr_t)((uintptr_t)L_39), ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_40), 2)))));
|
|
uint16_t L_42 = ((uint16_t)L_41);
|
|
RuntimeObject* L_43 = Box(il2cpp_defaults.uint16_class, &L_42);
|
|
return ((*(uint64_t*)UnBox(L_43, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_00ca:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_44 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_45;
|
|
L_45 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_44, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_46 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int16_class->byval_arg) };
|
|
Type_t* L_47;
|
|
L_47 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_46, NULL);
|
|
bool L_48;
|
|
L_48 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_45, L_47, NULL);
|
|
if (!L_48)
|
|
{
|
|
goto IL_0104;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_49 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int16_t* L_50 = (int16_t*)(&L_49->___int16_0);
|
|
V_3 = L_50;
|
|
int16_t* L_51 = V_3;
|
|
int32_t L_52 = ___0_index;
|
|
int32_t L_53 = *((int16_t*)((intptr_t)il2cpp_codegen_add((intptr_t)((uintptr_t)L_51), ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_52), 2)))));
|
|
int16_t L_54 = ((int16_t)L_53);
|
|
RuntimeObject* L_55 = Box(il2cpp_defaults.int16_class, &L_54);
|
|
return ((*(uint64_t*)UnBox(L_55, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_0104:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_56 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_57;
|
|
L_57 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_56, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_58 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint32_class->byval_arg) };
|
|
Type_t* L_59;
|
|
L_59 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_58, NULL);
|
|
bool L_60;
|
|
L_60 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_57, L_59, NULL);
|
|
if (!L_60)
|
|
{
|
|
goto IL_0140;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_61 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint32_t* L_62 = (uint32_t*)(&L_61->___uint32_0);
|
|
V_4 = L_62;
|
|
uint32_t* L_63 = V_4;
|
|
int32_t L_64 = ___0_index;
|
|
int32_t L_65 = *((uint32_t*)((intptr_t)il2cpp_codegen_add((intptr_t)((uintptr_t)L_63), ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_64), 4)))));
|
|
uint32_t L_66 = ((uint32_t)L_65);
|
|
RuntimeObject* L_67 = Box(il2cpp_defaults.uint32_class, &L_66);
|
|
return ((*(uint64_t*)UnBox(L_67, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_0140:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_68 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_69;
|
|
L_69 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_68, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_70 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
Type_t* L_71;
|
|
L_71 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_70, NULL);
|
|
bool L_72;
|
|
L_72 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_69, L_71, NULL);
|
|
if (!L_72)
|
|
{
|
|
goto IL_017c;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_73 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int32_t* L_74 = (int32_t*)(&L_73->___int32_0);
|
|
V_5 = L_74;
|
|
int32_t* L_75 = V_5;
|
|
int32_t L_76 = ___0_index;
|
|
int32_t L_77 = *((int32_t*)((intptr_t)il2cpp_codegen_add((intptr_t)((uintptr_t)L_75), ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_76), 4)))));
|
|
int32_t L_78 = L_77;
|
|
RuntimeObject* L_79 = Box(il2cpp_defaults.int32_class, &L_78);
|
|
return ((*(uint64_t*)UnBox(L_79, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_017c:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_80 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_81;
|
|
L_81 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_80, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_82 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint64_class->byval_arg) };
|
|
Type_t* L_83;
|
|
L_83 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_82, NULL);
|
|
bool L_84;
|
|
L_84 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_81, L_83, NULL);
|
|
if (!L_84)
|
|
{
|
|
goto IL_01b8;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_85 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t* L_86 = (uint64_t*)(&L_85->___uint64_0);
|
|
V_6 = L_86;
|
|
uint64_t* L_87 = V_6;
|
|
int32_t L_88 = ___0_index;
|
|
int64_t L_89 = *((int64_t*)((intptr_t)il2cpp_codegen_add((intptr_t)((uintptr_t)L_87), ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_88), 8)))));
|
|
uint64_t L_90 = ((uint64_t)L_89);
|
|
RuntimeObject* L_91 = Box(il2cpp_defaults.uint64_class, &L_90);
|
|
return ((*(uint64_t*)UnBox(L_91, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_01b8:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_92 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_93;
|
|
L_93 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_92, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_94 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int64_class->byval_arg) };
|
|
Type_t* L_95;
|
|
L_95 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_94, NULL);
|
|
bool L_96;
|
|
L_96 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_93, L_95, NULL);
|
|
if (!L_96)
|
|
{
|
|
goto IL_01f4;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_97 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int64_t* L_98 = (int64_t*)(&L_97->___int64_0);
|
|
V_7 = L_98;
|
|
int64_t* L_99 = V_7;
|
|
int32_t L_100 = ___0_index;
|
|
int64_t L_101 = *((int64_t*)((intptr_t)il2cpp_codegen_add((intptr_t)((uintptr_t)L_99), ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_100), 8)))));
|
|
int64_t L_102 = L_101;
|
|
RuntimeObject* L_103 = Box(il2cpp_defaults.int64_class, &L_102);
|
|
return ((*(uint64_t*)UnBox(L_103, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_01f4:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_104 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_105;
|
|
L_105 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_104, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_106 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.single_class->byval_arg) };
|
|
Type_t* L_107;
|
|
L_107 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_106, NULL);
|
|
bool L_108;
|
|
L_108 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_105, L_107, NULL);
|
|
if (!L_108)
|
|
{
|
|
goto IL_0230;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_109 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
float* L_110 = (float*)(&L_109->___single_0);
|
|
V_8 = L_110;
|
|
float* L_111 = V_8;
|
|
int32_t L_112 = ___0_index;
|
|
float L_113 = *((float*)((intptr_t)il2cpp_codegen_add((intptr_t)((uintptr_t)L_111), ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_112), 4)))));
|
|
float L_114 = L_113;
|
|
RuntimeObject* L_115 = Box(il2cpp_defaults.single_class, &L_114);
|
|
return ((*(uint64_t*)UnBox(L_115, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_0230:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_116 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_117;
|
|
L_117 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_116, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_118 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.double_class->byval_arg) };
|
|
Type_t* L_119;
|
|
L_119 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_118, NULL);
|
|
bool L_120;
|
|
L_120 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_117, L_119, NULL);
|
|
if (!L_120)
|
|
{
|
|
goto IL_026c;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_121 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
double* L_122 = (double*)(&L_121->___double_0);
|
|
V_9 = L_122;
|
|
double* L_123 = V_9;
|
|
int32_t L_124 = ___0_index;
|
|
double L_125 = *((double*)((intptr_t)il2cpp_codegen_add((intptr_t)((uintptr_t)L_123), ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_124), 8)))));
|
|
double L_126 = L_125;
|
|
RuntimeObject* L_127 = Box(il2cpp_defaults.double_class, &L_126);
|
|
return ((*(uint64_t*)UnBox(L_127, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_026c:
|
|
{
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_128 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_128, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE310274B02A605A3985345944A620D7D2E019A1A)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_128, method);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C uint64_t Vector_1_get_Item_m685EA4A01E8AF51DC7B5F78DE0583F8FD4997C99_AdjustorThunk (RuntimeObject* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A*>(__this + _offset);
|
|
uint64_t _returnValue;
|
|
_returnValue = Vector_1_get_Item_m685EA4A01E8AF51DC7B5F78DE0583F8FD4997C99(_thisAdjusted, ___0_index, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 7874
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Vector_1_Equals_mE275DCDE4DC3B6FB30AB80ACEAC8363207BA9BEC_gshared (Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = ___0_obj;
|
|
if (((RuntimeObject*)IsInstSealed((RuntimeObject*)L_0, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 0))))
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
RuntimeObject* L_1 = ___0_obj;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
bool L_2;
|
|
L_2 = Vector_1_Equals_mAE01D42B31EB54893DC4DB1BE8A99216AF784C27(__this, ((*(Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A*)UnBox(L_1, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 0)))), il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 7));
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool Vector_1_Equals_mE275DCDE4DC3B6FB30AB80ACEAC8363207BA9BEC_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = Vector_1_Equals_mE275DCDE4DC3B6FB30AB80ACEAC8363207BA9BEC_inline(_thisAdjusted, ___0_obj, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 7875
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Vector_1_Equals_mAE01D42B31EB54893DC4DB1BE8A99216AF784C27_gshared (Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A* __this, Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A ___0_other, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
bool L_0;
|
|
L_0 = Vector_get_IsHardwareAccelerated_m783509258751EBED64CBD9F387EC1BB4A15088AA(NULL);
|
|
if (!L_0)
|
|
{
|
|
goto IL_0031;
|
|
}
|
|
}
|
|
{
|
|
V_0 = 0;
|
|
goto IL_0027;
|
|
}
|
|
|
|
IL_000b:
|
|
{
|
|
int32_t L_1 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
uint64_t L_2;
|
|
L_2 = Vector_1_get_Item_m685EA4A01E8AF51DC7B5F78DE0583F8FD4997C99(__this, L_1, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
int32_t L_3 = V_0;
|
|
uint64_t L_4;
|
|
L_4 = Vector_1_get_Item_m685EA4A01E8AF51DC7B5F78DE0583F8FD4997C99((&___0_other), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
bool L_5;
|
|
L_5 = Vector_1_ScalarEquals_m73081D1B852400C74618D0A814BBED2FE272175D_inline(L_2, L_4, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 9));
|
|
if (L_5)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
int32_t L_6 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_6, 1));
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
int32_t L_7 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_8;
|
|
L_8 = Vector_1_get_Count_mC75C8C6E913E7FF8A3D10467D6DADE41711EF3CC_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_7) < ((int32_t)L_8)))
|
|
{
|
|
goto IL_000b;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_9 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_10;
|
|
L_10 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_9, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_11 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.byte_class->byval_arg) };
|
|
Type_t* L_12;
|
|
L_12 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_11, NULL);
|
|
bool L_13;
|
|
L_13 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_10, L_12, NULL);
|
|
if (!L_13)
|
|
{
|
|
goto IL_01f0;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_14 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t L_15 = L_14->___byte_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_16 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_17 = L_16.___register;
|
|
uint8_t L_18 = L_17.___byte_0;
|
|
if ((!(((uint32_t)L_15) == ((uint32_t)L_18))))
|
|
{
|
|
goto IL_01ee;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_19 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t L_20 = L_19->___byte_1;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_21 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_22 = L_21.___register;
|
|
uint8_t L_23 = L_22.___byte_1;
|
|
if ((!(((uint32_t)L_20) == ((uint32_t)L_23))))
|
|
{
|
|
goto IL_01ee;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_24 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t L_25 = L_24->___byte_2;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_26 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_27 = L_26.___register;
|
|
uint8_t L_28 = L_27.___byte_2;
|
|
if ((!(((uint32_t)L_25) == ((uint32_t)L_28))))
|
|
{
|
|
goto IL_01ee;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_29 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t L_30 = L_29->___byte_3;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_31 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_32 = L_31.___register;
|
|
uint8_t L_33 = L_32.___byte_3;
|
|
if ((!(((uint32_t)L_30) == ((uint32_t)L_33))))
|
|
{
|
|
goto IL_01ee;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_34 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t L_35 = L_34->___byte_4;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_36 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_37 = L_36.___register;
|
|
uint8_t L_38 = L_37.___byte_4;
|
|
if ((!(((uint32_t)L_35) == ((uint32_t)L_38))))
|
|
{
|
|
goto IL_01ee;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_39 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t L_40 = L_39->___byte_5;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_41 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_42 = L_41.___register;
|
|
uint8_t L_43 = L_42.___byte_5;
|
|
if ((!(((uint32_t)L_40) == ((uint32_t)L_43))))
|
|
{
|
|
goto IL_01ee;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_44 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t L_45 = L_44->___byte_6;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_46 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_47 = L_46.___register;
|
|
uint8_t L_48 = L_47.___byte_6;
|
|
if ((!(((uint32_t)L_45) == ((uint32_t)L_48))))
|
|
{
|
|
goto IL_01ee;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_49 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t L_50 = L_49->___byte_7;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_51 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_52 = L_51.___register;
|
|
uint8_t L_53 = L_52.___byte_7;
|
|
if ((!(((uint32_t)L_50) == ((uint32_t)L_53))))
|
|
{
|
|
goto IL_01ee;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_54 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t L_55 = L_54->___byte_8;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_56 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_57 = L_56.___register;
|
|
uint8_t L_58 = L_57.___byte_8;
|
|
if ((!(((uint32_t)L_55) == ((uint32_t)L_58))))
|
|
{
|
|
goto IL_01ee;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_59 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t L_60 = L_59->___byte_9;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_61 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_62 = L_61.___register;
|
|
uint8_t L_63 = L_62.___byte_9;
|
|
if ((!(((uint32_t)L_60) == ((uint32_t)L_63))))
|
|
{
|
|
goto IL_01ee;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_64 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t L_65 = L_64->___byte_10;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_66 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_67 = L_66.___register;
|
|
uint8_t L_68 = L_67.___byte_10;
|
|
if ((!(((uint32_t)L_65) == ((uint32_t)L_68))))
|
|
{
|
|
goto IL_01ee;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_69 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t L_70 = L_69->___byte_11;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_71 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_72 = L_71.___register;
|
|
uint8_t L_73 = L_72.___byte_11;
|
|
if ((!(((uint32_t)L_70) == ((uint32_t)L_73))))
|
|
{
|
|
goto IL_01ee;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_74 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t L_75 = L_74->___byte_12;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_76 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_77 = L_76.___register;
|
|
uint8_t L_78 = L_77.___byte_12;
|
|
if ((!(((uint32_t)L_75) == ((uint32_t)L_78))))
|
|
{
|
|
goto IL_01ee;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_79 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t L_80 = L_79->___byte_13;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_81 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_82 = L_81.___register;
|
|
uint8_t L_83 = L_82.___byte_13;
|
|
if ((!(((uint32_t)L_80) == ((uint32_t)L_83))))
|
|
{
|
|
goto IL_01ee;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_84 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t L_85 = L_84->___byte_14;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_86 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_87 = L_86.___register;
|
|
uint8_t L_88 = L_87.___byte_14;
|
|
if ((!(((uint32_t)L_85) == ((uint32_t)L_88))))
|
|
{
|
|
goto IL_01ee;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_89 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t L_90 = L_89->___byte_15;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_91 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_92 = L_91.___register;
|
|
uint8_t L_93 = L_92.___byte_15;
|
|
return (bool)((((int32_t)L_90) == ((int32_t)L_93))? 1 : 0);
|
|
}
|
|
|
|
IL_01ee:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_01f0:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_94 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_95;
|
|
L_95 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_94, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_96 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.sbyte_class->byval_arg) };
|
|
Type_t* L_97;
|
|
L_97 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_96, NULL);
|
|
bool L_98;
|
|
L_98 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_95, L_97, NULL);
|
|
if (!L_98)
|
|
{
|
|
goto IL_03af;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_99 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t L_100 = L_99->___sbyte_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_101 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_102 = L_101.___register;
|
|
int8_t L_103 = L_102.___sbyte_0;
|
|
if ((!(((uint32_t)L_100) == ((uint32_t)L_103))))
|
|
{
|
|
goto IL_03ad;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_104 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t L_105 = L_104->___sbyte_1;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_106 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_107 = L_106.___register;
|
|
int8_t L_108 = L_107.___sbyte_1;
|
|
if ((!(((uint32_t)L_105) == ((uint32_t)L_108))))
|
|
{
|
|
goto IL_03ad;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_109 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t L_110 = L_109->___sbyte_2;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_111 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_112 = L_111.___register;
|
|
int8_t L_113 = L_112.___sbyte_2;
|
|
if ((!(((uint32_t)L_110) == ((uint32_t)L_113))))
|
|
{
|
|
goto IL_03ad;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_114 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t L_115 = L_114->___sbyte_3;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_116 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_117 = L_116.___register;
|
|
int8_t L_118 = L_117.___sbyte_3;
|
|
if ((!(((uint32_t)L_115) == ((uint32_t)L_118))))
|
|
{
|
|
goto IL_03ad;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_119 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t L_120 = L_119->___sbyte_4;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_121 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_122 = L_121.___register;
|
|
int8_t L_123 = L_122.___sbyte_4;
|
|
if ((!(((uint32_t)L_120) == ((uint32_t)L_123))))
|
|
{
|
|
goto IL_03ad;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_124 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t L_125 = L_124->___sbyte_5;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_126 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_127 = L_126.___register;
|
|
int8_t L_128 = L_127.___sbyte_5;
|
|
if ((!(((uint32_t)L_125) == ((uint32_t)L_128))))
|
|
{
|
|
goto IL_03ad;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_129 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t L_130 = L_129->___sbyte_6;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_131 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_132 = L_131.___register;
|
|
int8_t L_133 = L_132.___sbyte_6;
|
|
if ((!(((uint32_t)L_130) == ((uint32_t)L_133))))
|
|
{
|
|
goto IL_03ad;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_134 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t L_135 = L_134->___sbyte_7;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_136 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_137 = L_136.___register;
|
|
int8_t L_138 = L_137.___sbyte_7;
|
|
if ((!(((uint32_t)L_135) == ((uint32_t)L_138))))
|
|
{
|
|
goto IL_03ad;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_139 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t L_140 = L_139->___sbyte_8;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_141 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_142 = L_141.___register;
|
|
int8_t L_143 = L_142.___sbyte_8;
|
|
if ((!(((uint32_t)L_140) == ((uint32_t)L_143))))
|
|
{
|
|
goto IL_03ad;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_144 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t L_145 = L_144->___sbyte_9;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_146 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_147 = L_146.___register;
|
|
int8_t L_148 = L_147.___sbyte_9;
|
|
if ((!(((uint32_t)L_145) == ((uint32_t)L_148))))
|
|
{
|
|
goto IL_03ad;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_149 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t L_150 = L_149->___sbyte_10;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_151 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_152 = L_151.___register;
|
|
int8_t L_153 = L_152.___sbyte_10;
|
|
if ((!(((uint32_t)L_150) == ((uint32_t)L_153))))
|
|
{
|
|
goto IL_03ad;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_154 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t L_155 = L_154->___sbyte_11;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_156 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_157 = L_156.___register;
|
|
int8_t L_158 = L_157.___sbyte_11;
|
|
if ((!(((uint32_t)L_155) == ((uint32_t)L_158))))
|
|
{
|
|
goto IL_03ad;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_159 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t L_160 = L_159->___sbyte_12;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_161 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_162 = L_161.___register;
|
|
int8_t L_163 = L_162.___sbyte_12;
|
|
if ((!(((uint32_t)L_160) == ((uint32_t)L_163))))
|
|
{
|
|
goto IL_03ad;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_164 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t L_165 = L_164->___sbyte_13;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_166 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_167 = L_166.___register;
|
|
int8_t L_168 = L_167.___sbyte_13;
|
|
if ((!(((uint32_t)L_165) == ((uint32_t)L_168))))
|
|
{
|
|
goto IL_03ad;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_169 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t L_170 = L_169->___sbyte_14;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_171 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_172 = L_171.___register;
|
|
int8_t L_173 = L_172.___sbyte_14;
|
|
if ((!(((uint32_t)L_170) == ((uint32_t)L_173))))
|
|
{
|
|
goto IL_03ad;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_174 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t L_175 = L_174->___sbyte_15;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_176 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_177 = L_176.___register;
|
|
int8_t L_178 = L_177.___sbyte_15;
|
|
return (bool)((((int32_t)L_175) == ((int32_t)L_178))? 1 : 0);
|
|
}
|
|
|
|
IL_03ad:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_03af:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_179 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_180;
|
|
L_180 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_179, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_181 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint16_class->byval_arg) };
|
|
Type_t* L_182;
|
|
L_182 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_181, NULL);
|
|
bool L_183;
|
|
L_183 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_180, L_182, NULL);
|
|
if (!L_183)
|
|
{
|
|
goto IL_0496;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_184 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_185 = L_184->___uint16_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_186 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_187 = L_186.___register;
|
|
uint16_t L_188 = L_187.___uint16_0;
|
|
if ((!(((uint32_t)L_185) == ((uint32_t)L_188))))
|
|
{
|
|
goto IL_0494;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_189 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_190 = L_189->___uint16_1;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_191 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_192 = L_191.___register;
|
|
uint16_t L_193 = L_192.___uint16_1;
|
|
if ((!(((uint32_t)L_190) == ((uint32_t)L_193))))
|
|
{
|
|
goto IL_0494;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_194 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_195 = L_194->___uint16_2;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_196 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_197 = L_196.___register;
|
|
uint16_t L_198 = L_197.___uint16_2;
|
|
if ((!(((uint32_t)L_195) == ((uint32_t)L_198))))
|
|
{
|
|
goto IL_0494;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_199 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_200 = L_199->___uint16_3;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_201 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_202 = L_201.___register;
|
|
uint16_t L_203 = L_202.___uint16_3;
|
|
if ((!(((uint32_t)L_200) == ((uint32_t)L_203))))
|
|
{
|
|
goto IL_0494;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_204 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_205 = L_204->___uint16_4;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_206 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_207 = L_206.___register;
|
|
uint16_t L_208 = L_207.___uint16_4;
|
|
if ((!(((uint32_t)L_205) == ((uint32_t)L_208))))
|
|
{
|
|
goto IL_0494;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_209 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_210 = L_209->___uint16_5;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_211 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_212 = L_211.___register;
|
|
uint16_t L_213 = L_212.___uint16_5;
|
|
if ((!(((uint32_t)L_210) == ((uint32_t)L_213))))
|
|
{
|
|
goto IL_0494;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_214 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_215 = L_214->___uint16_6;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_216 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_217 = L_216.___register;
|
|
uint16_t L_218 = L_217.___uint16_6;
|
|
if ((!(((uint32_t)L_215) == ((uint32_t)L_218))))
|
|
{
|
|
goto IL_0494;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_219 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t L_220 = L_219->___uint16_7;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_221 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_222 = L_221.___register;
|
|
uint16_t L_223 = L_222.___uint16_7;
|
|
return (bool)((((int32_t)L_220) == ((int32_t)L_223))? 1 : 0);
|
|
}
|
|
|
|
IL_0494:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0496:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_224 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_225;
|
|
L_225 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_224, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_226 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int16_class->byval_arg) };
|
|
Type_t* L_227;
|
|
L_227 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_226, NULL);
|
|
bool L_228;
|
|
L_228 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_225, L_227, NULL);
|
|
if (!L_228)
|
|
{
|
|
goto IL_057d;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_229 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int16_t L_230 = L_229->___int16_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_231 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_232 = L_231.___register;
|
|
int16_t L_233 = L_232.___int16_0;
|
|
if ((!(((uint32_t)L_230) == ((uint32_t)L_233))))
|
|
{
|
|
goto IL_057b;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_234 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int16_t L_235 = L_234->___int16_1;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_236 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_237 = L_236.___register;
|
|
int16_t L_238 = L_237.___int16_1;
|
|
if ((!(((uint32_t)L_235) == ((uint32_t)L_238))))
|
|
{
|
|
goto IL_057b;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_239 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int16_t L_240 = L_239->___int16_2;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_241 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_242 = L_241.___register;
|
|
int16_t L_243 = L_242.___int16_2;
|
|
if ((!(((uint32_t)L_240) == ((uint32_t)L_243))))
|
|
{
|
|
goto IL_057b;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_244 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int16_t L_245 = L_244->___int16_3;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_246 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_247 = L_246.___register;
|
|
int16_t L_248 = L_247.___int16_3;
|
|
if ((!(((uint32_t)L_245) == ((uint32_t)L_248))))
|
|
{
|
|
goto IL_057b;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_249 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int16_t L_250 = L_249->___int16_4;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_251 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_252 = L_251.___register;
|
|
int16_t L_253 = L_252.___int16_4;
|
|
if ((!(((uint32_t)L_250) == ((uint32_t)L_253))))
|
|
{
|
|
goto IL_057b;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_254 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int16_t L_255 = L_254->___int16_5;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_256 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_257 = L_256.___register;
|
|
int16_t L_258 = L_257.___int16_5;
|
|
if ((!(((uint32_t)L_255) == ((uint32_t)L_258))))
|
|
{
|
|
goto IL_057b;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_259 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int16_t L_260 = L_259->___int16_6;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_261 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_262 = L_261.___register;
|
|
int16_t L_263 = L_262.___int16_6;
|
|
if ((!(((uint32_t)L_260) == ((uint32_t)L_263))))
|
|
{
|
|
goto IL_057b;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_264 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int16_t L_265 = L_264->___int16_7;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_266 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_267 = L_266.___register;
|
|
int16_t L_268 = L_267.___int16_7;
|
|
return (bool)((((int32_t)L_265) == ((int32_t)L_268))? 1 : 0);
|
|
}
|
|
|
|
IL_057b:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_057d:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_269 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_270;
|
|
L_270 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_269, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_271 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint32_class->byval_arg) };
|
|
Type_t* L_272;
|
|
L_272 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_271, NULL);
|
|
bool L_273;
|
|
L_273 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_270, L_272, NULL);
|
|
if (!L_273)
|
|
{
|
|
goto IL_05fb;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_274 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint32_t L_275 = L_274->___uint32_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_276 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_277 = L_276.___register;
|
|
uint32_t L_278 = L_277.___uint32_0;
|
|
if ((!(((uint32_t)L_275) == ((uint32_t)L_278))))
|
|
{
|
|
goto IL_05f9;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_279 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint32_t L_280 = L_279->___uint32_1;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_281 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_282 = L_281.___register;
|
|
uint32_t L_283 = L_282.___uint32_1;
|
|
if ((!(((uint32_t)L_280) == ((uint32_t)L_283))))
|
|
{
|
|
goto IL_05f9;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_284 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint32_t L_285 = L_284->___uint32_2;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_286 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_287 = L_286.___register;
|
|
uint32_t L_288 = L_287.___uint32_2;
|
|
if ((!(((uint32_t)L_285) == ((uint32_t)L_288))))
|
|
{
|
|
goto IL_05f9;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_289 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint32_t L_290 = L_289->___uint32_3;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_291 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_292 = L_291.___register;
|
|
uint32_t L_293 = L_292.___uint32_3;
|
|
return (bool)((((int32_t)L_290) == ((int32_t)L_293))? 1 : 0);
|
|
}
|
|
|
|
IL_05f9:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_05fb:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_294 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_295;
|
|
L_295 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_294, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_296 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
Type_t* L_297;
|
|
L_297 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_296, NULL);
|
|
bool L_298;
|
|
L_298 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_295, L_297, NULL);
|
|
if (!L_298)
|
|
{
|
|
goto IL_0679;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_299 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int32_t L_300 = L_299->___int32_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_301 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_302 = L_301.___register;
|
|
int32_t L_303 = L_302.___int32_0;
|
|
if ((!(((uint32_t)L_300) == ((uint32_t)L_303))))
|
|
{
|
|
goto IL_0677;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_304 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int32_t L_305 = L_304->___int32_1;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_306 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_307 = L_306.___register;
|
|
int32_t L_308 = L_307.___int32_1;
|
|
if ((!(((uint32_t)L_305) == ((uint32_t)L_308))))
|
|
{
|
|
goto IL_0677;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_309 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int32_t L_310 = L_309->___int32_2;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_311 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_312 = L_311.___register;
|
|
int32_t L_313 = L_312.___int32_2;
|
|
if ((!(((uint32_t)L_310) == ((uint32_t)L_313))))
|
|
{
|
|
goto IL_0677;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_314 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int32_t L_315 = L_314->___int32_3;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_316 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_317 = L_316.___register;
|
|
int32_t L_318 = L_317.___int32_3;
|
|
return (bool)((((int32_t)L_315) == ((int32_t)L_318))? 1 : 0);
|
|
}
|
|
|
|
IL_0677:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0679:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_319 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_320;
|
|
L_320 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_319, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_321 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint64_class->byval_arg) };
|
|
Type_t* L_322;
|
|
L_322 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_321, NULL);
|
|
bool L_323;
|
|
L_323 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_320, L_322, NULL);
|
|
if (!L_323)
|
|
{
|
|
goto IL_06c7;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_324 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_325 = L_324->___uint64_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_326 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_327 = L_326.___register;
|
|
uint64_t L_328 = L_327.___uint64_0;
|
|
if ((!(((uint64_t)L_325) == ((uint64_t)L_328))))
|
|
{
|
|
goto IL_06c5;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_329 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t L_330 = L_329->___uint64_1;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_331 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_332 = L_331.___register;
|
|
uint64_t L_333 = L_332.___uint64_1;
|
|
return (bool)((((int64_t)L_330) == ((int64_t)L_333))? 1 : 0);
|
|
}
|
|
|
|
IL_06c5:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_06c7:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_334 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_335;
|
|
L_335 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_334, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_336 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int64_class->byval_arg) };
|
|
Type_t* L_337;
|
|
L_337 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_336, NULL);
|
|
bool L_338;
|
|
L_338 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_335, L_337, NULL);
|
|
if (!L_338)
|
|
{
|
|
goto IL_0715;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_339 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int64_t L_340 = L_339->___int64_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_341 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_342 = L_341.___register;
|
|
int64_t L_343 = L_342.___int64_0;
|
|
if ((!(((uint64_t)L_340) == ((uint64_t)L_343))))
|
|
{
|
|
goto IL_0713;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_344 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int64_t L_345 = L_344->___int64_1;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_346 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_347 = L_346.___register;
|
|
int64_t L_348 = L_347.___int64_1;
|
|
return (bool)((((int64_t)L_345) == ((int64_t)L_348))? 1 : 0);
|
|
}
|
|
|
|
IL_0713:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0715:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_349 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_350;
|
|
L_350 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_349, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_351 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.single_class->byval_arg) };
|
|
Type_t* L_352;
|
|
L_352 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_351, NULL);
|
|
bool L_353;
|
|
L_353 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_350, L_352, NULL);
|
|
if (!L_353)
|
|
{
|
|
goto IL_0793;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_354 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
float L_355 = L_354->___single_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_356 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_357 = L_356.___register;
|
|
float L_358 = L_357.___single_0;
|
|
if ((!(((float)L_355) == ((float)L_358))))
|
|
{
|
|
goto IL_0791;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_359 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
float L_360 = L_359->___single_1;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_361 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_362 = L_361.___register;
|
|
float L_363 = L_362.___single_1;
|
|
if ((!(((float)L_360) == ((float)L_363))))
|
|
{
|
|
goto IL_0791;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_364 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
float L_365 = L_364->___single_2;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_366 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_367 = L_366.___register;
|
|
float L_368 = L_367.___single_2;
|
|
if ((!(((float)L_365) == ((float)L_368))))
|
|
{
|
|
goto IL_0791;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_369 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
float L_370 = L_369->___single_3;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_371 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_372 = L_371.___register;
|
|
float L_373 = L_372.___single_3;
|
|
return (bool)((((float)L_370) == ((float)L_373))? 1 : 0);
|
|
}
|
|
|
|
IL_0791:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0793:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_374 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_375;
|
|
L_375 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_374, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_376 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.double_class->byval_arg) };
|
|
Type_t* L_377;
|
|
L_377 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_376, NULL);
|
|
bool L_378;
|
|
L_378 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_375, L_377, NULL);
|
|
if (!L_378)
|
|
{
|
|
goto IL_07e1;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_379 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
double L_380 = L_379->___double_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_381 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_382 = L_381.___register;
|
|
double L_383 = L_382.___double_0;
|
|
if ((!(((double)L_380) == ((double)L_383))))
|
|
{
|
|
goto IL_07df;
|
|
}
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_384 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
double L_385 = L_384->___double_1;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_386 = ___0_other;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_387 = L_386.___register;
|
|
double L_388 = L_387.___double_1;
|
|
return (bool)((((double)L_385) == ((double)L_388))? 1 : 0);
|
|
}
|
|
|
|
IL_07df:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_07e1:
|
|
{
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_389 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_389, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE310274B02A605A3985345944A620D7D2E019A1A)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_389, method);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool Vector_1_Equals_mAE01D42B31EB54893DC4DB1BE8A99216AF784C27_AdjustorThunk (RuntimeObject* __this, Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A ___0_other, const RuntimeMethod* method)
|
|
{
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = Vector_1_Equals_mAE01D42B31EB54893DC4DB1BE8A99216AF784C27(_thisAdjusted, ___0_other, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 7876
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Vector_1_GetHashCode_mEC951E56E2DC500CF877DFAD5542E0920B73B00A_gshared (Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashHelpers_t285C6E63B4A4E8D837BDBC63DE4E2D23C85467D4_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
uint8_t V_2 = 0x0;
|
|
int32_t V_3 = 0;
|
|
int8_t V_4 = 0x0;
|
|
int32_t V_5 = 0;
|
|
uint16_t V_6 = 0;
|
|
int32_t V_7 = 0;
|
|
int16_t V_8 = 0;
|
|
int32_t V_9 = 0;
|
|
uint32_t V_10 = 0;
|
|
int32_t V_11 = 0;
|
|
int32_t V_12 = 0;
|
|
int32_t V_13 = 0;
|
|
uint64_t V_14 = 0;
|
|
int32_t V_15 = 0;
|
|
int64_t V_16 = 0;
|
|
int32_t V_17 = 0;
|
|
float V_18 = 0.0f;
|
|
int32_t V_19 = 0;
|
|
double V_20 = 0.0;
|
|
{
|
|
V_0 = 0;
|
|
bool L_0;
|
|
L_0 = Vector_get_IsHardwareAccelerated_m783509258751EBED64CBD9F387EC1BB4A15088AA(NULL);
|
|
if (!L_0)
|
|
{
|
|
goto IL_034a;
|
|
}
|
|
}
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_1 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_2;
|
|
L_2 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_1, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_3 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.byte_class->byval_arg) };
|
|
Type_t* L_4;
|
|
L_4 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_3, NULL);
|
|
bool L_5;
|
|
L_5 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_2, L_4, NULL);
|
|
if (!L_5)
|
|
{
|
|
goto IL_0059;
|
|
}
|
|
}
|
|
{
|
|
V_1 = 0;
|
|
goto IL_004f;
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
int32_t L_6 = V_0;
|
|
int32_t L_7 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
uint64_t L_8;
|
|
L_8 = Vector_1_get_Item_m685EA4A01E8AF51DC7B5F78DE0583F8FD4997C99(__this, L_7, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
uint64_t L_9 = L_8;
|
|
RuntimeObject* L_10 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_9);
|
|
V_2 = ((*(uint8_t*)UnBox(L_10, il2cpp_defaults.byte_class)));
|
|
int32_t L_11;
|
|
L_11 = Byte_GetHashCode_mB42A844E310593D124CE92EBA90F3755C9B10678((&V_2), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(HashHelpers_t285C6E63B4A4E8D837BDBC63DE4E2D23C85467D4_il2cpp_TypeInfo_var);
|
|
int32_t L_12;
|
|
L_12 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_6, L_11, NULL);
|
|
V_0 = L_12;
|
|
int32_t L_13 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_13, 1));
|
|
}
|
|
|
|
IL_004f:
|
|
{
|
|
int32_t L_14 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_15;
|
|
L_15 = Vector_1_get_Count_mC75C8C6E913E7FF8A3D10467D6DADE41711EF3CC_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_14) < ((int32_t)L_15)))
|
|
{
|
|
goto IL_002b;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_16 = V_0;
|
|
return L_16;
|
|
}
|
|
|
|
IL_0059:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_17 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_18;
|
|
L_18 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_17, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_19 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.sbyte_class->byval_arg) };
|
|
Type_t* L_20;
|
|
L_20 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_19, NULL);
|
|
bool L_21;
|
|
L_21 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_18, L_20, NULL);
|
|
if (!L_21)
|
|
{
|
|
goto IL_00a7;
|
|
}
|
|
}
|
|
{
|
|
V_3 = 0;
|
|
goto IL_009d;
|
|
}
|
|
|
|
IL_0078:
|
|
{
|
|
int32_t L_22 = V_0;
|
|
int32_t L_23 = V_3;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
uint64_t L_24;
|
|
L_24 = Vector_1_get_Item_m685EA4A01E8AF51DC7B5F78DE0583F8FD4997C99(__this, L_23, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
uint64_t L_25 = L_24;
|
|
RuntimeObject* L_26 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_25);
|
|
V_4 = ((*(int8_t*)UnBox(L_26, il2cpp_defaults.sbyte_class)));
|
|
int32_t L_27;
|
|
L_27 = SByte_GetHashCode_mE61E9B0D1D93EF3E4E2B6282FF940FFA2E471FFF((&V_4), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(HashHelpers_t285C6E63B4A4E8D837BDBC63DE4E2D23C85467D4_il2cpp_TypeInfo_var);
|
|
int32_t L_28;
|
|
L_28 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_22, L_27, NULL);
|
|
V_0 = L_28;
|
|
int32_t L_29 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_29, 1));
|
|
}
|
|
|
|
IL_009d:
|
|
{
|
|
int32_t L_30 = V_3;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_31;
|
|
L_31 = Vector_1_get_Count_mC75C8C6E913E7FF8A3D10467D6DADE41711EF3CC_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_30) < ((int32_t)L_31)))
|
|
{
|
|
goto IL_0078;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_32 = V_0;
|
|
return L_32;
|
|
}
|
|
|
|
IL_00a7:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_33 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_34;
|
|
L_34 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_33, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_35 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint16_class->byval_arg) };
|
|
Type_t* L_36;
|
|
L_36 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_35, NULL);
|
|
bool L_37;
|
|
L_37 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_34, L_36, NULL);
|
|
if (!L_37)
|
|
{
|
|
goto IL_00fa;
|
|
}
|
|
}
|
|
{
|
|
V_5 = 0;
|
|
goto IL_00ef;
|
|
}
|
|
|
|
IL_00c7:
|
|
{
|
|
int32_t L_38 = V_0;
|
|
int32_t L_39 = V_5;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
uint64_t L_40;
|
|
L_40 = Vector_1_get_Item_m685EA4A01E8AF51DC7B5F78DE0583F8FD4997C99(__this, L_39, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
uint64_t L_41 = L_40;
|
|
RuntimeObject* L_42 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_41);
|
|
V_6 = ((*(uint16_t*)UnBox(L_42, il2cpp_defaults.uint16_class)));
|
|
int32_t L_43;
|
|
L_43 = UInt16_GetHashCode_m534E5103D0DA9C6FCED4F2F007993D3E38165200((&V_6), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(HashHelpers_t285C6E63B4A4E8D837BDBC63DE4E2D23C85467D4_il2cpp_TypeInfo_var);
|
|
int32_t L_44;
|
|
L_44 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_38, L_43, NULL);
|
|
V_0 = L_44;
|
|
int32_t L_45 = V_5;
|
|
V_5 = ((int32_t)il2cpp_codegen_add(L_45, 1));
|
|
}
|
|
|
|
IL_00ef:
|
|
{
|
|
int32_t L_46 = V_5;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_47;
|
|
L_47 = Vector_1_get_Count_mC75C8C6E913E7FF8A3D10467D6DADE41711EF3CC_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_46) < ((int32_t)L_47)))
|
|
{
|
|
goto IL_00c7;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_48 = V_0;
|
|
return L_48;
|
|
}
|
|
|
|
IL_00fa:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_49 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_50;
|
|
L_50 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_49, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_51 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int16_class->byval_arg) };
|
|
Type_t* L_52;
|
|
L_52 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_51, NULL);
|
|
bool L_53;
|
|
L_53 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_50, L_52, NULL);
|
|
if (!L_53)
|
|
{
|
|
goto IL_014d;
|
|
}
|
|
}
|
|
{
|
|
V_7 = 0;
|
|
goto IL_0142;
|
|
}
|
|
|
|
IL_011a:
|
|
{
|
|
int32_t L_54 = V_0;
|
|
int32_t L_55 = V_7;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
uint64_t L_56;
|
|
L_56 = Vector_1_get_Item_m685EA4A01E8AF51DC7B5F78DE0583F8FD4997C99(__this, L_55, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
uint64_t L_57 = L_56;
|
|
RuntimeObject* L_58 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_57);
|
|
V_8 = ((*(int16_t*)UnBox(L_58, il2cpp_defaults.int16_class)));
|
|
int32_t L_59;
|
|
L_59 = Int16_GetHashCode_mCD0A167AC8E6ACC2235F12E00C0F9BDC6ED3B6E1((&V_8), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(HashHelpers_t285C6E63B4A4E8D837BDBC63DE4E2D23C85467D4_il2cpp_TypeInfo_var);
|
|
int32_t L_60;
|
|
L_60 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_54, L_59, NULL);
|
|
V_0 = L_60;
|
|
int32_t L_61 = V_7;
|
|
V_7 = ((int32_t)il2cpp_codegen_add(L_61, 1));
|
|
}
|
|
|
|
IL_0142:
|
|
{
|
|
int32_t L_62 = V_7;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_63;
|
|
L_63 = Vector_1_get_Count_mC75C8C6E913E7FF8A3D10467D6DADE41711EF3CC_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_62) < ((int32_t)L_63)))
|
|
{
|
|
goto IL_011a;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_64 = V_0;
|
|
return L_64;
|
|
}
|
|
|
|
IL_014d:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_65 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_66;
|
|
L_66 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_65, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_67 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint32_class->byval_arg) };
|
|
Type_t* L_68;
|
|
L_68 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_67, NULL);
|
|
bool L_69;
|
|
L_69 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_66, L_68, NULL);
|
|
if (!L_69)
|
|
{
|
|
goto IL_01a0;
|
|
}
|
|
}
|
|
{
|
|
V_9 = 0;
|
|
goto IL_0195;
|
|
}
|
|
|
|
IL_016d:
|
|
{
|
|
int32_t L_70 = V_0;
|
|
int32_t L_71 = V_9;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
uint64_t L_72;
|
|
L_72 = Vector_1_get_Item_m685EA4A01E8AF51DC7B5F78DE0583F8FD4997C99(__this, L_71, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
uint64_t L_73 = L_72;
|
|
RuntimeObject* L_74 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_73);
|
|
V_10 = ((*(uint32_t*)UnBox(L_74, il2cpp_defaults.uint32_class)));
|
|
int32_t L_75;
|
|
L_75 = UInt32_GetHashCode_mB9A03A037C079ADF0E61516BECA1AB05F92266BC((&V_10), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(HashHelpers_t285C6E63B4A4E8D837BDBC63DE4E2D23C85467D4_il2cpp_TypeInfo_var);
|
|
int32_t L_76;
|
|
L_76 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_70, L_75, NULL);
|
|
V_0 = L_76;
|
|
int32_t L_77 = V_9;
|
|
V_9 = ((int32_t)il2cpp_codegen_add(L_77, 1));
|
|
}
|
|
|
|
IL_0195:
|
|
{
|
|
int32_t L_78 = V_9;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_79;
|
|
L_79 = Vector_1_get_Count_mC75C8C6E913E7FF8A3D10467D6DADE41711EF3CC_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_78) < ((int32_t)L_79)))
|
|
{
|
|
goto IL_016d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_80 = V_0;
|
|
return L_80;
|
|
}
|
|
|
|
IL_01a0:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_81 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_82;
|
|
L_82 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_81, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_83 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
Type_t* L_84;
|
|
L_84 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_83, NULL);
|
|
bool L_85;
|
|
L_85 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_82, L_84, NULL);
|
|
if (!L_85)
|
|
{
|
|
goto IL_01f3;
|
|
}
|
|
}
|
|
{
|
|
V_11 = 0;
|
|
goto IL_01e8;
|
|
}
|
|
|
|
IL_01c0:
|
|
{
|
|
int32_t L_86 = V_0;
|
|
int32_t L_87 = V_11;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
uint64_t L_88;
|
|
L_88 = Vector_1_get_Item_m685EA4A01E8AF51DC7B5F78DE0583F8FD4997C99(__this, L_87, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
uint64_t L_89 = L_88;
|
|
RuntimeObject* L_90 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_89);
|
|
V_12 = ((*(int32_t*)UnBox(L_90, il2cpp_defaults.int32_class)));
|
|
int32_t L_91;
|
|
L_91 = Int32_GetHashCode_m253D60FF7527A483E91004B7A2366F13E225E295((&V_12), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(HashHelpers_t285C6E63B4A4E8D837BDBC63DE4E2D23C85467D4_il2cpp_TypeInfo_var);
|
|
int32_t L_92;
|
|
L_92 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_86, L_91, NULL);
|
|
V_0 = L_92;
|
|
int32_t L_93 = V_11;
|
|
V_11 = ((int32_t)il2cpp_codegen_add(L_93, 1));
|
|
}
|
|
|
|
IL_01e8:
|
|
{
|
|
int32_t L_94 = V_11;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_95;
|
|
L_95 = Vector_1_get_Count_mC75C8C6E913E7FF8A3D10467D6DADE41711EF3CC_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_94) < ((int32_t)L_95)))
|
|
{
|
|
goto IL_01c0;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_96 = V_0;
|
|
return L_96;
|
|
}
|
|
|
|
IL_01f3:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_97 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_98;
|
|
L_98 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_97, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_99 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint64_class->byval_arg) };
|
|
Type_t* L_100;
|
|
L_100 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_99, NULL);
|
|
bool L_101;
|
|
L_101 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_98, L_100, NULL);
|
|
if (!L_101)
|
|
{
|
|
goto IL_0246;
|
|
}
|
|
}
|
|
{
|
|
V_13 = 0;
|
|
goto IL_023b;
|
|
}
|
|
|
|
IL_0213:
|
|
{
|
|
int32_t L_102 = V_0;
|
|
int32_t L_103 = V_13;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
uint64_t L_104;
|
|
L_104 = Vector_1_get_Item_m685EA4A01E8AF51DC7B5F78DE0583F8FD4997C99(__this, L_103, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
uint64_t L_105 = L_104;
|
|
RuntimeObject* L_106 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_105);
|
|
V_14 = ((*(uint64_t*)UnBox(L_106, il2cpp_defaults.uint64_class)));
|
|
int32_t L_107;
|
|
L_107 = UInt64_GetHashCode_m65D9FD0102B6B01BF38D986F060F0BDBC29B4F92((&V_14), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(HashHelpers_t285C6E63B4A4E8D837BDBC63DE4E2D23C85467D4_il2cpp_TypeInfo_var);
|
|
int32_t L_108;
|
|
L_108 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_102, L_107, NULL);
|
|
V_0 = L_108;
|
|
int32_t L_109 = V_13;
|
|
V_13 = ((int32_t)il2cpp_codegen_add(L_109, 1));
|
|
}
|
|
|
|
IL_023b:
|
|
{
|
|
int32_t L_110 = V_13;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_111;
|
|
L_111 = Vector_1_get_Count_mC75C8C6E913E7FF8A3D10467D6DADE41711EF3CC_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_110) < ((int32_t)L_111)))
|
|
{
|
|
goto IL_0213;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_112 = V_0;
|
|
return L_112;
|
|
}
|
|
|
|
IL_0246:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_113 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_114;
|
|
L_114 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_113, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_115 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int64_class->byval_arg) };
|
|
Type_t* L_116;
|
|
L_116 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_115, NULL);
|
|
bool L_117;
|
|
L_117 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_114, L_116, NULL);
|
|
if (!L_117)
|
|
{
|
|
goto IL_0299;
|
|
}
|
|
}
|
|
{
|
|
V_15 = 0;
|
|
goto IL_028e;
|
|
}
|
|
|
|
IL_0266:
|
|
{
|
|
int32_t L_118 = V_0;
|
|
int32_t L_119 = V_15;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
uint64_t L_120;
|
|
L_120 = Vector_1_get_Item_m685EA4A01E8AF51DC7B5F78DE0583F8FD4997C99(__this, L_119, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
uint64_t L_121 = L_120;
|
|
RuntimeObject* L_122 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_121);
|
|
V_16 = ((*(int64_t*)UnBox(L_122, il2cpp_defaults.int64_class)));
|
|
int32_t L_123;
|
|
L_123 = Int64_GetHashCode_mDB050BE2AC244D92B14D1DF725AAD279CDC48496((&V_16), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(HashHelpers_t285C6E63B4A4E8D837BDBC63DE4E2D23C85467D4_il2cpp_TypeInfo_var);
|
|
int32_t L_124;
|
|
L_124 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_118, L_123, NULL);
|
|
V_0 = L_124;
|
|
int32_t L_125 = V_15;
|
|
V_15 = ((int32_t)il2cpp_codegen_add(L_125, 1));
|
|
}
|
|
|
|
IL_028e:
|
|
{
|
|
int32_t L_126 = V_15;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_127;
|
|
L_127 = Vector_1_get_Count_mC75C8C6E913E7FF8A3D10467D6DADE41711EF3CC_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_126) < ((int32_t)L_127)))
|
|
{
|
|
goto IL_0266;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_128 = V_0;
|
|
return L_128;
|
|
}
|
|
|
|
IL_0299:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_129 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_130;
|
|
L_130 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_129, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_131 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.single_class->byval_arg) };
|
|
Type_t* L_132;
|
|
L_132 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_131, NULL);
|
|
bool L_133;
|
|
L_133 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_130, L_132, NULL);
|
|
if (!L_133)
|
|
{
|
|
goto IL_02ec;
|
|
}
|
|
}
|
|
{
|
|
V_17 = 0;
|
|
goto IL_02e1;
|
|
}
|
|
|
|
IL_02b9:
|
|
{
|
|
int32_t L_134 = V_0;
|
|
int32_t L_135 = V_17;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
uint64_t L_136;
|
|
L_136 = Vector_1_get_Item_m685EA4A01E8AF51DC7B5F78DE0583F8FD4997C99(__this, L_135, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
uint64_t L_137 = L_136;
|
|
RuntimeObject* L_138 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_137);
|
|
V_18 = ((*(float*)UnBox(L_138, il2cpp_defaults.single_class)));
|
|
int32_t L_139;
|
|
L_139 = Single_GetHashCode_mC3F1E099D1CF165C2D71FBCC5EF6A6792F9021D2((&V_18), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(HashHelpers_t285C6E63B4A4E8D837BDBC63DE4E2D23C85467D4_il2cpp_TypeInfo_var);
|
|
int32_t L_140;
|
|
L_140 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_134, L_139, NULL);
|
|
V_0 = L_140;
|
|
int32_t L_141 = V_17;
|
|
V_17 = ((int32_t)il2cpp_codegen_add(L_141, 1));
|
|
}
|
|
|
|
IL_02e1:
|
|
{
|
|
int32_t L_142 = V_17;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_143;
|
|
L_143 = Vector_1_get_Count_mC75C8C6E913E7FF8A3D10467D6DADE41711EF3CC_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_142) < ((int32_t)L_143)))
|
|
{
|
|
goto IL_02b9;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_144 = V_0;
|
|
return L_144;
|
|
}
|
|
|
|
IL_02ec:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_145 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_146;
|
|
L_146 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_145, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_147 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.double_class->byval_arg) };
|
|
Type_t* L_148;
|
|
L_148 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_147, NULL);
|
|
bool L_149;
|
|
L_149 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_146, L_148, NULL);
|
|
if (!L_149)
|
|
{
|
|
goto IL_033f;
|
|
}
|
|
}
|
|
{
|
|
V_19 = 0;
|
|
goto IL_0334;
|
|
}
|
|
|
|
IL_030c:
|
|
{
|
|
int32_t L_150 = V_0;
|
|
int32_t L_151 = V_19;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
uint64_t L_152;
|
|
L_152 = Vector_1_get_Item_m685EA4A01E8AF51DC7B5F78DE0583F8FD4997C99(__this, L_151, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
uint64_t L_153 = L_152;
|
|
RuntimeObject* L_154 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_153);
|
|
V_20 = ((*(double*)UnBox(L_154, il2cpp_defaults.double_class)));
|
|
int32_t L_155;
|
|
L_155 = Double_GetHashCode_m3761FC05AD24D97A68FA1E8412A9454DF3880E32_inline((&V_20), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(HashHelpers_t285C6E63B4A4E8D837BDBC63DE4E2D23C85467D4_il2cpp_TypeInfo_var);
|
|
int32_t L_156;
|
|
L_156 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_150, L_155, NULL);
|
|
V_0 = L_156;
|
|
int32_t L_157 = V_19;
|
|
V_19 = ((int32_t)il2cpp_codegen_add(L_157, 1));
|
|
}
|
|
|
|
IL_0334:
|
|
{
|
|
int32_t L_158 = V_19;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_159;
|
|
L_159 = Vector_1_get_Count_mC75C8C6E913E7FF8A3D10467D6DADE41711EF3CC_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_158) < ((int32_t)L_159)))
|
|
{
|
|
goto IL_030c;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_160 = V_0;
|
|
return L_160;
|
|
}
|
|
|
|
IL_033f:
|
|
{
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_161 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_161, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE310274B02A605A3985345944A620D7D2E019A1A)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_161, method);
|
|
}
|
|
|
|
IL_034a:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_162 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_163;
|
|
L_163 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_162, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_164 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.byte_class->byval_arg) };
|
|
Type_t* L_165;
|
|
L_165 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_164, NULL);
|
|
bool L_166;
|
|
L_166 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_163, L_165, NULL);
|
|
if (!L_166)
|
|
{
|
|
goto IL_04da;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_167 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_168 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t* L_169 = (uint8_t*)(&L_168->___byte_0);
|
|
int32_t L_170;
|
|
L_170 = Byte_GetHashCode_mB42A844E310593D124CE92EBA90F3755C9B10678(L_169, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(HashHelpers_t285C6E63B4A4E8D837BDBC63DE4E2D23C85467D4_il2cpp_TypeInfo_var);
|
|
int32_t L_171;
|
|
L_171 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_167, L_170, NULL);
|
|
V_0 = L_171;
|
|
int32_t L_172 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_173 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t* L_174 = (uint8_t*)(&L_173->___byte_1);
|
|
int32_t L_175;
|
|
L_175 = Byte_GetHashCode_mB42A844E310593D124CE92EBA90F3755C9B10678(L_174, NULL);
|
|
int32_t L_176;
|
|
L_176 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_172, L_175, NULL);
|
|
V_0 = L_176;
|
|
int32_t L_177 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_178 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t* L_179 = (uint8_t*)(&L_178->___byte_2);
|
|
int32_t L_180;
|
|
L_180 = Byte_GetHashCode_mB42A844E310593D124CE92EBA90F3755C9B10678(L_179, NULL);
|
|
int32_t L_181;
|
|
L_181 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_177, L_180, NULL);
|
|
V_0 = L_181;
|
|
int32_t L_182 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_183 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t* L_184 = (uint8_t*)(&L_183->___byte_3);
|
|
int32_t L_185;
|
|
L_185 = Byte_GetHashCode_mB42A844E310593D124CE92EBA90F3755C9B10678(L_184, NULL);
|
|
int32_t L_186;
|
|
L_186 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_182, L_185, NULL);
|
|
V_0 = L_186;
|
|
int32_t L_187 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_188 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t* L_189 = (uint8_t*)(&L_188->___byte_4);
|
|
int32_t L_190;
|
|
L_190 = Byte_GetHashCode_mB42A844E310593D124CE92EBA90F3755C9B10678(L_189, NULL);
|
|
int32_t L_191;
|
|
L_191 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_187, L_190, NULL);
|
|
V_0 = L_191;
|
|
int32_t L_192 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_193 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t* L_194 = (uint8_t*)(&L_193->___byte_5);
|
|
int32_t L_195;
|
|
L_195 = Byte_GetHashCode_mB42A844E310593D124CE92EBA90F3755C9B10678(L_194, NULL);
|
|
int32_t L_196;
|
|
L_196 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_192, L_195, NULL);
|
|
V_0 = L_196;
|
|
int32_t L_197 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_198 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t* L_199 = (uint8_t*)(&L_198->___byte_6);
|
|
int32_t L_200;
|
|
L_200 = Byte_GetHashCode_mB42A844E310593D124CE92EBA90F3755C9B10678(L_199, NULL);
|
|
int32_t L_201;
|
|
L_201 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_197, L_200, NULL);
|
|
V_0 = L_201;
|
|
int32_t L_202 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_203 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t* L_204 = (uint8_t*)(&L_203->___byte_7);
|
|
int32_t L_205;
|
|
L_205 = Byte_GetHashCode_mB42A844E310593D124CE92EBA90F3755C9B10678(L_204, NULL);
|
|
int32_t L_206;
|
|
L_206 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_202, L_205, NULL);
|
|
V_0 = L_206;
|
|
int32_t L_207 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_208 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t* L_209 = (uint8_t*)(&L_208->___byte_8);
|
|
int32_t L_210;
|
|
L_210 = Byte_GetHashCode_mB42A844E310593D124CE92EBA90F3755C9B10678(L_209, NULL);
|
|
int32_t L_211;
|
|
L_211 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_207, L_210, NULL);
|
|
V_0 = L_211;
|
|
int32_t L_212 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_213 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t* L_214 = (uint8_t*)(&L_213->___byte_9);
|
|
int32_t L_215;
|
|
L_215 = Byte_GetHashCode_mB42A844E310593D124CE92EBA90F3755C9B10678(L_214, NULL);
|
|
int32_t L_216;
|
|
L_216 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_212, L_215, NULL);
|
|
V_0 = L_216;
|
|
int32_t L_217 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_218 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t* L_219 = (uint8_t*)(&L_218->___byte_10);
|
|
int32_t L_220;
|
|
L_220 = Byte_GetHashCode_mB42A844E310593D124CE92EBA90F3755C9B10678(L_219, NULL);
|
|
int32_t L_221;
|
|
L_221 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_217, L_220, NULL);
|
|
V_0 = L_221;
|
|
int32_t L_222 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_223 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t* L_224 = (uint8_t*)(&L_223->___byte_11);
|
|
int32_t L_225;
|
|
L_225 = Byte_GetHashCode_mB42A844E310593D124CE92EBA90F3755C9B10678(L_224, NULL);
|
|
int32_t L_226;
|
|
L_226 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_222, L_225, NULL);
|
|
V_0 = L_226;
|
|
int32_t L_227 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_228 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t* L_229 = (uint8_t*)(&L_228->___byte_12);
|
|
int32_t L_230;
|
|
L_230 = Byte_GetHashCode_mB42A844E310593D124CE92EBA90F3755C9B10678(L_229, NULL);
|
|
int32_t L_231;
|
|
L_231 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_227, L_230, NULL);
|
|
V_0 = L_231;
|
|
int32_t L_232 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_233 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t* L_234 = (uint8_t*)(&L_233->___byte_13);
|
|
int32_t L_235;
|
|
L_235 = Byte_GetHashCode_mB42A844E310593D124CE92EBA90F3755C9B10678(L_234, NULL);
|
|
int32_t L_236;
|
|
L_236 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_232, L_235, NULL);
|
|
V_0 = L_236;
|
|
int32_t L_237 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_238 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t* L_239 = (uint8_t*)(&L_238->___byte_14);
|
|
int32_t L_240;
|
|
L_240 = Byte_GetHashCode_mB42A844E310593D124CE92EBA90F3755C9B10678(L_239, NULL);
|
|
int32_t L_241;
|
|
L_241 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_237, L_240, NULL);
|
|
V_0 = L_241;
|
|
int32_t L_242 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_243 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint8_t* L_244 = (uint8_t*)(&L_243->___byte_15);
|
|
int32_t L_245;
|
|
L_245 = Byte_GetHashCode_mB42A844E310593D124CE92EBA90F3755C9B10678(L_244, NULL);
|
|
int32_t L_246;
|
|
L_246 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_242, L_245, NULL);
|
|
V_0 = L_246;
|
|
int32_t L_247 = V_0;
|
|
return L_247;
|
|
}
|
|
|
|
IL_04da:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_248 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_249;
|
|
L_249 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_248, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_250 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.sbyte_class->byval_arg) };
|
|
Type_t* L_251;
|
|
L_251 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_250, NULL);
|
|
bool L_252;
|
|
L_252 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_249, L_251, NULL);
|
|
if (!L_252)
|
|
{
|
|
goto IL_066a;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_253 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_254 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t* L_255 = (int8_t*)(&L_254->___sbyte_0);
|
|
int32_t L_256;
|
|
L_256 = SByte_GetHashCode_mE61E9B0D1D93EF3E4E2B6282FF940FFA2E471FFF(L_255, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(HashHelpers_t285C6E63B4A4E8D837BDBC63DE4E2D23C85467D4_il2cpp_TypeInfo_var);
|
|
int32_t L_257;
|
|
L_257 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_253, L_256, NULL);
|
|
V_0 = L_257;
|
|
int32_t L_258 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_259 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t* L_260 = (int8_t*)(&L_259->___sbyte_1);
|
|
int32_t L_261;
|
|
L_261 = SByte_GetHashCode_mE61E9B0D1D93EF3E4E2B6282FF940FFA2E471FFF(L_260, NULL);
|
|
int32_t L_262;
|
|
L_262 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_258, L_261, NULL);
|
|
V_0 = L_262;
|
|
int32_t L_263 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_264 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t* L_265 = (int8_t*)(&L_264->___sbyte_2);
|
|
int32_t L_266;
|
|
L_266 = SByte_GetHashCode_mE61E9B0D1D93EF3E4E2B6282FF940FFA2E471FFF(L_265, NULL);
|
|
int32_t L_267;
|
|
L_267 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_263, L_266, NULL);
|
|
V_0 = L_267;
|
|
int32_t L_268 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_269 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t* L_270 = (int8_t*)(&L_269->___sbyte_3);
|
|
int32_t L_271;
|
|
L_271 = SByte_GetHashCode_mE61E9B0D1D93EF3E4E2B6282FF940FFA2E471FFF(L_270, NULL);
|
|
int32_t L_272;
|
|
L_272 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_268, L_271, NULL);
|
|
V_0 = L_272;
|
|
int32_t L_273 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_274 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t* L_275 = (int8_t*)(&L_274->___sbyte_4);
|
|
int32_t L_276;
|
|
L_276 = SByte_GetHashCode_mE61E9B0D1D93EF3E4E2B6282FF940FFA2E471FFF(L_275, NULL);
|
|
int32_t L_277;
|
|
L_277 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_273, L_276, NULL);
|
|
V_0 = L_277;
|
|
int32_t L_278 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_279 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t* L_280 = (int8_t*)(&L_279->___sbyte_5);
|
|
int32_t L_281;
|
|
L_281 = SByte_GetHashCode_mE61E9B0D1D93EF3E4E2B6282FF940FFA2E471FFF(L_280, NULL);
|
|
int32_t L_282;
|
|
L_282 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_278, L_281, NULL);
|
|
V_0 = L_282;
|
|
int32_t L_283 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_284 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t* L_285 = (int8_t*)(&L_284->___sbyte_6);
|
|
int32_t L_286;
|
|
L_286 = SByte_GetHashCode_mE61E9B0D1D93EF3E4E2B6282FF940FFA2E471FFF(L_285, NULL);
|
|
int32_t L_287;
|
|
L_287 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_283, L_286, NULL);
|
|
V_0 = L_287;
|
|
int32_t L_288 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_289 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t* L_290 = (int8_t*)(&L_289->___sbyte_7);
|
|
int32_t L_291;
|
|
L_291 = SByte_GetHashCode_mE61E9B0D1D93EF3E4E2B6282FF940FFA2E471FFF(L_290, NULL);
|
|
int32_t L_292;
|
|
L_292 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_288, L_291, NULL);
|
|
V_0 = L_292;
|
|
int32_t L_293 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_294 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t* L_295 = (int8_t*)(&L_294->___sbyte_8);
|
|
int32_t L_296;
|
|
L_296 = SByte_GetHashCode_mE61E9B0D1D93EF3E4E2B6282FF940FFA2E471FFF(L_295, NULL);
|
|
int32_t L_297;
|
|
L_297 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_293, L_296, NULL);
|
|
V_0 = L_297;
|
|
int32_t L_298 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_299 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t* L_300 = (int8_t*)(&L_299->___sbyte_9);
|
|
int32_t L_301;
|
|
L_301 = SByte_GetHashCode_mE61E9B0D1D93EF3E4E2B6282FF940FFA2E471FFF(L_300, NULL);
|
|
int32_t L_302;
|
|
L_302 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_298, L_301, NULL);
|
|
V_0 = L_302;
|
|
int32_t L_303 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_304 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t* L_305 = (int8_t*)(&L_304->___sbyte_10);
|
|
int32_t L_306;
|
|
L_306 = SByte_GetHashCode_mE61E9B0D1D93EF3E4E2B6282FF940FFA2E471FFF(L_305, NULL);
|
|
int32_t L_307;
|
|
L_307 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_303, L_306, NULL);
|
|
V_0 = L_307;
|
|
int32_t L_308 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_309 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t* L_310 = (int8_t*)(&L_309->___sbyte_11);
|
|
int32_t L_311;
|
|
L_311 = SByte_GetHashCode_mE61E9B0D1D93EF3E4E2B6282FF940FFA2E471FFF(L_310, NULL);
|
|
int32_t L_312;
|
|
L_312 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_308, L_311, NULL);
|
|
V_0 = L_312;
|
|
int32_t L_313 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_314 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t* L_315 = (int8_t*)(&L_314->___sbyte_12);
|
|
int32_t L_316;
|
|
L_316 = SByte_GetHashCode_mE61E9B0D1D93EF3E4E2B6282FF940FFA2E471FFF(L_315, NULL);
|
|
int32_t L_317;
|
|
L_317 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_313, L_316, NULL);
|
|
V_0 = L_317;
|
|
int32_t L_318 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_319 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t* L_320 = (int8_t*)(&L_319->___sbyte_13);
|
|
int32_t L_321;
|
|
L_321 = SByte_GetHashCode_mE61E9B0D1D93EF3E4E2B6282FF940FFA2E471FFF(L_320, NULL);
|
|
int32_t L_322;
|
|
L_322 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_318, L_321, NULL);
|
|
V_0 = L_322;
|
|
int32_t L_323 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_324 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t* L_325 = (int8_t*)(&L_324->___sbyte_14);
|
|
int32_t L_326;
|
|
L_326 = SByte_GetHashCode_mE61E9B0D1D93EF3E4E2B6282FF940FFA2E471FFF(L_325, NULL);
|
|
int32_t L_327;
|
|
L_327 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_323, L_326, NULL);
|
|
V_0 = L_327;
|
|
int32_t L_328 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_329 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int8_t* L_330 = (int8_t*)(&L_329->___sbyte_15);
|
|
int32_t L_331;
|
|
L_331 = SByte_GetHashCode_mE61E9B0D1D93EF3E4E2B6282FF940FFA2E471FFF(L_330, NULL);
|
|
int32_t L_332;
|
|
L_332 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_328, L_331, NULL);
|
|
V_0 = L_332;
|
|
int32_t L_333 = V_0;
|
|
return L_333;
|
|
}
|
|
|
|
IL_066a:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_334 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_335;
|
|
L_335 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_334, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_336 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint16_class->byval_arg) };
|
|
Type_t* L_337;
|
|
L_337 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_336, NULL);
|
|
bool L_338;
|
|
L_338 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_335, L_337, NULL);
|
|
if (!L_338)
|
|
{
|
|
goto IL_0742;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_339 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_340 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t* L_341 = (uint16_t*)(&L_340->___uint16_0);
|
|
int32_t L_342;
|
|
L_342 = UInt16_GetHashCode_m534E5103D0DA9C6FCED4F2F007993D3E38165200(L_341, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(HashHelpers_t285C6E63B4A4E8D837BDBC63DE4E2D23C85467D4_il2cpp_TypeInfo_var);
|
|
int32_t L_343;
|
|
L_343 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_339, L_342, NULL);
|
|
V_0 = L_343;
|
|
int32_t L_344 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_345 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t* L_346 = (uint16_t*)(&L_345->___uint16_1);
|
|
int32_t L_347;
|
|
L_347 = UInt16_GetHashCode_m534E5103D0DA9C6FCED4F2F007993D3E38165200(L_346, NULL);
|
|
int32_t L_348;
|
|
L_348 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_344, L_347, NULL);
|
|
V_0 = L_348;
|
|
int32_t L_349 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_350 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t* L_351 = (uint16_t*)(&L_350->___uint16_2);
|
|
int32_t L_352;
|
|
L_352 = UInt16_GetHashCode_m534E5103D0DA9C6FCED4F2F007993D3E38165200(L_351, NULL);
|
|
int32_t L_353;
|
|
L_353 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_349, L_352, NULL);
|
|
V_0 = L_353;
|
|
int32_t L_354 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_355 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t* L_356 = (uint16_t*)(&L_355->___uint16_3);
|
|
int32_t L_357;
|
|
L_357 = UInt16_GetHashCode_m534E5103D0DA9C6FCED4F2F007993D3E38165200(L_356, NULL);
|
|
int32_t L_358;
|
|
L_358 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_354, L_357, NULL);
|
|
V_0 = L_358;
|
|
int32_t L_359 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_360 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t* L_361 = (uint16_t*)(&L_360->___uint16_4);
|
|
int32_t L_362;
|
|
L_362 = UInt16_GetHashCode_m534E5103D0DA9C6FCED4F2F007993D3E38165200(L_361, NULL);
|
|
int32_t L_363;
|
|
L_363 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_359, L_362, NULL);
|
|
V_0 = L_363;
|
|
int32_t L_364 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_365 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t* L_366 = (uint16_t*)(&L_365->___uint16_5);
|
|
int32_t L_367;
|
|
L_367 = UInt16_GetHashCode_m534E5103D0DA9C6FCED4F2F007993D3E38165200(L_366, NULL);
|
|
int32_t L_368;
|
|
L_368 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_364, L_367, NULL);
|
|
V_0 = L_368;
|
|
int32_t L_369 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_370 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t* L_371 = (uint16_t*)(&L_370->___uint16_6);
|
|
int32_t L_372;
|
|
L_372 = UInt16_GetHashCode_m534E5103D0DA9C6FCED4F2F007993D3E38165200(L_371, NULL);
|
|
int32_t L_373;
|
|
L_373 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_369, L_372, NULL);
|
|
V_0 = L_373;
|
|
int32_t L_374 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_375 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint16_t* L_376 = (uint16_t*)(&L_375->___uint16_7);
|
|
int32_t L_377;
|
|
L_377 = UInt16_GetHashCode_m534E5103D0DA9C6FCED4F2F007993D3E38165200(L_376, NULL);
|
|
int32_t L_378;
|
|
L_378 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_374, L_377, NULL);
|
|
V_0 = L_378;
|
|
int32_t L_379 = V_0;
|
|
return L_379;
|
|
}
|
|
|
|
IL_0742:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_380 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_381;
|
|
L_381 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_380, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_382 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int16_class->byval_arg) };
|
|
Type_t* L_383;
|
|
L_383 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_382, NULL);
|
|
bool L_384;
|
|
L_384 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_381, L_383, NULL);
|
|
if (!L_384)
|
|
{
|
|
goto IL_081a;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_385 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_386 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int16_t* L_387 = (int16_t*)(&L_386->___int16_0);
|
|
int32_t L_388;
|
|
L_388 = Int16_GetHashCode_mCD0A167AC8E6ACC2235F12E00C0F9BDC6ED3B6E1(L_387, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(HashHelpers_t285C6E63B4A4E8D837BDBC63DE4E2D23C85467D4_il2cpp_TypeInfo_var);
|
|
int32_t L_389;
|
|
L_389 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_385, L_388, NULL);
|
|
V_0 = L_389;
|
|
int32_t L_390 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_391 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int16_t* L_392 = (int16_t*)(&L_391->___int16_1);
|
|
int32_t L_393;
|
|
L_393 = Int16_GetHashCode_mCD0A167AC8E6ACC2235F12E00C0F9BDC6ED3B6E1(L_392, NULL);
|
|
int32_t L_394;
|
|
L_394 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_390, L_393, NULL);
|
|
V_0 = L_394;
|
|
int32_t L_395 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_396 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int16_t* L_397 = (int16_t*)(&L_396->___int16_2);
|
|
int32_t L_398;
|
|
L_398 = Int16_GetHashCode_mCD0A167AC8E6ACC2235F12E00C0F9BDC6ED3B6E1(L_397, NULL);
|
|
int32_t L_399;
|
|
L_399 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_395, L_398, NULL);
|
|
V_0 = L_399;
|
|
int32_t L_400 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_401 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int16_t* L_402 = (int16_t*)(&L_401->___int16_3);
|
|
int32_t L_403;
|
|
L_403 = Int16_GetHashCode_mCD0A167AC8E6ACC2235F12E00C0F9BDC6ED3B6E1(L_402, NULL);
|
|
int32_t L_404;
|
|
L_404 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_400, L_403, NULL);
|
|
V_0 = L_404;
|
|
int32_t L_405 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_406 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int16_t* L_407 = (int16_t*)(&L_406->___int16_4);
|
|
int32_t L_408;
|
|
L_408 = Int16_GetHashCode_mCD0A167AC8E6ACC2235F12E00C0F9BDC6ED3B6E1(L_407, NULL);
|
|
int32_t L_409;
|
|
L_409 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_405, L_408, NULL);
|
|
V_0 = L_409;
|
|
int32_t L_410 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_411 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int16_t* L_412 = (int16_t*)(&L_411->___int16_5);
|
|
int32_t L_413;
|
|
L_413 = Int16_GetHashCode_mCD0A167AC8E6ACC2235F12E00C0F9BDC6ED3B6E1(L_412, NULL);
|
|
int32_t L_414;
|
|
L_414 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_410, L_413, NULL);
|
|
V_0 = L_414;
|
|
int32_t L_415 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_416 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int16_t* L_417 = (int16_t*)(&L_416->___int16_6);
|
|
int32_t L_418;
|
|
L_418 = Int16_GetHashCode_mCD0A167AC8E6ACC2235F12E00C0F9BDC6ED3B6E1(L_417, NULL);
|
|
int32_t L_419;
|
|
L_419 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_415, L_418, NULL);
|
|
V_0 = L_419;
|
|
int32_t L_420 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_421 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int16_t* L_422 = (int16_t*)(&L_421->___int16_7);
|
|
int32_t L_423;
|
|
L_423 = Int16_GetHashCode_mCD0A167AC8E6ACC2235F12E00C0F9BDC6ED3B6E1(L_422, NULL);
|
|
int32_t L_424;
|
|
L_424 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_420, L_423, NULL);
|
|
V_0 = L_424;
|
|
int32_t L_425 = V_0;
|
|
return L_425;
|
|
}
|
|
|
|
IL_081a:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_426 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_427;
|
|
L_427 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_426, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_428 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint32_class->byval_arg) };
|
|
Type_t* L_429;
|
|
L_429 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_428, NULL);
|
|
bool L_430;
|
|
L_430 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_427, L_429, NULL);
|
|
if (!L_430)
|
|
{
|
|
goto IL_0893;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_431 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_432 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint32_t* L_433 = (uint32_t*)(&L_432->___uint32_0);
|
|
int32_t L_434;
|
|
L_434 = UInt32_GetHashCode_mB9A03A037C079ADF0E61516BECA1AB05F92266BC(L_433, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(HashHelpers_t285C6E63B4A4E8D837BDBC63DE4E2D23C85467D4_il2cpp_TypeInfo_var);
|
|
int32_t L_435;
|
|
L_435 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_431, L_434, NULL);
|
|
V_0 = L_435;
|
|
int32_t L_436 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_437 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint32_t* L_438 = (uint32_t*)(&L_437->___uint32_1);
|
|
int32_t L_439;
|
|
L_439 = UInt32_GetHashCode_mB9A03A037C079ADF0E61516BECA1AB05F92266BC(L_438, NULL);
|
|
int32_t L_440;
|
|
L_440 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_436, L_439, NULL);
|
|
V_0 = L_440;
|
|
int32_t L_441 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_442 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint32_t* L_443 = (uint32_t*)(&L_442->___uint32_2);
|
|
int32_t L_444;
|
|
L_444 = UInt32_GetHashCode_mB9A03A037C079ADF0E61516BECA1AB05F92266BC(L_443, NULL);
|
|
int32_t L_445;
|
|
L_445 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_441, L_444, NULL);
|
|
V_0 = L_445;
|
|
int32_t L_446 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_447 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint32_t* L_448 = (uint32_t*)(&L_447->___uint32_3);
|
|
int32_t L_449;
|
|
L_449 = UInt32_GetHashCode_mB9A03A037C079ADF0E61516BECA1AB05F92266BC(L_448, NULL);
|
|
int32_t L_450;
|
|
L_450 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_446, L_449, NULL);
|
|
V_0 = L_450;
|
|
int32_t L_451 = V_0;
|
|
return L_451;
|
|
}
|
|
|
|
IL_0893:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_452 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_453;
|
|
L_453 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_452, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_454 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
Type_t* L_455;
|
|
L_455 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_454, NULL);
|
|
bool L_456;
|
|
L_456 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_453, L_455, NULL);
|
|
if (!L_456)
|
|
{
|
|
goto IL_090c;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_457 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_458 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int32_t* L_459 = (int32_t*)(&L_458->___int32_0);
|
|
int32_t L_460;
|
|
L_460 = Int32_GetHashCode_m253D60FF7527A483E91004B7A2366F13E225E295(L_459, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(HashHelpers_t285C6E63B4A4E8D837BDBC63DE4E2D23C85467D4_il2cpp_TypeInfo_var);
|
|
int32_t L_461;
|
|
L_461 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_457, L_460, NULL);
|
|
V_0 = L_461;
|
|
int32_t L_462 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_463 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int32_t* L_464 = (int32_t*)(&L_463->___int32_1);
|
|
int32_t L_465;
|
|
L_465 = Int32_GetHashCode_m253D60FF7527A483E91004B7A2366F13E225E295(L_464, NULL);
|
|
int32_t L_466;
|
|
L_466 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_462, L_465, NULL);
|
|
V_0 = L_466;
|
|
int32_t L_467 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_468 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int32_t* L_469 = (int32_t*)(&L_468->___int32_2);
|
|
int32_t L_470;
|
|
L_470 = Int32_GetHashCode_m253D60FF7527A483E91004B7A2366F13E225E295(L_469, NULL);
|
|
int32_t L_471;
|
|
L_471 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_467, L_470, NULL);
|
|
V_0 = L_471;
|
|
int32_t L_472 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_473 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int32_t* L_474 = (int32_t*)(&L_473->___int32_3);
|
|
int32_t L_475;
|
|
L_475 = Int32_GetHashCode_m253D60FF7527A483E91004B7A2366F13E225E295(L_474, NULL);
|
|
int32_t L_476;
|
|
L_476 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_472, L_475, NULL);
|
|
V_0 = L_476;
|
|
int32_t L_477 = V_0;
|
|
return L_477;
|
|
}
|
|
|
|
IL_090c:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_478 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_479;
|
|
L_479 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_478, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_480 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint64_class->byval_arg) };
|
|
Type_t* L_481;
|
|
L_481 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_480, NULL);
|
|
bool L_482;
|
|
L_482 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_479, L_481, NULL);
|
|
if (!L_482)
|
|
{
|
|
goto IL_0957;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_483 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_484 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t* L_485 = (uint64_t*)(&L_484->___uint64_0);
|
|
int32_t L_486;
|
|
L_486 = UInt64_GetHashCode_m65D9FD0102B6B01BF38D986F060F0BDBC29B4F92(L_485, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(HashHelpers_t285C6E63B4A4E8D837BDBC63DE4E2D23C85467D4_il2cpp_TypeInfo_var);
|
|
int32_t L_487;
|
|
L_487 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_483, L_486, NULL);
|
|
V_0 = L_487;
|
|
int32_t L_488 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_489 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
uint64_t* L_490 = (uint64_t*)(&L_489->___uint64_1);
|
|
int32_t L_491;
|
|
L_491 = UInt64_GetHashCode_m65D9FD0102B6B01BF38D986F060F0BDBC29B4F92(L_490, NULL);
|
|
int32_t L_492;
|
|
L_492 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_488, L_491, NULL);
|
|
V_0 = L_492;
|
|
int32_t L_493 = V_0;
|
|
return L_493;
|
|
}
|
|
|
|
IL_0957:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_494 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_495;
|
|
L_495 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_494, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_496 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int64_class->byval_arg) };
|
|
Type_t* L_497;
|
|
L_497 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_496, NULL);
|
|
bool L_498;
|
|
L_498 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_495, L_497, NULL);
|
|
if (!L_498)
|
|
{
|
|
goto IL_09a2;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_499 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_500 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int64_t* L_501 = (int64_t*)(&L_500->___int64_0);
|
|
int32_t L_502;
|
|
L_502 = Int64_GetHashCode_mDB050BE2AC244D92B14D1DF725AAD279CDC48496(L_501, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(HashHelpers_t285C6E63B4A4E8D837BDBC63DE4E2D23C85467D4_il2cpp_TypeInfo_var);
|
|
int32_t L_503;
|
|
L_503 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_499, L_502, NULL);
|
|
V_0 = L_503;
|
|
int32_t L_504 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_505 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
int64_t* L_506 = (int64_t*)(&L_505->___int64_1);
|
|
int32_t L_507;
|
|
L_507 = Int64_GetHashCode_mDB050BE2AC244D92B14D1DF725AAD279CDC48496(L_506, NULL);
|
|
int32_t L_508;
|
|
L_508 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_504, L_507, NULL);
|
|
V_0 = L_508;
|
|
int32_t L_509 = V_0;
|
|
return L_509;
|
|
}
|
|
|
|
IL_09a2:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_510 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_511;
|
|
L_511 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_510, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_512 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.single_class->byval_arg) };
|
|
Type_t* L_513;
|
|
L_513 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_512, NULL);
|
|
bool L_514;
|
|
L_514 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_511, L_513, NULL);
|
|
if (!L_514)
|
|
{
|
|
goto IL_0a1b;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_515 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_516 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
float* L_517 = (float*)(&L_516->___single_0);
|
|
int32_t L_518;
|
|
L_518 = Single_GetHashCode_mC3F1E099D1CF165C2D71FBCC5EF6A6792F9021D2(L_517, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(HashHelpers_t285C6E63B4A4E8D837BDBC63DE4E2D23C85467D4_il2cpp_TypeInfo_var);
|
|
int32_t L_519;
|
|
L_519 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_515, L_518, NULL);
|
|
V_0 = L_519;
|
|
int32_t L_520 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_521 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
float* L_522 = (float*)(&L_521->___single_1);
|
|
int32_t L_523;
|
|
L_523 = Single_GetHashCode_mC3F1E099D1CF165C2D71FBCC5EF6A6792F9021D2(L_522, NULL);
|
|
int32_t L_524;
|
|
L_524 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_520, L_523, NULL);
|
|
V_0 = L_524;
|
|
int32_t L_525 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_526 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
float* L_527 = (float*)(&L_526->___single_2);
|
|
int32_t L_528;
|
|
L_528 = Single_GetHashCode_mC3F1E099D1CF165C2D71FBCC5EF6A6792F9021D2(L_527, NULL);
|
|
int32_t L_529;
|
|
L_529 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_525, L_528, NULL);
|
|
V_0 = L_529;
|
|
int32_t L_530 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_531 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
float* L_532 = (float*)(&L_531->___single_3);
|
|
int32_t L_533;
|
|
L_533 = Single_GetHashCode_mC3F1E099D1CF165C2D71FBCC5EF6A6792F9021D2(L_532, NULL);
|
|
int32_t L_534;
|
|
L_534 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_530, L_533, NULL);
|
|
V_0 = L_534;
|
|
int32_t L_535 = V_0;
|
|
return L_535;
|
|
}
|
|
|
|
IL_0a1b:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_536 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_537;
|
|
L_537 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_536, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_538 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.double_class->byval_arg) };
|
|
Type_t* L_539;
|
|
L_539 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_538, NULL);
|
|
bool L_540;
|
|
L_540 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_537, L_539, NULL);
|
|
if (!L_540)
|
|
{
|
|
goto IL_0a66;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_541 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_542 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
double* L_543 = (double*)(&L_542->___double_0);
|
|
int32_t L_544;
|
|
L_544 = Double_GetHashCode_m3761FC05AD24D97A68FA1E8412A9454DF3880E32_inline(L_543, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(HashHelpers_t285C6E63B4A4E8D837BDBC63DE4E2D23C85467D4_il2cpp_TypeInfo_var);
|
|
int32_t L_545;
|
|
L_545 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_541, L_544, NULL);
|
|
V_0 = L_545;
|
|
int32_t L_546 = V_0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_547 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&__this->___register);
|
|
double* L_548 = (double*)(&L_547->___double_1);
|
|
int32_t L_549;
|
|
L_549 = Double_GetHashCode_m3761FC05AD24D97A68FA1E8412A9454DF3880E32_inline(L_548, NULL);
|
|
int32_t L_550;
|
|
L_550 = HashHelpers_Combine_mBE398FF248FE6B082F5E254BCD36E3B3351608D7(L_546, L_549, NULL);
|
|
V_0 = L_550;
|
|
int32_t L_551 = V_0;
|
|
return L_551;
|
|
}
|
|
|
|
IL_0a66:
|
|
{
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_552 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_552, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE310274B02A605A3985345944A620D7D2E019A1A)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_552, method);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t Vector_1_GetHashCode_mEC951E56E2DC500CF877DFAD5542E0920B73B00A_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = Vector_1_GetHashCode_mEC951E56E2DC500CF877DFAD5542E0920B73B00A(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 7877
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Vector_1_ToString_m3EBF88D3E195BD2C4B0D1CCBD9F71E32233CA4F4_gshared (Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3DCC6243286938BE75C3FA773B9BA71160A2E869);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_0;
|
|
L_0 = CultureInfo_get_CurrentCulture_m8A4580F49DDD7E9DB34C699965423DB8E3BBA9A5(NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
String_t* L_1;
|
|
L_1 = Vector_1_ToString_m8F20119DB8CF7117F2D6E4D165C4A843F7D3586C(__this, _stringLiteral3DCC6243286938BE75C3FA773B9BA71160A2E869, (RuntimeObject*)L_0, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 10));
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C String_t* Vector_1_ToString_m3EBF88D3E195BD2C4B0D1CCBD9F71E32233CA4F4_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A*>(__this + _offset);
|
|
String_t* _returnValue;
|
|
_returnValue = Vector_1_ToString_m3EBF88D3E195BD2C4B0D1CCBD9F71E32233CA4F4(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 7878
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Vector_1_ToString_m8F20119DB8CF7117F2D6E4D165C4A843F7D3586C_gshared (Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A* __this, String_t* ___0_format, RuntimeObject* ___1_formatProvider, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IFormattable_t235A539BD9771E1E118DB99384BA8385D2F971CA_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
StringBuilder_t* V_0 = NULL;
|
|
String_t* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
{
|
|
StringBuilder_t* L_0 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
|
|
StringBuilder__ctor_m1D99713357DE05DAFA296633639DB55F8C30587D(L_0, NULL);
|
|
V_0 = L_0;
|
|
RuntimeObject* L_1 = ___1_formatProvider;
|
|
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_2;
|
|
L_2 = NumberFormatInfo_GetInstance_m705987E5E7D3E5EC5C5DD2D088FBC9BCBA0FC31F(L_1, NULL);
|
|
NullCheck(L_2);
|
|
String_t* L_3;
|
|
L_3 = NumberFormatInfo_get_NumberGroupSeparator_m0556B092AA471513B1EDC31C047712226D39BEB6_inline(L_2, NULL);
|
|
V_1 = L_3;
|
|
StringBuilder_t* L_4 = V_0;
|
|
NullCheck(L_4);
|
|
StringBuilder_t* L_5;
|
|
L_5 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_4, (Il2CppChar)((int32_t)60), NULL);
|
|
V_2 = 0;
|
|
goto IL_0053;
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
StringBuilder_t* L_6 = V_0;
|
|
int32_t L_7 = V_2;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
uint64_t L_8;
|
|
L_8 = Vector_1_get_Item_m685EA4A01E8AF51DC7B5F78DE0583F8FD4997C99(__this, L_7, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
uint64_t L_9 = L_8;
|
|
RuntimeObject* L_10 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_9);
|
|
String_t* L_11 = ___0_format;
|
|
RuntimeObject* L_12 = ___1_formatProvider;
|
|
String_t* L_13;
|
|
L_13 = InterfaceFuncInvoker2< String_t*, String_t*, RuntimeObject* >::Invoke(0, IFormattable_t235A539BD9771E1E118DB99384BA8385D2F971CA_il2cpp_TypeInfo_var, (RuntimeObject*)L_10, L_11, L_12);
|
|
NullCheck(L_6);
|
|
StringBuilder_t* L_14;
|
|
L_14 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_6, L_13, NULL);
|
|
StringBuilder_t* L_15 = V_0;
|
|
String_t* L_16 = V_1;
|
|
NullCheck(L_15);
|
|
StringBuilder_t* L_17;
|
|
L_17 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_15, L_16, NULL);
|
|
StringBuilder_t* L_18 = V_0;
|
|
NullCheck(L_18);
|
|
StringBuilder_t* L_19;
|
|
L_19 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_18, (Il2CppChar)((int32_t)32), NULL);
|
|
int32_t L_20 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_20, 1));
|
|
}
|
|
|
|
IL_0053:
|
|
{
|
|
int32_t L_21 = V_2;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_22;
|
|
L_22 = Vector_1_get_Count_mC75C8C6E913E7FF8A3D10467D6DADE41711EF3CC_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_21) < ((int32_t)((int32_t)il2cpp_codegen_subtract(L_22, 1)))))
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_23 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_24;
|
|
L_24 = Vector_1_get_Count_mC75C8C6E913E7FF8A3D10467D6DADE41711EF3CC_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
uint64_t L_25;
|
|
L_25 = Vector_1_get_Item_m685EA4A01E8AF51DC7B5F78DE0583F8FD4997C99(__this, ((int32_t)il2cpp_codegen_subtract(L_24, 1)), il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
uint64_t L_26 = L_25;
|
|
RuntimeObject* L_27 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_26);
|
|
String_t* L_28 = ___0_format;
|
|
RuntimeObject* L_29 = ___1_formatProvider;
|
|
String_t* L_30;
|
|
L_30 = InterfaceFuncInvoker2< String_t*, String_t*, RuntimeObject* >::Invoke(0, IFormattable_t235A539BD9771E1E118DB99384BA8385D2F971CA_il2cpp_TypeInfo_var, (RuntimeObject*)L_27, L_28, L_29);
|
|
NullCheck(L_23);
|
|
StringBuilder_t* L_31;
|
|
L_31 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_23, L_30, NULL);
|
|
StringBuilder_t* L_32 = V_0;
|
|
NullCheck(L_32);
|
|
StringBuilder_t* L_33;
|
|
L_33 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_32, (Il2CppChar)((int32_t)62), NULL);
|
|
StringBuilder_t* L_34 = V_0;
|
|
NullCheck((RuntimeObject*)L_34);
|
|
String_t* L_35;
|
|
L_35 = VirtualFuncInvoker0< String_t* >::Invoke(3, (RuntimeObject*)L_34);
|
|
return L_35;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C String_t* Vector_1_ToString_m8F20119DB8CF7117F2D6E4D165C4A843F7D3586C_AdjustorThunk (RuntimeObject* __this, String_t* ___0_format, RuntimeObject* ___1_formatProvider, const RuntimeMethod* method)
|
|
{
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A*>(__this + _offset);
|
|
String_t* _returnValue;
|
|
_returnValue = Vector_1_ToString_m8F20119DB8CF7117F2D6E4D165C4A843F7D3586C(_thisAdjusted, ___0_format, ___1_formatProvider, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 7879
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Vector_1_op_Equality_mD4D4AE7733CACE50CA2FCFFFB0A16818EEC01293_gshared (Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A ___0_left, Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A ___1_right, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_0 = ___1_right;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
bool L_1;
|
|
L_1 = Vector_1_Equals_mAE01D42B31EB54893DC4DB1BE8A99216AF784C27((&___0_left), L_0, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 7));
|
|
return L_1;
|
|
}
|
|
}
|
|
// Method Definition Index: 7880
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Vector_1_op_Inequality_m4963768CF3F7944DA5E519ADB8668431198BBC36_gshared (Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A ___0_left, Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A ___1_right, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_0 = ___0_left;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_1 = ___1_right;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
bool L_2;
|
|
L_2 = Vector_1_op_Equality_mD4D4AE7733CACE50CA2FCFFFB0A16818EEC01293_inline(L_0, L_1, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 11));
|
|
return (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
}
|
|
// Method Definition Index: 7881
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A Vector_1_op_Explicit_mEC3EDF70D967977C9CD17D95CD3D6B52F405B08B_gshared (Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector_1__ctor_mEA86543744A54FCE590FDBF012FAE9037A5F1606_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* L_0 = (Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A*)(&(&___0_value)->___register);
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_1;
|
|
memset((&L_1), 0, sizeof(L_1));
|
|
Vector_1__ctor_mEA86543744A54FCE590FDBF012FAE9037A5F1606((&L_1), L_0, Vector_1__ctor_mEA86543744A54FCE590FDBF012FAE9037A5F1606_RuntimeMethod_var);
|
|
return L_1;
|
|
}
|
|
}
|
|
// Method Definition Index: 7882
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A Vector_1_Equals_m10063846A51F9D722BC0A8999A9F6B12C37988FF_gshared (Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A ___0_left, Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A ___1_right, const RuntimeMethod* method)
|
|
{
|
|
uint8_t* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
int8_t* V_2 = NULL;
|
|
int32_t V_3 = 0;
|
|
uint16_t* V_4 = NULL;
|
|
int32_t V_5 = 0;
|
|
int16_t* V_6 = NULL;
|
|
int32_t V_7 = 0;
|
|
uint32_t* V_8 = NULL;
|
|
int32_t V_9 = 0;
|
|
int32_t* V_10 = NULL;
|
|
int32_t V_11 = 0;
|
|
uint64_t* V_12 = NULL;
|
|
int32_t V_13 = 0;
|
|
int64_t* V_14 = NULL;
|
|
int32_t V_15 = 0;
|
|
float* V_16 = NULL;
|
|
int32_t V_17 = 0;
|
|
double* V_18 = NULL;
|
|
int32_t V_19 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A V_20;
|
|
memset((&V_20), 0, sizeof(V_20));
|
|
uint8_t* G_B5_0 = NULL;
|
|
uint8_t* G_B4_0 = NULL;
|
|
int32_t G_B6_0 = 0;
|
|
uint8_t* G_B6_1 = NULL;
|
|
int8_t* G_B13_0 = NULL;
|
|
int8_t* G_B12_0 = NULL;
|
|
int32_t G_B14_0 = 0;
|
|
int8_t* G_B14_1 = NULL;
|
|
uint16_t* G_B21_0 = NULL;
|
|
uint16_t* G_B20_0 = NULL;
|
|
int32_t G_B22_0 = 0;
|
|
uint16_t* G_B22_1 = NULL;
|
|
int16_t* G_B29_0 = NULL;
|
|
int16_t* G_B28_0 = NULL;
|
|
int32_t G_B30_0 = 0;
|
|
int16_t* G_B30_1 = NULL;
|
|
uint32_t* G_B37_0 = NULL;
|
|
uint32_t* G_B36_0 = NULL;
|
|
uint32_t G_B38_0 = 0;
|
|
uint32_t* G_B38_1 = NULL;
|
|
int32_t* G_B45_0 = NULL;
|
|
int32_t* G_B44_0 = NULL;
|
|
int32_t G_B46_0 = 0;
|
|
int32_t* G_B46_1 = NULL;
|
|
uint64_t* G_B53_0 = NULL;
|
|
uint64_t* G_B52_0 = NULL;
|
|
uint64_t G_B54_0 = 0;
|
|
uint64_t* G_B54_1 = NULL;
|
|
int64_t* G_B61_0 = NULL;
|
|
int64_t* G_B60_0 = NULL;
|
|
int64_t G_B62_0 = 0;
|
|
int64_t* G_B62_1 = NULL;
|
|
float* G_B69_0 = NULL;
|
|
float* G_B68_0 = NULL;
|
|
float G_B70_0 = 0.0f;
|
|
float* G_B70_1 = NULL;
|
|
double* G_B77_0 = NULL;
|
|
double* G_B76_0 = NULL;
|
|
double G_B78_0 = 0.0;
|
|
double* G_B78_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B85_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B84_0 = NULL;
|
|
int32_t G_B86_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B86_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B88_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B87_0 = NULL;
|
|
int32_t G_B89_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B89_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B91_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B90_0 = NULL;
|
|
int32_t G_B92_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B92_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B94_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B93_0 = NULL;
|
|
int32_t G_B95_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B95_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B97_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B96_0 = NULL;
|
|
int32_t G_B98_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B98_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B100_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B99_0 = NULL;
|
|
int32_t G_B101_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B101_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B103_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B102_0 = NULL;
|
|
int32_t G_B104_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B104_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B106_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B105_0 = NULL;
|
|
int32_t G_B107_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B107_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B109_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B108_0 = NULL;
|
|
int32_t G_B110_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B110_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B112_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B111_0 = NULL;
|
|
int32_t G_B113_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B113_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B115_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B114_0 = NULL;
|
|
int32_t G_B116_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B116_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B118_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B117_0 = NULL;
|
|
int32_t G_B119_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B119_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B121_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B120_0 = NULL;
|
|
int32_t G_B122_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B122_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B124_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B123_0 = NULL;
|
|
int32_t G_B125_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B125_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B127_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B126_0 = NULL;
|
|
int32_t G_B128_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B128_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B130_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B129_0 = NULL;
|
|
int32_t G_B131_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B131_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B135_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B134_0 = NULL;
|
|
int32_t G_B136_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B136_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B138_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B137_0 = NULL;
|
|
int32_t G_B139_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B139_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B141_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B140_0 = NULL;
|
|
int32_t G_B142_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B142_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B144_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B143_0 = NULL;
|
|
int32_t G_B145_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B145_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B147_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B146_0 = NULL;
|
|
int32_t G_B148_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B148_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B150_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B149_0 = NULL;
|
|
int32_t G_B151_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B151_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B153_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B152_0 = NULL;
|
|
int32_t G_B154_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B154_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B156_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B155_0 = NULL;
|
|
int32_t G_B157_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B157_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B159_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B158_0 = NULL;
|
|
int32_t G_B160_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B160_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B162_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B161_0 = NULL;
|
|
int32_t G_B163_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B163_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B165_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B164_0 = NULL;
|
|
int32_t G_B166_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B166_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B168_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B167_0 = NULL;
|
|
int32_t G_B169_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B169_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B171_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B170_0 = NULL;
|
|
int32_t G_B172_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B172_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B174_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B173_0 = NULL;
|
|
int32_t G_B175_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B175_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B177_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B176_0 = NULL;
|
|
int32_t G_B178_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B178_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B180_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B179_0 = NULL;
|
|
int32_t G_B181_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B181_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B185_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B184_0 = NULL;
|
|
int32_t G_B186_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B186_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B188_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B187_0 = NULL;
|
|
int32_t G_B189_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B189_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B191_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B190_0 = NULL;
|
|
int32_t G_B192_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B192_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B194_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B193_0 = NULL;
|
|
int32_t G_B195_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B195_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B197_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B196_0 = NULL;
|
|
int32_t G_B198_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B198_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B200_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B199_0 = NULL;
|
|
int32_t G_B201_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B201_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B203_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B202_0 = NULL;
|
|
int32_t G_B204_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B204_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B206_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B205_0 = NULL;
|
|
int32_t G_B207_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B207_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B211_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B210_0 = NULL;
|
|
int32_t G_B212_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B212_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B214_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B213_0 = NULL;
|
|
int32_t G_B215_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B215_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B217_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B216_0 = NULL;
|
|
int32_t G_B218_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B218_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B220_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B219_0 = NULL;
|
|
int32_t G_B221_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B221_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B223_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B222_0 = NULL;
|
|
int32_t G_B224_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B224_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B226_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B225_0 = NULL;
|
|
int32_t G_B227_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B227_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B229_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B228_0 = NULL;
|
|
int32_t G_B230_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B230_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B232_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B231_0 = NULL;
|
|
int32_t G_B233_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B233_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B237_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B236_0 = NULL;
|
|
uint32_t G_B238_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B238_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B240_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B239_0 = NULL;
|
|
uint32_t G_B241_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B241_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B243_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B242_0 = NULL;
|
|
uint32_t G_B244_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B244_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B246_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B245_0 = NULL;
|
|
uint32_t G_B247_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B247_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B251_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B250_0 = NULL;
|
|
int32_t G_B252_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B252_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B254_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B253_0 = NULL;
|
|
int32_t G_B255_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B255_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B257_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B256_0 = NULL;
|
|
int32_t G_B258_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B258_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B260_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B259_0 = NULL;
|
|
int32_t G_B261_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B261_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B265_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B264_0 = NULL;
|
|
uint64_t G_B266_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B266_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B268_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B267_0 = NULL;
|
|
uint64_t G_B269_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B269_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B273_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B272_0 = NULL;
|
|
int64_t G_B274_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B274_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B276_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B275_0 = NULL;
|
|
int64_t G_B277_0 = 0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B277_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B281_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B280_0 = NULL;
|
|
float G_B282_0 = 0.0f;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B282_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B284_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B283_0 = NULL;
|
|
float G_B285_0 = 0.0f;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B285_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B287_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B286_0 = NULL;
|
|
float G_B288_0 = 0.0f;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B288_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B290_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B289_0 = NULL;
|
|
float G_B291_0 = 0.0f;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B291_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B295_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B294_0 = NULL;
|
|
double G_B296_0 = 0.0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B296_1 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B298_0 = NULL;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B297_0 = NULL;
|
|
double G_B299_0 = 0.0;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A* G_B299_1 = NULL;
|
|
{
|
|
bool L_0;
|
|
L_0 = Vector_get_IsHardwareAccelerated_m783509258751EBED64CBD9F387EC1BB4A15088AA(NULL);
|
|
if (!L_0)
|
|
{
|
|
goto IL_0447;
|
|
}
|
|
}
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_1 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_2;
|
|
L_2 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_1, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_3 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.byte_class->byval_arg) };
|
|
Type_t* L_4;
|
|
L_4 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_3, NULL);
|
|
bool L_5;
|
|
L_5 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_2, L_4, NULL);
|
|
if (!L_5)
|
|
{
|
|
goto IL_0068;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_6;
|
|
L_6 = Vector_1_get_Count_mC75C8C6E913E7FF8A3D10467D6DADE41711EF3CC_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
uintptr_t L_7 = ((uintptr_t)L_6);
|
|
int8_t* L_8 = (int8_t*) (L_7 ? alloca(L_7) : NULL);
|
|
memset(L_8, 0, L_7);
|
|
V_0 = (uint8_t*)(L_8);
|
|
V_1 = 0;
|
|
goto IL_0059;
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
uint8_t* L_9 = V_0;
|
|
int32_t L_10 = V_1;
|
|
int32_t L_11 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
uint64_t L_12;
|
|
L_12 = Vector_1_get_Item_m685EA4A01E8AF51DC7B5F78DE0583F8FD4997C99((&___0_left), L_11, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
int32_t L_13 = V_1;
|
|
uint64_t L_14;
|
|
L_14 = Vector_1_get_Item_m685EA4A01E8AF51DC7B5F78DE0583F8FD4997C99((&___1_right), L_13, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
bool L_15;
|
|
L_15 = Vector_1_ScalarEquals_m73081D1B852400C74618D0A814BBED2FE272175D_inline(L_12, L_14, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 9));
|
|
if (L_15)
|
|
{
|
|
G_B5_0 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_9, L_10));
|
|
goto IL_004f;
|
|
}
|
|
G_B4_0 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_9, L_10));
|
|
}
|
|
{
|
|
G_B6_0 = 0;
|
|
G_B6_1 = G_B4_0;
|
|
goto IL_0054;
|
|
}
|
|
|
|
IL_004f:
|
|
{
|
|
uint8_t L_16;
|
|
L_16 = ConstantHelper_GetByteWithAllBitsSet_m38E318296F5FB9BAE51C97C1AE058716CFC889D7_inline(NULL);
|
|
G_B6_0 = ((int32_t)(L_16));
|
|
G_B6_1 = G_B5_0;
|
|
}
|
|
|
|
IL_0054:
|
|
{
|
|
*((int8_t*)G_B6_1) = (int8_t)G_B6_0;
|
|
int32_t L_17 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_17, 1));
|
|
}
|
|
|
|
IL_0059:
|
|
{
|
|
int32_t L_18 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_19;
|
|
L_19 = Vector_1_get_Count_mC75C8C6E913E7FF8A3D10467D6DADE41711EF3CC_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_18) < ((int32_t)L_19)))
|
|
{
|
|
goto IL_0032;
|
|
}
|
|
}
|
|
{
|
|
uint8_t* L_20 = V_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_21;
|
|
memset((&L_21), 0, sizeof(L_21));
|
|
Vector_1__ctor_mBEC18AF78DE340D929AD22019717DE9ED57A4CCA((&L_21), (void*)L_20, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 12));
|
|
return L_21;
|
|
}
|
|
|
|
IL_0068:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_22 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_23;
|
|
L_23 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_22, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_24 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.sbyte_class->byval_arg) };
|
|
Type_t* L_25;
|
|
L_25 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_24, NULL);
|
|
bool L_26;
|
|
L_26 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_23, L_25, NULL);
|
|
if (!L_26)
|
|
{
|
|
goto IL_00c6;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_27;
|
|
L_27 = Vector_1_get_Count_mC75C8C6E913E7FF8A3D10467D6DADE41711EF3CC_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
uintptr_t L_28 = ((uintptr_t)L_27);
|
|
int8_t* L_29 = (int8_t*) (L_28 ? alloca(L_28) : NULL);
|
|
memset(L_29, 0, L_28);
|
|
V_2 = (L_29);
|
|
V_3 = 0;
|
|
goto IL_00b7;
|
|
}
|
|
|
|
IL_0090:
|
|
{
|
|
int8_t* L_30 = V_2;
|
|
int32_t L_31 = V_3;
|
|
int32_t L_32 = V_3;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
uint64_t L_33;
|
|
L_33 = Vector_1_get_Item_m685EA4A01E8AF51DC7B5F78DE0583F8FD4997C99((&___0_left), L_32, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
int32_t L_34 = V_3;
|
|
uint64_t L_35;
|
|
L_35 = Vector_1_get_Item_m685EA4A01E8AF51DC7B5F78DE0583F8FD4997C99((&___1_right), L_34, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
bool L_36;
|
|
L_36 = Vector_1_ScalarEquals_m73081D1B852400C74618D0A814BBED2FE272175D_inline(L_33, L_35, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 9));
|
|
if (L_36)
|
|
{
|
|
G_B13_0 = ((int8_t*)il2cpp_codegen_add((intptr_t)L_30, L_31));
|
|
goto IL_00ad;
|
|
}
|
|
G_B12_0 = ((int8_t*)il2cpp_codegen_add((intptr_t)L_30, L_31));
|
|
}
|
|
{
|
|
G_B14_0 = 0;
|
|
G_B14_1 = G_B12_0;
|
|
goto IL_00b2;
|
|
}
|
|
|
|
IL_00ad:
|
|
{
|
|
int8_t L_37;
|
|
L_37 = ConstantHelper_GetSByteWithAllBitsSet_mB6B97526769DCCB7B78CCF446F28AAB0D1B5CAE3_inline(NULL);
|
|
G_B14_0 = ((int32_t)(L_37));
|
|
G_B14_1 = G_B13_0;
|
|
}
|
|
|
|
IL_00b2:
|
|
{
|
|
*((int8_t*)G_B14_1) = (int8_t)G_B14_0;
|
|
int32_t L_38 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_38, 1));
|
|
}
|
|
|
|
IL_00b7:
|
|
{
|
|
int32_t L_39 = V_3;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_40;
|
|
L_40 = Vector_1_get_Count_mC75C8C6E913E7FF8A3D10467D6DADE41711EF3CC_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_39) < ((int32_t)L_40)))
|
|
{
|
|
goto IL_0090;
|
|
}
|
|
}
|
|
{
|
|
int8_t* L_41 = V_2;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_42;
|
|
memset((&L_42), 0, sizeof(L_42));
|
|
Vector_1__ctor_mBEC18AF78DE340D929AD22019717DE9ED57A4CCA((&L_42), (void*)L_41, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 12));
|
|
return L_42;
|
|
}
|
|
|
|
IL_00c6:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_43 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_44;
|
|
L_44 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_43, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_45 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint16_class->byval_arg) };
|
|
Type_t* L_46;
|
|
L_46 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_45, NULL);
|
|
bool L_47;
|
|
L_47 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_44, L_46, NULL);
|
|
if (!L_47)
|
|
{
|
|
goto IL_0133;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_48;
|
|
L_48 = Vector_1_get_Count_mC75C8C6E913E7FF8A3D10467D6DADE41711EF3CC_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((uintptr_t)((uintptr_t)L_48) * (uintptr_t)2 > (uintptr_t)kIl2CppUIntPtrMax)
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), method);
|
|
intptr_t L_49 = ((intptr_t)il2cpp_codegen_multiply((intptr_t)((uintptr_t)L_48), 2));
|
|
int8_t* L_50 = (int8_t*) (L_49 ? alloca(L_49) : NULL);
|
|
memset(L_50, 0, L_49);
|
|
V_4 = (uint16_t*)(L_50);
|
|
V_5 = 0;
|
|
goto IL_0122;
|
|
}
|
|
|
|
IL_00f2:
|
|
{
|
|
uint16_t* L_51 = V_4;
|
|
int32_t L_52 = V_5;
|
|
int32_t L_53 = V_5;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
uint64_t L_54;
|
|
L_54 = Vector_1_get_Item_m685EA4A01E8AF51DC7B5F78DE0583F8FD4997C99((&___0_left), L_53, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
int32_t L_55 = V_5;
|
|
uint64_t L_56;
|
|
L_56 = Vector_1_get_Item_m685EA4A01E8AF51DC7B5F78DE0583F8FD4997C99((&___1_right), L_55, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
bool L_57;
|
|
L_57 = Vector_1_ScalarEquals_m73081D1B852400C74618D0A814BBED2FE272175D_inline(L_54, L_56, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 9));
|
|
if (L_57)
|
|
{
|
|
G_B21_0 = ((uint16_t*)il2cpp_codegen_add((intptr_t)L_51, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_52), 2))));
|
|
goto IL_0116;
|
|
}
|
|
G_B20_0 = ((uint16_t*)il2cpp_codegen_add((intptr_t)L_51, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_52), 2))));
|
|
}
|
|
{
|
|
G_B22_0 = 0;
|
|
G_B22_1 = G_B20_0;
|
|
goto IL_011b;
|
|
}
|
|
|
|
IL_0116:
|
|
{
|
|
uint16_t L_58;
|
|
L_58 = ConstantHelper_GetUInt16WithAllBitsSet_mD3E13D933A06059499F0E0CBE6798D72D175464A_inline(NULL);
|
|
G_B22_0 = ((int32_t)(L_58));
|
|
G_B22_1 = G_B21_0;
|
|
}
|
|
|
|
IL_011b:
|
|
{
|
|
*((int16_t*)G_B22_1) = (int16_t)G_B22_0;
|
|
int32_t L_59 = V_5;
|
|
V_5 = ((int32_t)il2cpp_codegen_add(L_59, 1));
|
|
}
|
|
|
|
IL_0122:
|
|
{
|
|
int32_t L_60 = V_5;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_61;
|
|
L_61 = Vector_1_get_Count_mC75C8C6E913E7FF8A3D10467D6DADE41711EF3CC_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_60) < ((int32_t)L_61)))
|
|
{
|
|
goto IL_00f2;
|
|
}
|
|
}
|
|
{
|
|
uint16_t* L_62 = V_4;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_63;
|
|
memset((&L_63), 0, sizeof(L_63));
|
|
Vector_1__ctor_mBEC18AF78DE340D929AD22019717DE9ED57A4CCA((&L_63), (void*)L_62, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 12));
|
|
return L_63;
|
|
}
|
|
|
|
IL_0133:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_64 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_65;
|
|
L_65 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_64, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_66 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int16_class->byval_arg) };
|
|
Type_t* L_67;
|
|
L_67 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_66, NULL);
|
|
bool L_68;
|
|
L_68 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_65, L_67, NULL);
|
|
if (!L_68)
|
|
{
|
|
goto IL_01a0;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_69;
|
|
L_69 = Vector_1_get_Count_mC75C8C6E913E7FF8A3D10467D6DADE41711EF3CC_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((uintptr_t)((uintptr_t)L_69) * (uintptr_t)2 > (uintptr_t)kIl2CppUIntPtrMax)
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), method);
|
|
intptr_t L_70 = ((intptr_t)il2cpp_codegen_multiply((intptr_t)((uintptr_t)L_69), 2));
|
|
int8_t* L_71 = (int8_t*) (L_70 ? alloca(L_70) : NULL);
|
|
memset(L_71, 0, L_70);
|
|
V_6 = (int16_t*)(L_71);
|
|
V_7 = 0;
|
|
goto IL_018f;
|
|
}
|
|
|
|
IL_015f:
|
|
{
|
|
int16_t* L_72 = V_6;
|
|
int32_t L_73 = V_7;
|
|
int32_t L_74 = V_7;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
uint64_t L_75;
|
|
L_75 = Vector_1_get_Item_m685EA4A01E8AF51DC7B5F78DE0583F8FD4997C99((&___0_left), L_74, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
int32_t L_76 = V_7;
|
|
uint64_t L_77;
|
|
L_77 = Vector_1_get_Item_m685EA4A01E8AF51DC7B5F78DE0583F8FD4997C99((&___1_right), L_76, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
bool L_78;
|
|
L_78 = Vector_1_ScalarEquals_m73081D1B852400C74618D0A814BBED2FE272175D_inline(L_75, L_77, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 9));
|
|
if (L_78)
|
|
{
|
|
G_B29_0 = ((int16_t*)il2cpp_codegen_add((intptr_t)L_72, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_73), 2))));
|
|
goto IL_0183;
|
|
}
|
|
G_B28_0 = ((int16_t*)il2cpp_codegen_add((intptr_t)L_72, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_73), 2))));
|
|
}
|
|
{
|
|
G_B30_0 = 0;
|
|
G_B30_1 = G_B28_0;
|
|
goto IL_0188;
|
|
}
|
|
|
|
IL_0183:
|
|
{
|
|
int16_t L_79;
|
|
L_79 = ConstantHelper_GetInt16WithAllBitsSet_m70C5F99E624490970E2D4093FE6E800D1849DDFC_inline(NULL);
|
|
G_B30_0 = ((int32_t)(L_79));
|
|
G_B30_1 = G_B29_0;
|
|
}
|
|
|
|
IL_0188:
|
|
{
|
|
*((int16_t*)G_B30_1) = (int16_t)G_B30_0;
|
|
int32_t L_80 = V_7;
|
|
V_7 = ((int32_t)il2cpp_codegen_add(L_80, 1));
|
|
}
|
|
|
|
IL_018f:
|
|
{
|
|
int32_t L_81 = V_7;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_82;
|
|
L_82 = Vector_1_get_Count_mC75C8C6E913E7FF8A3D10467D6DADE41711EF3CC_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_81) < ((int32_t)L_82)))
|
|
{
|
|
goto IL_015f;
|
|
}
|
|
}
|
|
{
|
|
int16_t* L_83 = V_6;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_84;
|
|
memset((&L_84), 0, sizeof(L_84));
|
|
Vector_1__ctor_mBEC18AF78DE340D929AD22019717DE9ED57A4CCA((&L_84), (void*)L_83, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 12));
|
|
return L_84;
|
|
}
|
|
|
|
IL_01a0:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_85 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_86;
|
|
L_86 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_85, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_87 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint32_class->byval_arg) };
|
|
Type_t* L_88;
|
|
L_88 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_87, NULL);
|
|
bool L_89;
|
|
L_89 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_86, L_88, NULL);
|
|
if (!L_89)
|
|
{
|
|
goto IL_020d;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_90;
|
|
L_90 = Vector_1_get_Count_mC75C8C6E913E7FF8A3D10467D6DADE41711EF3CC_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((uintptr_t)((uintptr_t)L_90) * (uintptr_t)4 > (uintptr_t)kIl2CppUIntPtrMax)
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), method);
|
|
intptr_t L_91 = ((intptr_t)il2cpp_codegen_multiply((intptr_t)((uintptr_t)L_90), 4));
|
|
int8_t* L_92 = (int8_t*) (L_91 ? alloca(L_91) : NULL);
|
|
memset(L_92, 0, L_91);
|
|
V_8 = (uint32_t*)(L_92);
|
|
V_9 = 0;
|
|
goto IL_01fc;
|
|
}
|
|
|
|
IL_01cc:
|
|
{
|
|
uint32_t* L_93 = V_8;
|
|
int32_t L_94 = V_9;
|
|
int32_t L_95 = V_9;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
uint64_t L_96;
|
|
L_96 = Vector_1_get_Item_m685EA4A01E8AF51DC7B5F78DE0583F8FD4997C99((&___0_left), L_95, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
int32_t L_97 = V_9;
|
|
uint64_t L_98;
|
|
L_98 = Vector_1_get_Item_m685EA4A01E8AF51DC7B5F78DE0583F8FD4997C99((&___1_right), L_97, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
bool L_99;
|
|
L_99 = Vector_1_ScalarEquals_m73081D1B852400C74618D0A814BBED2FE272175D_inline(L_96, L_98, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 9));
|
|
if (L_99)
|
|
{
|
|
G_B37_0 = ((uint32_t*)il2cpp_codegen_add((intptr_t)L_93, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_94), 4))));
|
|
goto IL_01f0;
|
|
}
|
|
G_B36_0 = ((uint32_t*)il2cpp_codegen_add((intptr_t)L_93, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_94), 4))));
|
|
}
|
|
{
|
|
G_B38_0 = ((uint32_t)(0));
|
|
G_B38_1 = G_B36_0;
|
|
goto IL_01f5;
|
|
}
|
|
|
|
IL_01f0:
|
|
{
|
|
uint32_t L_100;
|
|
L_100 = ConstantHelper_GetUInt32WithAllBitsSet_m78CBFE0C29CF227C16D2A9021972A0D54744BCAF_inline(NULL);
|
|
G_B38_0 = L_100;
|
|
G_B38_1 = G_B37_0;
|
|
}
|
|
|
|
IL_01f5:
|
|
{
|
|
*((int32_t*)G_B38_1) = (int32_t)G_B38_0;
|
|
int32_t L_101 = V_9;
|
|
V_9 = ((int32_t)il2cpp_codegen_add(L_101, 1));
|
|
}
|
|
|
|
IL_01fc:
|
|
{
|
|
int32_t L_102 = V_9;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_103;
|
|
L_103 = Vector_1_get_Count_mC75C8C6E913E7FF8A3D10467D6DADE41711EF3CC_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_102) < ((int32_t)L_103)))
|
|
{
|
|
goto IL_01cc;
|
|
}
|
|
}
|
|
{
|
|
uint32_t* L_104 = V_8;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_105;
|
|
memset((&L_105), 0, sizeof(L_105));
|
|
Vector_1__ctor_mBEC18AF78DE340D929AD22019717DE9ED57A4CCA((&L_105), (void*)L_104, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 12));
|
|
return L_105;
|
|
}
|
|
|
|
IL_020d:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_106 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_107;
|
|
L_107 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_106, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_108 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
Type_t* L_109;
|
|
L_109 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_108, NULL);
|
|
bool L_110;
|
|
L_110 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_107, L_109, NULL);
|
|
if (!L_110)
|
|
{
|
|
goto IL_027a;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_111;
|
|
L_111 = Vector_1_get_Count_mC75C8C6E913E7FF8A3D10467D6DADE41711EF3CC_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((uintptr_t)((uintptr_t)L_111) * (uintptr_t)4 > (uintptr_t)kIl2CppUIntPtrMax)
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), method);
|
|
intptr_t L_112 = ((intptr_t)il2cpp_codegen_multiply((intptr_t)((uintptr_t)L_111), 4));
|
|
int8_t* L_113 = (int8_t*) (L_112 ? alloca(L_112) : NULL);
|
|
memset(L_113, 0, L_112);
|
|
V_10 = (int32_t*)(L_113);
|
|
V_11 = 0;
|
|
goto IL_0269;
|
|
}
|
|
|
|
IL_0239:
|
|
{
|
|
int32_t* L_114 = V_10;
|
|
int32_t L_115 = V_11;
|
|
int32_t L_116 = V_11;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
uint64_t L_117;
|
|
L_117 = Vector_1_get_Item_m685EA4A01E8AF51DC7B5F78DE0583F8FD4997C99((&___0_left), L_116, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
int32_t L_118 = V_11;
|
|
uint64_t L_119;
|
|
L_119 = Vector_1_get_Item_m685EA4A01E8AF51DC7B5F78DE0583F8FD4997C99((&___1_right), L_118, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
bool L_120;
|
|
L_120 = Vector_1_ScalarEquals_m73081D1B852400C74618D0A814BBED2FE272175D_inline(L_117, L_119, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 9));
|
|
if (L_120)
|
|
{
|
|
G_B45_0 = ((int32_t*)il2cpp_codegen_add((intptr_t)L_114, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_115), 4))));
|
|
goto IL_025d;
|
|
}
|
|
G_B44_0 = ((int32_t*)il2cpp_codegen_add((intptr_t)L_114, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_115), 4))));
|
|
}
|
|
{
|
|
G_B46_0 = 0;
|
|
G_B46_1 = G_B44_0;
|
|
goto IL_0262;
|
|
}
|
|
|
|
IL_025d:
|
|
{
|
|
int32_t L_121;
|
|
L_121 = ConstantHelper_GetInt32WithAllBitsSet_m245101340DDE7277600327D319DF86F1FFEA4FD0_inline(NULL);
|
|
G_B46_0 = L_121;
|
|
G_B46_1 = G_B45_0;
|
|
}
|
|
|
|
IL_0262:
|
|
{
|
|
*((int32_t*)G_B46_1) = (int32_t)G_B46_0;
|
|
int32_t L_122 = V_11;
|
|
V_11 = ((int32_t)il2cpp_codegen_add(L_122, 1));
|
|
}
|
|
|
|
IL_0269:
|
|
{
|
|
int32_t L_123 = V_11;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_124;
|
|
L_124 = Vector_1_get_Count_mC75C8C6E913E7FF8A3D10467D6DADE41711EF3CC_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_123) < ((int32_t)L_124)))
|
|
{
|
|
goto IL_0239;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_125 = V_10;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_126;
|
|
memset((&L_126), 0, sizeof(L_126));
|
|
Vector_1__ctor_mBEC18AF78DE340D929AD22019717DE9ED57A4CCA((&L_126), (void*)L_125, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 12));
|
|
return L_126;
|
|
}
|
|
|
|
IL_027a:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_127 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_128;
|
|
L_128 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_127, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_129 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint64_class->byval_arg) };
|
|
Type_t* L_130;
|
|
L_130 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_129, NULL);
|
|
bool L_131;
|
|
L_131 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_128, L_130, NULL);
|
|
if (!L_131)
|
|
{
|
|
goto IL_02e8;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_132;
|
|
L_132 = Vector_1_get_Count_mC75C8C6E913E7FF8A3D10467D6DADE41711EF3CC_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((uintptr_t)((uintptr_t)L_132) * (uintptr_t)8 > (uintptr_t)kIl2CppUIntPtrMax)
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), method);
|
|
intptr_t L_133 = ((intptr_t)il2cpp_codegen_multiply((intptr_t)((uintptr_t)L_132), 8));
|
|
int8_t* L_134 = (int8_t*) (L_133 ? alloca(L_133) : NULL);
|
|
memset(L_134, 0, L_133);
|
|
V_12 = (uint64_t*)(L_134);
|
|
V_13 = 0;
|
|
goto IL_02d7;
|
|
}
|
|
|
|
IL_02a6:
|
|
{
|
|
uint64_t* L_135 = V_12;
|
|
int32_t L_136 = V_13;
|
|
int32_t L_137 = V_13;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
uint64_t L_138;
|
|
L_138 = Vector_1_get_Item_m685EA4A01E8AF51DC7B5F78DE0583F8FD4997C99((&___0_left), L_137, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
int32_t L_139 = V_13;
|
|
uint64_t L_140;
|
|
L_140 = Vector_1_get_Item_m685EA4A01E8AF51DC7B5F78DE0583F8FD4997C99((&___1_right), L_139, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
bool L_141;
|
|
L_141 = Vector_1_ScalarEquals_m73081D1B852400C74618D0A814BBED2FE272175D_inline(L_138, L_140, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 9));
|
|
if (L_141)
|
|
{
|
|
G_B53_0 = ((uint64_t*)il2cpp_codegen_add((intptr_t)L_135, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_136), 8))));
|
|
goto IL_02cb;
|
|
}
|
|
G_B52_0 = ((uint64_t*)il2cpp_codegen_add((intptr_t)L_135, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_136), 8))));
|
|
}
|
|
{
|
|
G_B54_0 = ((uint64_t)(((int64_t)0)));
|
|
G_B54_1 = G_B52_0;
|
|
goto IL_02d0;
|
|
}
|
|
|
|
IL_02cb:
|
|
{
|
|
uint64_t L_142;
|
|
L_142 = ConstantHelper_GetUInt64WithAllBitsSet_mB7F3E046EE6B1B20C552BF7CF619416E239A5A96_inline(NULL);
|
|
G_B54_0 = L_142;
|
|
G_B54_1 = G_B53_0;
|
|
}
|
|
|
|
IL_02d0:
|
|
{
|
|
*((int64_t*)G_B54_1) = (int64_t)G_B54_0;
|
|
int32_t L_143 = V_13;
|
|
V_13 = ((int32_t)il2cpp_codegen_add(L_143, 1));
|
|
}
|
|
|
|
IL_02d7:
|
|
{
|
|
int32_t L_144 = V_13;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_145;
|
|
L_145 = Vector_1_get_Count_mC75C8C6E913E7FF8A3D10467D6DADE41711EF3CC_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_144) < ((int32_t)L_145)))
|
|
{
|
|
goto IL_02a6;
|
|
}
|
|
}
|
|
{
|
|
uint64_t* L_146 = V_12;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_147;
|
|
memset((&L_147), 0, sizeof(L_147));
|
|
Vector_1__ctor_mBEC18AF78DE340D929AD22019717DE9ED57A4CCA((&L_147), (void*)L_146, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 12));
|
|
return L_147;
|
|
}
|
|
|
|
IL_02e8:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_148 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_149;
|
|
L_149 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_148, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_150 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int64_class->byval_arg) };
|
|
Type_t* L_151;
|
|
L_151 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_150, NULL);
|
|
bool L_152;
|
|
L_152 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_149, L_151, NULL);
|
|
if (!L_152)
|
|
{
|
|
goto IL_0356;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_153;
|
|
L_153 = Vector_1_get_Count_mC75C8C6E913E7FF8A3D10467D6DADE41711EF3CC_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((uintptr_t)((uintptr_t)L_153) * (uintptr_t)8 > (uintptr_t)kIl2CppUIntPtrMax)
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), method);
|
|
intptr_t L_154 = ((intptr_t)il2cpp_codegen_multiply((intptr_t)((uintptr_t)L_153), 8));
|
|
int8_t* L_155 = (int8_t*) (L_154 ? alloca(L_154) : NULL);
|
|
memset(L_155, 0, L_154);
|
|
V_14 = (int64_t*)(L_155);
|
|
V_15 = 0;
|
|
goto IL_0345;
|
|
}
|
|
|
|
IL_0314:
|
|
{
|
|
int64_t* L_156 = V_14;
|
|
int32_t L_157 = V_15;
|
|
int32_t L_158 = V_15;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
uint64_t L_159;
|
|
L_159 = Vector_1_get_Item_m685EA4A01E8AF51DC7B5F78DE0583F8FD4997C99((&___0_left), L_158, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
int32_t L_160 = V_15;
|
|
uint64_t L_161;
|
|
L_161 = Vector_1_get_Item_m685EA4A01E8AF51DC7B5F78DE0583F8FD4997C99((&___1_right), L_160, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
bool L_162;
|
|
L_162 = Vector_1_ScalarEquals_m73081D1B852400C74618D0A814BBED2FE272175D_inline(L_159, L_161, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 9));
|
|
if (L_162)
|
|
{
|
|
G_B61_0 = ((int64_t*)il2cpp_codegen_add((intptr_t)L_156, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_157), 8))));
|
|
goto IL_0339;
|
|
}
|
|
G_B60_0 = ((int64_t*)il2cpp_codegen_add((intptr_t)L_156, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_157), 8))));
|
|
}
|
|
{
|
|
G_B62_0 = ((int64_t)0);
|
|
G_B62_1 = G_B60_0;
|
|
goto IL_033e;
|
|
}
|
|
|
|
IL_0339:
|
|
{
|
|
int64_t L_163;
|
|
L_163 = ConstantHelper_GetInt64WithAllBitsSet_m56A9AB64BA5DDD9ECC99424875824591DEFD5C40_inline(NULL);
|
|
G_B62_0 = L_163;
|
|
G_B62_1 = G_B61_0;
|
|
}
|
|
|
|
IL_033e:
|
|
{
|
|
*((int64_t*)G_B62_1) = (int64_t)G_B62_0;
|
|
int32_t L_164 = V_15;
|
|
V_15 = ((int32_t)il2cpp_codegen_add(L_164, 1));
|
|
}
|
|
|
|
IL_0345:
|
|
{
|
|
int32_t L_165 = V_15;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_166;
|
|
L_166 = Vector_1_get_Count_mC75C8C6E913E7FF8A3D10467D6DADE41711EF3CC_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_165) < ((int32_t)L_166)))
|
|
{
|
|
goto IL_0314;
|
|
}
|
|
}
|
|
{
|
|
int64_t* L_167 = V_14;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_168;
|
|
memset((&L_168), 0, sizeof(L_168));
|
|
Vector_1__ctor_mBEC18AF78DE340D929AD22019717DE9ED57A4CCA((&L_168), (void*)L_167, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 12));
|
|
return L_168;
|
|
}
|
|
|
|
IL_0356:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_169 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_170;
|
|
L_170 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_169, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_171 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.single_class->byval_arg) };
|
|
Type_t* L_172;
|
|
L_172 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_171, NULL);
|
|
bool L_173;
|
|
L_173 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_170, L_172, NULL);
|
|
if (!L_173)
|
|
{
|
|
goto IL_03c7;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_174;
|
|
L_174 = Vector_1_get_Count_mC75C8C6E913E7FF8A3D10467D6DADE41711EF3CC_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((uintptr_t)((uintptr_t)L_174) * (uintptr_t)4 > (uintptr_t)kIl2CppUIntPtrMax)
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), method);
|
|
intptr_t L_175 = ((intptr_t)il2cpp_codegen_multiply((intptr_t)((uintptr_t)L_174), 4));
|
|
int8_t* L_176 = (int8_t*) (L_175 ? alloca(L_175) : NULL);
|
|
memset(L_176, 0, L_175);
|
|
V_16 = (float*)(L_176);
|
|
V_17 = 0;
|
|
goto IL_03b6;
|
|
}
|
|
|
|
IL_0382:
|
|
{
|
|
float* L_177 = V_16;
|
|
int32_t L_178 = V_17;
|
|
int32_t L_179 = V_17;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
uint64_t L_180;
|
|
L_180 = Vector_1_get_Item_m685EA4A01E8AF51DC7B5F78DE0583F8FD4997C99((&___0_left), L_179, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
int32_t L_181 = V_17;
|
|
uint64_t L_182;
|
|
L_182 = Vector_1_get_Item_m685EA4A01E8AF51DC7B5F78DE0583F8FD4997C99((&___1_right), L_181, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
bool L_183;
|
|
L_183 = Vector_1_ScalarEquals_m73081D1B852400C74618D0A814BBED2FE272175D_inline(L_180, L_182, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 9));
|
|
if (L_183)
|
|
{
|
|
G_B69_0 = ((float*)il2cpp_codegen_add((intptr_t)L_177, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_178), 4))));
|
|
goto IL_03aa;
|
|
}
|
|
G_B68_0 = ((float*)il2cpp_codegen_add((intptr_t)L_177, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_178), 4))));
|
|
}
|
|
{
|
|
G_B70_0 = (0.0f);
|
|
G_B70_1 = G_B68_0;
|
|
goto IL_03af;
|
|
}
|
|
|
|
IL_03aa:
|
|
{
|
|
float L_184;
|
|
L_184 = ConstantHelper_GetSingleWithAllBitsSet_m66FC11C0680F744EB8315278910061C9535818C0_inline(NULL);
|
|
G_B70_0 = L_184;
|
|
G_B70_1 = G_B69_0;
|
|
}
|
|
|
|
IL_03af:
|
|
{
|
|
*((float*)G_B70_1) = (float)G_B70_0;
|
|
int32_t L_185 = V_17;
|
|
V_17 = ((int32_t)il2cpp_codegen_add(L_185, 1));
|
|
}
|
|
|
|
IL_03b6:
|
|
{
|
|
int32_t L_186 = V_17;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_187;
|
|
L_187 = Vector_1_get_Count_mC75C8C6E913E7FF8A3D10467D6DADE41711EF3CC_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_186) < ((int32_t)L_187)))
|
|
{
|
|
goto IL_0382;
|
|
}
|
|
}
|
|
{
|
|
float* L_188 = V_16;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_189;
|
|
memset((&L_189), 0, sizeof(L_189));
|
|
Vector_1__ctor_mBEC18AF78DE340D929AD22019717DE9ED57A4CCA((&L_189), (void*)L_188, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 12));
|
|
return L_189;
|
|
}
|
|
|
|
IL_03c7:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_190 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_191;
|
|
L_191 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_190, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_192 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.double_class->byval_arg) };
|
|
Type_t* L_193;
|
|
L_193 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_192, NULL);
|
|
bool L_194;
|
|
L_194 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_191, L_193, NULL);
|
|
if (!L_194)
|
|
{
|
|
goto IL_043c;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_195;
|
|
L_195 = Vector_1_get_Count_mC75C8C6E913E7FF8A3D10467D6DADE41711EF3CC_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((uintptr_t)((uintptr_t)L_195) * (uintptr_t)8 > (uintptr_t)kIl2CppUIntPtrMax)
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), method);
|
|
intptr_t L_196 = ((intptr_t)il2cpp_codegen_multiply((intptr_t)((uintptr_t)L_195), 8));
|
|
int8_t* L_197 = (int8_t*) (L_196 ? alloca(L_196) : NULL);
|
|
memset(L_197, 0, L_196);
|
|
V_18 = (double*)(L_197);
|
|
V_19 = 0;
|
|
goto IL_042b;
|
|
}
|
|
|
|
IL_03f3:
|
|
{
|
|
double* L_198 = V_18;
|
|
int32_t L_199 = V_19;
|
|
int32_t L_200 = V_19;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
uint64_t L_201;
|
|
L_201 = Vector_1_get_Item_m685EA4A01E8AF51DC7B5F78DE0583F8FD4997C99((&___0_left), L_200, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
int32_t L_202 = V_19;
|
|
uint64_t L_203;
|
|
L_203 = Vector_1_get_Item_m685EA4A01E8AF51DC7B5F78DE0583F8FD4997C99((&___1_right), L_202, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
bool L_204;
|
|
L_204 = Vector_1_ScalarEquals_m73081D1B852400C74618D0A814BBED2FE272175D_inline(L_201, L_203, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 9));
|
|
if (L_204)
|
|
{
|
|
G_B77_0 = ((double*)il2cpp_codegen_add((intptr_t)L_198, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_199), 8))));
|
|
goto IL_041f;
|
|
}
|
|
G_B76_0 = ((double*)il2cpp_codegen_add((intptr_t)L_198, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_199), 8))));
|
|
}
|
|
{
|
|
G_B78_0 = (0.0);
|
|
G_B78_1 = G_B76_0;
|
|
goto IL_0424;
|
|
}
|
|
|
|
IL_041f:
|
|
{
|
|
double L_205;
|
|
L_205 = ConstantHelper_GetDoubleWithAllBitsSet_mF43AF77A6C93B7590B35B20458E80F2BC66AD5F2_inline(NULL);
|
|
G_B78_0 = L_205;
|
|
G_B78_1 = G_B77_0;
|
|
}
|
|
|
|
IL_0424:
|
|
{
|
|
*((double*)G_B78_1) = (double)G_B78_0;
|
|
int32_t L_206 = V_19;
|
|
V_19 = ((int32_t)il2cpp_codegen_add(L_206, 1));
|
|
}
|
|
|
|
IL_042b:
|
|
{
|
|
int32_t L_207 = V_19;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_208;
|
|
L_208 = Vector_1_get_Count_mC75C8C6E913E7FF8A3D10467D6DADE41711EF3CC_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
if ((((int32_t)L_207) < ((int32_t)L_208)))
|
|
{
|
|
goto IL_03f3;
|
|
}
|
|
}
|
|
{
|
|
double* L_209 = V_18;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_210;
|
|
memset((&L_210), 0, sizeof(L_210));
|
|
Vector_1__ctor_mBEC18AF78DE340D929AD22019717DE9ED57A4CCA((&L_210), (void*)L_209, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 12));
|
|
return L_210;
|
|
}
|
|
|
|
IL_043c:
|
|
{
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_211 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_211, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE310274B02A605A3985345944A620D7D2E019A1A)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_211, method);
|
|
}
|
|
|
|
IL_0447:
|
|
{
|
|
il2cpp_codegen_initobj((&V_20), sizeof(Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A));
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_212 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_213;
|
|
L_213 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_212, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_214 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.byte_class->byval_arg) };
|
|
Type_t* L_215;
|
|
L_215 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_214, NULL);
|
|
bool L_216;
|
|
L_216 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_213, L_215, NULL);
|
|
if (!L_216)
|
|
{
|
|
goto IL_06e5;
|
|
}
|
|
}
|
|
{
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_217 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_218 = L_217.___register;
|
|
uint8_t L_219 = L_218.___byte_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_220 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_221 = L_220.___register;
|
|
uint8_t L_222 = L_221.___byte_0;
|
|
if ((((int32_t)L_219) == ((int32_t)L_222)))
|
|
{
|
|
G_B85_0 = (&V_20);
|
|
goto IL_048a;
|
|
}
|
|
G_B84_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B86_0 = 0;
|
|
G_B86_1 = G_B84_0;
|
|
goto IL_048f;
|
|
}
|
|
|
|
IL_048a:
|
|
{
|
|
uint8_t L_223;
|
|
L_223 = ConstantHelper_GetByteWithAllBitsSet_m38E318296F5FB9BAE51C97C1AE058716CFC889D7_inline(NULL);
|
|
G_B86_0 = ((int32_t)(L_223));
|
|
G_B86_1 = G_B85_0;
|
|
}
|
|
|
|
IL_048f:
|
|
{
|
|
G_B86_1->___byte_0 = (uint8_t)G_B86_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_224 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_225 = L_224.___register;
|
|
uint8_t L_226 = L_225.___byte_1;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_227 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_228 = L_227.___register;
|
|
uint8_t L_229 = L_228.___byte_1;
|
|
if ((((int32_t)L_226) == ((int32_t)L_229)))
|
|
{
|
|
G_B88_0 = (&V_20);
|
|
goto IL_04b1;
|
|
}
|
|
G_B87_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B89_0 = 0;
|
|
G_B89_1 = G_B87_0;
|
|
goto IL_04b6;
|
|
}
|
|
|
|
IL_04b1:
|
|
{
|
|
uint8_t L_230;
|
|
L_230 = ConstantHelper_GetByteWithAllBitsSet_m38E318296F5FB9BAE51C97C1AE058716CFC889D7_inline(NULL);
|
|
G_B89_0 = ((int32_t)(L_230));
|
|
G_B89_1 = G_B88_0;
|
|
}
|
|
|
|
IL_04b6:
|
|
{
|
|
G_B89_1->___byte_1 = (uint8_t)G_B89_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_231 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_232 = L_231.___register;
|
|
uint8_t L_233 = L_232.___byte_2;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_234 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_235 = L_234.___register;
|
|
uint8_t L_236 = L_235.___byte_2;
|
|
if ((((int32_t)L_233) == ((int32_t)L_236)))
|
|
{
|
|
G_B91_0 = (&V_20);
|
|
goto IL_04d8;
|
|
}
|
|
G_B90_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B92_0 = 0;
|
|
G_B92_1 = G_B90_0;
|
|
goto IL_04dd;
|
|
}
|
|
|
|
IL_04d8:
|
|
{
|
|
uint8_t L_237;
|
|
L_237 = ConstantHelper_GetByteWithAllBitsSet_m38E318296F5FB9BAE51C97C1AE058716CFC889D7_inline(NULL);
|
|
G_B92_0 = ((int32_t)(L_237));
|
|
G_B92_1 = G_B91_0;
|
|
}
|
|
|
|
IL_04dd:
|
|
{
|
|
G_B92_1->___byte_2 = (uint8_t)G_B92_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_238 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_239 = L_238.___register;
|
|
uint8_t L_240 = L_239.___byte_3;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_241 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_242 = L_241.___register;
|
|
uint8_t L_243 = L_242.___byte_3;
|
|
if ((((int32_t)L_240) == ((int32_t)L_243)))
|
|
{
|
|
G_B94_0 = (&V_20);
|
|
goto IL_04ff;
|
|
}
|
|
G_B93_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B95_0 = 0;
|
|
G_B95_1 = G_B93_0;
|
|
goto IL_0504;
|
|
}
|
|
|
|
IL_04ff:
|
|
{
|
|
uint8_t L_244;
|
|
L_244 = ConstantHelper_GetByteWithAllBitsSet_m38E318296F5FB9BAE51C97C1AE058716CFC889D7_inline(NULL);
|
|
G_B95_0 = ((int32_t)(L_244));
|
|
G_B95_1 = G_B94_0;
|
|
}
|
|
|
|
IL_0504:
|
|
{
|
|
G_B95_1->___byte_3 = (uint8_t)G_B95_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_245 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_246 = L_245.___register;
|
|
uint8_t L_247 = L_246.___byte_4;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_248 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_249 = L_248.___register;
|
|
uint8_t L_250 = L_249.___byte_4;
|
|
if ((((int32_t)L_247) == ((int32_t)L_250)))
|
|
{
|
|
G_B97_0 = (&V_20);
|
|
goto IL_0526;
|
|
}
|
|
G_B96_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B98_0 = 0;
|
|
G_B98_1 = G_B96_0;
|
|
goto IL_052b;
|
|
}
|
|
|
|
IL_0526:
|
|
{
|
|
uint8_t L_251;
|
|
L_251 = ConstantHelper_GetByteWithAllBitsSet_m38E318296F5FB9BAE51C97C1AE058716CFC889D7_inline(NULL);
|
|
G_B98_0 = ((int32_t)(L_251));
|
|
G_B98_1 = G_B97_0;
|
|
}
|
|
|
|
IL_052b:
|
|
{
|
|
G_B98_1->___byte_4 = (uint8_t)G_B98_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_252 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_253 = L_252.___register;
|
|
uint8_t L_254 = L_253.___byte_5;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_255 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_256 = L_255.___register;
|
|
uint8_t L_257 = L_256.___byte_5;
|
|
if ((((int32_t)L_254) == ((int32_t)L_257)))
|
|
{
|
|
G_B100_0 = (&V_20);
|
|
goto IL_054d;
|
|
}
|
|
G_B99_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B101_0 = 0;
|
|
G_B101_1 = G_B99_0;
|
|
goto IL_0552;
|
|
}
|
|
|
|
IL_054d:
|
|
{
|
|
uint8_t L_258;
|
|
L_258 = ConstantHelper_GetByteWithAllBitsSet_m38E318296F5FB9BAE51C97C1AE058716CFC889D7_inline(NULL);
|
|
G_B101_0 = ((int32_t)(L_258));
|
|
G_B101_1 = G_B100_0;
|
|
}
|
|
|
|
IL_0552:
|
|
{
|
|
G_B101_1->___byte_5 = (uint8_t)G_B101_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_259 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_260 = L_259.___register;
|
|
uint8_t L_261 = L_260.___byte_6;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_262 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_263 = L_262.___register;
|
|
uint8_t L_264 = L_263.___byte_6;
|
|
if ((((int32_t)L_261) == ((int32_t)L_264)))
|
|
{
|
|
G_B103_0 = (&V_20);
|
|
goto IL_0574;
|
|
}
|
|
G_B102_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B104_0 = 0;
|
|
G_B104_1 = G_B102_0;
|
|
goto IL_0579;
|
|
}
|
|
|
|
IL_0574:
|
|
{
|
|
uint8_t L_265;
|
|
L_265 = ConstantHelper_GetByteWithAllBitsSet_m38E318296F5FB9BAE51C97C1AE058716CFC889D7_inline(NULL);
|
|
G_B104_0 = ((int32_t)(L_265));
|
|
G_B104_1 = G_B103_0;
|
|
}
|
|
|
|
IL_0579:
|
|
{
|
|
G_B104_1->___byte_6 = (uint8_t)G_B104_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_266 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_267 = L_266.___register;
|
|
uint8_t L_268 = L_267.___byte_7;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_269 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_270 = L_269.___register;
|
|
uint8_t L_271 = L_270.___byte_7;
|
|
if ((((int32_t)L_268) == ((int32_t)L_271)))
|
|
{
|
|
G_B106_0 = (&V_20);
|
|
goto IL_059b;
|
|
}
|
|
G_B105_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B107_0 = 0;
|
|
G_B107_1 = G_B105_0;
|
|
goto IL_05a0;
|
|
}
|
|
|
|
IL_059b:
|
|
{
|
|
uint8_t L_272;
|
|
L_272 = ConstantHelper_GetByteWithAllBitsSet_m38E318296F5FB9BAE51C97C1AE058716CFC889D7_inline(NULL);
|
|
G_B107_0 = ((int32_t)(L_272));
|
|
G_B107_1 = G_B106_0;
|
|
}
|
|
|
|
IL_05a0:
|
|
{
|
|
G_B107_1->___byte_7 = (uint8_t)G_B107_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_273 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_274 = L_273.___register;
|
|
uint8_t L_275 = L_274.___byte_8;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_276 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_277 = L_276.___register;
|
|
uint8_t L_278 = L_277.___byte_8;
|
|
if ((((int32_t)L_275) == ((int32_t)L_278)))
|
|
{
|
|
G_B109_0 = (&V_20);
|
|
goto IL_05c2;
|
|
}
|
|
G_B108_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B110_0 = 0;
|
|
G_B110_1 = G_B108_0;
|
|
goto IL_05c7;
|
|
}
|
|
|
|
IL_05c2:
|
|
{
|
|
uint8_t L_279;
|
|
L_279 = ConstantHelper_GetByteWithAllBitsSet_m38E318296F5FB9BAE51C97C1AE058716CFC889D7_inline(NULL);
|
|
G_B110_0 = ((int32_t)(L_279));
|
|
G_B110_1 = G_B109_0;
|
|
}
|
|
|
|
IL_05c7:
|
|
{
|
|
G_B110_1->___byte_8 = (uint8_t)G_B110_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_280 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_281 = L_280.___register;
|
|
uint8_t L_282 = L_281.___byte_9;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_283 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_284 = L_283.___register;
|
|
uint8_t L_285 = L_284.___byte_9;
|
|
if ((((int32_t)L_282) == ((int32_t)L_285)))
|
|
{
|
|
G_B112_0 = (&V_20);
|
|
goto IL_05e9;
|
|
}
|
|
G_B111_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B113_0 = 0;
|
|
G_B113_1 = G_B111_0;
|
|
goto IL_05ee;
|
|
}
|
|
|
|
IL_05e9:
|
|
{
|
|
uint8_t L_286;
|
|
L_286 = ConstantHelper_GetByteWithAllBitsSet_m38E318296F5FB9BAE51C97C1AE058716CFC889D7_inline(NULL);
|
|
G_B113_0 = ((int32_t)(L_286));
|
|
G_B113_1 = G_B112_0;
|
|
}
|
|
|
|
IL_05ee:
|
|
{
|
|
G_B113_1->___byte_9 = (uint8_t)G_B113_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_287 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_288 = L_287.___register;
|
|
uint8_t L_289 = L_288.___byte_10;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_290 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_291 = L_290.___register;
|
|
uint8_t L_292 = L_291.___byte_10;
|
|
if ((((int32_t)L_289) == ((int32_t)L_292)))
|
|
{
|
|
G_B115_0 = (&V_20);
|
|
goto IL_0610;
|
|
}
|
|
G_B114_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B116_0 = 0;
|
|
G_B116_1 = G_B114_0;
|
|
goto IL_0615;
|
|
}
|
|
|
|
IL_0610:
|
|
{
|
|
uint8_t L_293;
|
|
L_293 = ConstantHelper_GetByteWithAllBitsSet_m38E318296F5FB9BAE51C97C1AE058716CFC889D7_inline(NULL);
|
|
G_B116_0 = ((int32_t)(L_293));
|
|
G_B116_1 = G_B115_0;
|
|
}
|
|
|
|
IL_0615:
|
|
{
|
|
G_B116_1->___byte_10 = (uint8_t)G_B116_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_294 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_295 = L_294.___register;
|
|
uint8_t L_296 = L_295.___byte_11;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_297 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_298 = L_297.___register;
|
|
uint8_t L_299 = L_298.___byte_11;
|
|
if ((((int32_t)L_296) == ((int32_t)L_299)))
|
|
{
|
|
G_B118_0 = (&V_20);
|
|
goto IL_0637;
|
|
}
|
|
G_B117_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B119_0 = 0;
|
|
G_B119_1 = G_B117_0;
|
|
goto IL_063c;
|
|
}
|
|
|
|
IL_0637:
|
|
{
|
|
uint8_t L_300;
|
|
L_300 = ConstantHelper_GetByteWithAllBitsSet_m38E318296F5FB9BAE51C97C1AE058716CFC889D7_inline(NULL);
|
|
G_B119_0 = ((int32_t)(L_300));
|
|
G_B119_1 = G_B118_0;
|
|
}
|
|
|
|
IL_063c:
|
|
{
|
|
G_B119_1->___byte_11 = (uint8_t)G_B119_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_301 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_302 = L_301.___register;
|
|
uint8_t L_303 = L_302.___byte_12;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_304 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_305 = L_304.___register;
|
|
uint8_t L_306 = L_305.___byte_12;
|
|
if ((((int32_t)L_303) == ((int32_t)L_306)))
|
|
{
|
|
G_B121_0 = (&V_20);
|
|
goto IL_065e;
|
|
}
|
|
G_B120_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B122_0 = 0;
|
|
G_B122_1 = G_B120_0;
|
|
goto IL_0663;
|
|
}
|
|
|
|
IL_065e:
|
|
{
|
|
uint8_t L_307;
|
|
L_307 = ConstantHelper_GetByteWithAllBitsSet_m38E318296F5FB9BAE51C97C1AE058716CFC889D7_inline(NULL);
|
|
G_B122_0 = ((int32_t)(L_307));
|
|
G_B122_1 = G_B121_0;
|
|
}
|
|
|
|
IL_0663:
|
|
{
|
|
G_B122_1->___byte_12 = (uint8_t)G_B122_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_308 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_309 = L_308.___register;
|
|
uint8_t L_310 = L_309.___byte_13;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_311 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_312 = L_311.___register;
|
|
uint8_t L_313 = L_312.___byte_13;
|
|
if ((((int32_t)L_310) == ((int32_t)L_313)))
|
|
{
|
|
G_B124_0 = (&V_20);
|
|
goto IL_0685;
|
|
}
|
|
G_B123_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B125_0 = 0;
|
|
G_B125_1 = G_B123_0;
|
|
goto IL_068a;
|
|
}
|
|
|
|
IL_0685:
|
|
{
|
|
uint8_t L_314;
|
|
L_314 = ConstantHelper_GetByteWithAllBitsSet_m38E318296F5FB9BAE51C97C1AE058716CFC889D7_inline(NULL);
|
|
G_B125_0 = ((int32_t)(L_314));
|
|
G_B125_1 = G_B124_0;
|
|
}
|
|
|
|
IL_068a:
|
|
{
|
|
G_B125_1->___byte_13 = (uint8_t)G_B125_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_315 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_316 = L_315.___register;
|
|
uint8_t L_317 = L_316.___byte_14;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_318 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_319 = L_318.___register;
|
|
uint8_t L_320 = L_319.___byte_14;
|
|
if ((((int32_t)L_317) == ((int32_t)L_320)))
|
|
{
|
|
G_B127_0 = (&V_20);
|
|
goto IL_06ac;
|
|
}
|
|
G_B126_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B128_0 = 0;
|
|
G_B128_1 = G_B126_0;
|
|
goto IL_06b1;
|
|
}
|
|
|
|
IL_06ac:
|
|
{
|
|
uint8_t L_321;
|
|
L_321 = ConstantHelper_GetByteWithAllBitsSet_m38E318296F5FB9BAE51C97C1AE058716CFC889D7_inline(NULL);
|
|
G_B128_0 = ((int32_t)(L_321));
|
|
G_B128_1 = G_B127_0;
|
|
}
|
|
|
|
IL_06b1:
|
|
{
|
|
G_B128_1->___byte_14 = (uint8_t)G_B128_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_322 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_323 = L_322.___register;
|
|
uint8_t L_324 = L_323.___byte_15;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_325 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_326 = L_325.___register;
|
|
uint8_t L_327 = L_326.___byte_15;
|
|
if ((((int32_t)L_324) == ((int32_t)L_327)))
|
|
{
|
|
G_B130_0 = (&V_20);
|
|
goto IL_06d3;
|
|
}
|
|
G_B129_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B131_0 = 0;
|
|
G_B131_1 = G_B129_0;
|
|
goto IL_06d8;
|
|
}
|
|
|
|
IL_06d3:
|
|
{
|
|
uint8_t L_328;
|
|
L_328 = ConstantHelper_GetByteWithAllBitsSet_m38E318296F5FB9BAE51C97C1AE058716CFC889D7_inline(NULL);
|
|
G_B131_0 = ((int32_t)(L_328));
|
|
G_B131_1 = G_B130_0;
|
|
}
|
|
|
|
IL_06d8:
|
|
{
|
|
G_B131_1->___byte_15 = (uint8_t)G_B131_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_329;
|
|
memset((&L_329), 0, sizeof(L_329));
|
|
Vector_1__ctor_mEA86543744A54FCE590FDBF012FAE9037A5F1606((&L_329), (&V_20), il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 13));
|
|
return L_329;
|
|
}
|
|
|
|
IL_06e5:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_330 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_331;
|
|
L_331 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_330, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_332 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.sbyte_class->byval_arg) };
|
|
Type_t* L_333;
|
|
L_333 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_332, NULL);
|
|
bool L_334;
|
|
L_334 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_331, L_333, NULL);
|
|
if (!L_334)
|
|
{
|
|
goto IL_097b;
|
|
}
|
|
}
|
|
{
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_335 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_336 = L_335.___register;
|
|
int8_t L_337 = L_336.___sbyte_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_338 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_339 = L_338.___register;
|
|
int8_t L_340 = L_339.___sbyte_0;
|
|
if ((((int32_t)L_337) == ((int32_t)L_340)))
|
|
{
|
|
G_B135_0 = (&V_20);
|
|
goto IL_0720;
|
|
}
|
|
G_B134_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B136_0 = 0;
|
|
G_B136_1 = G_B134_0;
|
|
goto IL_0725;
|
|
}
|
|
|
|
IL_0720:
|
|
{
|
|
int8_t L_341;
|
|
L_341 = ConstantHelper_GetSByteWithAllBitsSet_mB6B97526769DCCB7B78CCF446F28AAB0D1B5CAE3_inline(NULL);
|
|
G_B136_0 = ((int32_t)(L_341));
|
|
G_B136_1 = G_B135_0;
|
|
}
|
|
|
|
IL_0725:
|
|
{
|
|
G_B136_1->___sbyte_0 = (int8_t)G_B136_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_342 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_343 = L_342.___register;
|
|
int8_t L_344 = L_343.___sbyte_1;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_345 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_346 = L_345.___register;
|
|
int8_t L_347 = L_346.___sbyte_1;
|
|
if ((((int32_t)L_344) == ((int32_t)L_347)))
|
|
{
|
|
G_B138_0 = (&V_20);
|
|
goto IL_0747;
|
|
}
|
|
G_B137_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B139_0 = 0;
|
|
G_B139_1 = G_B137_0;
|
|
goto IL_074c;
|
|
}
|
|
|
|
IL_0747:
|
|
{
|
|
int8_t L_348;
|
|
L_348 = ConstantHelper_GetSByteWithAllBitsSet_mB6B97526769DCCB7B78CCF446F28AAB0D1B5CAE3_inline(NULL);
|
|
G_B139_0 = ((int32_t)(L_348));
|
|
G_B139_1 = G_B138_0;
|
|
}
|
|
|
|
IL_074c:
|
|
{
|
|
G_B139_1->___sbyte_1 = (int8_t)G_B139_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_349 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_350 = L_349.___register;
|
|
int8_t L_351 = L_350.___sbyte_2;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_352 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_353 = L_352.___register;
|
|
int8_t L_354 = L_353.___sbyte_2;
|
|
if ((((int32_t)L_351) == ((int32_t)L_354)))
|
|
{
|
|
G_B141_0 = (&V_20);
|
|
goto IL_076e;
|
|
}
|
|
G_B140_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B142_0 = 0;
|
|
G_B142_1 = G_B140_0;
|
|
goto IL_0773;
|
|
}
|
|
|
|
IL_076e:
|
|
{
|
|
int8_t L_355;
|
|
L_355 = ConstantHelper_GetSByteWithAllBitsSet_mB6B97526769DCCB7B78CCF446F28AAB0D1B5CAE3_inline(NULL);
|
|
G_B142_0 = ((int32_t)(L_355));
|
|
G_B142_1 = G_B141_0;
|
|
}
|
|
|
|
IL_0773:
|
|
{
|
|
G_B142_1->___sbyte_2 = (int8_t)G_B142_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_356 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_357 = L_356.___register;
|
|
int8_t L_358 = L_357.___sbyte_3;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_359 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_360 = L_359.___register;
|
|
int8_t L_361 = L_360.___sbyte_3;
|
|
if ((((int32_t)L_358) == ((int32_t)L_361)))
|
|
{
|
|
G_B144_0 = (&V_20);
|
|
goto IL_0795;
|
|
}
|
|
G_B143_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B145_0 = 0;
|
|
G_B145_1 = G_B143_0;
|
|
goto IL_079a;
|
|
}
|
|
|
|
IL_0795:
|
|
{
|
|
int8_t L_362;
|
|
L_362 = ConstantHelper_GetSByteWithAllBitsSet_mB6B97526769DCCB7B78CCF446F28AAB0D1B5CAE3_inline(NULL);
|
|
G_B145_0 = ((int32_t)(L_362));
|
|
G_B145_1 = G_B144_0;
|
|
}
|
|
|
|
IL_079a:
|
|
{
|
|
G_B145_1->___sbyte_3 = (int8_t)G_B145_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_363 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_364 = L_363.___register;
|
|
int8_t L_365 = L_364.___sbyte_4;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_366 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_367 = L_366.___register;
|
|
int8_t L_368 = L_367.___sbyte_4;
|
|
if ((((int32_t)L_365) == ((int32_t)L_368)))
|
|
{
|
|
G_B147_0 = (&V_20);
|
|
goto IL_07bc;
|
|
}
|
|
G_B146_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B148_0 = 0;
|
|
G_B148_1 = G_B146_0;
|
|
goto IL_07c1;
|
|
}
|
|
|
|
IL_07bc:
|
|
{
|
|
int8_t L_369;
|
|
L_369 = ConstantHelper_GetSByteWithAllBitsSet_mB6B97526769DCCB7B78CCF446F28AAB0D1B5CAE3_inline(NULL);
|
|
G_B148_0 = ((int32_t)(L_369));
|
|
G_B148_1 = G_B147_0;
|
|
}
|
|
|
|
IL_07c1:
|
|
{
|
|
G_B148_1->___sbyte_4 = (int8_t)G_B148_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_370 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_371 = L_370.___register;
|
|
int8_t L_372 = L_371.___sbyte_5;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_373 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_374 = L_373.___register;
|
|
int8_t L_375 = L_374.___sbyte_5;
|
|
if ((((int32_t)L_372) == ((int32_t)L_375)))
|
|
{
|
|
G_B150_0 = (&V_20);
|
|
goto IL_07e3;
|
|
}
|
|
G_B149_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B151_0 = 0;
|
|
G_B151_1 = G_B149_0;
|
|
goto IL_07e8;
|
|
}
|
|
|
|
IL_07e3:
|
|
{
|
|
int8_t L_376;
|
|
L_376 = ConstantHelper_GetSByteWithAllBitsSet_mB6B97526769DCCB7B78CCF446F28AAB0D1B5CAE3_inline(NULL);
|
|
G_B151_0 = ((int32_t)(L_376));
|
|
G_B151_1 = G_B150_0;
|
|
}
|
|
|
|
IL_07e8:
|
|
{
|
|
G_B151_1->___sbyte_5 = (int8_t)G_B151_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_377 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_378 = L_377.___register;
|
|
int8_t L_379 = L_378.___sbyte_6;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_380 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_381 = L_380.___register;
|
|
int8_t L_382 = L_381.___sbyte_6;
|
|
if ((((int32_t)L_379) == ((int32_t)L_382)))
|
|
{
|
|
G_B153_0 = (&V_20);
|
|
goto IL_080a;
|
|
}
|
|
G_B152_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B154_0 = 0;
|
|
G_B154_1 = G_B152_0;
|
|
goto IL_080f;
|
|
}
|
|
|
|
IL_080a:
|
|
{
|
|
int8_t L_383;
|
|
L_383 = ConstantHelper_GetSByteWithAllBitsSet_mB6B97526769DCCB7B78CCF446F28AAB0D1B5CAE3_inline(NULL);
|
|
G_B154_0 = ((int32_t)(L_383));
|
|
G_B154_1 = G_B153_0;
|
|
}
|
|
|
|
IL_080f:
|
|
{
|
|
G_B154_1->___sbyte_6 = (int8_t)G_B154_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_384 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_385 = L_384.___register;
|
|
int8_t L_386 = L_385.___sbyte_7;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_387 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_388 = L_387.___register;
|
|
int8_t L_389 = L_388.___sbyte_7;
|
|
if ((((int32_t)L_386) == ((int32_t)L_389)))
|
|
{
|
|
G_B156_0 = (&V_20);
|
|
goto IL_0831;
|
|
}
|
|
G_B155_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B157_0 = 0;
|
|
G_B157_1 = G_B155_0;
|
|
goto IL_0836;
|
|
}
|
|
|
|
IL_0831:
|
|
{
|
|
int8_t L_390;
|
|
L_390 = ConstantHelper_GetSByteWithAllBitsSet_mB6B97526769DCCB7B78CCF446F28AAB0D1B5CAE3_inline(NULL);
|
|
G_B157_0 = ((int32_t)(L_390));
|
|
G_B157_1 = G_B156_0;
|
|
}
|
|
|
|
IL_0836:
|
|
{
|
|
G_B157_1->___sbyte_7 = (int8_t)G_B157_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_391 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_392 = L_391.___register;
|
|
int8_t L_393 = L_392.___sbyte_8;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_394 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_395 = L_394.___register;
|
|
int8_t L_396 = L_395.___sbyte_8;
|
|
if ((((int32_t)L_393) == ((int32_t)L_396)))
|
|
{
|
|
G_B159_0 = (&V_20);
|
|
goto IL_0858;
|
|
}
|
|
G_B158_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B160_0 = 0;
|
|
G_B160_1 = G_B158_0;
|
|
goto IL_085d;
|
|
}
|
|
|
|
IL_0858:
|
|
{
|
|
int8_t L_397;
|
|
L_397 = ConstantHelper_GetSByteWithAllBitsSet_mB6B97526769DCCB7B78CCF446F28AAB0D1B5CAE3_inline(NULL);
|
|
G_B160_0 = ((int32_t)(L_397));
|
|
G_B160_1 = G_B159_0;
|
|
}
|
|
|
|
IL_085d:
|
|
{
|
|
G_B160_1->___sbyte_8 = (int8_t)G_B160_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_398 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_399 = L_398.___register;
|
|
int8_t L_400 = L_399.___sbyte_9;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_401 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_402 = L_401.___register;
|
|
int8_t L_403 = L_402.___sbyte_9;
|
|
if ((((int32_t)L_400) == ((int32_t)L_403)))
|
|
{
|
|
G_B162_0 = (&V_20);
|
|
goto IL_087f;
|
|
}
|
|
G_B161_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B163_0 = 0;
|
|
G_B163_1 = G_B161_0;
|
|
goto IL_0884;
|
|
}
|
|
|
|
IL_087f:
|
|
{
|
|
int8_t L_404;
|
|
L_404 = ConstantHelper_GetSByteWithAllBitsSet_mB6B97526769DCCB7B78CCF446F28AAB0D1B5CAE3_inline(NULL);
|
|
G_B163_0 = ((int32_t)(L_404));
|
|
G_B163_1 = G_B162_0;
|
|
}
|
|
|
|
IL_0884:
|
|
{
|
|
G_B163_1->___sbyte_9 = (int8_t)G_B163_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_405 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_406 = L_405.___register;
|
|
int8_t L_407 = L_406.___sbyte_10;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_408 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_409 = L_408.___register;
|
|
int8_t L_410 = L_409.___sbyte_10;
|
|
if ((((int32_t)L_407) == ((int32_t)L_410)))
|
|
{
|
|
G_B165_0 = (&V_20);
|
|
goto IL_08a6;
|
|
}
|
|
G_B164_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B166_0 = 0;
|
|
G_B166_1 = G_B164_0;
|
|
goto IL_08ab;
|
|
}
|
|
|
|
IL_08a6:
|
|
{
|
|
int8_t L_411;
|
|
L_411 = ConstantHelper_GetSByteWithAllBitsSet_mB6B97526769DCCB7B78CCF446F28AAB0D1B5CAE3_inline(NULL);
|
|
G_B166_0 = ((int32_t)(L_411));
|
|
G_B166_1 = G_B165_0;
|
|
}
|
|
|
|
IL_08ab:
|
|
{
|
|
G_B166_1->___sbyte_10 = (int8_t)G_B166_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_412 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_413 = L_412.___register;
|
|
int8_t L_414 = L_413.___sbyte_11;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_415 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_416 = L_415.___register;
|
|
int8_t L_417 = L_416.___sbyte_11;
|
|
if ((((int32_t)L_414) == ((int32_t)L_417)))
|
|
{
|
|
G_B168_0 = (&V_20);
|
|
goto IL_08cd;
|
|
}
|
|
G_B167_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B169_0 = 0;
|
|
G_B169_1 = G_B167_0;
|
|
goto IL_08d2;
|
|
}
|
|
|
|
IL_08cd:
|
|
{
|
|
int8_t L_418;
|
|
L_418 = ConstantHelper_GetSByteWithAllBitsSet_mB6B97526769DCCB7B78CCF446F28AAB0D1B5CAE3_inline(NULL);
|
|
G_B169_0 = ((int32_t)(L_418));
|
|
G_B169_1 = G_B168_0;
|
|
}
|
|
|
|
IL_08d2:
|
|
{
|
|
G_B169_1->___sbyte_11 = (int8_t)G_B169_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_419 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_420 = L_419.___register;
|
|
int8_t L_421 = L_420.___sbyte_12;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_422 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_423 = L_422.___register;
|
|
int8_t L_424 = L_423.___sbyte_12;
|
|
if ((((int32_t)L_421) == ((int32_t)L_424)))
|
|
{
|
|
G_B171_0 = (&V_20);
|
|
goto IL_08f4;
|
|
}
|
|
G_B170_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B172_0 = 0;
|
|
G_B172_1 = G_B170_0;
|
|
goto IL_08f9;
|
|
}
|
|
|
|
IL_08f4:
|
|
{
|
|
int8_t L_425;
|
|
L_425 = ConstantHelper_GetSByteWithAllBitsSet_mB6B97526769DCCB7B78CCF446F28AAB0D1B5CAE3_inline(NULL);
|
|
G_B172_0 = ((int32_t)(L_425));
|
|
G_B172_1 = G_B171_0;
|
|
}
|
|
|
|
IL_08f9:
|
|
{
|
|
G_B172_1->___sbyte_12 = (int8_t)G_B172_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_426 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_427 = L_426.___register;
|
|
int8_t L_428 = L_427.___sbyte_13;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_429 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_430 = L_429.___register;
|
|
int8_t L_431 = L_430.___sbyte_13;
|
|
if ((((int32_t)L_428) == ((int32_t)L_431)))
|
|
{
|
|
G_B174_0 = (&V_20);
|
|
goto IL_091b;
|
|
}
|
|
G_B173_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B175_0 = 0;
|
|
G_B175_1 = G_B173_0;
|
|
goto IL_0920;
|
|
}
|
|
|
|
IL_091b:
|
|
{
|
|
int8_t L_432;
|
|
L_432 = ConstantHelper_GetSByteWithAllBitsSet_mB6B97526769DCCB7B78CCF446F28AAB0D1B5CAE3_inline(NULL);
|
|
G_B175_0 = ((int32_t)(L_432));
|
|
G_B175_1 = G_B174_0;
|
|
}
|
|
|
|
IL_0920:
|
|
{
|
|
G_B175_1->___sbyte_13 = (int8_t)G_B175_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_433 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_434 = L_433.___register;
|
|
int8_t L_435 = L_434.___sbyte_14;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_436 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_437 = L_436.___register;
|
|
int8_t L_438 = L_437.___sbyte_14;
|
|
if ((((int32_t)L_435) == ((int32_t)L_438)))
|
|
{
|
|
G_B177_0 = (&V_20);
|
|
goto IL_0942;
|
|
}
|
|
G_B176_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B178_0 = 0;
|
|
G_B178_1 = G_B176_0;
|
|
goto IL_0947;
|
|
}
|
|
|
|
IL_0942:
|
|
{
|
|
int8_t L_439;
|
|
L_439 = ConstantHelper_GetSByteWithAllBitsSet_mB6B97526769DCCB7B78CCF446F28AAB0D1B5CAE3_inline(NULL);
|
|
G_B178_0 = ((int32_t)(L_439));
|
|
G_B178_1 = G_B177_0;
|
|
}
|
|
|
|
IL_0947:
|
|
{
|
|
G_B178_1->___sbyte_14 = (int8_t)G_B178_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_440 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_441 = L_440.___register;
|
|
int8_t L_442 = L_441.___sbyte_15;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_443 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_444 = L_443.___register;
|
|
int8_t L_445 = L_444.___sbyte_15;
|
|
if ((((int32_t)L_442) == ((int32_t)L_445)))
|
|
{
|
|
G_B180_0 = (&V_20);
|
|
goto IL_0969;
|
|
}
|
|
G_B179_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B181_0 = 0;
|
|
G_B181_1 = G_B179_0;
|
|
goto IL_096e;
|
|
}
|
|
|
|
IL_0969:
|
|
{
|
|
int8_t L_446;
|
|
L_446 = ConstantHelper_GetSByteWithAllBitsSet_mB6B97526769DCCB7B78CCF446F28AAB0D1B5CAE3_inline(NULL);
|
|
G_B181_0 = ((int32_t)(L_446));
|
|
G_B181_1 = G_B180_0;
|
|
}
|
|
|
|
IL_096e:
|
|
{
|
|
G_B181_1->___sbyte_15 = (int8_t)G_B181_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_447;
|
|
memset((&L_447), 0, sizeof(L_447));
|
|
Vector_1__ctor_mEA86543744A54FCE590FDBF012FAE9037A5F1606((&L_447), (&V_20), il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 13));
|
|
return L_447;
|
|
}
|
|
|
|
IL_097b:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_448 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_449;
|
|
L_449 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_448, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_450 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint16_class->byval_arg) };
|
|
Type_t* L_451;
|
|
L_451 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_450, NULL);
|
|
bool L_452;
|
|
L_452 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_449, L_451, NULL);
|
|
if (!L_452)
|
|
{
|
|
goto IL_0ad9;
|
|
}
|
|
}
|
|
{
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_453 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_454 = L_453.___register;
|
|
uint16_t L_455 = L_454.___uint16_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_456 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_457 = L_456.___register;
|
|
uint16_t L_458 = L_457.___uint16_0;
|
|
if ((((int32_t)L_455) == ((int32_t)L_458)))
|
|
{
|
|
G_B185_0 = (&V_20);
|
|
goto IL_09b6;
|
|
}
|
|
G_B184_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B186_0 = 0;
|
|
G_B186_1 = G_B184_0;
|
|
goto IL_09bb;
|
|
}
|
|
|
|
IL_09b6:
|
|
{
|
|
uint16_t L_459;
|
|
L_459 = ConstantHelper_GetUInt16WithAllBitsSet_mD3E13D933A06059499F0E0CBE6798D72D175464A_inline(NULL);
|
|
G_B186_0 = ((int32_t)(L_459));
|
|
G_B186_1 = G_B185_0;
|
|
}
|
|
|
|
IL_09bb:
|
|
{
|
|
G_B186_1->___uint16_0 = (uint16_t)G_B186_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_460 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_461 = L_460.___register;
|
|
uint16_t L_462 = L_461.___uint16_1;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_463 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_464 = L_463.___register;
|
|
uint16_t L_465 = L_464.___uint16_1;
|
|
if ((((int32_t)L_462) == ((int32_t)L_465)))
|
|
{
|
|
G_B188_0 = (&V_20);
|
|
goto IL_09dd;
|
|
}
|
|
G_B187_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B189_0 = 0;
|
|
G_B189_1 = G_B187_0;
|
|
goto IL_09e2;
|
|
}
|
|
|
|
IL_09dd:
|
|
{
|
|
uint16_t L_466;
|
|
L_466 = ConstantHelper_GetUInt16WithAllBitsSet_mD3E13D933A06059499F0E0CBE6798D72D175464A_inline(NULL);
|
|
G_B189_0 = ((int32_t)(L_466));
|
|
G_B189_1 = G_B188_0;
|
|
}
|
|
|
|
IL_09e2:
|
|
{
|
|
G_B189_1->___uint16_1 = (uint16_t)G_B189_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_467 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_468 = L_467.___register;
|
|
uint16_t L_469 = L_468.___uint16_2;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_470 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_471 = L_470.___register;
|
|
uint16_t L_472 = L_471.___uint16_2;
|
|
if ((((int32_t)L_469) == ((int32_t)L_472)))
|
|
{
|
|
G_B191_0 = (&V_20);
|
|
goto IL_0a04;
|
|
}
|
|
G_B190_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B192_0 = 0;
|
|
G_B192_1 = G_B190_0;
|
|
goto IL_0a09;
|
|
}
|
|
|
|
IL_0a04:
|
|
{
|
|
uint16_t L_473;
|
|
L_473 = ConstantHelper_GetUInt16WithAllBitsSet_mD3E13D933A06059499F0E0CBE6798D72D175464A_inline(NULL);
|
|
G_B192_0 = ((int32_t)(L_473));
|
|
G_B192_1 = G_B191_0;
|
|
}
|
|
|
|
IL_0a09:
|
|
{
|
|
G_B192_1->___uint16_2 = (uint16_t)G_B192_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_474 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_475 = L_474.___register;
|
|
uint16_t L_476 = L_475.___uint16_3;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_477 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_478 = L_477.___register;
|
|
uint16_t L_479 = L_478.___uint16_3;
|
|
if ((((int32_t)L_476) == ((int32_t)L_479)))
|
|
{
|
|
G_B194_0 = (&V_20);
|
|
goto IL_0a2b;
|
|
}
|
|
G_B193_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B195_0 = 0;
|
|
G_B195_1 = G_B193_0;
|
|
goto IL_0a30;
|
|
}
|
|
|
|
IL_0a2b:
|
|
{
|
|
uint16_t L_480;
|
|
L_480 = ConstantHelper_GetUInt16WithAllBitsSet_mD3E13D933A06059499F0E0CBE6798D72D175464A_inline(NULL);
|
|
G_B195_0 = ((int32_t)(L_480));
|
|
G_B195_1 = G_B194_0;
|
|
}
|
|
|
|
IL_0a30:
|
|
{
|
|
G_B195_1->___uint16_3 = (uint16_t)G_B195_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_481 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_482 = L_481.___register;
|
|
uint16_t L_483 = L_482.___uint16_4;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_484 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_485 = L_484.___register;
|
|
uint16_t L_486 = L_485.___uint16_4;
|
|
if ((((int32_t)L_483) == ((int32_t)L_486)))
|
|
{
|
|
G_B197_0 = (&V_20);
|
|
goto IL_0a52;
|
|
}
|
|
G_B196_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B198_0 = 0;
|
|
G_B198_1 = G_B196_0;
|
|
goto IL_0a57;
|
|
}
|
|
|
|
IL_0a52:
|
|
{
|
|
uint16_t L_487;
|
|
L_487 = ConstantHelper_GetUInt16WithAllBitsSet_mD3E13D933A06059499F0E0CBE6798D72D175464A_inline(NULL);
|
|
G_B198_0 = ((int32_t)(L_487));
|
|
G_B198_1 = G_B197_0;
|
|
}
|
|
|
|
IL_0a57:
|
|
{
|
|
G_B198_1->___uint16_4 = (uint16_t)G_B198_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_488 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_489 = L_488.___register;
|
|
uint16_t L_490 = L_489.___uint16_5;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_491 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_492 = L_491.___register;
|
|
uint16_t L_493 = L_492.___uint16_5;
|
|
if ((((int32_t)L_490) == ((int32_t)L_493)))
|
|
{
|
|
G_B200_0 = (&V_20);
|
|
goto IL_0a79;
|
|
}
|
|
G_B199_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B201_0 = 0;
|
|
G_B201_1 = G_B199_0;
|
|
goto IL_0a7e;
|
|
}
|
|
|
|
IL_0a79:
|
|
{
|
|
uint16_t L_494;
|
|
L_494 = ConstantHelper_GetUInt16WithAllBitsSet_mD3E13D933A06059499F0E0CBE6798D72D175464A_inline(NULL);
|
|
G_B201_0 = ((int32_t)(L_494));
|
|
G_B201_1 = G_B200_0;
|
|
}
|
|
|
|
IL_0a7e:
|
|
{
|
|
G_B201_1->___uint16_5 = (uint16_t)G_B201_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_495 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_496 = L_495.___register;
|
|
uint16_t L_497 = L_496.___uint16_6;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_498 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_499 = L_498.___register;
|
|
uint16_t L_500 = L_499.___uint16_6;
|
|
if ((((int32_t)L_497) == ((int32_t)L_500)))
|
|
{
|
|
G_B203_0 = (&V_20);
|
|
goto IL_0aa0;
|
|
}
|
|
G_B202_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B204_0 = 0;
|
|
G_B204_1 = G_B202_0;
|
|
goto IL_0aa5;
|
|
}
|
|
|
|
IL_0aa0:
|
|
{
|
|
uint16_t L_501;
|
|
L_501 = ConstantHelper_GetUInt16WithAllBitsSet_mD3E13D933A06059499F0E0CBE6798D72D175464A_inline(NULL);
|
|
G_B204_0 = ((int32_t)(L_501));
|
|
G_B204_1 = G_B203_0;
|
|
}
|
|
|
|
IL_0aa5:
|
|
{
|
|
G_B204_1->___uint16_6 = (uint16_t)G_B204_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_502 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_503 = L_502.___register;
|
|
uint16_t L_504 = L_503.___uint16_7;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_505 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_506 = L_505.___register;
|
|
uint16_t L_507 = L_506.___uint16_7;
|
|
if ((((int32_t)L_504) == ((int32_t)L_507)))
|
|
{
|
|
G_B206_0 = (&V_20);
|
|
goto IL_0ac7;
|
|
}
|
|
G_B205_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B207_0 = 0;
|
|
G_B207_1 = G_B205_0;
|
|
goto IL_0acc;
|
|
}
|
|
|
|
IL_0ac7:
|
|
{
|
|
uint16_t L_508;
|
|
L_508 = ConstantHelper_GetUInt16WithAllBitsSet_mD3E13D933A06059499F0E0CBE6798D72D175464A_inline(NULL);
|
|
G_B207_0 = ((int32_t)(L_508));
|
|
G_B207_1 = G_B206_0;
|
|
}
|
|
|
|
IL_0acc:
|
|
{
|
|
G_B207_1->___uint16_7 = (uint16_t)G_B207_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_509;
|
|
memset((&L_509), 0, sizeof(L_509));
|
|
Vector_1__ctor_mEA86543744A54FCE590FDBF012FAE9037A5F1606((&L_509), (&V_20), il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 13));
|
|
return L_509;
|
|
}
|
|
|
|
IL_0ad9:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_510 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_511;
|
|
L_511 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_510, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_512 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int16_class->byval_arg) };
|
|
Type_t* L_513;
|
|
L_513 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_512, NULL);
|
|
bool L_514;
|
|
L_514 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_511, L_513, NULL);
|
|
if (!L_514)
|
|
{
|
|
goto IL_0c37;
|
|
}
|
|
}
|
|
{
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_515 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_516 = L_515.___register;
|
|
int16_t L_517 = L_516.___int16_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_518 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_519 = L_518.___register;
|
|
int16_t L_520 = L_519.___int16_0;
|
|
if ((((int32_t)L_517) == ((int32_t)L_520)))
|
|
{
|
|
G_B211_0 = (&V_20);
|
|
goto IL_0b14;
|
|
}
|
|
G_B210_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B212_0 = 0;
|
|
G_B212_1 = G_B210_0;
|
|
goto IL_0b19;
|
|
}
|
|
|
|
IL_0b14:
|
|
{
|
|
int16_t L_521;
|
|
L_521 = ConstantHelper_GetInt16WithAllBitsSet_m70C5F99E624490970E2D4093FE6E800D1849DDFC_inline(NULL);
|
|
G_B212_0 = ((int32_t)(L_521));
|
|
G_B212_1 = G_B211_0;
|
|
}
|
|
|
|
IL_0b19:
|
|
{
|
|
G_B212_1->___int16_0 = (int16_t)G_B212_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_522 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_523 = L_522.___register;
|
|
int16_t L_524 = L_523.___int16_1;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_525 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_526 = L_525.___register;
|
|
int16_t L_527 = L_526.___int16_1;
|
|
if ((((int32_t)L_524) == ((int32_t)L_527)))
|
|
{
|
|
G_B214_0 = (&V_20);
|
|
goto IL_0b3b;
|
|
}
|
|
G_B213_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B215_0 = 0;
|
|
G_B215_1 = G_B213_0;
|
|
goto IL_0b40;
|
|
}
|
|
|
|
IL_0b3b:
|
|
{
|
|
int16_t L_528;
|
|
L_528 = ConstantHelper_GetInt16WithAllBitsSet_m70C5F99E624490970E2D4093FE6E800D1849DDFC_inline(NULL);
|
|
G_B215_0 = ((int32_t)(L_528));
|
|
G_B215_1 = G_B214_0;
|
|
}
|
|
|
|
IL_0b40:
|
|
{
|
|
G_B215_1->___int16_1 = (int16_t)G_B215_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_529 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_530 = L_529.___register;
|
|
int16_t L_531 = L_530.___int16_2;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_532 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_533 = L_532.___register;
|
|
int16_t L_534 = L_533.___int16_2;
|
|
if ((((int32_t)L_531) == ((int32_t)L_534)))
|
|
{
|
|
G_B217_0 = (&V_20);
|
|
goto IL_0b62;
|
|
}
|
|
G_B216_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B218_0 = 0;
|
|
G_B218_1 = G_B216_0;
|
|
goto IL_0b67;
|
|
}
|
|
|
|
IL_0b62:
|
|
{
|
|
int16_t L_535;
|
|
L_535 = ConstantHelper_GetInt16WithAllBitsSet_m70C5F99E624490970E2D4093FE6E800D1849DDFC_inline(NULL);
|
|
G_B218_0 = ((int32_t)(L_535));
|
|
G_B218_1 = G_B217_0;
|
|
}
|
|
|
|
IL_0b67:
|
|
{
|
|
G_B218_1->___int16_2 = (int16_t)G_B218_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_536 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_537 = L_536.___register;
|
|
int16_t L_538 = L_537.___int16_3;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_539 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_540 = L_539.___register;
|
|
int16_t L_541 = L_540.___int16_3;
|
|
if ((((int32_t)L_538) == ((int32_t)L_541)))
|
|
{
|
|
G_B220_0 = (&V_20);
|
|
goto IL_0b89;
|
|
}
|
|
G_B219_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B221_0 = 0;
|
|
G_B221_1 = G_B219_0;
|
|
goto IL_0b8e;
|
|
}
|
|
|
|
IL_0b89:
|
|
{
|
|
int16_t L_542;
|
|
L_542 = ConstantHelper_GetInt16WithAllBitsSet_m70C5F99E624490970E2D4093FE6E800D1849DDFC_inline(NULL);
|
|
G_B221_0 = ((int32_t)(L_542));
|
|
G_B221_1 = G_B220_0;
|
|
}
|
|
|
|
IL_0b8e:
|
|
{
|
|
G_B221_1->___int16_3 = (int16_t)G_B221_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_543 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_544 = L_543.___register;
|
|
int16_t L_545 = L_544.___int16_4;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_546 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_547 = L_546.___register;
|
|
int16_t L_548 = L_547.___int16_4;
|
|
if ((((int32_t)L_545) == ((int32_t)L_548)))
|
|
{
|
|
G_B223_0 = (&V_20);
|
|
goto IL_0bb0;
|
|
}
|
|
G_B222_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B224_0 = 0;
|
|
G_B224_1 = G_B222_0;
|
|
goto IL_0bb5;
|
|
}
|
|
|
|
IL_0bb0:
|
|
{
|
|
int16_t L_549;
|
|
L_549 = ConstantHelper_GetInt16WithAllBitsSet_m70C5F99E624490970E2D4093FE6E800D1849DDFC_inline(NULL);
|
|
G_B224_0 = ((int32_t)(L_549));
|
|
G_B224_1 = G_B223_0;
|
|
}
|
|
|
|
IL_0bb5:
|
|
{
|
|
G_B224_1->___int16_4 = (int16_t)G_B224_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_550 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_551 = L_550.___register;
|
|
int16_t L_552 = L_551.___int16_5;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_553 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_554 = L_553.___register;
|
|
int16_t L_555 = L_554.___int16_5;
|
|
if ((((int32_t)L_552) == ((int32_t)L_555)))
|
|
{
|
|
G_B226_0 = (&V_20);
|
|
goto IL_0bd7;
|
|
}
|
|
G_B225_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B227_0 = 0;
|
|
G_B227_1 = G_B225_0;
|
|
goto IL_0bdc;
|
|
}
|
|
|
|
IL_0bd7:
|
|
{
|
|
int16_t L_556;
|
|
L_556 = ConstantHelper_GetInt16WithAllBitsSet_m70C5F99E624490970E2D4093FE6E800D1849DDFC_inline(NULL);
|
|
G_B227_0 = ((int32_t)(L_556));
|
|
G_B227_1 = G_B226_0;
|
|
}
|
|
|
|
IL_0bdc:
|
|
{
|
|
G_B227_1->___int16_5 = (int16_t)G_B227_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_557 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_558 = L_557.___register;
|
|
int16_t L_559 = L_558.___int16_6;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_560 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_561 = L_560.___register;
|
|
int16_t L_562 = L_561.___int16_6;
|
|
if ((((int32_t)L_559) == ((int32_t)L_562)))
|
|
{
|
|
G_B229_0 = (&V_20);
|
|
goto IL_0bfe;
|
|
}
|
|
G_B228_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B230_0 = 0;
|
|
G_B230_1 = G_B228_0;
|
|
goto IL_0c03;
|
|
}
|
|
|
|
IL_0bfe:
|
|
{
|
|
int16_t L_563;
|
|
L_563 = ConstantHelper_GetInt16WithAllBitsSet_m70C5F99E624490970E2D4093FE6E800D1849DDFC_inline(NULL);
|
|
G_B230_0 = ((int32_t)(L_563));
|
|
G_B230_1 = G_B229_0;
|
|
}
|
|
|
|
IL_0c03:
|
|
{
|
|
G_B230_1->___int16_6 = (int16_t)G_B230_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_564 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_565 = L_564.___register;
|
|
int16_t L_566 = L_565.___int16_7;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_567 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_568 = L_567.___register;
|
|
int16_t L_569 = L_568.___int16_7;
|
|
if ((((int32_t)L_566) == ((int32_t)L_569)))
|
|
{
|
|
G_B232_0 = (&V_20);
|
|
goto IL_0c25;
|
|
}
|
|
G_B231_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B233_0 = 0;
|
|
G_B233_1 = G_B231_0;
|
|
goto IL_0c2a;
|
|
}
|
|
|
|
IL_0c25:
|
|
{
|
|
int16_t L_570;
|
|
L_570 = ConstantHelper_GetInt16WithAllBitsSet_m70C5F99E624490970E2D4093FE6E800D1849DDFC_inline(NULL);
|
|
G_B233_0 = ((int32_t)(L_570));
|
|
G_B233_1 = G_B232_0;
|
|
}
|
|
|
|
IL_0c2a:
|
|
{
|
|
G_B233_1->___int16_7 = (int16_t)G_B233_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_571;
|
|
memset((&L_571), 0, sizeof(L_571));
|
|
Vector_1__ctor_mEA86543744A54FCE590FDBF012FAE9037A5F1606((&L_571), (&V_20), il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 13));
|
|
return L_571;
|
|
}
|
|
|
|
IL_0c37:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_572 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_573;
|
|
L_573 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_572, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_574 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint32_class->byval_arg) };
|
|
Type_t* L_575;
|
|
L_575 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_574, NULL);
|
|
bool L_576;
|
|
L_576 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_573, L_575, NULL);
|
|
if (!L_576)
|
|
{
|
|
goto IL_0cf9;
|
|
}
|
|
}
|
|
{
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_577 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_578 = L_577.___register;
|
|
uint32_t L_579 = L_578.___uint32_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_580 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_581 = L_580.___register;
|
|
uint32_t L_582 = L_581.___uint32_0;
|
|
if ((((int32_t)L_579) == ((int32_t)L_582)))
|
|
{
|
|
G_B237_0 = (&V_20);
|
|
goto IL_0c72;
|
|
}
|
|
G_B236_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B238_0 = ((uint32_t)(0));
|
|
G_B238_1 = G_B236_0;
|
|
goto IL_0c77;
|
|
}
|
|
|
|
IL_0c72:
|
|
{
|
|
uint32_t L_583;
|
|
L_583 = ConstantHelper_GetUInt32WithAllBitsSet_m78CBFE0C29CF227C16D2A9021972A0D54744BCAF_inline(NULL);
|
|
G_B238_0 = L_583;
|
|
G_B238_1 = G_B237_0;
|
|
}
|
|
|
|
IL_0c77:
|
|
{
|
|
G_B238_1->___uint32_0 = G_B238_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_584 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_585 = L_584.___register;
|
|
uint32_t L_586 = L_585.___uint32_1;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_587 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_588 = L_587.___register;
|
|
uint32_t L_589 = L_588.___uint32_1;
|
|
if ((((int32_t)L_586) == ((int32_t)L_589)))
|
|
{
|
|
G_B240_0 = (&V_20);
|
|
goto IL_0c99;
|
|
}
|
|
G_B239_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B241_0 = ((uint32_t)(0));
|
|
G_B241_1 = G_B239_0;
|
|
goto IL_0c9e;
|
|
}
|
|
|
|
IL_0c99:
|
|
{
|
|
uint32_t L_590;
|
|
L_590 = ConstantHelper_GetUInt32WithAllBitsSet_m78CBFE0C29CF227C16D2A9021972A0D54744BCAF_inline(NULL);
|
|
G_B241_0 = L_590;
|
|
G_B241_1 = G_B240_0;
|
|
}
|
|
|
|
IL_0c9e:
|
|
{
|
|
G_B241_1->___uint32_1 = G_B241_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_591 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_592 = L_591.___register;
|
|
uint32_t L_593 = L_592.___uint32_2;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_594 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_595 = L_594.___register;
|
|
uint32_t L_596 = L_595.___uint32_2;
|
|
if ((((int32_t)L_593) == ((int32_t)L_596)))
|
|
{
|
|
G_B243_0 = (&V_20);
|
|
goto IL_0cc0;
|
|
}
|
|
G_B242_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B244_0 = ((uint32_t)(0));
|
|
G_B244_1 = G_B242_0;
|
|
goto IL_0cc5;
|
|
}
|
|
|
|
IL_0cc0:
|
|
{
|
|
uint32_t L_597;
|
|
L_597 = ConstantHelper_GetUInt32WithAllBitsSet_m78CBFE0C29CF227C16D2A9021972A0D54744BCAF_inline(NULL);
|
|
G_B244_0 = L_597;
|
|
G_B244_1 = G_B243_0;
|
|
}
|
|
|
|
IL_0cc5:
|
|
{
|
|
G_B244_1->___uint32_2 = G_B244_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_598 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_599 = L_598.___register;
|
|
uint32_t L_600 = L_599.___uint32_3;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_601 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_602 = L_601.___register;
|
|
uint32_t L_603 = L_602.___uint32_3;
|
|
if ((((int32_t)L_600) == ((int32_t)L_603)))
|
|
{
|
|
G_B246_0 = (&V_20);
|
|
goto IL_0ce7;
|
|
}
|
|
G_B245_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B247_0 = ((uint32_t)(0));
|
|
G_B247_1 = G_B245_0;
|
|
goto IL_0cec;
|
|
}
|
|
|
|
IL_0ce7:
|
|
{
|
|
uint32_t L_604;
|
|
L_604 = ConstantHelper_GetUInt32WithAllBitsSet_m78CBFE0C29CF227C16D2A9021972A0D54744BCAF_inline(NULL);
|
|
G_B247_0 = L_604;
|
|
G_B247_1 = G_B246_0;
|
|
}
|
|
|
|
IL_0cec:
|
|
{
|
|
G_B247_1->___uint32_3 = G_B247_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_605;
|
|
memset((&L_605), 0, sizeof(L_605));
|
|
Vector_1__ctor_mEA86543744A54FCE590FDBF012FAE9037A5F1606((&L_605), (&V_20), il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 13));
|
|
return L_605;
|
|
}
|
|
|
|
IL_0cf9:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_606 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_607;
|
|
L_607 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_606, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_608 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
Type_t* L_609;
|
|
L_609 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_608, NULL);
|
|
bool L_610;
|
|
L_610 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_607, L_609, NULL);
|
|
if (!L_610)
|
|
{
|
|
goto IL_0dbb;
|
|
}
|
|
}
|
|
{
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_611 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_612 = L_611.___register;
|
|
int32_t L_613 = L_612.___int32_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_614 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_615 = L_614.___register;
|
|
int32_t L_616 = L_615.___int32_0;
|
|
if ((((int32_t)L_613) == ((int32_t)L_616)))
|
|
{
|
|
G_B251_0 = (&V_20);
|
|
goto IL_0d34;
|
|
}
|
|
G_B250_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B252_0 = 0;
|
|
G_B252_1 = G_B250_0;
|
|
goto IL_0d39;
|
|
}
|
|
|
|
IL_0d34:
|
|
{
|
|
int32_t L_617;
|
|
L_617 = ConstantHelper_GetInt32WithAllBitsSet_m245101340DDE7277600327D319DF86F1FFEA4FD0_inline(NULL);
|
|
G_B252_0 = L_617;
|
|
G_B252_1 = G_B251_0;
|
|
}
|
|
|
|
IL_0d39:
|
|
{
|
|
G_B252_1->___int32_0 = G_B252_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_618 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_619 = L_618.___register;
|
|
int32_t L_620 = L_619.___int32_1;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_621 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_622 = L_621.___register;
|
|
int32_t L_623 = L_622.___int32_1;
|
|
if ((((int32_t)L_620) == ((int32_t)L_623)))
|
|
{
|
|
G_B254_0 = (&V_20);
|
|
goto IL_0d5b;
|
|
}
|
|
G_B253_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B255_0 = 0;
|
|
G_B255_1 = G_B253_0;
|
|
goto IL_0d60;
|
|
}
|
|
|
|
IL_0d5b:
|
|
{
|
|
int32_t L_624;
|
|
L_624 = ConstantHelper_GetInt32WithAllBitsSet_m245101340DDE7277600327D319DF86F1FFEA4FD0_inline(NULL);
|
|
G_B255_0 = L_624;
|
|
G_B255_1 = G_B254_0;
|
|
}
|
|
|
|
IL_0d60:
|
|
{
|
|
G_B255_1->___int32_1 = G_B255_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_625 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_626 = L_625.___register;
|
|
int32_t L_627 = L_626.___int32_2;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_628 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_629 = L_628.___register;
|
|
int32_t L_630 = L_629.___int32_2;
|
|
if ((((int32_t)L_627) == ((int32_t)L_630)))
|
|
{
|
|
G_B257_0 = (&V_20);
|
|
goto IL_0d82;
|
|
}
|
|
G_B256_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B258_0 = 0;
|
|
G_B258_1 = G_B256_0;
|
|
goto IL_0d87;
|
|
}
|
|
|
|
IL_0d82:
|
|
{
|
|
int32_t L_631;
|
|
L_631 = ConstantHelper_GetInt32WithAllBitsSet_m245101340DDE7277600327D319DF86F1FFEA4FD0_inline(NULL);
|
|
G_B258_0 = L_631;
|
|
G_B258_1 = G_B257_0;
|
|
}
|
|
|
|
IL_0d87:
|
|
{
|
|
G_B258_1->___int32_2 = G_B258_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_632 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_633 = L_632.___register;
|
|
int32_t L_634 = L_633.___int32_3;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_635 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_636 = L_635.___register;
|
|
int32_t L_637 = L_636.___int32_3;
|
|
if ((((int32_t)L_634) == ((int32_t)L_637)))
|
|
{
|
|
G_B260_0 = (&V_20);
|
|
goto IL_0da9;
|
|
}
|
|
G_B259_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B261_0 = 0;
|
|
G_B261_1 = G_B259_0;
|
|
goto IL_0dae;
|
|
}
|
|
|
|
IL_0da9:
|
|
{
|
|
int32_t L_638;
|
|
L_638 = ConstantHelper_GetInt32WithAllBitsSet_m245101340DDE7277600327D319DF86F1FFEA4FD0_inline(NULL);
|
|
G_B261_0 = L_638;
|
|
G_B261_1 = G_B260_0;
|
|
}
|
|
|
|
IL_0dae:
|
|
{
|
|
G_B261_1->___int32_3 = G_B261_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_639;
|
|
memset((&L_639), 0, sizeof(L_639));
|
|
Vector_1__ctor_mEA86543744A54FCE590FDBF012FAE9037A5F1606((&L_639), (&V_20), il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 13));
|
|
return L_639;
|
|
}
|
|
|
|
IL_0dbb:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_640 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_641;
|
|
L_641 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_640, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_642 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint64_class->byval_arg) };
|
|
Type_t* L_643;
|
|
L_643 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_642, NULL);
|
|
bool L_644;
|
|
L_644 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_641, L_643, NULL);
|
|
if (!L_644)
|
|
{
|
|
goto IL_0e2e;
|
|
}
|
|
}
|
|
{
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_645 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_646 = L_645.___register;
|
|
uint64_t L_647 = L_646.___uint64_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_648 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_649 = L_648.___register;
|
|
uint64_t L_650 = L_649.___uint64_0;
|
|
if ((((int64_t)L_647) == ((int64_t)L_650)))
|
|
{
|
|
G_B265_0 = (&V_20);
|
|
goto IL_0df4;
|
|
}
|
|
G_B264_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B266_0 = ((uint64_t)(((int64_t)0)));
|
|
G_B266_1 = G_B264_0;
|
|
goto IL_0df9;
|
|
}
|
|
|
|
IL_0df4:
|
|
{
|
|
uint64_t L_651;
|
|
L_651 = ConstantHelper_GetUInt64WithAllBitsSet_mB7F3E046EE6B1B20C552BF7CF619416E239A5A96_inline(NULL);
|
|
G_B266_0 = L_651;
|
|
G_B266_1 = G_B265_0;
|
|
}
|
|
|
|
IL_0df9:
|
|
{
|
|
G_B266_1->___uint64_0 = G_B266_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_652 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_653 = L_652.___register;
|
|
uint64_t L_654 = L_653.___uint64_1;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_655 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_656 = L_655.___register;
|
|
uint64_t L_657 = L_656.___uint64_1;
|
|
if ((((int64_t)L_654) == ((int64_t)L_657)))
|
|
{
|
|
G_B268_0 = (&V_20);
|
|
goto IL_0e1c;
|
|
}
|
|
G_B267_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B269_0 = ((uint64_t)(((int64_t)0)));
|
|
G_B269_1 = G_B267_0;
|
|
goto IL_0e21;
|
|
}
|
|
|
|
IL_0e1c:
|
|
{
|
|
uint64_t L_658;
|
|
L_658 = ConstantHelper_GetUInt64WithAllBitsSet_mB7F3E046EE6B1B20C552BF7CF619416E239A5A96_inline(NULL);
|
|
G_B269_0 = L_658;
|
|
G_B269_1 = G_B268_0;
|
|
}
|
|
|
|
IL_0e21:
|
|
{
|
|
G_B269_1->___uint64_1 = G_B269_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_659;
|
|
memset((&L_659), 0, sizeof(L_659));
|
|
Vector_1__ctor_mEA86543744A54FCE590FDBF012FAE9037A5F1606((&L_659), (&V_20), il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 13));
|
|
return L_659;
|
|
}
|
|
|
|
IL_0e2e:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_660 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_661;
|
|
L_661 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_660, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_662 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int64_class->byval_arg) };
|
|
Type_t* L_663;
|
|
L_663 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_662, NULL);
|
|
bool L_664;
|
|
L_664 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_661, L_663, NULL);
|
|
if (!L_664)
|
|
{
|
|
goto IL_0ea1;
|
|
}
|
|
}
|
|
{
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_665 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_666 = L_665.___register;
|
|
int64_t L_667 = L_666.___int64_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_668 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_669 = L_668.___register;
|
|
int64_t L_670 = L_669.___int64_0;
|
|
if ((((int64_t)L_667) == ((int64_t)L_670)))
|
|
{
|
|
G_B273_0 = (&V_20);
|
|
goto IL_0e67;
|
|
}
|
|
G_B272_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B274_0 = ((int64_t)0);
|
|
G_B274_1 = G_B272_0;
|
|
goto IL_0e6c;
|
|
}
|
|
|
|
IL_0e67:
|
|
{
|
|
int64_t L_671;
|
|
L_671 = ConstantHelper_GetInt64WithAllBitsSet_m56A9AB64BA5DDD9ECC99424875824591DEFD5C40_inline(NULL);
|
|
G_B274_0 = L_671;
|
|
G_B274_1 = G_B273_0;
|
|
}
|
|
|
|
IL_0e6c:
|
|
{
|
|
G_B274_1->___int64_0 = G_B274_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_672 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_673 = L_672.___register;
|
|
int64_t L_674 = L_673.___int64_1;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_675 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_676 = L_675.___register;
|
|
int64_t L_677 = L_676.___int64_1;
|
|
if ((((int64_t)L_674) == ((int64_t)L_677)))
|
|
{
|
|
G_B276_0 = (&V_20);
|
|
goto IL_0e8f;
|
|
}
|
|
G_B275_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B277_0 = ((int64_t)0);
|
|
G_B277_1 = G_B275_0;
|
|
goto IL_0e94;
|
|
}
|
|
|
|
IL_0e8f:
|
|
{
|
|
int64_t L_678;
|
|
L_678 = ConstantHelper_GetInt64WithAllBitsSet_m56A9AB64BA5DDD9ECC99424875824591DEFD5C40_inline(NULL);
|
|
G_B277_0 = L_678;
|
|
G_B277_1 = G_B276_0;
|
|
}
|
|
|
|
IL_0e94:
|
|
{
|
|
G_B277_1->___int64_1 = G_B277_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_679;
|
|
memset((&L_679), 0, sizeof(L_679));
|
|
Vector_1__ctor_mEA86543744A54FCE590FDBF012FAE9037A5F1606((&L_679), (&V_20), il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 13));
|
|
return L_679;
|
|
}
|
|
|
|
IL_0ea1:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_680 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_681;
|
|
L_681 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_680, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_682 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.single_class->byval_arg) };
|
|
Type_t* L_683;
|
|
L_683 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_682, NULL);
|
|
bool L_684;
|
|
L_684 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_681, L_683, NULL);
|
|
if (!L_684)
|
|
{
|
|
goto IL_0f73;
|
|
}
|
|
}
|
|
{
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_685 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_686 = L_685.___register;
|
|
float L_687 = L_686.___single_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_688 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_689 = L_688.___register;
|
|
float L_690 = L_689.___single_0;
|
|
if ((((float)L_687) == ((float)L_690)))
|
|
{
|
|
G_B281_0 = (&V_20);
|
|
goto IL_0ee0;
|
|
}
|
|
G_B280_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B282_0 = (0.0f);
|
|
G_B282_1 = G_B280_0;
|
|
goto IL_0ee5;
|
|
}
|
|
|
|
IL_0ee0:
|
|
{
|
|
float L_691;
|
|
L_691 = ConstantHelper_GetSingleWithAllBitsSet_m66FC11C0680F744EB8315278910061C9535818C0_inline(NULL);
|
|
G_B282_0 = L_691;
|
|
G_B282_1 = G_B281_0;
|
|
}
|
|
|
|
IL_0ee5:
|
|
{
|
|
G_B282_1->___single_0 = G_B282_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_692 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_693 = L_692.___register;
|
|
float L_694 = L_693.___single_1;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_695 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_696 = L_695.___register;
|
|
float L_697 = L_696.___single_1;
|
|
if ((((float)L_694) == ((float)L_697)))
|
|
{
|
|
G_B284_0 = (&V_20);
|
|
goto IL_0f0b;
|
|
}
|
|
G_B283_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B285_0 = (0.0f);
|
|
G_B285_1 = G_B283_0;
|
|
goto IL_0f10;
|
|
}
|
|
|
|
IL_0f0b:
|
|
{
|
|
float L_698;
|
|
L_698 = ConstantHelper_GetSingleWithAllBitsSet_m66FC11C0680F744EB8315278910061C9535818C0_inline(NULL);
|
|
G_B285_0 = L_698;
|
|
G_B285_1 = G_B284_0;
|
|
}
|
|
|
|
IL_0f10:
|
|
{
|
|
G_B285_1->___single_1 = G_B285_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_699 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_700 = L_699.___register;
|
|
float L_701 = L_700.___single_2;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_702 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_703 = L_702.___register;
|
|
float L_704 = L_703.___single_2;
|
|
if ((((float)L_701) == ((float)L_704)))
|
|
{
|
|
G_B287_0 = (&V_20);
|
|
goto IL_0f36;
|
|
}
|
|
G_B286_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B288_0 = (0.0f);
|
|
G_B288_1 = G_B286_0;
|
|
goto IL_0f3b;
|
|
}
|
|
|
|
IL_0f36:
|
|
{
|
|
float L_705;
|
|
L_705 = ConstantHelper_GetSingleWithAllBitsSet_m66FC11C0680F744EB8315278910061C9535818C0_inline(NULL);
|
|
G_B288_0 = L_705;
|
|
G_B288_1 = G_B287_0;
|
|
}
|
|
|
|
IL_0f3b:
|
|
{
|
|
G_B288_1->___single_2 = G_B288_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_706 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_707 = L_706.___register;
|
|
float L_708 = L_707.___single_3;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_709 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_710 = L_709.___register;
|
|
float L_711 = L_710.___single_3;
|
|
if ((((float)L_708) == ((float)L_711)))
|
|
{
|
|
G_B290_0 = (&V_20);
|
|
goto IL_0f61;
|
|
}
|
|
G_B289_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B291_0 = (0.0f);
|
|
G_B291_1 = G_B289_0;
|
|
goto IL_0f66;
|
|
}
|
|
|
|
IL_0f61:
|
|
{
|
|
float L_712;
|
|
L_712 = ConstantHelper_GetSingleWithAllBitsSet_m66FC11C0680F744EB8315278910061C9535818C0_inline(NULL);
|
|
G_B291_0 = L_712;
|
|
G_B291_1 = G_B290_0;
|
|
}
|
|
|
|
IL_0f66:
|
|
{
|
|
G_B291_1->___single_3 = G_B291_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_713;
|
|
memset((&L_713), 0, sizeof(L_713));
|
|
Vector_1__ctor_mEA86543744A54FCE590FDBF012FAE9037A5F1606((&L_713), (&V_20), il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 13));
|
|
return L_713;
|
|
}
|
|
|
|
IL_0f73:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_714 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_715;
|
|
L_715 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_714, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_716 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.double_class->byval_arg) };
|
|
Type_t* L_717;
|
|
L_717 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_716, NULL);
|
|
bool L_718;
|
|
L_718 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_715, L_717, NULL);
|
|
if (!L_718)
|
|
{
|
|
goto IL_0ff4;
|
|
}
|
|
}
|
|
{
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_719 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_720 = L_719.___register;
|
|
double L_721 = L_720.___double_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_722 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_723 = L_722.___register;
|
|
double L_724 = L_723.___double_0;
|
|
if ((((double)L_721) == ((double)L_724)))
|
|
{
|
|
G_B295_0 = (&V_20);
|
|
goto IL_0fb3;
|
|
}
|
|
G_B294_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B296_0 = (0.0);
|
|
G_B296_1 = G_B294_0;
|
|
goto IL_0fb8;
|
|
}
|
|
|
|
IL_0fb3:
|
|
{
|
|
double L_725;
|
|
L_725 = ConstantHelper_GetDoubleWithAllBitsSet_mF43AF77A6C93B7590B35B20458E80F2BC66AD5F2_inline(NULL);
|
|
G_B296_0 = L_725;
|
|
G_B296_1 = G_B295_0;
|
|
}
|
|
|
|
IL_0fb8:
|
|
{
|
|
G_B296_1->___double_0 = G_B296_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_726 = ___0_left;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_727 = L_726.___register;
|
|
double L_728 = L_727.___double_1;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_729 = ___1_right;
|
|
Register_t483055A1DB8634BA3FBF01BB15D4E94E186A2E7A L_730 = L_729.___register;
|
|
double L_731 = L_730.___double_1;
|
|
if ((((double)L_728) == ((double)L_731)))
|
|
{
|
|
G_B298_0 = (&V_20);
|
|
goto IL_0fe2;
|
|
}
|
|
G_B297_0 = (&V_20);
|
|
}
|
|
{
|
|
G_B299_0 = (0.0);
|
|
G_B299_1 = G_B297_0;
|
|
goto IL_0fe7;
|
|
}
|
|
|
|
IL_0fe2:
|
|
{
|
|
double L_732;
|
|
L_732 = ConstantHelper_GetDoubleWithAllBitsSet_mF43AF77A6C93B7590B35B20458E80F2BC66AD5F2_inline(NULL);
|
|
G_B299_0 = L_732;
|
|
G_B299_1 = G_B298_0;
|
|
}
|
|
|
|
IL_0fe7:
|
|
{
|
|
G_B299_1->___double_1 = G_B299_0;
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_733;
|
|
memset((&L_733), 0, sizeof(L_733));
|
|
Vector_1__ctor_mEA86543744A54FCE590FDBF012FAE9037A5F1606((&L_733), (&V_20), il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 13));
|
|
return L_733;
|
|
}
|
|
|
|
IL_0ff4:
|
|
{
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_734 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_734, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE310274B02A605A3985345944A620D7D2E019A1A)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_734, method);
|
|
}
|
|
}
|
|
// Method Definition Index: 7883
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Vector_1_ScalarEquals_m73081D1B852400C74618D0A814BBED2FE272175D_gshared (uint64_t ___0_left, uint64_t ___1_right, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_1;
|
|
L_1 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_0, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_2 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.byte_class->byval_arg) };
|
|
Type_t* L_3;
|
|
L_3 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_2, NULL);
|
|
bool L_4;
|
|
L_4 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_1, L_3, NULL);
|
|
if (!L_4)
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
uint64_t L_5 = ___0_left;
|
|
uint64_t L_6 = L_5;
|
|
RuntimeObject* L_7 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_6);
|
|
uint64_t L_8 = ___1_right;
|
|
uint64_t L_9 = L_8;
|
|
RuntimeObject* L_10 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_9);
|
|
return (bool)((((int32_t)((*(uint8_t*)UnBox(L_7, il2cpp_defaults.byte_class)))) == ((int32_t)((*(uint8_t*)UnBox(L_10, il2cpp_defaults.byte_class)))))? 1 : 0);
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_11 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_12;
|
|
L_12 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_11, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_13 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.sbyte_class->byval_arg) };
|
|
Type_t* L_14;
|
|
L_14 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_13, NULL);
|
|
bool L_15;
|
|
L_15 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_12, L_14, NULL);
|
|
if (!L_15)
|
|
{
|
|
goto IL_0068;
|
|
}
|
|
}
|
|
{
|
|
uint64_t L_16 = ___0_left;
|
|
uint64_t L_17 = L_16;
|
|
RuntimeObject* L_18 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_17);
|
|
uint64_t L_19 = ___1_right;
|
|
uint64_t L_20 = L_19;
|
|
RuntimeObject* L_21 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_20);
|
|
return (bool)((((int32_t)((*(int8_t*)UnBox(L_18, il2cpp_defaults.sbyte_class)))) == ((int32_t)((*(int8_t*)UnBox(L_21, il2cpp_defaults.sbyte_class)))))? 1 : 0);
|
|
}
|
|
|
|
IL_0068:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_22 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_23;
|
|
L_23 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_22, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_24 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint16_class->byval_arg) };
|
|
Type_t* L_25;
|
|
L_25 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_24, NULL);
|
|
bool L_26;
|
|
L_26 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_23, L_25, NULL);
|
|
if (!L_26)
|
|
{
|
|
goto IL_009c;
|
|
}
|
|
}
|
|
{
|
|
uint64_t L_27 = ___0_left;
|
|
uint64_t L_28 = L_27;
|
|
RuntimeObject* L_29 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_28);
|
|
uint64_t L_30 = ___1_right;
|
|
uint64_t L_31 = L_30;
|
|
RuntimeObject* L_32 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_31);
|
|
return (bool)((((int32_t)((*(uint16_t*)UnBox(L_29, il2cpp_defaults.uint16_class)))) == ((int32_t)((*(uint16_t*)UnBox(L_32, il2cpp_defaults.uint16_class)))))? 1 : 0);
|
|
}
|
|
|
|
IL_009c:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_33 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_34;
|
|
L_34 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_33, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_35 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int16_class->byval_arg) };
|
|
Type_t* L_36;
|
|
L_36 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_35, NULL);
|
|
bool L_37;
|
|
L_37 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_34, L_36, NULL);
|
|
if (!L_37)
|
|
{
|
|
goto IL_00d0;
|
|
}
|
|
}
|
|
{
|
|
uint64_t L_38 = ___0_left;
|
|
uint64_t L_39 = L_38;
|
|
RuntimeObject* L_40 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_39);
|
|
uint64_t L_41 = ___1_right;
|
|
uint64_t L_42 = L_41;
|
|
RuntimeObject* L_43 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_42);
|
|
return (bool)((((int32_t)((*(int16_t*)UnBox(L_40, il2cpp_defaults.int16_class)))) == ((int32_t)((*(int16_t*)UnBox(L_43, il2cpp_defaults.int16_class)))))? 1 : 0);
|
|
}
|
|
|
|
IL_00d0:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_44 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_45;
|
|
L_45 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_44, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_46 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint32_class->byval_arg) };
|
|
Type_t* L_47;
|
|
L_47 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_46, NULL);
|
|
bool L_48;
|
|
L_48 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_45, L_47, NULL);
|
|
if (!L_48)
|
|
{
|
|
goto IL_0104;
|
|
}
|
|
}
|
|
{
|
|
uint64_t L_49 = ___0_left;
|
|
uint64_t L_50 = L_49;
|
|
RuntimeObject* L_51 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_50);
|
|
uint64_t L_52 = ___1_right;
|
|
uint64_t L_53 = L_52;
|
|
RuntimeObject* L_54 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_53);
|
|
return (bool)((((int32_t)((*(uint32_t*)UnBox(L_51, il2cpp_defaults.uint32_class)))) == ((int32_t)((*(uint32_t*)UnBox(L_54, il2cpp_defaults.uint32_class)))))? 1 : 0);
|
|
}
|
|
|
|
IL_0104:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_55 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_56;
|
|
L_56 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_55, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_57 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
Type_t* L_58;
|
|
L_58 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_57, NULL);
|
|
bool L_59;
|
|
L_59 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_56, L_58, NULL);
|
|
if (!L_59)
|
|
{
|
|
goto IL_0138;
|
|
}
|
|
}
|
|
{
|
|
uint64_t L_60 = ___0_left;
|
|
uint64_t L_61 = L_60;
|
|
RuntimeObject* L_62 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_61);
|
|
uint64_t L_63 = ___1_right;
|
|
uint64_t L_64 = L_63;
|
|
RuntimeObject* L_65 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_64);
|
|
return (bool)((((int32_t)((*(int32_t*)UnBox(L_62, il2cpp_defaults.int32_class)))) == ((int32_t)((*(int32_t*)UnBox(L_65, il2cpp_defaults.int32_class)))))? 1 : 0);
|
|
}
|
|
|
|
IL_0138:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_66 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_67;
|
|
L_67 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_66, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_68 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint64_class->byval_arg) };
|
|
Type_t* L_69;
|
|
L_69 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_68, NULL);
|
|
bool L_70;
|
|
L_70 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_67, L_69, NULL);
|
|
if (!L_70)
|
|
{
|
|
goto IL_016c;
|
|
}
|
|
}
|
|
{
|
|
uint64_t L_71 = ___0_left;
|
|
uint64_t L_72 = L_71;
|
|
RuntimeObject* L_73 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_72);
|
|
uint64_t L_74 = ___1_right;
|
|
uint64_t L_75 = L_74;
|
|
RuntimeObject* L_76 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_75);
|
|
return (bool)((((int64_t)((*(uint64_t*)UnBox(L_73, il2cpp_defaults.uint64_class)))) == ((int64_t)((*(uint64_t*)UnBox(L_76, il2cpp_defaults.uint64_class)))))? 1 : 0);
|
|
}
|
|
|
|
IL_016c:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_77 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_78;
|
|
L_78 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_77, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_79 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int64_class->byval_arg) };
|
|
Type_t* L_80;
|
|
L_80 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_79, NULL);
|
|
bool L_81;
|
|
L_81 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_78, L_80, NULL);
|
|
if (!L_81)
|
|
{
|
|
goto IL_01a0;
|
|
}
|
|
}
|
|
{
|
|
uint64_t L_82 = ___0_left;
|
|
uint64_t L_83 = L_82;
|
|
RuntimeObject* L_84 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_83);
|
|
uint64_t L_85 = ___1_right;
|
|
uint64_t L_86 = L_85;
|
|
RuntimeObject* L_87 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_86);
|
|
return (bool)((((int64_t)((*(int64_t*)UnBox(L_84, il2cpp_defaults.int64_class)))) == ((int64_t)((*(int64_t*)UnBox(L_87, il2cpp_defaults.int64_class)))))? 1 : 0);
|
|
}
|
|
|
|
IL_01a0:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_88 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_89;
|
|
L_89 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_88, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_90 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.single_class->byval_arg) };
|
|
Type_t* L_91;
|
|
L_91 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_90, NULL);
|
|
bool L_92;
|
|
L_92 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_89, L_91, NULL);
|
|
if (!L_92)
|
|
{
|
|
goto IL_01d4;
|
|
}
|
|
}
|
|
{
|
|
uint64_t L_93 = ___0_left;
|
|
uint64_t L_94 = L_93;
|
|
RuntimeObject* L_95 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_94);
|
|
uint64_t L_96 = ___1_right;
|
|
uint64_t L_97 = L_96;
|
|
RuntimeObject* L_98 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_97);
|
|
return (bool)((((float)((*(float*)UnBox(L_95, il2cpp_defaults.single_class)))) == ((float)((*(float*)UnBox(L_98, il2cpp_defaults.single_class)))))? 1 : 0);
|
|
}
|
|
|
|
IL_01d4:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_99 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_100;
|
|
L_100 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_99, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_101 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.double_class->byval_arg) };
|
|
Type_t* L_102;
|
|
L_102 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_101, NULL);
|
|
bool L_103;
|
|
L_103 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_100, L_102, NULL);
|
|
if (!L_103)
|
|
{
|
|
goto IL_0208;
|
|
}
|
|
}
|
|
{
|
|
uint64_t L_104 = ___0_left;
|
|
uint64_t L_105 = L_104;
|
|
RuntimeObject* L_106 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_105);
|
|
uint64_t L_107 = ___1_right;
|
|
uint64_t L_108 = L_107;
|
|
RuntimeObject* L_109 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_108);
|
|
return (bool)((((double)((*(double*)UnBox(L_106, il2cpp_defaults.double_class)))) == ((double)((*(double*)UnBox(L_109, il2cpp_defaults.double_class)))))? 1 : 0);
|
|
}
|
|
|
|
IL_0208:
|
|
{
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_110 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_110, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE310274B02A605A3985345944A620D7D2E019A1A)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_110, method);
|
|
}
|
|
}
|
|
// Method Definition Index: 7884
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Vector_1_GetOneValue_mE2DE5D8CFC8D7A4990743C160CD1C4ED71CDA288_gshared (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_1;
|
|
L_1 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_0, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_2 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.byte_class->byval_arg) };
|
|
Type_t* L_3;
|
|
L_3 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_2, NULL);
|
|
bool L_4;
|
|
L_4 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_1, L_3, NULL);
|
|
if (!L_4)
|
|
{
|
|
goto IL_0027;
|
|
}
|
|
}
|
|
{
|
|
uint8_t L_5 = ((uint8_t)1);
|
|
RuntimeObject* L_6 = Box(il2cpp_defaults.byte_class, &L_5);
|
|
return ((*(uint64_t*)UnBox(L_6, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_7 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_8;
|
|
L_8 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_7, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_9 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.sbyte_class->byval_arg) };
|
|
Type_t* L_10;
|
|
L_10 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_9, NULL);
|
|
bool L_11;
|
|
L_11 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_8, L_10, NULL);
|
|
if (!L_11)
|
|
{
|
|
goto IL_004e;
|
|
}
|
|
}
|
|
{
|
|
int8_t L_12 = ((int8_t)1);
|
|
RuntimeObject* L_13 = Box(il2cpp_defaults.sbyte_class, &L_12);
|
|
return ((*(uint64_t*)UnBox(L_13, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_004e:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_14 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_15;
|
|
L_15 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_14, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_16 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint16_class->byval_arg) };
|
|
Type_t* L_17;
|
|
L_17 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_16, NULL);
|
|
bool L_18;
|
|
L_18 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_15, L_17, NULL);
|
|
if (!L_18)
|
|
{
|
|
goto IL_0075;
|
|
}
|
|
}
|
|
{
|
|
uint16_t L_19 = ((uint16_t)1);
|
|
RuntimeObject* L_20 = Box(il2cpp_defaults.uint16_class, &L_19);
|
|
return ((*(uint64_t*)UnBox(L_20, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_0075:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_21 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_22;
|
|
L_22 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_21, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_23 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int16_class->byval_arg) };
|
|
Type_t* L_24;
|
|
L_24 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_23, NULL);
|
|
bool L_25;
|
|
L_25 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_22, L_24, NULL);
|
|
if (!L_25)
|
|
{
|
|
goto IL_009c;
|
|
}
|
|
}
|
|
{
|
|
int16_t L_26 = ((int16_t)1);
|
|
RuntimeObject* L_27 = Box(il2cpp_defaults.int16_class, &L_26);
|
|
return ((*(uint64_t*)UnBox(L_27, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_009c:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_28 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_29;
|
|
L_29 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_28, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_30 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint32_class->byval_arg) };
|
|
Type_t* L_31;
|
|
L_31 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_30, NULL);
|
|
bool L_32;
|
|
L_32 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_29, L_31, NULL);
|
|
if (!L_32)
|
|
{
|
|
goto IL_00c3;
|
|
}
|
|
}
|
|
{
|
|
uint32_t L_33 = ((uint32_t)1);
|
|
RuntimeObject* L_34 = Box(il2cpp_defaults.uint32_class, &L_33);
|
|
return ((*(uint64_t*)UnBox(L_34, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_00c3:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_35 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_36;
|
|
L_36 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_35, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_37 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
Type_t* L_38;
|
|
L_38 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_37, NULL);
|
|
bool L_39;
|
|
L_39 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_36, L_38, NULL);
|
|
if (!L_39)
|
|
{
|
|
goto IL_00ea;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_40 = 1;
|
|
RuntimeObject* L_41 = Box(il2cpp_defaults.int32_class, &L_40);
|
|
return ((*(uint64_t*)UnBox(L_41, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_00ea:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_42 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_43;
|
|
L_43 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_42, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_44 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint64_class->byval_arg) };
|
|
Type_t* L_45;
|
|
L_45 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_44, NULL);
|
|
bool L_46;
|
|
L_46 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_43, L_45, NULL);
|
|
if (!L_46)
|
|
{
|
|
goto IL_0112;
|
|
}
|
|
}
|
|
{
|
|
uint64_t L_47 = ((uint64_t)((int64_t)1));
|
|
RuntimeObject* L_48 = Box(il2cpp_defaults.uint64_class, &L_47);
|
|
return ((*(uint64_t*)UnBox(L_48, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_0112:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_49 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_50;
|
|
L_50 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_49, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_51 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int64_class->byval_arg) };
|
|
Type_t* L_52;
|
|
L_52 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_51, NULL);
|
|
bool L_53;
|
|
L_53 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_50, L_52, NULL);
|
|
if (!L_53)
|
|
{
|
|
goto IL_013a;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_54 = ((int64_t)1);
|
|
RuntimeObject* L_55 = Box(il2cpp_defaults.int64_class, &L_54);
|
|
return ((*(uint64_t*)UnBox(L_55, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_013a:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_56 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_57;
|
|
L_57 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_56, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_58 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.single_class->byval_arg) };
|
|
Type_t* L_59;
|
|
L_59 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_58, NULL);
|
|
bool L_60;
|
|
L_60 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_57, L_59, NULL);
|
|
if (!L_60)
|
|
{
|
|
goto IL_0165;
|
|
}
|
|
}
|
|
{
|
|
float L_61 = (1.0f);
|
|
RuntimeObject* L_62 = Box(il2cpp_defaults.single_class, &L_61);
|
|
return ((*(uint64_t*)UnBox(L_62, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_0165:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_63 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_64;
|
|
L_64 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_63, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_65 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.double_class->byval_arg) };
|
|
Type_t* L_66;
|
|
L_66 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_65, NULL);
|
|
bool L_67;
|
|
L_67 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_64, L_66, NULL);
|
|
if (!L_67)
|
|
{
|
|
goto IL_0194;
|
|
}
|
|
}
|
|
{
|
|
double L_68 = (1.0);
|
|
RuntimeObject* L_69 = Box(il2cpp_defaults.double_class, &L_68);
|
|
return ((*(uint64_t*)UnBox(L_69, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_0194:
|
|
{
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_70 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_70, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE310274B02A605A3985345944A620D7D2E019A1A)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_70, method);
|
|
}
|
|
}
|
|
// Method Definition Index: 7885
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Vector_1_GetAllBitsSetValue_m99E582A6A7DA5089B26FE42E5F8FDE26A6005ED0_gshared (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_1;
|
|
L_1 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_0, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_2 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.byte_class->byval_arg) };
|
|
Type_t* L_3;
|
|
L_3 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_2, NULL);
|
|
bool L_4;
|
|
L_4 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_1, L_3, NULL);
|
|
if (!L_4)
|
|
{
|
|
goto IL_002b;
|
|
}
|
|
}
|
|
{
|
|
uint8_t L_5;
|
|
L_5 = ConstantHelper_GetByteWithAllBitsSet_m38E318296F5FB9BAE51C97C1AE058716CFC889D7_inline(NULL);
|
|
uint8_t L_6 = L_5;
|
|
RuntimeObject* L_7 = Box(il2cpp_defaults.byte_class, &L_6);
|
|
return ((*(uint64_t*)UnBox(L_7, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_8 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_9;
|
|
L_9 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_8, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_10 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.sbyte_class->byval_arg) };
|
|
Type_t* L_11;
|
|
L_11 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_10, NULL);
|
|
bool L_12;
|
|
L_12 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_9, L_11, NULL);
|
|
if (!L_12)
|
|
{
|
|
goto IL_0056;
|
|
}
|
|
}
|
|
{
|
|
int8_t L_13;
|
|
L_13 = ConstantHelper_GetSByteWithAllBitsSet_mB6B97526769DCCB7B78CCF446F28AAB0D1B5CAE3_inline(NULL);
|
|
int8_t L_14 = L_13;
|
|
RuntimeObject* L_15 = Box(il2cpp_defaults.sbyte_class, &L_14);
|
|
return ((*(uint64_t*)UnBox(L_15, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_0056:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_16 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_17;
|
|
L_17 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_16, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_18 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint16_class->byval_arg) };
|
|
Type_t* L_19;
|
|
L_19 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_18, NULL);
|
|
bool L_20;
|
|
L_20 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_17, L_19, NULL);
|
|
if (!L_20)
|
|
{
|
|
goto IL_0081;
|
|
}
|
|
}
|
|
{
|
|
uint16_t L_21;
|
|
L_21 = ConstantHelper_GetUInt16WithAllBitsSet_mD3E13D933A06059499F0E0CBE6798D72D175464A_inline(NULL);
|
|
uint16_t L_22 = L_21;
|
|
RuntimeObject* L_23 = Box(il2cpp_defaults.uint16_class, &L_22);
|
|
return ((*(uint64_t*)UnBox(L_23, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_0081:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_24 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_25;
|
|
L_25 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_24, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_26 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int16_class->byval_arg) };
|
|
Type_t* L_27;
|
|
L_27 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_26, NULL);
|
|
bool L_28;
|
|
L_28 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_25, L_27, NULL);
|
|
if (!L_28)
|
|
{
|
|
goto IL_00ac;
|
|
}
|
|
}
|
|
{
|
|
int16_t L_29;
|
|
L_29 = ConstantHelper_GetInt16WithAllBitsSet_m70C5F99E624490970E2D4093FE6E800D1849DDFC_inline(NULL);
|
|
int16_t L_30 = L_29;
|
|
RuntimeObject* L_31 = Box(il2cpp_defaults.int16_class, &L_30);
|
|
return ((*(uint64_t*)UnBox(L_31, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_00ac:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_32 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_33;
|
|
L_33 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_32, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_34 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint32_class->byval_arg) };
|
|
Type_t* L_35;
|
|
L_35 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_34, NULL);
|
|
bool L_36;
|
|
L_36 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_33, L_35, NULL);
|
|
if (!L_36)
|
|
{
|
|
goto IL_00d7;
|
|
}
|
|
}
|
|
{
|
|
uint32_t L_37;
|
|
L_37 = ConstantHelper_GetUInt32WithAllBitsSet_m78CBFE0C29CF227C16D2A9021972A0D54744BCAF_inline(NULL);
|
|
uint32_t L_38 = L_37;
|
|
RuntimeObject* L_39 = Box(il2cpp_defaults.uint32_class, &L_38);
|
|
return ((*(uint64_t*)UnBox(L_39, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_00d7:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_40 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_41;
|
|
L_41 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_40, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_42 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
Type_t* L_43;
|
|
L_43 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_42, NULL);
|
|
bool L_44;
|
|
L_44 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_41, L_43, NULL);
|
|
if (!L_44)
|
|
{
|
|
goto IL_0102;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_45;
|
|
L_45 = ConstantHelper_GetInt32WithAllBitsSet_m245101340DDE7277600327D319DF86F1FFEA4FD0_inline(NULL);
|
|
int32_t L_46 = L_45;
|
|
RuntimeObject* L_47 = Box(il2cpp_defaults.int32_class, &L_46);
|
|
return ((*(uint64_t*)UnBox(L_47, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_0102:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_48 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_49;
|
|
L_49 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_48, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_50 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint64_class->byval_arg) };
|
|
Type_t* L_51;
|
|
L_51 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_50, NULL);
|
|
bool L_52;
|
|
L_52 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_49, L_51, NULL);
|
|
if (!L_52)
|
|
{
|
|
goto IL_012d;
|
|
}
|
|
}
|
|
{
|
|
uint64_t L_53;
|
|
L_53 = ConstantHelper_GetUInt64WithAllBitsSet_mB7F3E046EE6B1B20C552BF7CF619416E239A5A96_inline(NULL);
|
|
uint64_t L_54 = L_53;
|
|
RuntimeObject* L_55 = Box(il2cpp_defaults.uint64_class, &L_54);
|
|
return ((*(uint64_t*)UnBox(L_55, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_012d:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_56 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_57;
|
|
L_57 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_56, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_58 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int64_class->byval_arg) };
|
|
Type_t* L_59;
|
|
L_59 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_58, NULL);
|
|
bool L_60;
|
|
L_60 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_57, L_59, NULL);
|
|
if (!L_60)
|
|
{
|
|
goto IL_0158;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_61;
|
|
L_61 = ConstantHelper_GetInt64WithAllBitsSet_m56A9AB64BA5DDD9ECC99424875824591DEFD5C40_inline(NULL);
|
|
int64_t L_62 = L_61;
|
|
RuntimeObject* L_63 = Box(il2cpp_defaults.int64_class, &L_62);
|
|
return ((*(uint64_t*)UnBox(L_63, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_0158:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_64 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_65;
|
|
L_65 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_64, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_66 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.single_class->byval_arg) };
|
|
Type_t* L_67;
|
|
L_67 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_66, NULL);
|
|
bool L_68;
|
|
L_68 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_65, L_67, NULL);
|
|
if (!L_68)
|
|
{
|
|
goto IL_0183;
|
|
}
|
|
}
|
|
{
|
|
float L_69;
|
|
L_69 = ConstantHelper_GetSingleWithAllBitsSet_m66FC11C0680F744EB8315278910061C9535818C0_inline(NULL);
|
|
float L_70 = L_69;
|
|
RuntimeObject* L_71 = Box(il2cpp_defaults.single_class, &L_70);
|
|
return ((*(uint64_t*)UnBox(L_71, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_0183:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_72 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_73;
|
|
L_73 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_72, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_74 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.double_class->byval_arg) };
|
|
Type_t* L_75;
|
|
L_75 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_74, NULL);
|
|
bool L_76;
|
|
L_76 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_73, L_75, NULL);
|
|
if (!L_76)
|
|
{
|
|
goto IL_01ae;
|
|
}
|
|
}
|
|
{
|
|
double L_77;
|
|
L_77 = ConstantHelper_GetDoubleWithAllBitsSet_mF43AF77A6C93B7590B35B20458E80F2BC66AD5F2_inline(NULL);
|
|
double L_78 = L_77;
|
|
RuntimeObject* L_79 = Box(il2cpp_defaults.double_class, &L_78);
|
|
return ((*(uint64_t*)UnBox(L_79, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_01ae:
|
|
{
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_80 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_80, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE310274B02A605A3985345944A620D7D2E019A1A)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_80, method);
|
|
}
|
|
}
|
|
// Method Definition Index: 7886
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Vector_1__cctor_m152F538F7C3F6DB8EA8C03902F8A68FF06A70109_gshared (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0;
|
|
L_0 = Vector_1_InitializeCount_mE29E088973A17B81B830C30831075135FC8E263A(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 14));
|
|
((Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1)))->___s_count = L_0;
|
|
il2cpp_codegen_initobj((&((Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1)))->___s_zero), sizeof(Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A));
|
|
uint64_t L_1;
|
|
L_1 = Vector_1_GetOneValue_mE2DE5D8CFC8D7A4990743C160CD1C4ED71CDA288_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 15));
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_2;
|
|
memset((&L_2), 0, sizeof(L_2));
|
|
Vector_1__ctor_m1B5D6A9264B4450B3C14BD8FF9430354A337F2D6((&L_2), L_1, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 16));
|
|
((Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1)))->___s_one = L_2;
|
|
uint64_t L_3;
|
|
L_3 = Vector_1_GetAllBitsSetValue_m99E582A6A7DA5089B26FE42E5F8FDE26A6005ED0_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 17));
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
Vector_1__ctor_m1B5D6A9264B4450B3C14BD8FF9430354A337F2D6((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 16));
|
|
((Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1)))->___s_allOnes = L_4;
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
// Method Definition Index: 1221
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Double_GetHashCode_m3761FC05AD24D97A68FA1E8412A9454DF3880E32_inline (double* __this, const RuntimeMethod* method)
|
|
{
|
|
int64_t V_0 = 0;
|
|
{
|
|
double L_0 = *((double*)__this);
|
|
int64_t L_1;
|
|
L_1 = BitConverter_DoubleToInt64Bits_m4F42741818550F9956B5FBAF88C051F4DE5B0AE6_inline(L_0, NULL);
|
|
V_0 = L_1;
|
|
int64_t L_2 = V_0;
|
|
if ((((int64_t)((int64_t)(((int64_t)il2cpp_codegen_subtract(L_2, ((int64_t)1)))&((int64_t)(std::numeric_limits<int64_t>::max)())))) < ((int64_t)((int64_t)9218868437227405312LL))))
|
|
{
|
|
goto IL_002d;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_3 = V_0;
|
|
V_0 = ((int64_t)(L_3&((int64_t)9218868437227405312LL)));
|
|
}
|
|
|
|
IL_002d:
|
|
{
|
|
int64_t L_4 = V_0;
|
|
int64_t L_5 = V_0;
|
|
return ((int32_t)(((int32_t)L_4)^((int32_t)((int64_t)(L_5>>((int32_t)32))))));
|
|
}
|
|
}
|
|
// Method Definition Index: 8326
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* NumberFormatInfo_get_NumberGroupSeparator_m0556B092AA471513B1EDC31C047712226D39BEB6_inline (NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = __this->___numberGroupSeparator;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 7856
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint8_t ConstantHelper_GetByteWithAllBitsSet_m38E318296F5FB9BAE51C97C1AE058716CFC889D7_inline (const RuntimeMethod* method)
|
|
{
|
|
uint8_t V_0 = 0x0;
|
|
{
|
|
V_0 = (uint8_t)0;
|
|
*((int8_t*)((uintptr_t)(&V_0))) = (int8_t)((int32_t)255);
|
|
uint8_t L_0 = V_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 7857
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int8_t ConstantHelper_GetSByteWithAllBitsSet_mB6B97526769DCCB7B78CCF446F28AAB0D1B5CAE3_inline (const RuntimeMethod* method)
|
|
{
|
|
int8_t V_0 = 0x0;
|
|
{
|
|
V_0 = (int8_t)0;
|
|
*((int8_t*)((uintptr_t)(&V_0))) = (int8_t)(-1);
|
|
int8_t L_0 = V_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 7858
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint16_t ConstantHelper_GetUInt16WithAllBitsSet_mD3E13D933A06059499F0E0CBE6798D72D175464A_inline (const RuntimeMethod* method)
|
|
{
|
|
uint16_t V_0 = 0;
|
|
{
|
|
V_0 = (uint16_t)0;
|
|
*((int16_t*)((uintptr_t)(&V_0))) = (int16_t)((int32_t)65535);
|
|
uint16_t L_0 = V_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 7859
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int16_t ConstantHelper_GetInt16WithAllBitsSet_m70C5F99E624490970E2D4093FE6E800D1849DDFC_inline (const RuntimeMethod* method)
|
|
{
|
|
int16_t V_0 = 0;
|
|
{
|
|
V_0 = (int16_t)0;
|
|
*((int16_t*)((uintptr_t)(&V_0))) = (int16_t)(-1);
|
|
int16_t L_0 = V_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 7860
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t ConstantHelper_GetUInt32WithAllBitsSet_m78CBFE0C29CF227C16D2A9021972A0D54744BCAF_inline (const RuntimeMethod* method)
|
|
{
|
|
uint32_t V_0 = 0;
|
|
{
|
|
V_0 = 0;
|
|
*((int32_t*)((uintptr_t)(&V_0))) = (int32_t)(-1);
|
|
uint32_t L_0 = V_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 7861
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ConstantHelper_GetInt32WithAllBitsSet_m245101340DDE7277600327D319DF86F1FFEA4FD0_inline (const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
V_0 = 0;
|
|
*((int32_t*)((uintptr_t)(&V_0))) = (int32_t)(-1);
|
|
int32_t L_0 = V_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 7862
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint64_t ConstantHelper_GetUInt64WithAllBitsSet_mB7F3E046EE6B1B20C552BF7CF619416E239A5A96_inline (const RuntimeMethod* method)
|
|
{
|
|
uint64_t V_0 = 0;
|
|
{
|
|
V_0 = ((int64_t)0);
|
|
*((int64_t*)((uintptr_t)(&V_0))) = (int64_t)((int64_t)(-1));
|
|
uint64_t L_0 = V_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 7863
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t ConstantHelper_GetInt64WithAllBitsSet_m56A9AB64BA5DDD9ECC99424875824591DEFD5C40_inline (const RuntimeMethod* method)
|
|
{
|
|
int64_t V_0 = 0;
|
|
{
|
|
V_0 = ((int64_t)0);
|
|
*((int64_t*)((uintptr_t)(&V_0))) = (int64_t)((int64_t)(-1));
|
|
int64_t L_0 = V_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 7864
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float ConstantHelper_GetSingleWithAllBitsSet_m66FC11C0680F744EB8315278910061C9535818C0_inline (const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
{
|
|
V_0 = (0.0f);
|
|
*((int32_t*)((uintptr_t)(&V_0))) = (int32_t)(-1);
|
|
float L_0 = V_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 7865
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR double ConstantHelper_GetDoubleWithAllBitsSet_mF43AF77A6C93B7590B35B20458E80F2BC66AD5F2_inline (const RuntimeMethod* method)
|
|
{
|
|
double V_0 = 0.0;
|
|
{
|
|
V_0 = (0.0);
|
|
*((int64_t*)((uintptr_t)(&V_0))) = (int64_t)((int64_t)(-1));
|
|
double L_0 = V_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 7866
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Vector_1_get_Count_m6DF09E4443FC90521D33C892BE69D32B04D85A15_gshared_inline (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_0 = ((Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1)))->___s_count;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 7874
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Vector_1_Equals_mD7F4E0B493DD44E2685BC17F8D6EAD92342CBC29_gshared_inline (Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = ___0_obj;
|
|
if (((RuntimeObject*)IsInstSealed((RuntimeObject*)L_0, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 0))))
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
RuntimeObject* L_1 = ___0_obj;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
bool L_2;
|
|
L_2 = Vector_1_Equals_m729FD34A0F43A7C8A8DF285BCED9B5B31D579FE8(__this, ((*(Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489*)UnBox(L_1, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 0)))), il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 7));
|
|
return L_2;
|
|
}
|
|
}
|
|
// Method Definition Index: 7883
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Vector_1_ScalarEquals_m4E13E30219B0D2AADB58AD6E5CB2B54B9FCBFAAE_gshared_inline (uint16_t ___0_left, uint16_t ___1_right, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_1;
|
|
L_1 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_0, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_2 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.byte_class->byval_arg) };
|
|
Type_t* L_3;
|
|
L_3 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_2, NULL);
|
|
bool L_4;
|
|
L_4 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_1, L_3, NULL);
|
|
if (!L_4)
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
uint16_t L_5 = ___0_left;
|
|
uint16_t L_6 = L_5;
|
|
RuntimeObject* L_7 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_6);
|
|
uint16_t L_8 = ___1_right;
|
|
uint16_t L_9 = L_8;
|
|
RuntimeObject* L_10 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_9);
|
|
return (bool)((((int32_t)((*(uint8_t*)UnBox(L_7, il2cpp_defaults.byte_class)))) == ((int32_t)((*(uint8_t*)UnBox(L_10, il2cpp_defaults.byte_class)))))? 1 : 0);
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_11 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_12;
|
|
L_12 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_11, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_13 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.sbyte_class->byval_arg) };
|
|
Type_t* L_14;
|
|
L_14 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_13, NULL);
|
|
bool L_15;
|
|
L_15 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_12, L_14, NULL);
|
|
if (!L_15)
|
|
{
|
|
goto IL_0068;
|
|
}
|
|
}
|
|
{
|
|
uint16_t L_16 = ___0_left;
|
|
uint16_t L_17 = L_16;
|
|
RuntimeObject* L_18 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_17);
|
|
uint16_t L_19 = ___1_right;
|
|
uint16_t L_20 = L_19;
|
|
RuntimeObject* L_21 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_20);
|
|
return (bool)((((int32_t)((*(int8_t*)UnBox(L_18, il2cpp_defaults.sbyte_class)))) == ((int32_t)((*(int8_t*)UnBox(L_21, il2cpp_defaults.sbyte_class)))))? 1 : 0);
|
|
}
|
|
|
|
IL_0068:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_22 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_23;
|
|
L_23 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_22, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_24 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint16_class->byval_arg) };
|
|
Type_t* L_25;
|
|
L_25 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_24, NULL);
|
|
bool L_26;
|
|
L_26 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_23, L_25, NULL);
|
|
if (!L_26)
|
|
{
|
|
goto IL_009c;
|
|
}
|
|
}
|
|
{
|
|
uint16_t L_27 = ___0_left;
|
|
uint16_t L_28 = L_27;
|
|
RuntimeObject* L_29 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_28);
|
|
uint16_t L_30 = ___1_right;
|
|
uint16_t L_31 = L_30;
|
|
RuntimeObject* L_32 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_31);
|
|
return (bool)((((int32_t)((*(uint16_t*)UnBox(L_29, il2cpp_defaults.uint16_class)))) == ((int32_t)((*(uint16_t*)UnBox(L_32, il2cpp_defaults.uint16_class)))))? 1 : 0);
|
|
}
|
|
|
|
IL_009c:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_33 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_34;
|
|
L_34 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_33, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_35 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int16_class->byval_arg) };
|
|
Type_t* L_36;
|
|
L_36 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_35, NULL);
|
|
bool L_37;
|
|
L_37 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_34, L_36, NULL);
|
|
if (!L_37)
|
|
{
|
|
goto IL_00d0;
|
|
}
|
|
}
|
|
{
|
|
uint16_t L_38 = ___0_left;
|
|
uint16_t L_39 = L_38;
|
|
RuntimeObject* L_40 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_39);
|
|
uint16_t L_41 = ___1_right;
|
|
uint16_t L_42 = L_41;
|
|
RuntimeObject* L_43 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_42);
|
|
return (bool)((((int32_t)((*(int16_t*)UnBox(L_40, il2cpp_defaults.int16_class)))) == ((int32_t)((*(int16_t*)UnBox(L_43, il2cpp_defaults.int16_class)))))? 1 : 0);
|
|
}
|
|
|
|
IL_00d0:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_44 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_45;
|
|
L_45 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_44, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_46 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint32_class->byval_arg) };
|
|
Type_t* L_47;
|
|
L_47 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_46, NULL);
|
|
bool L_48;
|
|
L_48 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_45, L_47, NULL);
|
|
if (!L_48)
|
|
{
|
|
goto IL_0104;
|
|
}
|
|
}
|
|
{
|
|
uint16_t L_49 = ___0_left;
|
|
uint16_t L_50 = L_49;
|
|
RuntimeObject* L_51 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_50);
|
|
uint16_t L_52 = ___1_right;
|
|
uint16_t L_53 = L_52;
|
|
RuntimeObject* L_54 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_53);
|
|
return (bool)((((int32_t)((*(uint32_t*)UnBox(L_51, il2cpp_defaults.uint32_class)))) == ((int32_t)((*(uint32_t*)UnBox(L_54, il2cpp_defaults.uint32_class)))))? 1 : 0);
|
|
}
|
|
|
|
IL_0104:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_55 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_56;
|
|
L_56 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_55, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_57 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
Type_t* L_58;
|
|
L_58 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_57, NULL);
|
|
bool L_59;
|
|
L_59 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_56, L_58, NULL);
|
|
if (!L_59)
|
|
{
|
|
goto IL_0138;
|
|
}
|
|
}
|
|
{
|
|
uint16_t L_60 = ___0_left;
|
|
uint16_t L_61 = L_60;
|
|
RuntimeObject* L_62 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_61);
|
|
uint16_t L_63 = ___1_right;
|
|
uint16_t L_64 = L_63;
|
|
RuntimeObject* L_65 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_64);
|
|
return (bool)((((int32_t)((*(int32_t*)UnBox(L_62, il2cpp_defaults.int32_class)))) == ((int32_t)((*(int32_t*)UnBox(L_65, il2cpp_defaults.int32_class)))))? 1 : 0);
|
|
}
|
|
|
|
IL_0138:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_66 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_67;
|
|
L_67 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_66, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_68 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint64_class->byval_arg) };
|
|
Type_t* L_69;
|
|
L_69 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_68, NULL);
|
|
bool L_70;
|
|
L_70 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_67, L_69, NULL);
|
|
if (!L_70)
|
|
{
|
|
goto IL_016c;
|
|
}
|
|
}
|
|
{
|
|
uint16_t L_71 = ___0_left;
|
|
uint16_t L_72 = L_71;
|
|
RuntimeObject* L_73 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_72);
|
|
uint16_t L_74 = ___1_right;
|
|
uint16_t L_75 = L_74;
|
|
RuntimeObject* L_76 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_75);
|
|
return (bool)((((int64_t)((*(uint64_t*)UnBox(L_73, il2cpp_defaults.uint64_class)))) == ((int64_t)((*(uint64_t*)UnBox(L_76, il2cpp_defaults.uint64_class)))))? 1 : 0);
|
|
}
|
|
|
|
IL_016c:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_77 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_78;
|
|
L_78 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_77, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_79 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int64_class->byval_arg) };
|
|
Type_t* L_80;
|
|
L_80 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_79, NULL);
|
|
bool L_81;
|
|
L_81 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_78, L_80, NULL);
|
|
if (!L_81)
|
|
{
|
|
goto IL_01a0;
|
|
}
|
|
}
|
|
{
|
|
uint16_t L_82 = ___0_left;
|
|
uint16_t L_83 = L_82;
|
|
RuntimeObject* L_84 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_83);
|
|
uint16_t L_85 = ___1_right;
|
|
uint16_t L_86 = L_85;
|
|
RuntimeObject* L_87 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_86);
|
|
return (bool)((((int64_t)((*(int64_t*)UnBox(L_84, il2cpp_defaults.int64_class)))) == ((int64_t)((*(int64_t*)UnBox(L_87, il2cpp_defaults.int64_class)))))? 1 : 0);
|
|
}
|
|
|
|
IL_01a0:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_88 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_89;
|
|
L_89 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_88, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_90 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.single_class->byval_arg) };
|
|
Type_t* L_91;
|
|
L_91 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_90, NULL);
|
|
bool L_92;
|
|
L_92 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_89, L_91, NULL);
|
|
if (!L_92)
|
|
{
|
|
goto IL_01d4;
|
|
}
|
|
}
|
|
{
|
|
uint16_t L_93 = ___0_left;
|
|
uint16_t L_94 = L_93;
|
|
RuntimeObject* L_95 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_94);
|
|
uint16_t L_96 = ___1_right;
|
|
uint16_t L_97 = L_96;
|
|
RuntimeObject* L_98 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_97);
|
|
return (bool)((((float)((*(float*)UnBox(L_95, il2cpp_defaults.single_class)))) == ((float)((*(float*)UnBox(L_98, il2cpp_defaults.single_class)))))? 1 : 0);
|
|
}
|
|
|
|
IL_01d4:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_99 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_100;
|
|
L_100 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_99, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_101 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.double_class->byval_arg) };
|
|
Type_t* L_102;
|
|
L_102 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_101, NULL);
|
|
bool L_103;
|
|
L_103 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_100, L_102, NULL);
|
|
if (!L_103)
|
|
{
|
|
goto IL_0208;
|
|
}
|
|
}
|
|
{
|
|
uint16_t L_104 = ___0_left;
|
|
uint16_t L_105 = L_104;
|
|
RuntimeObject* L_106 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_105);
|
|
uint16_t L_107 = ___1_right;
|
|
uint16_t L_108 = L_107;
|
|
RuntimeObject* L_109 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_108);
|
|
return (bool)((((double)((*(double*)UnBox(L_106, il2cpp_defaults.double_class)))) == ((double)((*(double*)UnBox(L_109, il2cpp_defaults.double_class)))))? 1 : 0);
|
|
}
|
|
|
|
IL_0208:
|
|
{
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_110 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_110, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE310274B02A605A3985345944A620D7D2E019A1A)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_110, method);
|
|
}
|
|
}
|
|
// Method Definition Index: 7879
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Vector_1_op_Equality_mB42F3DAE52C3BC7579B302E623196C45A5DEAC6B_gshared_inline (Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 ___0_left, Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 ___1_right, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector_1_tACF5C606E327928B31CCD8E09C9224DCA7065489 L_0 = ___1_right;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
bool L_1;
|
|
L_1 = Vector_1_Equals_m729FD34A0F43A7C8A8DF285BCED9B5B31D579FE8((&___0_left), L_0, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 7));
|
|
return L_1;
|
|
}
|
|
}
|
|
// Method Definition Index: 7884
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint16_t Vector_1_GetOneValue_m7E814AFD17E4D390C12EF731DA01203D262D9953_gshared_inline (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_1;
|
|
L_1 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_0, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_2 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.byte_class->byval_arg) };
|
|
Type_t* L_3;
|
|
L_3 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_2, NULL);
|
|
bool L_4;
|
|
L_4 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_1, L_3, NULL);
|
|
if (!L_4)
|
|
{
|
|
goto IL_0027;
|
|
}
|
|
}
|
|
{
|
|
uint8_t L_5 = ((uint8_t)1);
|
|
RuntimeObject* L_6 = Box(il2cpp_defaults.byte_class, &L_5);
|
|
return ((*(uint16_t*)UnBox(L_6, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_7 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_8;
|
|
L_8 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_7, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_9 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.sbyte_class->byval_arg) };
|
|
Type_t* L_10;
|
|
L_10 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_9, NULL);
|
|
bool L_11;
|
|
L_11 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_8, L_10, NULL);
|
|
if (!L_11)
|
|
{
|
|
goto IL_004e;
|
|
}
|
|
}
|
|
{
|
|
int8_t L_12 = ((int8_t)1);
|
|
RuntimeObject* L_13 = Box(il2cpp_defaults.sbyte_class, &L_12);
|
|
return ((*(uint16_t*)UnBox(L_13, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_004e:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_14 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_15;
|
|
L_15 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_14, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_16 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint16_class->byval_arg) };
|
|
Type_t* L_17;
|
|
L_17 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_16, NULL);
|
|
bool L_18;
|
|
L_18 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_15, L_17, NULL);
|
|
if (!L_18)
|
|
{
|
|
goto IL_0075;
|
|
}
|
|
}
|
|
{
|
|
uint16_t L_19 = ((uint16_t)1);
|
|
RuntimeObject* L_20 = Box(il2cpp_defaults.uint16_class, &L_19);
|
|
return ((*(uint16_t*)UnBox(L_20, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_0075:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_21 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_22;
|
|
L_22 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_21, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_23 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int16_class->byval_arg) };
|
|
Type_t* L_24;
|
|
L_24 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_23, NULL);
|
|
bool L_25;
|
|
L_25 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_22, L_24, NULL);
|
|
if (!L_25)
|
|
{
|
|
goto IL_009c;
|
|
}
|
|
}
|
|
{
|
|
int16_t L_26 = ((int16_t)1);
|
|
RuntimeObject* L_27 = Box(il2cpp_defaults.int16_class, &L_26);
|
|
return ((*(uint16_t*)UnBox(L_27, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_009c:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_28 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_29;
|
|
L_29 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_28, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_30 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint32_class->byval_arg) };
|
|
Type_t* L_31;
|
|
L_31 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_30, NULL);
|
|
bool L_32;
|
|
L_32 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_29, L_31, NULL);
|
|
if (!L_32)
|
|
{
|
|
goto IL_00c3;
|
|
}
|
|
}
|
|
{
|
|
uint32_t L_33 = ((uint32_t)1);
|
|
RuntimeObject* L_34 = Box(il2cpp_defaults.uint32_class, &L_33);
|
|
return ((*(uint16_t*)UnBox(L_34, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_00c3:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_35 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_36;
|
|
L_36 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_35, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_37 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
Type_t* L_38;
|
|
L_38 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_37, NULL);
|
|
bool L_39;
|
|
L_39 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_36, L_38, NULL);
|
|
if (!L_39)
|
|
{
|
|
goto IL_00ea;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_40 = 1;
|
|
RuntimeObject* L_41 = Box(il2cpp_defaults.int32_class, &L_40);
|
|
return ((*(uint16_t*)UnBox(L_41, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_00ea:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_42 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_43;
|
|
L_43 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_42, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_44 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint64_class->byval_arg) };
|
|
Type_t* L_45;
|
|
L_45 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_44, NULL);
|
|
bool L_46;
|
|
L_46 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_43, L_45, NULL);
|
|
if (!L_46)
|
|
{
|
|
goto IL_0112;
|
|
}
|
|
}
|
|
{
|
|
uint64_t L_47 = ((uint64_t)((int64_t)1));
|
|
RuntimeObject* L_48 = Box(il2cpp_defaults.uint64_class, &L_47);
|
|
return ((*(uint16_t*)UnBox(L_48, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_0112:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_49 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_50;
|
|
L_50 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_49, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_51 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int64_class->byval_arg) };
|
|
Type_t* L_52;
|
|
L_52 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_51, NULL);
|
|
bool L_53;
|
|
L_53 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_50, L_52, NULL);
|
|
if (!L_53)
|
|
{
|
|
goto IL_013a;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_54 = ((int64_t)1);
|
|
RuntimeObject* L_55 = Box(il2cpp_defaults.int64_class, &L_54);
|
|
return ((*(uint16_t*)UnBox(L_55, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_013a:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_56 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_57;
|
|
L_57 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_56, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_58 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.single_class->byval_arg) };
|
|
Type_t* L_59;
|
|
L_59 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_58, NULL);
|
|
bool L_60;
|
|
L_60 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_57, L_59, NULL);
|
|
if (!L_60)
|
|
{
|
|
goto IL_0165;
|
|
}
|
|
}
|
|
{
|
|
float L_61 = (1.0f);
|
|
RuntimeObject* L_62 = Box(il2cpp_defaults.single_class, &L_61);
|
|
return ((*(uint16_t*)UnBox(L_62, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_0165:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_63 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_64;
|
|
L_64 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_63, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_65 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.double_class->byval_arg) };
|
|
Type_t* L_66;
|
|
L_66 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_65, NULL);
|
|
bool L_67;
|
|
L_67 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_64, L_66, NULL);
|
|
if (!L_67)
|
|
{
|
|
goto IL_0194;
|
|
}
|
|
}
|
|
{
|
|
double L_68 = (1.0);
|
|
RuntimeObject* L_69 = Box(il2cpp_defaults.double_class, &L_68);
|
|
return ((*(uint16_t*)UnBox(L_69, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_0194:
|
|
{
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_70 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_70, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE310274B02A605A3985345944A620D7D2E019A1A)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_70, method);
|
|
}
|
|
}
|
|
// Method Definition Index: 7885
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint16_t Vector_1_GetAllBitsSetValue_m854DE079EA89F97089D3EF29D7C31F081F420580_gshared_inline (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_1;
|
|
L_1 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_0, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_2 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.byte_class->byval_arg) };
|
|
Type_t* L_3;
|
|
L_3 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_2, NULL);
|
|
bool L_4;
|
|
L_4 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_1, L_3, NULL);
|
|
if (!L_4)
|
|
{
|
|
goto IL_002b;
|
|
}
|
|
}
|
|
{
|
|
uint8_t L_5;
|
|
L_5 = ConstantHelper_GetByteWithAllBitsSet_m38E318296F5FB9BAE51C97C1AE058716CFC889D7_inline(NULL);
|
|
uint8_t L_6 = L_5;
|
|
RuntimeObject* L_7 = Box(il2cpp_defaults.byte_class, &L_6);
|
|
return ((*(uint16_t*)UnBox(L_7, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_8 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_9;
|
|
L_9 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_8, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_10 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.sbyte_class->byval_arg) };
|
|
Type_t* L_11;
|
|
L_11 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_10, NULL);
|
|
bool L_12;
|
|
L_12 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_9, L_11, NULL);
|
|
if (!L_12)
|
|
{
|
|
goto IL_0056;
|
|
}
|
|
}
|
|
{
|
|
int8_t L_13;
|
|
L_13 = ConstantHelper_GetSByteWithAllBitsSet_mB6B97526769DCCB7B78CCF446F28AAB0D1B5CAE3_inline(NULL);
|
|
int8_t L_14 = L_13;
|
|
RuntimeObject* L_15 = Box(il2cpp_defaults.sbyte_class, &L_14);
|
|
return ((*(uint16_t*)UnBox(L_15, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_0056:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_16 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_17;
|
|
L_17 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_16, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_18 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint16_class->byval_arg) };
|
|
Type_t* L_19;
|
|
L_19 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_18, NULL);
|
|
bool L_20;
|
|
L_20 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_17, L_19, NULL);
|
|
if (!L_20)
|
|
{
|
|
goto IL_0081;
|
|
}
|
|
}
|
|
{
|
|
uint16_t L_21;
|
|
L_21 = ConstantHelper_GetUInt16WithAllBitsSet_mD3E13D933A06059499F0E0CBE6798D72D175464A_inline(NULL);
|
|
uint16_t L_22 = L_21;
|
|
RuntimeObject* L_23 = Box(il2cpp_defaults.uint16_class, &L_22);
|
|
return ((*(uint16_t*)UnBox(L_23, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_0081:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_24 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_25;
|
|
L_25 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_24, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_26 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int16_class->byval_arg) };
|
|
Type_t* L_27;
|
|
L_27 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_26, NULL);
|
|
bool L_28;
|
|
L_28 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_25, L_27, NULL);
|
|
if (!L_28)
|
|
{
|
|
goto IL_00ac;
|
|
}
|
|
}
|
|
{
|
|
int16_t L_29;
|
|
L_29 = ConstantHelper_GetInt16WithAllBitsSet_m70C5F99E624490970E2D4093FE6E800D1849DDFC_inline(NULL);
|
|
int16_t L_30 = L_29;
|
|
RuntimeObject* L_31 = Box(il2cpp_defaults.int16_class, &L_30);
|
|
return ((*(uint16_t*)UnBox(L_31, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_00ac:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_32 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_33;
|
|
L_33 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_32, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_34 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint32_class->byval_arg) };
|
|
Type_t* L_35;
|
|
L_35 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_34, NULL);
|
|
bool L_36;
|
|
L_36 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_33, L_35, NULL);
|
|
if (!L_36)
|
|
{
|
|
goto IL_00d7;
|
|
}
|
|
}
|
|
{
|
|
uint32_t L_37;
|
|
L_37 = ConstantHelper_GetUInt32WithAllBitsSet_m78CBFE0C29CF227C16D2A9021972A0D54744BCAF_inline(NULL);
|
|
uint32_t L_38 = L_37;
|
|
RuntimeObject* L_39 = Box(il2cpp_defaults.uint32_class, &L_38);
|
|
return ((*(uint16_t*)UnBox(L_39, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_00d7:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_40 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_41;
|
|
L_41 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_40, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_42 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
Type_t* L_43;
|
|
L_43 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_42, NULL);
|
|
bool L_44;
|
|
L_44 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_41, L_43, NULL);
|
|
if (!L_44)
|
|
{
|
|
goto IL_0102;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_45;
|
|
L_45 = ConstantHelper_GetInt32WithAllBitsSet_m245101340DDE7277600327D319DF86F1FFEA4FD0_inline(NULL);
|
|
int32_t L_46 = L_45;
|
|
RuntimeObject* L_47 = Box(il2cpp_defaults.int32_class, &L_46);
|
|
return ((*(uint16_t*)UnBox(L_47, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_0102:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_48 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_49;
|
|
L_49 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_48, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_50 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint64_class->byval_arg) };
|
|
Type_t* L_51;
|
|
L_51 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_50, NULL);
|
|
bool L_52;
|
|
L_52 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_49, L_51, NULL);
|
|
if (!L_52)
|
|
{
|
|
goto IL_012d;
|
|
}
|
|
}
|
|
{
|
|
uint64_t L_53;
|
|
L_53 = ConstantHelper_GetUInt64WithAllBitsSet_mB7F3E046EE6B1B20C552BF7CF619416E239A5A96_inline(NULL);
|
|
uint64_t L_54 = L_53;
|
|
RuntimeObject* L_55 = Box(il2cpp_defaults.uint64_class, &L_54);
|
|
return ((*(uint16_t*)UnBox(L_55, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_012d:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_56 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_57;
|
|
L_57 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_56, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_58 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int64_class->byval_arg) };
|
|
Type_t* L_59;
|
|
L_59 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_58, NULL);
|
|
bool L_60;
|
|
L_60 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_57, L_59, NULL);
|
|
if (!L_60)
|
|
{
|
|
goto IL_0158;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_61;
|
|
L_61 = ConstantHelper_GetInt64WithAllBitsSet_m56A9AB64BA5DDD9ECC99424875824591DEFD5C40_inline(NULL);
|
|
int64_t L_62 = L_61;
|
|
RuntimeObject* L_63 = Box(il2cpp_defaults.int64_class, &L_62);
|
|
return ((*(uint16_t*)UnBox(L_63, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_0158:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_64 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_65;
|
|
L_65 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_64, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_66 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.single_class->byval_arg) };
|
|
Type_t* L_67;
|
|
L_67 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_66, NULL);
|
|
bool L_68;
|
|
L_68 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_65, L_67, NULL);
|
|
if (!L_68)
|
|
{
|
|
goto IL_0183;
|
|
}
|
|
}
|
|
{
|
|
float L_69;
|
|
L_69 = ConstantHelper_GetSingleWithAllBitsSet_m66FC11C0680F744EB8315278910061C9535818C0_inline(NULL);
|
|
float L_70 = L_69;
|
|
RuntimeObject* L_71 = Box(il2cpp_defaults.single_class, &L_70);
|
|
return ((*(uint16_t*)UnBox(L_71, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_0183:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_72 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_73;
|
|
L_73 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_72, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_74 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.double_class->byval_arg) };
|
|
Type_t* L_75;
|
|
L_75 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_74, NULL);
|
|
bool L_76;
|
|
L_76 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_73, L_75, NULL);
|
|
if (!L_76)
|
|
{
|
|
goto IL_01ae;
|
|
}
|
|
}
|
|
{
|
|
double L_77;
|
|
L_77 = ConstantHelper_GetDoubleWithAllBitsSet_mF43AF77A6C93B7590B35B20458E80F2BC66AD5F2_inline(NULL);
|
|
double L_78 = L_77;
|
|
RuntimeObject* L_79 = Box(il2cpp_defaults.double_class, &L_78);
|
|
return ((*(uint16_t*)UnBox(L_79, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_01ae:
|
|
{
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_80 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_80, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE310274B02A605A3985345944A620D7D2E019A1A)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_80, method);
|
|
}
|
|
}
|
|
// Method Definition Index: 7866
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Vector_1_get_Count_mC75C8C6E913E7FF8A3D10467D6DADE41711EF3CC_gshared_inline (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
int32_t L_0 = ((Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1)))->___s_count;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 7874
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Vector_1_Equals_mE275DCDE4DC3B6FB30AB80ACEAC8363207BA9BEC_gshared_inline (Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = ___0_obj;
|
|
if (((RuntimeObject*)IsInstSealed((RuntimeObject*)L_0, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 0))))
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
RuntimeObject* L_1 = ___0_obj;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
bool L_2;
|
|
L_2 = Vector_1_Equals_mAE01D42B31EB54893DC4DB1BE8A99216AF784C27(__this, ((*(Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A*)UnBox(L_1, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 0)))), il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 7));
|
|
return L_2;
|
|
}
|
|
}
|
|
// Method Definition Index: 7883
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Vector_1_ScalarEquals_m73081D1B852400C74618D0A814BBED2FE272175D_gshared_inline (uint64_t ___0_left, uint64_t ___1_right, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_1;
|
|
L_1 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_0, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_2 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.byte_class->byval_arg) };
|
|
Type_t* L_3;
|
|
L_3 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_2, NULL);
|
|
bool L_4;
|
|
L_4 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_1, L_3, NULL);
|
|
if (!L_4)
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
uint64_t L_5 = ___0_left;
|
|
uint64_t L_6 = L_5;
|
|
RuntimeObject* L_7 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_6);
|
|
uint64_t L_8 = ___1_right;
|
|
uint64_t L_9 = L_8;
|
|
RuntimeObject* L_10 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_9);
|
|
return (bool)((((int32_t)((*(uint8_t*)UnBox(L_7, il2cpp_defaults.byte_class)))) == ((int32_t)((*(uint8_t*)UnBox(L_10, il2cpp_defaults.byte_class)))))? 1 : 0);
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_11 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_12;
|
|
L_12 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_11, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_13 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.sbyte_class->byval_arg) };
|
|
Type_t* L_14;
|
|
L_14 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_13, NULL);
|
|
bool L_15;
|
|
L_15 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_12, L_14, NULL);
|
|
if (!L_15)
|
|
{
|
|
goto IL_0068;
|
|
}
|
|
}
|
|
{
|
|
uint64_t L_16 = ___0_left;
|
|
uint64_t L_17 = L_16;
|
|
RuntimeObject* L_18 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_17);
|
|
uint64_t L_19 = ___1_right;
|
|
uint64_t L_20 = L_19;
|
|
RuntimeObject* L_21 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_20);
|
|
return (bool)((((int32_t)((*(int8_t*)UnBox(L_18, il2cpp_defaults.sbyte_class)))) == ((int32_t)((*(int8_t*)UnBox(L_21, il2cpp_defaults.sbyte_class)))))? 1 : 0);
|
|
}
|
|
|
|
IL_0068:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_22 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_23;
|
|
L_23 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_22, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_24 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint16_class->byval_arg) };
|
|
Type_t* L_25;
|
|
L_25 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_24, NULL);
|
|
bool L_26;
|
|
L_26 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_23, L_25, NULL);
|
|
if (!L_26)
|
|
{
|
|
goto IL_009c;
|
|
}
|
|
}
|
|
{
|
|
uint64_t L_27 = ___0_left;
|
|
uint64_t L_28 = L_27;
|
|
RuntimeObject* L_29 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_28);
|
|
uint64_t L_30 = ___1_right;
|
|
uint64_t L_31 = L_30;
|
|
RuntimeObject* L_32 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_31);
|
|
return (bool)((((int32_t)((*(uint16_t*)UnBox(L_29, il2cpp_defaults.uint16_class)))) == ((int32_t)((*(uint16_t*)UnBox(L_32, il2cpp_defaults.uint16_class)))))? 1 : 0);
|
|
}
|
|
|
|
IL_009c:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_33 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_34;
|
|
L_34 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_33, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_35 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int16_class->byval_arg) };
|
|
Type_t* L_36;
|
|
L_36 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_35, NULL);
|
|
bool L_37;
|
|
L_37 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_34, L_36, NULL);
|
|
if (!L_37)
|
|
{
|
|
goto IL_00d0;
|
|
}
|
|
}
|
|
{
|
|
uint64_t L_38 = ___0_left;
|
|
uint64_t L_39 = L_38;
|
|
RuntimeObject* L_40 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_39);
|
|
uint64_t L_41 = ___1_right;
|
|
uint64_t L_42 = L_41;
|
|
RuntimeObject* L_43 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_42);
|
|
return (bool)((((int32_t)((*(int16_t*)UnBox(L_40, il2cpp_defaults.int16_class)))) == ((int32_t)((*(int16_t*)UnBox(L_43, il2cpp_defaults.int16_class)))))? 1 : 0);
|
|
}
|
|
|
|
IL_00d0:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_44 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_45;
|
|
L_45 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_44, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_46 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint32_class->byval_arg) };
|
|
Type_t* L_47;
|
|
L_47 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_46, NULL);
|
|
bool L_48;
|
|
L_48 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_45, L_47, NULL);
|
|
if (!L_48)
|
|
{
|
|
goto IL_0104;
|
|
}
|
|
}
|
|
{
|
|
uint64_t L_49 = ___0_left;
|
|
uint64_t L_50 = L_49;
|
|
RuntimeObject* L_51 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_50);
|
|
uint64_t L_52 = ___1_right;
|
|
uint64_t L_53 = L_52;
|
|
RuntimeObject* L_54 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_53);
|
|
return (bool)((((int32_t)((*(uint32_t*)UnBox(L_51, il2cpp_defaults.uint32_class)))) == ((int32_t)((*(uint32_t*)UnBox(L_54, il2cpp_defaults.uint32_class)))))? 1 : 0);
|
|
}
|
|
|
|
IL_0104:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_55 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_56;
|
|
L_56 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_55, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_57 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
Type_t* L_58;
|
|
L_58 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_57, NULL);
|
|
bool L_59;
|
|
L_59 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_56, L_58, NULL);
|
|
if (!L_59)
|
|
{
|
|
goto IL_0138;
|
|
}
|
|
}
|
|
{
|
|
uint64_t L_60 = ___0_left;
|
|
uint64_t L_61 = L_60;
|
|
RuntimeObject* L_62 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_61);
|
|
uint64_t L_63 = ___1_right;
|
|
uint64_t L_64 = L_63;
|
|
RuntimeObject* L_65 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_64);
|
|
return (bool)((((int32_t)((*(int32_t*)UnBox(L_62, il2cpp_defaults.int32_class)))) == ((int32_t)((*(int32_t*)UnBox(L_65, il2cpp_defaults.int32_class)))))? 1 : 0);
|
|
}
|
|
|
|
IL_0138:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_66 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_67;
|
|
L_67 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_66, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_68 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint64_class->byval_arg) };
|
|
Type_t* L_69;
|
|
L_69 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_68, NULL);
|
|
bool L_70;
|
|
L_70 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_67, L_69, NULL);
|
|
if (!L_70)
|
|
{
|
|
goto IL_016c;
|
|
}
|
|
}
|
|
{
|
|
uint64_t L_71 = ___0_left;
|
|
uint64_t L_72 = L_71;
|
|
RuntimeObject* L_73 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_72);
|
|
uint64_t L_74 = ___1_right;
|
|
uint64_t L_75 = L_74;
|
|
RuntimeObject* L_76 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_75);
|
|
return (bool)((((int64_t)((*(uint64_t*)UnBox(L_73, il2cpp_defaults.uint64_class)))) == ((int64_t)((*(uint64_t*)UnBox(L_76, il2cpp_defaults.uint64_class)))))? 1 : 0);
|
|
}
|
|
|
|
IL_016c:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_77 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_78;
|
|
L_78 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_77, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_79 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int64_class->byval_arg) };
|
|
Type_t* L_80;
|
|
L_80 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_79, NULL);
|
|
bool L_81;
|
|
L_81 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_78, L_80, NULL);
|
|
if (!L_81)
|
|
{
|
|
goto IL_01a0;
|
|
}
|
|
}
|
|
{
|
|
uint64_t L_82 = ___0_left;
|
|
uint64_t L_83 = L_82;
|
|
RuntimeObject* L_84 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_83);
|
|
uint64_t L_85 = ___1_right;
|
|
uint64_t L_86 = L_85;
|
|
RuntimeObject* L_87 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_86);
|
|
return (bool)((((int64_t)((*(int64_t*)UnBox(L_84, il2cpp_defaults.int64_class)))) == ((int64_t)((*(int64_t*)UnBox(L_87, il2cpp_defaults.int64_class)))))? 1 : 0);
|
|
}
|
|
|
|
IL_01a0:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_88 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_89;
|
|
L_89 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_88, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_90 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.single_class->byval_arg) };
|
|
Type_t* L_91;
|
|
L_91 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_90, NULL);
|
|
bool L_92;
|
|
L_92 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_89, L_91, NULL);
|
|
if (!L_92)
|
|
{
|
|
goto IL_01d4;
|
|
}
|
|
}
|
|
{
|
|
uint64_t L_93 = ___0_left;
|
|
uint64_t L_94 = L_93;
|
|
RuntimeObject* L_95 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_94);
|
|
uint64_t L_96 = ___1_right;
|
|
uint64_t L_97 = L_96;
|
|
RuntimeObject* L_98 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_97);
|
|
return (bool)((((float)((*(float*)UnBox(L_95, il2cpp_defaults.single_class)))) == ((float)((*(float*)UnBox(L_98, il2cpp_defaults.single_class)))))? 1 : 0);
|
|
}
|
|
|
|
IL_01d4:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_99 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_100;
|
|
L_100 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_99, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_101 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.double_class->byval_arg) };
|
|
Type_t* L_102;
|
|
L_102 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_101, NULL);
|
|
bool L_103;
|
|
L_103 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_100, L_102, NULL);
|
|
if (!L_103)
|
|
{
|
|
goto IL_0208;
|
|
}
|
|
}
|
|
{
|
|
uint64_t L_104 = ___0_left;
|
|
uint64_t L_105 = L_104;
|
|
RuntimeObject* L_106 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_105);
|
|
uint64_t L_107 = ___1_right;
|
|
uint64_t L_108 = L_107;
|
|
RuntimeObject* L_109 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_108);
|
|
return (bool)((((double)((*(double*)UnBox(L_106, il2cpp_defaults.double_class)))) == ((double)((*(double*)UnBox(L_109, il2cpp_defaults.double_class)))))? 1 : 0);
|
|
}
|
|
|
|
IL_0208:
|
|
{
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_110 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_110, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE310274B02A605A3985345944A620D7D2E019A1A)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_110, method);
|
|
}
|
|
}
|
|
// Method Definition Index: 7879
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Vector_1_op_Equality_mD4D4AE7733CACE50CA2FCFFFB0A16818EEC01293_gshared_inline (Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A ___0_left, Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A ___1_right, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector_1_t566D05A9DE75BCD8F12F1E09AC3F8A4BC01BF92A L_0 = ___1_right;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
bool L_1;
|
|
L_1 = Vector_1_Equals_mAE01D42B31EB54893DC4DB1BE8A99216AF784C27((&___0_left), L_0, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 7));
|
|
return L_1;
|
|
}
|
|
}
|
|
// Method Definition Index: 7884
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint64_t Vector_1_GetOneValue_mE2DE5D8CFC8D7A4990743C160CD1C4ED71CDA288_gshared_inline (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_1;
|
|
L_1 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_0, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_2 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.byte_class->byval_arg) };
|
|
Type_t* L_3;
|
|
L_3 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_2, NULL);
|
|
bool L_4;
|
|
L_4 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_1, L_3, NULL);
|
|
if (!L_4)
|
|
{
|
|
goto IL_0027;
|
|
}
|
|
}
|
|
{
|
|
uint8_t L_5 = ((uint8_t)1);
|
|
RuntimeObject* L_6 = Box(il2cpp_defaults.byte_class, &L_5);
|
|
return ((*(uint64_t*)UnBox(L_6, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_7 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_8;
|
|
L_8 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_7, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_9 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.sbyte_class->byval_arg) };
|
|
Type_t* L_10;
|
|
L_10 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_9, NULL);
|
|
bool L_11;
|
|
L_11 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_8, L_10, NULL);
|
|
if (!L_11)
|
|
{
|
|
goto IL_004e;
|
|
}
|
|
}
|
|
{
|
|
int8_t L_12 = ((int8_t)1);
|
|
RuntimeObject* L_13 = Box(il2cpp_defaults.sbyte_class, &L_12);
|
|
return ((*(uint64_t*)UnBox(L_13, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_004e:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_14 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_15;
|
|
L_15 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_14, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_16 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint16_class->byval_arg) };
|
|
Type_t* L_17;
|
|
L_17 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_16, NULL);
|
|
bool L_18;
|
|
L_18 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_15, L_17, NULL);
|
|
if (!L_18)
|
|
{
|
|
goto IL_0075;
|
|
}
|
|
}
|
|
{
|
|
uint16_t L_19 = ((uint16_t)1);
|
|
RuntimeObject* L_20 = Box(il2cpp_defaults.uint16_class, &L_19);
|
|
return ((*(uint64_t*)UnBox(L_20, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_0075:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_21 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_22;
|
|
L_22 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_21, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_23 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int16_class->byval_arg) };
|
|
Type_t* L_24;
|
|
L_24 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_23, NULL);
|
|
bool L_25;
|
|
L_25 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_22, L_24, NULL);
|
|
if (!L_25)
|
|
{
|
|
goto IL_009c;
|
|
}
|
|
}
|
|
{
|
|
int16_t L_26 = ((int16_t)1);
|
|
RuntimeObject* L_27 = Box(il2cpp_defaults.int16_class, &L_26);
|
|
return ((*(uint64_t*)UnBox(L_27, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_009c:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_28 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_29;
|
|
L_29 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_28, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_30 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint32_class->byval_arg) };
|
|
Type_t* L_31;
|
|
L_31 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_30, NULL);
|
|
bool L_32;
|
|
L_32 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_29, L_31, NULL);
|
|
if (!L_32)
|
|
{
|
|
goto IL_00c3;
|
|
}
|
|
}
|
|
{
|
|
uint32_t L_33 = ((uint32_t)1);
|
|
RuntimeObject* L_34 = Box(il2cpp_defaults.uint32_class, &L_33);
|
|
return ((*(uint64_t*)UnBox(L_34, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_00c3:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_35 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_36;
|
|
L_36 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_35, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_37 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
Type_t* L_38;
|
|
L_38 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_37, NULL);
|
|
bool L_39;
|
|
L_39 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_36, L_38, NULL);
|
|
if (!L_39)
|
|
{
|
|
goto IL_00ea;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_40 = 1;
|
|
RuntimeObject* L_41 = Box(il2cpp_defaults.int32_class, &L_40);
|
|
return ((*(uint64_t*)UnBox(L_41, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_00ea:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_42 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_43;
|
|
L_43 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_42, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_44 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint64_class->byval_arg) };
|
|
Type_t* L_45;
|
|
L_45 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_44, NULL);
|
|
bool L_46;
|
|
L_46 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_43, L_45, NULL);
|
|
if (!L_46)
|
|
{
|
|
goto IL_0112;
|
|
}
|
|
}
|
|
{
|
|
uint64_t L_47 = ((uint64_t)((int64_t)1));
|
|
RuntimeObject* L_48 = Box(il2cpp_defaults.uint64_class, &L_47);
|
|
return ((*(uint64_t*)UnBox(L_48, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_0112:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_49 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_50;
|
|
L_50 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_49, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_51 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int64_class->byval_arg) };
|
|
Type_t* L_52;
|
|
L_52 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_51, NULL);
|
|
bool L_53;
|
|
L_53 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_50, L_52, NULL);
|
|
if (!L_53)
|
|
{
|
|
goto IL_013a;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_54 = ((int64_t)1);
|
|
RuntimeObject* L_55 = Box(il2cpp_defaults.int64_class, &L_54);
|
|
return ((*(uint64_t*)UnBox(L_55, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_013a:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_56 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_57;
|
|
L_57 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_56, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_58 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.single_class->byval_arg) };
|
|
Type_t* L_59;
|
|
L_59 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_58, NULL);
|
|
bool L_60;
|
|
L_60 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_57, L_59, NULL);
|
|
if (!L_60)
|
|
{
|
|
goto IL_0165;
|
|
}
|
|
}
|
|
{
|
|
float L_61 = (1.0f);
|
|
RuntimeObject* L_62 = Box(il2cpp_defaults.single_class, &L_61);
|
|
return ((*(uint64_t*)UnBox(L_62, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_0165:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_63 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_64;
|
|
L_64 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_63, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_65 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.double_class->byval_arg) };
|
|
Type_t* L_66;
|
|
L_66 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_65, NULL);
|
|
bool L_67;
|
|
L_67 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_64, L_66, NULL);
|
|
if (!L_67)
|
|
{
|
|
goto IL_0194;
|
|
}
|
|
}
|
|
{
|
|
double L_68 = (1.0);
|
|
RuntimeObject* L_69 = Box(il2cpp_defaults.double_class, &L_68);
|
|
return ((*(uint64_t*)UnBox(L_69, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_0194:
|
|
{
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_70 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_70, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE310274B02A605A3985345944A620D7D2E019A1A)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_70, method);
|
|
}
|
|
}
|
|
// Method Definition Index: 7885
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint64_t Vector_1_GetAllBitsSetValue_m99E582A6A7DA5089B26FE42E5F8FDE26A6005ED0_gshared_inline (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_1;
|
|
L_1 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_0, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_2 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.byte_class->byval_arg) };
|
|
Type_t* L_3;
|
|
L_3 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_2, NULL);
|
|
bool L_4;
|
|
L_4 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_1, L_3, NULL);
|
|
if (!L_4)
|
|
{
|
|
goto IL_002b;
|
|
}
|
|
}
|
|
{
|
|
uint8_t L_5;
|
|
L_5 = ConstantHelper_GetByteWithAllBitsSet_m38E318296F5FB9BAE51C97C1AE058716CFC889D7_inline(NULL);
|
|
uint8_t L_6 = L_5;
|
|
RuntimeObject* L_7 = Box(il2cpp_defaults.byte_class, &L_6);
|
|
return ((*(uint64_t*)UnBox(L_7, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_8 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_9;
|
|
L_9 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_8, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_10 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.sbyte_class->byval_arg) };
|
|
Type_t* L_11;
|
|
L_11 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_10, NULL);
|
|
bool L_12;
|
|
L_12 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_9, L_11, NULL);
|
|
if (!L_12)
|
|
{
|
|
goto IL_0056;
|
|
}
|
|
}
|
|
{
|
|
int8_t L_13;
|
|
L_13 = ConstantHelper_GetSByteWithAllBitsSet_mB6B97526769DCCB7B78CCF446F28AAB0D1B5CAE3_inline(NULL);
|
|
int8_t L_14 = L_13;
|
|
RuntimeObject* L_15 = Box(il2cpp_defaults.sbyte_class, &L_14);
|
|
return ((*(uint64_t*)UnBox(L_15, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_0056:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_16 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_17;
|
|
L_17 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_16, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_18 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint16_class->byval_arg) };
|
|
Type_t* L_19;
|
|
L_19 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_18, NULL);
|
|
bool L_20;
|
|
L_20 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_17, L_19, NULL);
|
|
if (!L_20)
|
|
{
|
|
goto IL_0081;
|
|
}
|
|
}
|
|
{
|
|
uint16_t L_21;
|
|
L_21 = ConstantHelper_GetUInt16WithAllBitsSet_mD3E13D933A06059499F0E0CBE6798D72D175464A_inline(NULL);
|
|
uint16_t L_22 = L_21;
|
|
RuntimeObject* L_23 = Box(il2cpp_defaults.uint16_class, &L_22);
|
|
return ((*(uint64_t*)UnBox(L_23, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_0081:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_24 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_25;
|
|
L_25 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_24, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_26 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int16_class->byval_arg) };
|
|
Type_t* L_27;
|
|
L_27 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_26, NULL);
|
|
bool L_28;
|
|
L_28 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_25, L_27, NULL);
|
|
if (!L_28)
|
|
{
|
|
goto IL_00ac;
|
|
}
|
|
}
|
|
{
|
|
int16_t L_29;
|
|
L_29 = ConstantHelper_GetInt16WithAllBitsSet_m70C5F99E624490970E2D4093FE6E800D1849DDFC_inline(NULL);
|
|
int16_t L_30 = L_29;
|
|
RuntimeObject* L_31 = Box(il2cpp_defaults.int16_class, &L_30);
|
|
return ((*(uint64_t*)UnBox(L_31, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_00ac:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_32 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_33;
|
|
L_33 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_32, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_34 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint32_class->byval_arg) };
|
|
Type_t* L_35;
|
|
L_35 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_34, NULL);
|
|
bool L_36;
|
|
L_36 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_33, L_35, NULL);
|
|
if (!L_36)
|
|
{
|
|
goto IL_00d7;
|
|
}
|
|
}
|
|
{
|
|
uint32_t L_37;
|
|
L_37 = ConstantHelper_GetUInt32WithAllBitsSet_m78CBFE0C29CF227C16D2A9021972A0D54744BCAF_inline(NULL);
|
|
uint32_t L_38 = L_37;
|
|
RuntimeObject* L_39 = Box(il2cpp_defaults.uint32_class, &L_38);
|
|
return ((*(uint64_t*)UnBox(L_39, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_00d7:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_40 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_41;
|
|
L_41 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_40, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_42 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
Type_t* L_43;
|
|
L_43 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_42, NULL);
|
|
bool L_44;
|
|
L_44 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_41, L_43, NULL);
|
|
if (!L_44)
|
|
{
|
|
goto IL_0102;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_45;
|
|
L_45 = ConstantHelper_GetInt32WithAllBitsSet_m245101340DDE7277600327D319DF86F1FFEA4FD0_inline(NULL);
|
|
int32_t L_46 = L_45;
|
|
RuntimeObject* L_47 = Box(il2cpp_defaults.int32_class, &L_46);
|
|
return ((*(uint64_t*)UnBox(L_47, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_0102:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_48 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_49;
|
|
L_49 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_48, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_50 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.uint64_class->byval_arg) };
|
|
Type_t* L_51;
|
|
L_51 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_50, NULL);
|
|
bool L_52;
|
|
L_52 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_49, L_51, NULL);
|
|
if (!L_52)
|
|
{
|
|
goto IL_012d;
|
|
}
|
|
}
|
|
{
|
|
uint64_t L_53;
|
|
L_53 = ConstantHelper_GetUInt64WithAllBitsSet_mB7F3E046EE6B1B20C552BF7CF619416E239A5A96_inline(NULL);
|
|
uint64_t L_54 = L_53;
|
|
RuntimeObject* L_55 = Box(il2cpp_defaults.uint64_class, &L_54);
|
|
return ((*(uint64_t*)UnBox(L_55, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_012d:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_56 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_57;
|
|
L_57 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_56, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_58 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int64_class->byval_arg) };
|
|
Type_t* L_59;
|
|
L_59 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_58, NULL);
|
|
bool L_60;
|
|
L_60 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_57, L_59, NULL);
|
|
if (!L_60)
|
|
{
|
|
goto IL_0158;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_61;
|
|
L_61 = ConstantHelper_GetInt64WithAllBitsSet_m56A9AB64BA5DDD9ECC99424875824591DEFD5C40_inline(NULL);
|
|
int64_t L_62 = L_61;
|
|
RuntimeObject* L_63 = Box(il2cpp_defaults.int64_class, &L_62);
|
|
return ((*(uint64_t*)UnBox(L_63, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_0158:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_64 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_65;
|
|
L_65 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_64, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_66 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.single_class->byval_arg) };
|
|
Type_t* L_67;
|
|
L_67 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_66, NULL);
|
|
bool L_68;
|
|
L_68 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_65, L_67, NULL);
|
|
if (!L_68)
|
|
{
|
|
goto IL_0183;
|
|
}
|
|
}
|
|
{
|
|
float L_69;
|
|
L_69 = ConstantHelper_GetSingleWithAllBitsSet_m66FC11C0680F744EB8315278910061C9535818C0_inline(NULL);
|
|
float L_70 = L_69;
|
|
RuntimeObject* L_71 = Box(il2cpp_defaults.single_class, &L_70);
|
|
return ((*(uint64_t*)UnBox(L_71, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_0183:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_72 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_73;
|
|
L_73 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_72, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_74 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.double_class->byval_arg) };
|
|
Type_t* L_75;
|
|
L_75 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_74, NULL);
|
|
bool L_76;
|
|
L_76 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_73, L_75, NULL);
|
|
if (!L_76)
|
|
{
|
|
goto IL_01ae;
|
|
}
|
|
}
|
|
{
|
|
double L_77;
|
|
L_77 = ConstantHelper_GetDoubleWithAllBitsSet_mF43AF77A6C93B7590B35B20458E80F2BC66AD5F2_inline(NULL);
|
|
double L_78 = L_77;
|
|
RuntimeObject* L_79 = Box(il2cpp_defaults.double_class, &L_78);
|
|
return ((*(uint64_t*)UnBox(L_79, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4))));
|
|
}
|
|
|
|
IL_01ae:
|
|
{
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_80 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_80, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE310274B02A605A3985345944A620D7D2E019A1A)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_80, method);
|
|
}
|
|
}
|
|
// Method Definition Index: 710
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t BitConverter_DoubleToInt64Bits_m4F42741818550F9956B5FBAF88C051F4DE5B0AE6_inline (double ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int64_t L_0 = *((int64_t*)((uintptr_t)(&___0_value)));
|
|
return L_0;
|
|
}
|
|
}
|